How to load data from Shortio to Clickhouse
Learn how to use Airbyte to synchronize your Shortio data into Clickhouse within minutes.


Building your pipeline or Using Airbyte
Airbyte is the only open source solution empowering data teams to meet all their growing custom business demands in the new AI era.
- Inconsistent and inaccurate data
- Laborious and expensive
- Brittle and inflexible
- Reliable and accurate
- Extensible and scalable for all your needs
- Deployed and governed your way
Start syncing with Airbyte in 3 easy steps within 10 minutes



Take a virtual tour
Demo video of Airbyte Cloud
Demo video of AI Connector Builder
Setup Complexities simplified!
Simple & Easy to use Interface
Airbyte is built to get out of your way. Our clean, modern interface walks you through setup, so you can go from zero to sync in minutes—without deep technical expertise.
Guided Tour: Assisting you in building connections
Whether you’re setting up your first connection or managing complex syncs, Airbyte’s UI and documentation help you move with confidence. No guesswork. Just clarity.
Airbyte AI Assistant that will act as your sidekick in building your data pipelines in Minutes
Airbyte’s built-in assistant helps you choose sources, set destinations, and configure syncs quickly. It’s like having a data engineer on call—without the overhead.
What sets Airbyte Apart
Modern GenAI Workflows
Move Large Volumes, Fast
An Extensible Open-Source Standard
Full Control & Security
Fully Featured & Integrated
Enterprise Support with SLAs
What our users say

Raman Singh
Predictable, straightforward pricing model that simplified budgeting and significantly reduced overall spend

Chase Zieman

“Airbyte helped us accelerate our progress by years, compared to our competitors. We don’t need to worry about connectors and focus on creating value for our users instead of building infrastructure. That’s priceless. The time and energy saved allows us to disrupt and grow faster.”

Rupak Patel
"With Airbyte, we could just push a few buttons, allow API access, and bring all the data into Google BigQuery. By blending all the different marketing data sources, we can gain valuable insights."
How to Sync to Manually
Begin by logging into your Short.io account. Navigate to the data export section, which allows you to download your link tracking data. Choose the appropriate format for export, such as CSV or JSON, which are commonly supported by Short.io. Download the file to your local machine.
Set up your local environment to handle the conversion and uploading of data. Ensure you have a proper text editor and tools like Python or shell scripting capabilities, as these will be useful for data manipulation. Install necessary tools like `csvkit` or `pandas` if you're working with CSV files.
Use a scripting language like Python to transform the exported data into a format compatible with ClickHouse, such as TSV (Tab-Separated Values). This involves reading the CSV/JSON data, processing it to match the schema of your ClickHouse table, and writing it out in TSV format. Ensure that data types and structures align with ClickHouse requirements.
Access your ClickHouse server using the command-line client or a database management tool. If you haven’t already, create a new database and table where the data will be stored. Define the schema of the table to match the structure of your processed data file. For example, use `CREATE TABLE` statements to specify the columns and data types.
Transfer the processed TSV file to the server where ClickHouse is hosted. You can use secure copy protocols like SCP or SFTP for this step. Ensure that the file is placed in a directory with appropriate read permissions for ClickHouse.
Use ClickHouse's command-line client to load the data from the TSV file into the table. Execute a command like `clickhouse-client --query="INSERT INTO database.table FORMAT TSV" < /path/to/datafile.tsv` to load the data directly. This step may require adjustments to handle large files, such as batching or streaming.
Once the data is loaded, perform checks to ensure that the transfer was successful and the data integrity is maintained. Use SQL queries to count rows, check for nulls, and validate key metrics against the original dataset. This final verification helps ensure the data is ready for analysis or reporting in ClickHouse.
By following these steps, you can effectively move data from Short.io to a ClickHouse warehouse manually without relying on third-party connectors or integrations.