Hi, I need to do a complete export of a Solr index in a specific order, sorted on a specific (non-unique) field. Is this possible?
I've tried different approaches: Using /export request handler, I got " class java.util.LinkedHashMap cannot be cast to class org.apache.solr.common.util.NamedList (java.util.LinkedHashMap" in BinaryResponseParser. processResponse. So, I tried a cursor-based approach, sorting on two fields, the non-unique one which I want to have the result sorted on, plus the unique id field. However, the sorting is done on the result of each query, not on the complete data set. My current conclusion is that fetching all the data in a Solr index, in sorted order, is not possible. Am I right?