public class CloudSolrStream extends TupleStream implements Expressible
Modifier and Type | Class and Description |
---|---|
protected class |
CloudSolrStream.StreamOpener |
protected class |
CloudSolrStream.TupleWrapper |
Modifier and Type | Field and Description |
---|---|
protected CloudSolrClient |
cloudSolrClient |
protected String |
collection |
protected StreamComparator |
comp |
protected Map<String,Tuple> |
eofTuples |
protected SolrParams |
params |
protected List<TupleStream> |
solrStreams |
protected StreamContext |
streamContext |
protected TreeSet<CloudSolrStream.TupleWrapper> |
tuples |
protected String |
zkHost |
Modifier | Constructor and Description |
---|---|
protected |
CloudSolrStream() |
|
CloudSolrStream(StreamExpression expression,
StreamFactory factory) |
|
CloudSolrStream(String zkHost,
String collectionName,
Map params)
Deprecated.
Use the constructor that has a SolrParams obj rather than a Map
|
|
CloudSolrStream(String zkHost,
String collectionName,
SolrParams params) |
Modifier and Type | Method and Description |
---|---|
protected Tuple |
_read() |
List<TupleStream> |
children() |
void |
close()
Closes the CloudSolrStream
|
protected void |
constructStreams() |
Map |
getEofTuples() |
StreamComparator |
getStreamSort()
Return the stream sort - ie, the order in which records are returned
|
void |
open()
Opens the CloudSolrStream
|
Tuple |
read() |
void |
setFieldMappings(Map<String,String> fieldMappings) |
void |
setStreamContext(StreamContext context) |
void |
setTrace(boolean trace) |
Explanation |
toExplanation(StreamFactory factory)
Returns an explanation about the stream object
|
StreamExpression |
toExpression(StreamFactory factory) |
getCost, getStreamNodeId, writeStreamClose, writeStreamOpen
protected String zkHost
protected String collection
protected SolrParams params
protected StreamComparator comp
protected transient CloudSolrClient cloudSolrClient
protected transient List<TupleStream> solrStreams
protected transient TreeSet<CloudSolrStream.TupleWrapper> tuples
protected transient StreamContext streamContext
protected CloudSolrStream()
@Deprecated public CloudSolrStream(String zkHost, String collectionName, Map params) throws IOException
zkHost
- Zookeeper ensemble connection stringcollectionName
- Name of the collection to operate onparams
- Map<String, String> of parameter/value pairsIOException
- Something went wrong
This form does not allow specifying multiple clauses, say "fq" clauses, use the form that takes a SolrParams. Transition code can call the preferred method that takes SolrParams by calling CloudSolrStream(zkHost, collectionName, new ModifiableSolrParams(SolrParams.toMultiMap(new NamedList(Map<String, String>)));
public CloudSolrStream(String zkHost, String collectionName, SolrParams params) throws IOException
zkHost
- Zookeeper ensemble connection stringcollectionName
- Name of the collection to operate onparams
- Map<String, String[]> of parameter/value pairsIOException
- Something went wrongpublic CloudSolrStream(StreamExpression expression, StreamFactory factory) throws IOException
IOException
public StreamExpression toExpression(StreamFactory factory) throws IOException
toExpression
in interface Expressible
IOException
public Explanation toExplanation(StreamFactory factory) throws IOException
Expressible
toExplanation
in interface Expressible
toExplanation
in class TupleStream
factory
- Stream factory for this, contains information about the function nameIOException
- throw on any errorpublic void setTrace(boolean trace)
public void setStreamContext(StreamContext context)
setStreamContext
in class TupleStream
public void open() throws IOException
open
in class TupleStream
IOException
public Map getEofTuples()
public List<TupleStream> children()
children
in class TupleStream
protected void constructStreams() throws IOException
IOException
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class TupleStream
IOException
public StreamComparator getStreamSort()
getStreamSort
in class TupleStream
public Tuple read() throws IOException
read
in class TupleStream
IOException
protected Tuple _read() throws IOException
IOException
Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.