Re: UN-SUBSCRIBE ME PLEASE - 2ND REQUEST...

2018-06-01 Thread Torsten Krah
http://lmgtfy.com/?q=solr-user+unsubscribe schrieb am Fr., 1. Juni 2018, 18:11: > > THIS IS MY 2ND REQUEST - PLEASE UNSUBSCRIBE ME > >

solr.TrieDoubleField deprecated with 7.1.0 but wildcard "*" search behaviour is different with solr.DoublePointField

2017-12-11 Thread Torsten Krah
Hi, some question about the new DoublePointField which should be used instead of the TrieDoubleField in 7.1. https://lucene.apache.org/solr/guide/7_1/field-types-included-with-solr.html If i am using the deprecated one its possible to get a match for a double field like this: test_d:* even in

Re: IndexWrite in Lucene/Solr 3.5 is slower?

2012-06-19 Thread Torsten Krah
May be related to https://issues.apache.org/jira/browse/LUCENE-3418 which does ensure things are really written; if you do commit very often, you may see this sort of performance loss (at least me did in my junit test where i do commit very often and 3.3 switch to 3.4 really hurts here at test time

Re: StreamingUpdateSolrServer Connection Timeout Setting

2012-06-18 Thread Torsten Krah
You should also call the glue code ;-): Protocol.registerProtocol("http", http); regards Torsten smime.p7s Description: S/MIME cryptographic signature

Re: StreamingUpdateSolrServer Connection Timeout Setting

2012-06-18 Thread Torsten Krah
AddOn: You can even set a custom http factory for commons-http (which is used by SolrStreamingUpdateServer) at all to influence socket options, example is: final Protocol http = new Protocol("http", MycustomHttpSocketFactory.getSocketFactory(), 80); and MycustomHttpSocketFactory.getSocketFactory

Re: StreamingUpdateSolrServer Connection Timeout Setting

2012-06-18 Thread Torsten Krah
Am Freitag, den 15.06.2012, 18:22 +0100 schrieb Kissue Kissue: > Hi, > > Does anybody know what the default connection timeout setting is for > StreamingUpdateSolrServer? Can i explicitly set one and how? > > Thanks. Use a custom HttpClient to set one (only snippets, should be clear, if not tel

RE: customizing standard tokenizer

2012-02-20 Thread Torsten Krah
Thx, will use the custom tokenizer. Its less error prone than the "workarounds" mentioned. smime.p7s Description: S/MIME cryptographic signature

customizing standard tokenizer

2012-02-17 Thread Torsten Krah
Hi, is it possible to extend the standard tokenizer or use a custom one (possible via extending the standard one) to add some "custom" tokens like Lucene-Core to be "one" token. regards smime.p7s Description: S/MIME cryptographic signature

Re: correct usage of StreamingUpdateSolrServer?

2012-02-13 Thread Torsten Krah
Whats the output of jstack $PID ? If the program does not exit, there must be some non-daemon threads still running. smime.p7s Description: S/MIME cryptographic signature

Re: Commit call - ReadTimeoutException -> usage scenario for big update requests and the ioexception case

2012-02-07 Thread Torsten Krah
y possibility to rollback things, that why i want to explicitly call commit here. Going forward, this is fixed in trunk by the DocumentWriterPerThread improvements. Will this be backported to upcoming 3.6? Best Erick On Mon, Feb 6, 2012 at 11:09 AM, Torsten Krah wrote: Hi, i wonder if it i

Commit call - ReadTimeoutException -> usage scenario for big update requests and the ioexception case

2012-02-06 Thread Torsten Krah
Hi, i wonder if it is possible to commit data to solr without having to catch SockedReadTimeout Exceptions. I am calling commit(false, false) using a streaming server instance - but i still have to wait > 30 seconds and catch the timeout from http method. I does not matter if its 30 or 60, it wil

Re: doing snapshot after optimize - rotation parameter?

2012-01-06 Thread Torsten Krah
To answer myself after looking at the code: public static final String NUMBER_BACKUPS_TO_KEEP = "numberToKeep"; So 7 should do it :-). regards smime.p7s Description: S/MIME cryptographic signature

Re: doing snapshot after optimize - rotation parameter?

2012-01-05 Thread Torsten Krah
ache.org/jira/browse/SOLR-617 it sounds like different use case. Are there really meant to be used for rotation the snapshot directories, reading the comments it does not sound to be what i am looking for, am i right? regards Torsten > > Best > Erick > > On Tue, Jan 3, 2

doing snapshot after optimize - rotation parameter?

2012-01-03 Thread Torsten Krah
Hi, i am taking snapshots of my master index after optimize calls (run each day once), to get a clean backup of the index. Is there a parameter to tell the replication handler how many snapshots to keep and the rest should be deleted? Or must i use a custom script via cron? regards Torsten smi

snaptshot rotation - replication handler argument available?

2011-12-09 Thread Torsten Krah
Configured my replication handler on the master with this option: optimize I am running an optimize call on a regular basis (e.g. every week or every day, not the question here) and a snapshot is created. I am wonder where the option ist, to specify how much snapshots should be kept? Index is ve

Re: Question about optimize call - Request read Timeout

2011-12-05 Thread Torsten Krah
Am Montag, den 05.12.2011, 08:11 -0500 schrieb Erick Erickson: > You can try bumping up the timeouts in your SolrJ program, the > SolrServer has a bunch of timeout options. > > You can pretty easily tell if the optimize has carried through > anyway, your index files should have been reduced > subs

Question about optimize call - Request read Timeout

2011-12-02 Thread Torsten Krah
Hi, got a question about index optimizing. At midnight i am calling optimize(true, true) on my SolrServer instance. However this does fail with: org.apache.solr.client.solrj.SolrServerException: java.net.SocketTimeoutException: Read timed out at org.apache.solr.client.solrj.impl.CommonsHt

Re: solr - http error 404 when requesting solrconfig.xml or schema.xml

2011-11-29 Thread Torsten Krah
To answer myself (sorry for the noise) - removed accidentally the admin handler section (only ping was there) and thats causing the issue, after fixing this error, all is fine again. Torsten smime.p7s Description: S/MIME cryptographic signature

Re: IllegalStateException, response already committed - replication related

2011-11-29 Thread Torsten Krah
Anyone an idea? regards smime.p7s Description: S/MIME cryptographic signature

solr - http error 404 when requesting solrconfig.xml or schema.xml

2011-11-29 Thread Torsten Krah
Hi, got some interesting problem and don't know how to debug further. I am using an external solr home configured via jndi. Deployed my war file (context is /apps/solrslave/) and if want to look at the schema: /apps/solrslave/admin/file/?contentType=text/xml;charset=utf-8&file=schema.xml the res

Re: Too many values for UnInvertedField faceting on field autocompleteField

2011-10-28 Thread Torsten Krah
Am Mittwoch, den 26.10.2011, 08:02 -0400 schrieb Yonik Seeley: > You can also try adding facet.method=enum directly to your request Added query.set("facet.method", "enum"); to my solr query at code level and now it works. Don't know why the handler stuff gets ignored or overriden, but its

Too many values for UnInvertedField faceting on field autocompleteField

2011-10-26 Thread Torsten Krah
I am getting this SolrException "Too many values for UnInvertedField faceting on field autocompleteField". Already added facet.method=enum to my search handler definition but still this exception does happen. Any known fix or workaround whan i can do to get a result? regards Torsten smime.p7s

IllegalStateException, response already committed - replication related

2011-10-06 Thread Torsten Krah
Sometimes i am seing this in the logs - but i can not tell whats causing it or if something may be broken, anyone got an idea how to find the cause or whats going wrong: 2011-10-06 14:19:00.333:WARN:oejs.Response:Committed before 500 org.eclipse.jetty.io.EofException 2011-10-06 14:19:00.334:WARN:o