Bulk insert of tables

how to import a complete database into elasticsearch at once?

Technically a bunch of jdbc inputs would do it, but it's probably not what you want to do. In relational databases normalization is key and joins are necessary but in Elasticsearch data is typically stored denormalized since joins are not available. Hence, you have to store data differently and a bulk-import of tables is probably not the right solution.

2 Likes

can i make elastic search as a primary data storage like rdbms?

Elasticsearch can be a primary data store, yes. Whether it's a good idea in your case is harder to answer.

1 Like

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