Is it possible to index documents without storing their content?

2018-05-22 Thread Thomas Lustig
dear community, Is it possible to index documents (e.g. pdf, word,...) for fulltextsearch without storing their content(payload) inside Solr server? Thanking you in advance for your help BR Tom

Re: deletebyQuery vs deletebyId

2018-05-22 Thread Shawn Heisey
On 5/22/2018 6:35 PM, Jay Potharaju wrote: I have a quick question about deletebyQuery vs deleteById. When using deleteByQuery, if query is id:123 is that same as deleteById in terms of performance. If there is absolutely nothing else happening to update the index, the difference between the

deletebyQuery vs deletebyId

2018-05-22 Thread Jay Potharaju
Hi, I have a quick question about deletebyQuery vs deleteById. When using deleteByQuery, if query is id:123 is that same as deleteById in terms of performance. Thanks Jay

Re: Zookeeper 3.4.12 with Solr 6.6.2?

2018-05-22 Thread Tim Casey
We have 3.4.10 and have *tested* at a functional level 6.6.2. So far it works. We have not done any stress/load testing. But would have to do this prior to release. On Tue, May 22, 2018 at 9:44 AM, Walter Underwood wrote: > Is anybody running Zookeeper 3.4.12 with Solr

Re: Atomic update error with JSON handler

2018-05-22 Thread Nándor Mátravölgyi
Hi, Firstly, I have already tried the request body enclosed in [...] without success. Turns out it was not the only issue. The path was not right for the atomic updates: On the v2 API: localhost:8983/v2/c/testnode/update/json/commands?commit=true Succeeds

Zookeeper 3.4.12 with Solr 6.6.2?

2018-05-22 Thread Walter Underwood
Is anybody running Zookeeper 3.4.12 with Solr 6.6.2? Is that a recommended combination? Not recommended? wunder Walter Underwood wun...@wunderwood.org http://observer.wunderwood.org/ (my blog)

Solr Dates TimeZone

2018-05-22 Thread LOPEZ-CORTES Mariano-ext
Hi It's possible to configure Solr with a timezone other than GMT? It's possible to configure Solr Admin to view dates with a timezone other than GMT? What is the best way to store a birth date in Solr? We use TrieDate type. Thanks!

Re: How to maintain fast query speed during heavy indexing?

2018-05-22 Thread Erick Erickson
There are two issues: 1> autowarming on the replicas 2> Until https://issues.apache.org/jira/browse/SOLR-11982 (Solr 7.4, unreleased), requests would go to the leaders along with the PULL and TLOG replicas. Since the leaders were busily indexing, the entire query would suffer speed-wise. So

Re: Index filename while indexing JSON file

2018-05-22 Thread Bernd Fehling
I don't know if DIH can solve your problem but I would go for a simple self programmed ETL in JAVA and use SolrJ for loading. Best regards, Bernd Am 18.05.2018 um 21:47 schrieb S.Ashwath: Hello, I have 2 directories: 1 with txt files and the other with corresponding JSON (metadata) files

Re: Atomic update error with JSON handler

2018-05-22 Thread Yasufumi Mizoguchi
Hi, At least, it is better to enclose your json body with '[ ]', I think. Following is the result I tried using curl. $ curl -XPOST "localhost:8983/solr/test_core/update/json?commit=true" --data-binary '{"id":"test1","title":{"set":"Solr Rocks"}}' { "responseHeader":{ "status":400,