Hi <@U06CBKL5W7L> and everyone, I am trying to use...
# getting-started
a
Hi @aaronsteers and everyone, I am trying to use
meltano-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?
e
Hey @ashish, can you share your
stream_maps
config? You may need to explicitly split all streams.
a
Hi @edgar_ramirez_mondragon My
stream_maps
config looks like this: Both
stream1
and
stream2
are coming from upstream tap.
Copy code
{
    "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
        }
}