bubba
07/21/2023, 3:56 PMuser_id
with this endpoint (can't export a list of user). I have all the user_ids as they are the external ids from our company. But I am wondering if you can stream data from a target->tap->target? Is this also possible in Meltano?Andy Carter
07/21/2023, 4:03 PMconfig
? This is a pretty common pattern, a bit like how tap-spreadsheets-anywhere
handles multiple source definitions.bubba
07/21/2023, 4:09 PMconfig
would be bit "janky". Not the cleanest solution but it might be worth it. Thanks Andy!pat_nadolny
07/21/2023, 4:21 PMmeltano run tap-postgres target-csv tap-appcues target-xyz
where target-csv writes the input file that tap-appcues uses, so its effectively dynamic. Just brainstorming though 🤔bubba
07/21/2023, 4:32 PMmeltano run tap-postgres target-csv tap-appcues target-xyz
. Thats a fair idea and is pretty dynamic. Initially I was just curious if we can pass records from target to tap like we do with tap to target but I think Andy and yours suggestions look pretty good when laid out. Thank you, I'll look into implementing something of the sort but am open to all suggestions.pat_nadolny
07/21/2023, 6:51 PMbubba
07/21/2023, 7:59 PMcsv
and then look into that. I like the idea of tap/target hybrids and could honestly use them in many different places in our current pipeline.pat_nadolny
08/30/2023, 3:45 PMtap-x tap-y target-z
but in reality its tap-x mapper-y target-z
where the mapper makes a request for every input record from tap-x.bubba
08/30/2023, 3:57 PM