ashish
02/24/2023, 2:33 PMmeltano-map-transformer
to split a tap output containing multiple streams. I see the transformer splits schema and records for one stream only (one with schema at the top) and emits others as-it-is.
Can you please guide what could have gone wrong?edgar_ramirez_mondragon
02/24/2023, 3:16 PMstream_maps
config? You may need to explicitly split all streams.ashish
02/26/2023, 2:36 PMstream_maps
config looks like this:
Both stream1
and stream2
are coming from upstream tap.
{
"stream_maps": {
"stream1": {
"property1": null,
"property2": null
},
"stream1_split": {
"__source__": "stream1",
"id":"id",
"property1": "property1",
"property2": "property2",
"__else__": null
},
"stream2": {
"stream2_property1": null
},
"stream2_split": {
"__source__": "stream2",
"id":"id",
"stream2_property1": "stream2_property1",
"__else__": null
}
}