How to load data from Elasticsearch to S3 Glue
Learn how to use Airbyte to synchronize your Elasticsearch data into S3 Glue 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 ensuring your AWS environment is ready. This includes having an AWS account, configuring necessary IAM roles with appropriate permissions, and setting up an S3 bucket where the data will be stored. Ensure that AWS Glue has access to both your Elasticsearch domain and the S3 bucket.
Use the Elasticsearch Scroll API to export data. This API is useful for retrieving large amounts of data efficiently. Write a script (e.g., in Python) that connects to your Elasticsearch cluster, initiates a scroll request, and iterates through the data. Save the retrieved data in JSON format.
Once you have exported the data from Elasticsearch, perform any necessary data transformations locally. This can involve converting JSON data into a CSV or another format that might be more suitable for your analysis or storage needs in S3.
With the data transformed, the next step is to upload it to your S3 bucket. Use the AWS SDK for Python (Boto3) to programmatically upload the files. Ensure that the files are stored in the desired structure within the bucket (e.g., organizing by date or data type).
Create an AWS Glue Crawler to catalog the data in S3. The crawler will automatically create or update tables in the AWS Glue Data Catalog. This step is critical for later querying the data using AWS services like Athena. Configure the crawler to point to the S3 path where the data is stored.
Execute the AWS Glue Crawler to populate the Data Catalog with metadata about the data stored in S3. This process will allow you to query the data using services like Amazon Athena without having to manually define the schema.
Finally, use Amazon Athena to query the data. Athena allows you to run SQL queries directly against data stored in S3 using the metadata provided by the Glue Data Catalog. This step enables easy analysis and utilization of the data without needing to set up a database server.
By following these steps, you can efficiently move data from Elasticsearch to S3 using AWS Glue, without relying on third-party connectors or integrations.