Reputation: 31511
Our Solr application adds about 1 GiB of data to the Solr index daily. The application only accesses the last N days' data, however all the data must be saved for future features. To save space on the main server (expensive) I would like to export the data and save it on local storage (cheap). MySQL has the wonderful mysqldump
feature which makes the data easy to export and import as per need. Does Solr have a similar feature that can be activated without shutting down the Solr application?
The specific critical features that I am interested in:
Works while Solr is running, no downtime.
Export subset of data, such as datetime:[1356220800 TO 1356393600]
Import the data
The specific non-critical features that I am interested in:
Ability to search the exported data to find a subset to insert (using either common GNU tools such as grep
or a small standalone tool.
Intrinsic data compression.
Upvotes: 0
Views: 289
Reputation: 52799
You can check upon :-
In Addition
Upvotes: 3