How to load data from Retently to ElasticSearch
Learn how to use Airbyte to synchronize your Retently data into ElasticSearch 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 accessing the data you need from Retently. Log in to your Retently account and navigate to the section where your data resides. Use Retently's export functionality to download the data in a CSV or JSON format, which are common data formats that can be processed further. Ensure that you have the necessary permissions to export data.
Once the data is extracted, review the file to ensure it contains the required fields and information. Check for any inconsistencies or errors that may have occurred during the export process. If needed, use tools like Excel or a text editor to clean and prepare your data for transformation.
Elasticsearch requires data in JSON format. If your data is in CSV, you'll need to transform it into JSON. You can use a script in Python or another programming language to read the CSV file and convert each row into a JSON document. Ensure that each JSON document contains fields compatible with your Elasticsearch index mapping.
Before importing data, set up an index in Elasticsearch that matches the structure of your data. Use the Elasticsearch API or Kibana to create an index and define the mapping that specifies the data types for each field (e.g., strings, integers, dates). This step is crucial to ensure the data is stored correctly and is searchable.
Develop a script to read the transformed JSON data and import it into Elasticsearch. Use a programming language like Python, and leverage the Elasticsearch client library to connect to your Elasticsearch instance. The script should iterate through your JSON documents and use the Elasticsearch bulk API to efficiently upload the data.
Run your data import script to transfer data from your local system to Elasticsearch. Monitor the script's execution to ensure that all documents are indexed successfully. Handle any errors that occur during the import process, such as network issues or data validation errors, and retry if necessary.
After the data import is complete, verify that all data has been indexed correctly. Use Kibana or Elasticsearch queries to search for specific documents and check that the data matches the original source. Validate that the data types in Elasticsearch are correct and that you can perform searches and aggregations as expected.
This guide provides a practical approach to manually move data from Retently to Elasticsearch without relying on third-party connectors. Adjust each step as needed based on the complexity and specific requirements of your data and Elasticsearch setup.