http://damienbod.com/2014/09/22/elasticsearch-crud-net-provider/
Prerequisites / What I can do:
I have installed my node locally, using NEST and ElasticSearch.NET libraries (or a raw CURL command via Sense) I have created several documents in an appropriate index. I can retrieve the documents via the same libraries' "Search" method, or via Sense command.
What I'm looking for / What I don't 'want' to do:
I am now looking for a more "automated" way to synchronize data between SQL Server and ElasticSearch as the above approach seems tedious to manipulate into near real-time updates.
In the perfect world there would be a program that would ask me to specify the name of an index / type, which tables and columns (from SQL Server) would comprise the document and the frequency with which this program would run (to update add/update/delete) data.
Does such a piece of software exist?
If not, what are some examples of how others approach near real-time data consistency between these two product suites?