RE: Any experience with adding documents batch sizes?

2013-03-26 Thread Benjamin, Roy
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

Any experience with adding documents batch sizes?

2013-03-25 Thread Benjamin, Roy
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

Timeout occured while waiting response from server

2013-03-21 Thread Benjamin, Roy
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

RE: Can I change to MULTIVALUED=true without rebuilding index?

2013-03-06 Thread Benjamin, Roy
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

How heavy is HttpSolrServer

2013-01-03 Thread Benjamin, Roy
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

RE: Upgrading from 3.6 to 4.0

2013-01-02 Thread Benjamin, Roy
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 >

Upgrading from 3.6 to 4.0

2013-01-02 Thread Benjamin, Roy
Will the existing 3.6 indexes work with 4.0 binary ? Will 3.6 solrJ clients work with 4.0 servers ? Thanks Roy

Questions about HttpSolrServer

2012-10-23 Thread Benjamin, Roy
Assuming one has hundreds of Solr nodes should an indexing application pool HttpSolrServer instances ala a connection pool ? Thanks Roy Solr 3.6

How to run Solr Cloud using Tomcat?

2012-09-27 Thread Benjamin, Roy
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