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
|
# File 'lib/flydata/fluent-plugins/in_postgresql_query_based_flydata.rb', line 21
def configure(conf)
super
@dbconf = FlydataCore::Postgresql::Config.opts_for_pg(@data_entry['postgresql_data_entry_preference'])
$log.info "postgresql host:\"#{@host}\" port:\"#{@port}\" username:\"#{@username}\" database:\"#{@database}\" tables:\"#{@tables}\" tables_append_only:\"#{@tables_append_only}\""
opts = @dbconf.merge(pk_override:@data_entry['postgresql_data_entry_preference']['pk_override'])
@table_meta = Flydata::SourcePostgresql::TableMeta.new(
opts, @tables, @schema)
@context = Flydata::SourcePostgresql::PluginSupport::Context.new(
database: @database, tables: @tables,
tag: @tag, sync_fm: @sync_fm, omit_events: @omit_events,
table_revs: @table_revs, dbconf: @dbconf,
cur_src_pos_file: @source_position_file,
cur_sent_pos_file: @sent_position_file,
table_src_pos_files: @table_src_pos_files,
table_meta: @table_meta,
params: {
fetch_interval: @fetch_interval,
retry_interval: @retry_interval,
emit_chunk_limit: @emit_chunk_limit,
},
)
@client = Flydata::SourcePostgresql::QueryBasedSync::Client.new(@context)
end
|