Hi all, I am trying to build an ETL pipeline using...
# random
c
Hi all, I am trying to build an ETL pipeline using meltano, but i dont want to use DBT, i have a custom python script which i want to use as a transformer, is there any guide on how to achieve this ?
e
c
Thanks @edgar_ramirez_mondragon for sharing the doc 👍
Yeah this is working when i am running meltano run my_custom_utility properly But can you let me know how to use it in between my extraction and loading phase Like meltano run my_custom_extractor my_custom_utility:run_script target-csv(loader)
e
You'd have to, for example fork meltano-map-transform to implement the functionality you desire. The difficulty with custom implementations is you have to be more or less familiar with the Singer specification cause you need to parse Singer messages, run your transformation, and then emit new Singer messages.
c
Thanks @edgar_ramirez_mondragon for the info, will try out of the above works for me
e
Cool. Let me know how it goes.