Re: Windows post.jar Can't unambiguously select between fixed arity signatures

2016-01-26 Thread Erik Hatcher
I haven't seen this error before but there is some crazy JavaScript in the example/files update processing. If you're indexing CSV where each row is a separate document, example/files may not be the config you want to start with anyway. Try creating your collection without that -d. Oh, I

Re: Query results change

2016-01-26 Thread Toke Eskildsen
On Mon, 2016-01-25 at 20:38 -0700, Shawn Heisey wrote: > Very likely what's happening is that sometimes your shards are > responding on a different timescale with each request, so the pieces > that get combined into the final result set arrive in a different > order. This causes the Java object

Windows post.jar Can't unambiguously select between fixed arity signatures

2016-01-26 Thread Netz, Steffen
Hi, I'm just downloaded solr and playing around. So far I started the Server and created a core: bin\solr start bin\solr create -c files -d example\files\conf now, I'm trying to post some files: java -Dauto -Dc=files -jar example\exampledocs\post.jar example\exampledocs\books.csv and get the

Re: Accessing Index Modification Information

2016-01-26 Thread Björn Keil
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Am 25.01.2016 um 16:25 schrieb Shawn Heisey: > On 1/25/2016 7:05 AM, Björn Keil wrote: >> I am using Solr 5.1 (within a Tomcat6 server) and am trying to find out how get information from a Solr server about the exact time of the last commit and

Re: Solr QTime explanation

2016-01-26 Thread Damien Picard
Thank you, you are right ! It seems to be a congestion from our test tool. Regards, 2016-01-19 18:46 GMT+01:00 Toke Eskildsen : > Damien Picard wrote: > > Currently we have 4 Solr nodes, with 12Gb memory (heap) ; the collections > > are

Re: unmerged index segments

2016-01-26 Thread James Mason
Hi Jack, Sorry, I should have put them on my original message. All merge policy settings are at their default except mergeFactor, which I now notice is quite high at 45. Unfortunately I don’t have the full history to see when this setting was changed, but I do know they haven’t been changed

Re: Windows post.jar Can't unambiguously select between fixed arity signatures

2016-01-26 Thread Erik Hatcher
Steffan - I added a note to fix this in this JIRA ticket - https://issues.apache.org/jira/browse/SOLR-8590 Some options for you, don’t use -d example/files (you can actually omit the “\conf” part of that parameter, nicely!) for books.csv.

AW: Windows post.jar Can't unambiguously select between fixed arity signatures

2016-01-26 Thread Netz, Steffen
Hi thanks so much, It works now, without -d switch! 2 related beginner questions: Is there a good tutorial for filesystem search ( with howto config-files)? Is there a search in the mailing list, I don't find it. Wow, I just looked at the webinar! Great! I've to learn:) regards

Re: unmerged index segments

2016-01-26 Thread Jack Krupansky
Sorry I don't have any specific guidance since the results are so unpredictable. But a much lower mergeFactor should result in more frequent merges, which should reduce segment count but may slow indexing down. If you make the change and then add enough documents to exceed the segment size limit

migrating solr 4.2.1 to 5.X

2016-01-26 Thread Midas A
I want migrate from solr 4.2.1 to 5.X version hten my question is - can i use same snapshot of 4.2.1 in 5.x.x Actually Indexing will take long time in my case then it would be possible to do or we should not do this. next similar question is - can we replicate 4.2.1 master to slave 5.x.x solr

Determine if Merge is triggered in SOLR

2016-01-26 Thread abhi Abhishek
Hi All, is there a way in SOLR to determine if a merge has been triggered in SOLR? is there a API exposed to query this? if its not available is there a way to do the same using lucene jar files available in the SOLR libs? Appreciate your help. Best Regards, Abhishek

Re: How to use DocValues with TextField

2016-01-26 Thread Harry Yoo
Hi, I actually needed this functionality for a long time and I made up an extended data type to work around. In my use case, I need a case-insensitive search for a relatively short string and at the same time, I need faceting on the original string. For example, “Human, Home sapiens’ is an

Re: indexing rich data with solr 5.3.1 integreting in Ubuntu server

2016-01-26 Thread kostali hassan
they are loaded because solr is indexing .doc and .docx (msword) and fail for pdf files . 2016-01-26 12:49 GMT+00:00 Emir Arnautovic : > Hi, > I would first check if external libraries are present and loaded. How do > you start Solr? Try explicitly setting

Re: How to use DocValues with TextField

2016-01-26 Thread Erick Erickson
DocValues was designed to support unanalyzed types originally. I don't know that code, but given my respect for the people who wrote I'd be amazed if there weren't very good reasons this is true. I suspect your work-around is going to be "surprising". And have you tested your change at scale? I

Re: migrating solr 4.2.1 to 5.X

2016-01-26 Thread Erick Erickson
Yes and Yes. The developers try very hard to make Solr one major release backwards compatible. So 5x should be able to read 4x just fine. Nothing has really changed in replication, so 5x supports master/slave. It's just becoming less popular as SolrCloud is significantly easier to operationalize.

performance effect a thread doing an update has on other search threads

2016-01-26 Thread derekallwardt
We have an application (backed by Solr 5.x) that does a lot of updates interleaved with queries. For the sake of better understanding the performance effect that the ratio of updates to queries has on query performance, we tested the following two scenarios. scenario 1: 10 threads doing updates

Re: Solr partial date range search

2016-01-26 Thread vsriram30
Thanks Shawn for providing more info. The looks like for supporting partial date range search, I would need to rely on String regex search like fieldName:2016-01* Though this can support part of the functionality, but if I would like to search between start and end date, this might not come good,

Re: Solr partial date range search

2016-01-26 Thread vsriram30
Probably, I should not have mentioned, it cannot be achieved, as still we can achieve that by using multiple OR queries with regex matching on that String field, though it doesn't look good :-) -Sriram -- View this message in context:

Re: SolrCloud replicas out of sync

2016-01-26 Thread Jeff Wartes
My understanding is that the "version" represents the timestamp the searcher was opened, so it doesn’t really offer any assurances about your data. Although you could probably bounce a node and get your document counts back in sync (by provoking a check), it’s interesting that you’re in this

Re: Windows post.jar Can't unambiguously select between fixed arity signatures

2016-01-26 Thread Erik Hatcher
> On Jan 26, 2016, at 10:25 AM, Netz, Steffen > wrote: > 2 related beginner questions: > Is there a good tutorial for filesystem search ( with howto > config-files)? I’d humbly like to submit that example/files is this. It’s a work in progress, with

Re: SolrCloud replicas out of sync

2016-01-26 Thread David Smith
Thanks Jeff! A few comments >> >> Although you could probably bounce a node and get your document counts back >> in sync (by provoking a check) >> If the check is a simple doc count, that will not work. We have found that replica1 and replica3, although they contain the same doc count,

Re: Solr partial date range search

2016-01-26 Thread Erick Erickson
You do not have to upgrade or use strings to support this use-case, just specify the full date format. i.e. instead of this: 2016-01-10 TO 2016-01-21 use this: 2016-01-10T00:00:00Z TO 2016-01-21T00:00:00Z Your performance will be much worse with string types and regexes than either tdate or

Re: performance effect a thread doing an update has on other search threads

2016-01-26 Thread Erick Erickson
Because the second form is opening searchers, invalidating caches and doing warmup queries twice as often would be my guess. But this is an invalid test in my opinion. I'm reading this that you're issuing the soft commits from the clients. This is definitely an anti-pattern, I _strongly_

Re: SolrCloud replicas out of sync

2016-01-26 Thread Jeff Wartes
Ah, perhaps you fell into something like this then? https://issues.apache.org/jira/browse/SOLR-7844 That says it’s fixed in 5.4, but that would be an example of a split-brain type incident, where different documents were accepted by different replicas who each thought they were the leader. If

Re: Solr partial date range search

2016-01-26 Thread vsriram30
Yes Eric. I am using that full date form based date range query till now and we have a requirement change to search based on partial date ranges. Hence was looking at these options. Kind Regards, -Sriram -- View this message in context:

Re: Solr partial date range search

2016-01-26 Thread Erick Erickson
Still, I have to ask why bother? Presumably you have some kind of front-end that takes the dates. Simply have that form the proper full date specification. Or create a query component that intercepts the query on the Solr side and massages it enough to form the full date. Or Using strings

Re: indexing rich data with solr 5.3.1 integreting in Ubuntu server

2016-01-26 Thread Emir Arnautovic
Hi, I would first check if external libraries are present and loaded. How do you start Solr? Try explicitly setting solr.install.dir or set absolute path to libs and see in logs if they are loaded. Thanks, Emir On 25.01.2016 15:16, kostali hassan wrote: 0down votefavorite

Re: To Detect Wheter Core is Available To Post

2016-01-26 Thread Emir Arnautovic
s the best way for this requirment. We want to consult your opinions. Thank you. Regards, Edwin Lee 20160126 -- Monitoring * Alerting * Anomaly Detection * Centralized Log Management Solr & Elasticsearch Support * http://sematext.com/