Class: Blazer::Adapters::AthenaAdapter

Inherits:
BaseAdapter show all
Defined in:
lib/blazer/adapters/athena_adapter.rb

Instance Attribute Summary

Attributes inherited from BaseAdapter

#data_source

Instance Method Summary collapse

Methods inherited from BaseAdapter

#cachable?, #cancel, #cost, #explain, #initialize, #reconnect

Constructor Details

This class inherits a constructor from Blazer::Adapters::BaseAdapter

Instance Method Details

#preview_statementObject



104
105
106
# File 'lib/blazer/adapters/athena_adapter.rb', line 104

def preview_statement
  "SELECT * FROM {table} LIMIT 10"
end

#run_statement(statement, comment) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/blazer/adapters/athena_adapter.rb', line 4

def run_statement(statement, comment)
  require "digest/md5"

  columns = []
  rows = []
  error = nil

  begin
    resp =
      client.start_query_execution(
        query_string: statement,
        # use token so we fetch cached results after query is run
        client_request_token: Digest::MD5.hexdigest([statement,data_source.id].join("/")),
        query_execution_context: {
          database: database,
        },
        result_configuration: {
          output_location: settings["output_location"]
        }
      )
    query_execution_id = resp.query_execution_id

    timeout = data_source.timeout || 300
    stop_at = Time.now + timeout
    resp = nil

    begin
      resp = client.get_query_results(
        query_execution_id: query_execution_id
      )
    rescue Aws::Athena::Errors::InvalidRequestException => e
      unless e.message.start_with?("Query has not yet finished.")
        raise e
      end
      if Time.now < stop_at
        sleep(3)
        retry
      end
    end

    if resp && resp.result_set
      column_info = resp.result_set..column_info
      columns = column_info.map(&:name)
      column_types = column_info.map(&:type)

      untyped_rows = []

      # paginated
      resp.each do |page|
        untyped_rows.concat page.result_set.rows.map { |r| r.data.map(&:var_char_value) }
      end

      utc = ActiveSupport::TimeZone['Etc/UTC']

      rows = untyped_rows[1..-1] || []
      rows = untyped_rows[0..-1] unless column_info.present?
      column_types.each_with_index do |ct, i|
        # TODO more column_types
        case ct
        when "timestamp"
          rows.each do |row|
            row[i] = utc.parse(row[i])
          end
        when "date"
          rows.each do |row|
            row[i] = Date.parse(row[i])
          end
        when "bigint"
          rows.each do |row|
            row[i] = row[i].to_i
          end
        when "double"
          rows.each do |row|
            row[i] = row[i].to_f
          end
        end
      end
    elsif resp
      error = fetch_error(query_execution_id)
    else
      error = Blazer::TIMEOUT_MESSAGE
    end
  rescue Aws::Athena::Errors::InvalidRequestException => e
    error = e.message
    if error == "Query did not finish successfully. Final query state: FAILED"
      error = fetch_error(query_execution_id)
    end
  end

  [columns, rows, error]
end

#schemaObject



100
101
102
# File 'lib/blazer/adapters/athena_adapter.rb', line 100

def schema
  glue.get_tables(database_name: database).table_list.map { |t| {table: t.name, columns: t.storage_descriptor.columns.map { |c| {name: c.name, data_type: c.type} }} }
end

#tablesObject



96
97
98
# File 'lib/blazer/adapters/athena_adapter.rb', line 96

def tables
  glue.get_tables(database_name: database).table_list.map(&:name).sort
end