solrj/impl/StreamingUpdateSolrServer.html
Otis
--
Solr & ElasticSearch Support
http://sematext.com/
On Mon, Mar 25, 2013 at 7:06 PM, Benjamin, Roy wrote:
> My application is update intensive. The documents are pretty small,
> less than 1K bytes.
>
> Just now I'm batching 4K do
My application is update intensive. The documents are pretty small, less than
1K bytes.
Just now I'm batching 4K documents with each SolrJ addDocs() call.
Wondering what I should expect with increasing this batch size? Say 8K docs
per update?
Thanks
Roy
Solr 3.6
I'm calling: m_server.add(docs, 12);
Wondering if the timeout that expires was the one set when the server was
created?
m_server = new HttpSolrServer(serverUrl);
m_server.setRequestWriter(new BinaryRequestWriter());
m_server.setConnectionTimeout(3);
m_server.setSoTimeout(1);
Als
Thanks!
I was hoping that was true.
Roy
-Original Message-
From: Chris Hostetter [mailto:hossman_luc...@fucit.org]
Sent: Wednesday, March 06, 2013 4:54 PM
To: solr-user@lucene.apache.org
Subject: Re: Can I change to MULTIVALUED=true without rebuilding index?
: Subject: Can I change to M
I currently create a new instance of HttpSolrServer for each update. It's
convenient when sharding
over a hundred shards in a heavily threaded updating client. How heavy is this
class? Would
it really be worth using a pool (map of pools really) to hold on to previously
created instances?
Tha
he.org/lucene-java/BackwardsCompatibility
You should not use a a 3.6 SolrJ client with Solr 4 server.
Tomás
On Wed, Jan 2, 2013 at 3:04 PM, Benjamin, Roy wrote:
> Will the existing 3.6 indexes work with 4.0 binary ?
>
> Will 3.6 solrJ clients work with 4.0 servers ?
>
>
> Thanks
> Roy
>
Will the existing 3.6 indexes work with 4.0 binary ?
Will 3.6 solrJ clients work with 4.0 servers ?
Thanks
Roy
Assuming one has hundreds of Solr nodes should an indexing application pool
HttpSolrServer instances ala a connection pool ?
Thanks
Roy
Solr 3.6
I've gone through the guide on running Solr Cloud using Jetty but it's not
practical to use JAVA_OPTS etc on real cloud deployments. I don't see how
to extend these instructions to running on Tomcat.
Has anyone run Solr Cloud under Tomcat successfully? Did they document how?
Thanks
Roy