How to load data from Zendesk Sunshine to TiDB
Learn how to use Airbyte to synchronize your Zendesk Sunshine data into TiDB 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
Before starting the migration process, familiarize yourself with the data structure in Zendesk Sunshine and the target structure in TiDB. Identify the tables, fields, and relationships in both systems to ensure a smooth data mapping process.
Zendesk Sunshine allows you to export data using their APIs. Use Zendesk's API to programmatically extract the necessary data. Authenticate using your API credentials and make GET requests to download the data in JSON or CSV format. Make sure to paginate the requests if your dataset is large.
After exporting the data, you might need to transform it to match the schema of your TiDB tables. Use a scripting language like Python or a tool like jq for JSON to perform the necessary transformations, such as renaming fields, changing data types, or flattening nested structures.
Set up your TiDB database if you haven't already. Install TiDB on your server or use a managed TiDB service. Create the necessary tables and schema that match your transformed data. Ensure all fields and data types align with the data you plan to import.
With the transformed data ready, you can now import it into TiDB. Use TiDB's command-line tools, such as TiDB Lightning for bulk imports or the simple MySQL client to execute SQL INSERT statements if your dataset is relatively small. Ensure your data integrity by handling transactions and committing them properly.
Once the data is imported, verify its integrity. Run SQL queries to check row counts, field values, and relationships between tables. Ensure that all data has been transferred accurately and completely. Address any discrepancies by reviewing your export, transformation, and import processes.
If you need to move data regularly, consider automating the process. Write scripts to automate the export, transform, and import steps. Schedule these scripts to run at regular intervals using cron jobs or another scheduling tool. Always include logging and error handling to monitor the process effectively.
By following these steps, you can manually migrate data from Zendesk Sunshine to TiDB without using third-party connectors or integrations.