mert_bakir
05/24/2023, 1:19 PMtap-mongodb, z3z1ma variant
and trying to set up stream maps.
extractors:
- name: tap-mongodb
config:
stream_maps:
stream_name:
id: 123
__else__: null
meltano run tap-mongodb target-jsonl
outputs the entire stream as-is without appliying the stream mapping. Am I missing something?mert_bakir
05/24/2023, 2:38 PMselect:
- dbname_collection.*
gets the collection and skips other collections as expected.
select
- dbname_collection._id
- dbname_collection.created_at
returns all fields, same output with the former.mert_bakir
05/24/2023, 3:20 PMmeltano run tap-mongodb target-postgres
creates a table in postgres with only _id column when strategy is = 'raw'. So I defined the schema manually, then it moved the columns to postgres that is defined manually.
Still, couldn't make stream maps work. 😕jusolu_coperfield_borges_luz
02/08/2024, 5:37 PM