Class: Fluent::Plugin::SQLInput::TableElement

Inherits:
Object
  • Object
show all
Includes:
Configurable
Defined in:
lib/fluent/plugin/in_sql.rb

Instance Method Summary collapse

Instance Method Details

#configure(conf) ⇒ Object



63
64
65
# File 'lib/fluent/plugin/in_sql.rb', line 63

def configure(conf)
  super
end

#emit_next_records(last_record, limit) ⇒ Object

emits next records and returns the last record of emitted records



112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/fluent/plugin/in_sql.rb', line 112

def emit_next_records(last_record, limit)
  relation = @model
  if last_record && last_update_value = last_record[@update_column]
    relation = relation.where("#{@update_column} > ?", last_update_value)
  end
  relation = relation.order("#{@update_column} ASC")
  relation = relation.limit(limit) if limit > 0

  now = Fluent::Engine.now

  me = Fluent::MultiEventStream.new
  relation.each do |obj|
    record = obj.serializable_hash rescue nil
    if record
      if @time_column && tv = obj.read_attribute(@time_column)
        if tv.is_a?(Time)
          time = tv.to_i
        else
          time = Time.parse(tv.to_s).to_i rescue now
        end
      else
        time = now
      end
      me.add(time, record)
      last_record = record
    end
  end

  last_record = last_record.dup if last_record  # some plugin rewrites record :(
  @router.emit_stream(@tag, me)

  return last_record
end

#init(tag_prefix, base_model, router) ⇒ Object



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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/fluent/plugin/in_sql.rb', line 67

def init(tag_prefix, base_model, router)
  @router = router
  @tag = "#{tag_prefix}.#{@tag}" if tag_prefix

  # creates a model for this table
  table_name = @table
  primary_key = @primary_key
  @model = Class.new(base_model) do
    self.table_name = table_name
    self.inheritance_column = '_never_use_'
    self.primary_key = primary_key if primary_key

    #self.include_root_in_json = false

    def read_attribute_for_serialization(n)
      v = send(n)
      if v.respond_to?(:to_msgpack)
        v
      elsif v.is_a? Time
        v.strftime('%Y-%m-%d %H:%M:%S.%6N%z')
      else
        v.to_s
      end
    end
  end

  # ActiveRecord requires model class to have a name.
  class_name = table_name.gsub(/\./, "_").singularize.camelize
  base_model.const_set(class_name, @model)

  # Sets model_name otherwise ActiveRecord causes errors
  model_name = ActiveModel::Name.new(@model, nil, class_name)
  @model.define_singleton_method(:model_name) { model_name }

  # if update_column is not set, here uses primary key
  unless @update_column
    pk = @model.columns_hash[@model.primary_key]
    unless pk
      raise "Composite primary key is not supported. Set update_column parameter to <table> section."
    end
    @update_column = pk.name
  end
end