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
,org.apache.solr.common.MapSerializable
,org.apache.solr.common.MapWriter
,org.apache.solr.common.NavigableObject
,org.noggit.JSONWriter.Writable
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 class
SolrStream.HandledException
-
Nested classes/interfaces inherited from class org.apache.solr.client.solrj.io.stream.TupleStream
TupleStream.IgnoreException
-
-
Constructor Summary
Constructors Constructor Description SolrStream(String baseUrl, org.apache.solr.common.params.SolrParams params)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<TupleStream>
children()
void
close()
Closes the Stream to a single Solr InstanceString
getBaseUrl()
boolean
getDistrib()
StreamComparator
getStreamSort()
There is no known sort applied to a SolrStreamvoid
open()
Opens the stream to a single Solr instance.Tuple
read()
Reads a Tuple from the stream.void
setCheckpoint(long checkpoint)
void
setCredentials(String user, String password)
void
setDistrib(boolean distrib)
void
setFieldMappings(Map<String,String> fieldMappings)
void
setSlice(String slice)
void
setStreamContext(StreamContext context)
void
setTrace(boolean trace)
Setting trace to true will include the "_CORE_" field in each Tuple emitted by the stream.Explanation
toExplanation(StreamFactory factory)
-
Methods inherited from class org.apache.solr.client.solrj.io.stream.TupleStream
getCost, getShards, getShards, getStreamNodeId, writeMap
-
-
-
-
Constructor Detail
-
SolrStream
public SolrStream(String baseUrl, org.apache.solr.common.params.SolrParams params)
- Parameters:
baseUrl
- Base URL of the stream.params
- Map<String, String> of parameters
-
-
Method Detail
-
children
public List<TupleStream> children()
- Specified by:
children
in classTupleStream
-
getBaseUrl
public String getBaseUrl()
-
setStreamContext
public void setStreamContext(StreamContext context)
- Specified by:
setStreamContext
in classTupleStream
-
open
public void open() throws IOException
Opens the stream to a single Solr instance.- Specified by:
open
in 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:
toExplanation
in classTupleStream
- Throws:
IOException
-
close
public void close() throws IOException
Closes the Stream to a single Solr Instance- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in 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:
read
in classTupleStream
- Throws:
IOException
-
setDistrib
public void setDistrib(boolean distrib)
-
getDistrib
public boolean getDistrib()
-
getStreamSort
public StreamComparator getStreamSort()
There is no known sort applied to a SolrStream- Specified by:
getStreamSort
in classTupleStream
-
-