Class SolrStream
- java.lang.Object
-
- org.apache.solr.client.solrj.io.stream.TupleStream
-
- org.apache.solr.client.solrj.io.stream.SolrStream
-
- All Implemented Interfaces:
Closeable,Serializable,AutoCloseable,MapSerializable,MapWriter,NavigableObject
public class SolrStream extends TupleStream
Queries a single Solr instance and maps SolrDocs to a Stream of Tuples.- Since:
- 5.1.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSolrStream.HandledException-
Nested classes/interfaces inherited from class org.apache.solr.client.solrj.io.stream.TupleStream
TupleStream.IgnoreException
-
Nested classes/interfaces inherited from interface org.apache.solr.common.MapWriter
MapWriter.EntryWriter
-
-
Constructor Summary
Constructors Constructor Description SolrStream(String baseUrl, SolrParams params)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<TupleStream>children()voidclose()Closes the Stream to a single Solr InstanceTupleStreamParserconstructParser(SolrClient server, SolrParams requestParams)StringgetBaseUrl()StreamComparatorgetStreamSort()There is no known sort applied to a SolrStreamvoidopen()Opens the stream to a single Solr instance.Tupleread()Reads a Tuple from the stream.voidsetCheckpoint(long checkpoint)voidsetFieldMappings(Map<String,String> fieldMappings)voidsetSlice(String slice)voidsetStreamContext(StreamContext context)voidsetTrace(boolean trace)Setting trace to true will include the "_CORE_" field in each Tuple emitted by the stream.ExplanationtoExplanation(StreamFactory factory)-
Methods inherited from class org.apache.solr.client.solrj.io.stream.TupleStream
getCost, getShards, getStreamNodeId, writeMap
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.solr.common.NavigableObject
_forEachEntry, _forEachEntry, _forEachEntry, _get, _get, _getStr, _getStr
-
-
-
-
Constructor Detail
-
SolrStream
public SolrStream(String baseUrl, SolrParams params)
- Parameters:
baseUrl- Base URL of the stream.params- Map<String, String> of parameters
-
-
Method Detail
-
children
public List<TupleStream> children()
- Specified by:
childrenin classTupleStream
-
getBaseUrl
public String getBaseUrl()
-
setStreamContext
public void setStreamContext(StreamContext context)
- Specified by:
setStreamContextin classTupleStream
-
open
public void open() throws IOExceptionOpens the stream to a single Solr instance.- Specified by:
openin classTupleStream- Throws:
IOException
-
setTrace
public void setTrace(boolean trace)
Setting trace to true will include the "_CORE_" field in each Tuple emitted by the stream.
-
setSlice
public void setSlice(String slice)
-
setCheckpoint
public void setCheckpoint(long checkpoint)
-
toExplanation
public Explanation toExplanation(StreamFactory factory) throws IOException
- Specified by:
toExplanationin classTupleStream- Throws:
IOException
-
close
public void close() throws IOExceptionCloses the Stream to a single Solr Instance- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein classTupleStream- Throws:
IOException
-
read
public Tuple read() throws IOException
Reads a Tuple from the stream. The Stream is completed when Tuple.EOF == true.- Specified by:
readin classTupleStream- Throws:
IOException
-
getStreamSort
public StreamComparator getStreamSort()
There is no known sort applied to a SolrStream- Specified by:
getStreamSortin classTupleStream
-
constructParser
public TupleStreamParser constructParser(SolrClient server, SolrParams requestParams) throws IOException, SolrServerException
- Throws:
IOExceptionSolrServerException
-
-