We currently are using Airflow for ELTs/ETLs to ingest from different Postgres databases to BigQuery/Google Cloud Storage. Airbyte looks sweet for the same task and would free us from a big effort burden, but its Postgres source only supports SELECT * statements (i.e. you can't deselect columns). That's kind of a dealbreaker for us, because for security reasons our Postgres users permissions are granularly configured…
That's crazy, why would it have the approach of "select all columns" when you might never need all of them? Could you create a view for it to select from instead? Either way if someone told me a ETL supports only literally all the columns or nothing then I'd assume it was a MVP product to demonstrate the idea... not a production system.
Using an ETL framework vs. writing yet another ETL script
21–30 of 77 posts
Re: Using an ETL framework vs. writing yet another ETL script
#22I gave up on all these frameworks and just use Cron and Make and Python
Re: Using an ETL framework vs. writing yet another ETL script
#23Re: Using an ETL framework vs. writing yet another ETL script
#24I gave up on all these frameworks and just use Cron and Make and Python
Do you use some kind of library to help with transformations? If you have some volume using plain python can become a bottleneck no? Any tips in this area would be appreciated.
Python's speed, or lack thereof, is rarely an issue. Most tasks that I write/run finish in less than a minute, including the time for transformations. Some of those can get fairly hairy, as well. Most of the time is spent querying the DB and uploading to the remote.
For the tasks where the transformations are too complex, you can greatly decrease the time necessary by tweaking the queries (i.e., limiting rows to just changed rows, etc.). And frankly, once you realize most data doesn't need to update in real time, it doesn't matter how long the transformation step takes (as long as it's fewer than about 23 1/2 hours).
Re: Using an ETL framework vs. writing yet another ETL script
#25Re: Using an ETL framework vs. writing yet another ETL script
#26I gave up on all these frameworks and just use Cron and Make and Python
Do you use some kind of library to help with transformations? If you have some volume using plain python can become a bottleneck no? Any tips in this area would be appreciated.
pandas otherwise
Re: Using an ETL framework vs. writing yet another ETL script
#27Re: Using an ETL framework vs. writing yet another ETL script
#28Can any of these ETL frameworks kick off an ETL script without a rewrite? Something that would handle scheduling, retries, emit metrics around those actions, but let me use my own tools for the actual data manipulation.
Re: Using an ETL framework vs. writing yet another ETL script
#29Can any of these ETL frameworks kick off an ETL script without a rewrite? Something that would handle scheduling, retries, emit metrics around those actions, but let me use my own tools for the actual data manipulation.
Re: Using an ETL framework vs. writing yet another ETL script
#30I gave up on all these frameworks and just use Cron and Make and Python