Class: Outhad::Integrations::Destination::AISDataStore::Client
- Inherits:
-
DestinationConnector
- Object
- DestinationConnector
- Outhad::Integrations::Destination::AISDataStore::Client
- Defined in:
- lib/outhad/integrations/destination/ais_data_store/client.rb
Instance Method Summary collapse
- #check_connection(connection_config) ⇒ Object
- #discover(connection_config) ⇒ Object
- #write(sync_config, records, action = "destination_insert") ⇒ Object
Instance Method Details
#check_connection(connection_config) ⇒ Object
9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/outhad/integrations/destination/ais_data_store/client.rb', line 9 def check_connection(connection_config) connection_config = connection_config.with_indifferent_access create_connection(connection_config) ConnectionStatus.new( status: ConnectionStatusType["succeeded"] ). rescue PG::Error => e ConnectionStatus.new( status: ConnectionStatusType["failed"], message: e. ). end |
#discover(connection_config) ⇒ Object
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/outhad/integrations/destination/ais_data_store/client.rb', line 21 def discover(connection_config) connection_config = connection_config.with_indifferent_access query = "SELECT table_name, column_name, CASE WHEN data_type = 'USER-DEFINED' THEN udt_name ELSE data_type END AS data_type, is_nullable FROM information_schema.columns WHERE table_schema = '#{connection_config[:schema]}' AND table_catalog = '#{connection_config[:database]}' ORDER BY table_name, ordinal_position;" db = create_connection(connection_config) records = db.exec(query) do |result| result.map do |row| row end end catalog = Catalog.new(streams: create_streams(records)) catalog. rescue StandardError => e handle_exception(e, { context: "AIS:DATA:STORE:DISCOVER:EXCEPTION", type: "error" }) ensure db&.close end |
#write(sync_config, records, action = "destination_insert") ⇒ Object
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 83 84 |
# File 'lib/outhad/integrations/destination/ais_data_store/client.rb', line 48 def write(sync_config, records, action = "destination_insert") connection_config = sync_config.destination.connection_specification.with_indifferent_access table_name = sync_config.stream.name primary_key = sync_config.model.primary_key = [] db = create_connection(connection_config) write_success = 0 write_failure = 0 records.each do |record| query = Outhad::Integrations::Core::QueryBuilder.perform(action, table_name, record, primary_key) logger.debug("AIS:DATA:STORE:WRITE:QUERY query = #{query} sync_id = #{sync_config.sync_id} sync_run_id = #{sync_config.sync_run_id}") begin response = db.exec(query) write_success += 1 << log_request_response("info", query, response) rescue StandardError => e handle_exception(e, { context: "AIS:DATA:STORE:RECORD:WRITE:EXCEPTION", type: "error", sync_id: sync_config.sync_id, sync_run_id: sync_config.sync_run_id }) write_failure += 1 << log_request_response("error", query, e.) end end (write_success, write_failure, ) rescue StandardError => e handle_exception(e, { context: "AIS:DATA:STORE:RECORD:WRITE:EXCEPTION", type: "error", sync_id: sync_config.sync_id, sync_run_id: sync_config.sync_run_id }) end |