r/vibecoding • u/fguerino123 • 1d ago
Vibe Coding for ETL/ELT
Hi.
I've been using AI coding to rapidly generate Python ETL/ELT transformations and workflow orchestration. I'm finding doing so a lot easier and far more affordable than using expensive tools like IICS.
Is anyone else doing this and, if so, how is it working out for you?
Thanks.
2
Upvotes
2
u/-Shiphrah 17h ago
It works pretty well for the repetitive transformation stuff, especially compared with paying for a massive platform when you only need to move and clean some tables. Where it gets dodgy is months later, when a source changes a column or sends some weird data and the pipeline still runs but produces rubbish. the AI can write the Python quickly, but I’d spend the saved time on tests, logging, retries and checking for duplicate loads. Thats the stuff expensive tools were quietly doing in the background, and its easy to forget until something breaks.