mindaugas_nizauskas
11/01/2023, 11:03 AMstream_maps
. My tap is tap-saasoptics and target is target-mysql
When I do this config on the target:
..
stream_maps:
transactions:
__alias__: my_prefix_transactions
I get:
singer_sdk.exceptions.RecordsWithoutSchemaException: A record for stream 'transactions' was encountered before a corresponding schema. Check that the Tap correctly implements the Singer spec.
When I do that config on the target:
..
stream_maps:
my_prefix_transactions:
__source__: transactions
I get two tables being created in MySQL - my_prefix_transactions and transactions
Any advice how to achieve that? I mean get only a single table created in MySQL db called my_prefix_transactions.edgar_ramirez_mondragon
11/06/2023, 6:58 PMsinger-sdk
in tap-saasoptics and see if that fixes the issuemindaugas_nizauskas
11/07/2023, 4:28 AMmappers:
- name: meltano-map-transformer
variant: meltano
pip_url: git+<https://github.com/MeltanoLabs/meltano-map-transform.git>
mappings:
- name: my_prefix
config:
stream_maps:
transactions:
__alias__: my_prefix_transactions
mindaugas_nizauskas
11/07/2023, 4:28 AMmeltano run tap-saasoptics my_prefix target-redshift