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
|
# File 'lib/tapsoob/cli/data_stream.rb', line 44
def push(database_url, dump_path = nil)
opts = parse_opts(options)
if dump_path && Dir.exist?(dump_path)
op = Tapsoob::Operation::Base.factory(:push, database_url, dump_path, opts)
op.push_data
else
if opts[:parallel] && opts[:parallel] > 1
STDERR.puts "Warning: Parallel mode not supported when reading from STDIN"
end
data = []
STDIN.each_line { |line| data << JSON.parse(line, symbolize_names: true) }
data.each do |table|
table_name = table[:table_name]
if opts[:purge]
db(database_url, opts)[table_name.to_sym].truncate
end
stream = Tapsoob::DataStream::Base.factory(db(database_url, opts), {
table_name: table_name,
chunksize: opts[:default_chunksize]
}, { :"discard-identity" => opts[:"discard-identity"] || false, :purge => opts[:purge] || false, :debug => opts[:debug] })
begin
stream.import_rows(table)
rescue Exception => e
stream.log.debug e.message
STDERR.puts "Error loading data in #{table_name} : #{e.message}"
end
end
end
end
|