Hi All,

I have an export handler defined as the following:

<requestHandler name="/export" class="solr.SearchHandler">
  <lst name="invariants">
    <str name="rq">{!xport}</str>
    <str name="wt">xsort</str>
    <str name="distrib">false</str>
  </lst>
  <arr name="components">
    <str>query</str>
  </arr>
</requestHandler>

I am then attempting to utilise stream and response from a SolrCloudServer
as.

server.queryAndStreamResponse(query,callback)

And i am receiving an error regarding the output received by the query
being in json, where the stream would have been possible with octet-stream
(for serialisation purposes).

Is there any way I can alter my export handler to handle this? Can I alter
wt to be something that can be parsed by the StreamingBinaryResponseParser?

Thanks in advance,

Keech

Reply via email to