"Moving data from Elastic Search to SQL Server"

I have found several SQL Relational Db solutions for moving data from a relational Db to Elastic Search. Is there a way to export data from Elastic Search to a relational Db such as SQL Server?

You can read data from elasticsearch using the logstash elasticsearch input plugin.

As for writing to the database, I don't think there's a direct way for this. I have seen this plugin but I think it's not actively maintained:

You can write to another system though like Kafka and may be find another way from there.

You can also write your own program and use the scroll API then send each document to the database with your own code.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.