Class: Presto::Metrics::Query

Inherits:
Object
  • Object
show all
Defined in:
lib/presto/metrics/query.rb

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ Query

Returns a new instance of Query.



12
13
14
# File 'lib/presto/metrics/query.rb', line 12

def initialize(client)
  @client = client
end

Instance Method Details

#count_total_processed_rows(stage) ⇒ Object



112
113
114
115
116
# File 'lib/presto/metrics/query.rb', line 112

def count_total_processed_rows(stage)
  return 0 unless stage
  rows = stage.stage_stats.raw_input_positions + stage.stage_stats.output_positions
  rows + (stage.sub_stages || []).map { |ss| count_total_processed_rows(ss) }.inject(0, :+)
end

#find(queryId) ⇒ Object



67
68
69
70
71
72
73
# File 'lib/presto/metrics/query.rb', line 67

def find(queryId)
  begin
    JSON.parse(@client.get_query_json(queryId, "{}"))
  rescue
    {}
  end
end

#find_tasks(sub_stages) ⇒ Object



161
162
163
164
165
166
167
168
169
170
# File 'lib/presto/metrics/query.rb', line 161

def find_tasks(sub_stages)
  task_list = []
  return task_list unless sub_stages
  sub_stages.each { |ss|
    tl = ss['tasks']
    task_list << tl if tl
    task_list << find_tasks(ss['subStages'])
  }
  task_list.flatten
end

#format_table(tbl, label, align, sep) ⇒ Object



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
# File 'lib/presto/metrics/query.rb', line 16

def format_table(tbl, label, align, sep)
  # Compute col length
  col = {}
  label.each_with_index { |l, i| col[i] = l.length }
  tbl.each { |row|
    row.each_with_index { |cell, i|
      l = cell.to_s.size if cell
      l ||= 0
      col[i] ||= l
      col[i] = [[col[i], l].max, 150].min
    }
  }
  # print label
  line = []
  label.each_with_index { |l, i|
    line << l.to_s[0..col[i]].ljust(col[i])
  }
  puts line.join(sep)
  tbl.each { |row|
    line = []
    row.each_with_index { |cell, i|
      str = cell.to_s[0..col[i]]
      a = align[i] || 'l'
      case a
      when 'r'
        line << str.rjust(col[i])
      when 'l'
        line << str.ljust(col[i])
      else
        line << str.ljust(col[i])
      end
    }
    puts line.join(sep)
  }
  0
end

#listObject



53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/presto/metrics/query.rb', line 53

def list
  ql = query_list
  tbl = ql.map { |q|
    s = q['session'] || {}
    query = q['query'].gsub(/[\t\r\n]/, ' ').gsub(/ {1,}/, ' ').strip
    [q['queryId'], q['elapsedTime'], q['state'], q['runningDrivers'], q['completedDrivers'], q['totalDrivers'], s['user'], s['catalog'], s['schema'], s['source'], query]
  }.sort_by { |row| row[0] }.reverse

  format_table(tbl,
      %w|query time state r f t user catalog schema source sql|,
      %w|r     r    r     r r r l    l       r      l      l  |,
      ' ')
end

#metricsObject



137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'lib/presto/metrics/query.rb', line 137

def metrics
  ql = query_list
  ql.map { |qi|
    h = {}
    h['query_id'] = qi['queryId'] || ''
    h['state'] = qi['state'] || ''
    session = qi['session'] || {}
    stats = qi['queryStats'] || {}
    h['source'] = session['source'] || ''
    h['user'] = session['user'] || h['source'].gsub(/[^a-zA-Z0-9]/, '')
    h['running_drivers'] = stats['runningDrivers'] || 0
    h['queued_drivers'] = stats['queuedDrivers'] || 0
    h['completed_drivers'] = stats['completedDrivers'] || 0
    h['total_drivers'] = stats['totalDrivers'] || 0
    h['elapsed_time'] = stats['elapsedTime'] || '0.0m'
    h['create_time'] = stats['createTime']
    h['running_time'] = stats['endTime'] || Time.now.utc.iso8601(3) # end_time ?
    # if(h['state'] == "FAILED")
    #	h['errorCode'] = find(h['query_id'])['errorCode'] || {}
    # end
    h
  }
end

#processed_rows(query_id) ⇒ Object



118
119
120
121
# File 'lib/presto/metrics/query.rb', line 118

def processed_rows(query_id)
  qi = QueryInfo.decode(find(query_id))
  count_total_processed_rows(qi.output_stage)
end

#query_list(path = "") ⇒ Object



96
97
98
99
100
101
102
# File 'lib/presto/metrics/query.rb', line 96

def query_list(path = "")
  begin
    JSON.parse(@client.get_query_json(path))
  rescue
    []
  end
end

#query_progressObject



123
124
125
126
127
128
129
130
131
132
133
134
135
# File 'lib/presto/metrics/query.rb', line 123

def query_progress
  running_queries = query_list.map { |q| QueryInfo.decode(q) }.select { |q| q.state == :running }
  query_info = running_queries.map { |q|
    QueryInfo.decode(find(q.query_id))
  }

  result = {}
  query_info.each { |q|
    os = q.output_stage
    result[q.query_id] = count_total_processed_rows(os)
  }
  result
end

#running_listObject



104
105
106
107
108
109
110
# File 'lib/presto/metrics/query.rb', line 104

def running_list
  ql = query_list.select { |q| q['state'] == 'RUNNING' }.sort_by { |row| row[0] }.reverse
  ql.each { |q|
    tasks(q['queryId'])
  }
  ql.size
end

#task_list(queryId) ⇒ Object



75
76
77
78
79
80
81
# File 'lib/presto/metrics/query.rb', line 75

def task_list(queryId)
  qj = find(queryId) || {}
  root_stage = qj['outputStage'] || {}
  tasks = root_stage['tasks'] || []
  tasks << find_tasks(root_stage['subStages'] || [])
  tasks.flatten
end

#tasks(queryId) ⇒ Object



83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/presto/metrics/query.rb', line 83

def tasks(queryId)
  tl = task_list(queryId)
  stats = tl.map { |t|
    s = t['stats']
    host = (t['self'] || '').sub(/http:\/\/([a-z0-9\-.]+[\/:][0-9]+)\/.*/, '\1')
    [t['taskId'], host, t['state'], s['rawInputPositions'], s['rawInputDataSize'], s['queuedDrivers'], s['runningDrivers'], s['completedDrivers']]
  }
  format_table(stats,
      %w|task_id host    state processed_rows size|,
      %w|l       l       l     r          r|,
      ' ')
end