New Source: SQLite #36073
Replies: 8 comments
-
i'm at Airbyte now and would be interested in shepherding at least a SQLite destination connector first through if you are willing to work on it |
Beta Was this translation helpful? Give feedback.
-
Cool. Will work on one based on JDBCdestination |
Beta Was this translation helpful? Give feedback.
-
hello @sw-yx Would you mind taking a look at it? |
Beta Was this translation helpful? Give feedback.
-
@yuhuishi-convect took a brief look - its very cool! destination more important than source, so i am glad you went with the hard part first. the main thing we will need is time for someone from @marcosmarxm's team to properly review as engineering but i do think this will be a big step for us to create personal data warehouses and offer airbyte for smaller usecases |
Beta Was this translation helpful? Give feedback.
-
Tagging this for the new destinations team (sql source has already been added by @yuhuishi-convect ) |
Beta Was this translation helpful? Give feedback.
-
very excited! destination > source :) |
Beta Was this translation helpful? Give feedback.
-
I'm interested in this! For SQLite as the source, do you have any thoughts about how we would host the file? A few ideas:
I'm currently using S3 + CSV but and SQLite source appeals due to being able to place all the data in one database but also rely on the primary id in SQLite for incremental updates vs. the date on the CSV file. |
Beta Was this translation helpful? Give feedback.
-
Probably similar to other local files:
it is the best way, maybe using s3 or other ways can be added to be improved. |
Beta Was this translation helpful? Give feedback.
-
Tell us about the new connector you’d like to have
Which source and which destination?
SQLite database as both the source and destination connector.
Do you need a specific version of the underlying data source e.g: you specifically need support for an older version of the API or DB?
NA
Describe the context around this new connector
We would like to support syncing a bundle of related files into multiple tables in a destination database. Sqlite is a good way to group multiple structured files into a SINGLE file. This is useful, for example when we have multiple CSV files coming from a data dump of an eCommerce-store, e.g., products, orders, inventory, we can always first dump them into one SQLite file and distribute them conveniently. Then, if SQLite is supported as a source connector, the tables in the SQLite database can be synced to destination databases.
Loading multiple heterogenous files into different tables is currently impossible since files source connector can only load data into one single table, with heterogeneous schema. The workaround is to create multiple such file source connectors where each one handles one file. But this makes the "T" step hard after the "L" step since "L" is done with multiple connectors.
It's also very convenient to make SQLite a destination connector. This makes data dumping from a source to a single file convenient.
How often do you want to run syncs?
On-demand
If this is an API source connector, which entities/endpoints do you need supported?
NA
If the connector is for a paid service, can we name you as a mutual user when we subscribe for an account? Which company should we name?
NA
Describe the alternative you are considering or using
What are you considering doing if you don’t have this integration through Airbyte?
I write ad-hoc python scripts to connect to a sqlite database and load everything into destination tables.
Are you willing to submit a PR?
Yes.
Beta Was this translation helpful? Give feedback.
All reactions