What are the options to index large data from Oracle DB to elastic search cluster? Requirement is to index 300Million records one time into multiple indexes and also incremental updates having around approximate 1 Million changes every day.
I have tried JDBC plugin for elasticsearch river/feeder, both seems to be running inside or require locally running elastic search instance. Please let me know if there is any better option for running elastic search indexer as a standalone job (probably java based). Any suggestions will be very helpful. Thanks.
We use ES as a reporting db and when new records are written to SQL we take the following action to get them into ES:
This process works great because it handles both new data and old data. For old data just write a quick script to write 300M primary keys into rabbit and you're done!