Class: Fluent::Plugin::SQLQueryInput

Inherits:
Input
  • Object
show all
Defined in:
lib/fluent/plugin/in_sqlquery_ssh.rb

Instance Method Summary collapse

Constructor Details

#initializeSQLQueryInput

Returns a new instance of SQLQueryInput.



13
14
15
16
17
18
# File 'lib/fluent/plugin/in_sqlquery_ssh.rb', line 13

def initialize
  super
  require 'mysql2'
  require 'net/ssh/gateway'
  require 'bigdecimal'
end

Instance Method Details

#configure(conf) ⇒ Object



50
51
52
# File 'lib/fluent/plugin/in_sqlquery_ssh.rb', line 50

def configure(conf)
  super
end

#get_connectionObject



227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
# File 'lib/fluent/plugin/in_sqlquery_ssh.rb', line 227

def get_connection
  begin
    $log.info "Opening ssh tunnel to #{@ssh_gateway}\n"
    @ssh_gate ||= Net::SSH::Gateway.new(@ssh_gateway, @ssh_username, :verbose => :debug, :forward_agent => true)
    @ssh_port = @ssh_gate.open(@host, 3306, @ssh_local_port) || @db_port
    $log.info "connecting to #{@host}\n"
    return  Mysql2::Client.new({
      :host => '127.0.0.1',
      :port => @ssh_port,
      :username => @db_username,
      :password => @db_password,
      :encoding => @encoding,
      :reconnect => true,
      :read_timeout => 600,
      :connect_timeout => 30
    })
  rescue Exception => e
      $log.error "fluent-plugin-sqlquery-ssh: Main Connect ERROR!\n"
      $log.error "MSG: #{e.message}\n TRACE:#{e.backtrace.join("\n")} PORT: #{@ssh_port}\n"
      #sleep @interval
      #retry
  end
  return nil
end

#get_exec_resultObject

get the query results



155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'lib/fluent/plugin/in_sqlquery_ssh.rb', line 155

def get_exec_result
  result = Array.new
  stmt = query(@query)
  stmt.each do |row|
    #to be replaced by the cast array
        row['avg'] = row['avg'].to_f.round(2) if row['avg']
        row['daily_total'] = row['daily_total'].to_f if row['daily_total']
        row['total_transactions'] = row['total_transactions'].to_i if row['total_transactions']
        row['cust_of_customer'] = row['cust_of_customer'].to_i if row['cust_of_customer']
        row['shop_count'] = row['shop_count'].to_i if row['shop_count']
        row['items'] = row['items'].to_i if row['items']
        row['register_count'] = row['register_count'].to_i if row['register_count']
        row['customer_shard'] = @current_shard if  @current_shard
    result.push(row)
  end
  return result
end

#get_mysql_hostnameObject



253
254
255
256
257
# File 'lib/fluent/plugin/in_sqlquery_ssh.rb', line 253

def get_mysql_hostname
  query("SHOW VARIABLES LIKE 'hostname'").each do |row|
    return row.fetch('Value')
  end
end

#get_shardsObject

get the shards. put the info somewhere?



110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# File 'lib/fluent/plugin/in_sqlquery_ssh.rb', line 110

def get_shards
  begin
      @conn ||= get_connection
      @conn.select_db(@shard_db_name) #switch the customerdb
      $log.info "Getting Shard Mapping: [#{@shard_map_query}]"
      @conn.query("SET SESSION group_concat_max_len=	1844674407370")
      shard_mapping = Array.new
      shardlist = @conn.query(@shard_map_query, :cast => false, :cache_rows => false)
      shardlist.each do |row|
        customer_dbs = row['database_name'].split(',')
        cust_host = row['database_host']
        shard = Hash.new(cust_host)
        shard[cust_host] = customer_dbs
        shard_mapping.push(shard)
        $log.info "adding #{customer_dbs}\n"
      end
      @conn.close
      return shard_mapping
  rescue Exception => e
    $log.error "Can't get shard info\n"
    $log.error "#{e.message}\n#{e.backtrace.join("\n")}\n"
    exit!
  end
end

#number?Boolean

Returns true if the column is either of type integer, float or decimal.

Returns:

  • (Boolean)


189
190
191
# File 'lib/fluent/plugin/in_sqlquery_ssh.rb', line 189

def number?
  type == :integer || type == :float || type == :decimal
end

#process_shard_dbs(remotehost, db_names) ⇒ Object



135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# File 'lib/fluent/plugin/in_sqlquery_ssh.rb', line 135

def process_shard_dbs(remotehost, db_names)
    db_names.each do |db|
     $log.info "customer: #{db} shard: #{remotehost}"
     return if @stop
     @mysql ||= get_connection #open conn to shard.
     @current_shard = remotehost
     @mysql.select_db(db) #switch the customerdb
     #$log.info "check customer: #{db}\n"
      tag = "#{@tag}_#{db}_#{remotehost}"
      record = Hash.new
        result = get_exec_result
        #record.store(@row_count_key, result.size) if @row_count
        result.each_with_index do |data, index|
          router.emit(tag, Fluent::Engine.now, record.merge(data))
        end
        $log.info "completed #{db} rows: #{result.size}\n"
    end
end

#query(query) ⇒ Object



173
174
175
176
177
178
179
180
181
# File 'lib/fluent/plugin/in_sqlquery_ssh.rb', line 173

def query(query)
  begin
    return if @mysql.nil?
    return @mysql.query(query, :cast => false, :cache_rows => false)
  rescue Exception => e
      $log.error "fluent-plugin-sqlquery-ssh: Query ERROR!\n"
      $log.error "#{e.message}\n#{e.backtrace.join("\n")}\n"
  end
end

#runObject



72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# File 'lib/fluent/plugin/in_sqlquery_ssh.rb', line 72

def run
  begin
    $log.info "Begin run."
    loop do
      break if @stop
       @shard_map ||= get_shards
       #loop thru shards
      begin
         @shard_map.each do |shard|
           break if @stop
           shard.each do |remotehost,db_names|
              break if @stop
              @mysql = nil #close connection
              @ssh_gate.close(@ssh_local_port)
              hostname = remotehost.gsub(/mylocaldb([0-9]*)/, "customers\\1-reporting.db.prd.us-east-silo.ls")
              @host = hostname
              $log.info "start shard: #{hostname}\n"
              #handle the dbs
              process_shard_dbs(remotehost, db_names)
              $log.info "finished shard: #{hostname}\n"
           end
         end
         @mysql = nil #close connection
         @ssh_gate.close(@ssh_local_port)
         #process_shards if @shard_map
         $log.info "completed run all shards. sleeping for #{@interval}\n"
        #end don't loop
      rescue Exception => e
        $log.error "error on shard: #{@current_shard}\n"
        $log.error "#{e.message}\n#{e.backtrace.join("\n")}\n"
      end
      sleep @interval
    end
  rescue
      # ignore
  end
end

#shutdownObject



61
62
63
64
65
66
67
68
69
70
# File 'lib/fluent/plugin/in_sqlquery_ssh.rb', line 61

def shutdown
  @stop = "ending run"
  @ssh_gate.close(@ssh_local_port)
  @mysql = nil
  if @thread
    @thread.join
    @thread = nil
  end
  super
end

#startObject



54
55
56
57
58
59
# File 'lib/fluent/plugin/in_sqlquery_ssh.rb', line 54

def start
  super
  #thread_create(:, &method(:run))
  @thread = Thread.new(&method(:run))
  @ssh_port  = nil
end

#text?Boolean

Returns true if the column is either of type string or text.

Returns:

  • (Boolean)


184
185
186
# File 'lib/fluent/plugin/in_sqlquery_ssh.rb', line 184

def text?
  type == :string || type == :text
end

#value_to_boolean(value) ⇒ Object

convert something to a boolean



194
195
196
197
198
199
200
# File 'lib/fluent/plugin/in_sqlquery_ssh.rb', line 194

def value_to_boolean(value)
  if value.is_a?(String) && value.empty?
    nil
  else
    TRUE_VALUES.include?(value)
  end
end

#value_to_decimal(value) ⇒ Object

convert something to a BigDecimal



214
215
216
217
218
219
220
221
222
223
224
225
# File 'lib/fluent/plugin/in_sqlquery_ssh.rb', line 214

def value_to_decimal(value)
  # Using .class is faster than .is_a? and
  # subclasses of BigDecimal will be handled
  # in the else clause
  if value.class == BigDecimal
    value
  elsif value.respond_to?(:to_d)
    value.to_d
  else
    value.to_s.to_d
  end
end

#value_to_integer(value) ⇒ Object

handle the case when an integer column is used to store boolean values



204
205
206
207
208
209
210
211
# File 'lib/fluent/plugin/in_sqlquery_ssh.rb', line 204

def value_to_integer(value)
  case value
  when TrueClass, FalseClass
    value ? 1 : 0
  else
    value.to_i rescue nil
  end
end