Re: No Live SolrServer available to handle this request

2017-12-06 Thread Selvam Raman
Yes. you are right. we are using preanalyzed field and that causing the problem. The actual problem is preanalyzed with highlight option. if i disable highlight option it works fine. Please let me know if there is work around to solve it. On Wed, Dec 6, 2017 at 10:19 PM, Erick Erickson

Antwort: Re: Issue while searching with escape characters

2017-12-06 Thread Jan . Christopher . Schluchtmann-EXT
Hi think, your first line ist correkt for the "value"-field ... what looks your "key"-field like? can you send the whole request, please? something like this should work in my opinion: (...)=%28DVeto1%29&(...) Mit freundlichen Grüßen/ With kind regards Jan Schluchtmann Systems Engineering

Re: Calling rest API from Solr custom tokenizer plugin

2017-12-06 Thread Sreenivas.T
Thanks Doug. Now I think it's better to customize Manifold CF's output connector for Solr. Sreenivas On Thu, Dec 7, 2017 at 10:01 AM Doug Turnbull < dturnb...@opensourceconnections.com> wrote: > A tokenizer plugin is probably not what you want, you probably want > something more like an

Calling rest API from Solr custom tokenizer plugin

2017-12-06 Thread Sreenivas.T
All, I need help from experts. We are trying to build a cognitive search platform with enterprise content from content sources like sharepoint, file share etc.. before content is getting indexed to Solr, I need to call our internal AI platform to get additional metadata like classification tags

Re: Calling rest API from Solr custom tokenizer plugin

2017-12-06 Thread Doug Turnbull
A tokenizer plugin is probably not what you want, you probably want something more like an UpdateProcessor that can manipulate the whole document as it comes into Solr. Or you may want to avoid having a Solr plugin call to an API and do this work outside of Solr (what happens when the API is down,

SolrCloud Windows Service

2017-12-06 Thread Steve Pruitt
Can someone suggest the best method for starting SolrCloud as a Windows Service? I have used nssm prior. It works ok for Solr standalone, but doesn't seem to work correctly for SolrCloud. This could simply be me not configuring the service in nssm. If anyone has a working method, my thanks.

RE: [EXTERNAL] - Re: SolrCloud Windows Service

2017-12-06 Thread Steve Pruitt
If I sign out, I lose my running Solr. I need to start it up and then sign out. Thanks. -S -Original Message- From: Shawn Heisey [mailto:apa...@elyograg.org] Sent: Wednesday, December 06, 2017 12:10 PM To: solr-user@lucene.apache.org Subject: [EXTERNAL] - Re: SolrCloud Windows Service

Collection creation timeout

2017-12-06 Thread Steve Pruitt
I have three SolrCloud nodes. Two are VM's, the other is my machine. I start Solr on each and they report running in SolrCloud mode. I can access each node via the admin console. I have a configset uploaded to my ZK ensemble. I next tried creating a collection via the admin console for my

Slices not found for checkpointCollection

2017-12-06 Thread Mahmoud Almokadem
Hi all, I'm running Solr 7.0.1. When I tried to run TopicStream with the following expression String expression = "topic(checkpointCollection," + "myCollection" + "," + "q=\"*:*\"," + "fl=\"document_id,title,full_text\"," +

Re: Issue while searching with escape characters

2017-12-06 Thread Roopesh Uniyal
Thanks Jan. It must be a late night. Not sure what I was thinking. I provided *%5C%28DVeto1%5C%29* but still not able to get the search results I also have a situation where I have to search something like *(ID#DVeto2)* and I am providing *%5C%28ID%23DVeto2%5C%2*9 and still not able to get the

Issue while searching with escape characters

2017-12-06 Thread Roopesh Uniyal
Hello I am searching Solr 6 via http call by providing a "UserID". Its just that the data is in the format of (DVeto1) So, in my call I have to provide parenthesis but since its a special character I need to provide escape also. Looks like its not working Provided the search string over http

Antwort: Issue while searching with escape characters

2017-12-06 Thread Jan . Christopher . Schluchtmann-EXT
hmm ... it seems, you are using XML/HTML-encoding, but you need HTTP-encoding, which looks like this: ␣ ! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ]

Does apache solr stores the file?

2017-12-06 Thread Munish Kumar Arora
Hi guys, Hope you all are well. I could not find any place to ask my question so I am dropping you guys a mail. If you can help me, that would be great. I am currently working on Apache Solr 7. There is a POC I need to complete as I have less time so putting this question here. I have setup SOLR

Re: Dataimporter status

2017-12-06 Thread Mahmoud Almokadem
Thanks Shawn, I'm already using the admin UI and get URL for fetching the status of dataimporter from network console and tried it outside the admin UI. Admin UI have the same behavior, when I pressed on execute the status messages are swapped between "not started", "started and indexing",

Re: SolrCloud Windows Service

2017-12-06 Thread Shawn Heisey
On 12/6/2017 9:39 AM, Steve Pruitt wrote: > Can someone suggest the best method for starting SolrCloud as a Windows > Service? > > I have used nssm prior. It works ok for Solr standalone, but doesn't seem to > work correctly for SolrCloud. This could simply be me not configuring the > service

Howto search for § character

2017-12-06 Thread Bernd Schmidt
Hi all, we have defined a field named "_text_" for a full text search based on field-type "text_general": " When trying to search for the "§" character, we have strange behaviour: q=_text_:§ AND entityClass:StructureNodeImpl  => numFound:469 (all nodes where  entityClass:StructureNodeImpl)

Re: SOLR-10272

2017-12-06 Thread Chris Ulicny
Thanks Shawn, That's great to hear. I'm glad the overwriting behavior is being reverted. On Wed, Dec 6, 2017 at 10:33 AM Shawn Heisey wrote: > On 12/6/2017 6:43 AM, Chris Ulicny wrote: > > I am curious as to whether overwriting an _existing_ config with the > > "_default"

Solr DR Replication

2017-12-06 Thread Greenhorn Techie
Hi, We are on Solr 5.5.2 and wondering what is the best mechanism for replicating Solr indexes from a Disaster Recovery perspective. As I understand only from Solr6 onwards, we have CDCR. However, I couldn't find much content around index replication management for older versions. Wondering if

Re: SolrIndexSearcher count

2017-12-06 Thread Rick Dig
Hi all Any pointers on this ? Thanks On Dec 5, 2017 22:42, "Rick Dig" wrote: No custom code at all. On Dec 5, 2017 10:31 PM, "Erick Erickson" wrote: > Do you have any custom code in the mix anywhere? > > On Tue, Dec 5, 2017 at 5:02 AM, Rick Dig

RE: [EXTERNAL] - Re: Solr Cloud configuration

2017-12-06 Thread Steve Pruitt
Thanks. I understand. -Original Message- From: Shawn Heisey [mailto:apa...@elyograg.org] Sent: Monday, December 04, 2017 11:58 PM To: solr-user@lucene.apache.org Subject: [EXTERNAL] - Re: Solr Cloud configuration On 12/4/2017 12:11 PM, Steve Pruitt wrote: > Getting my Solr Cloud nodes

Re: No Live SolrServer available to handle this request

2017-12-06 Thread Erick Erickson
This looks like you're using "pre analyzed fields" which have a very specific format. PreAnalyzedFields are actually pretty rarely used, did you enable them by mistake? On Tue, Dec 5, 2017 at 11:37 PM, Selvam Raman wrote: > When i look at the solr logs i find the below

Re: Collection creation timeout

2017-12-06 Thread Shawn Heisey
On 12/6/2017 11:32 AM, Steve Pruitt wrote: > After clicking Add Collection to create it, I get a Solr lost connection > error and the admin console is frozen. Looking at the log I have >o.a.s.s.HttpSolrCall null:org.apache.solr.common.SolrException: create the > collection time out:180s > >

Re: [EXTERNAL] - Re: SolrCloud Windows Service

2017-12-06 Thread Shawn Heisey
On 12/6/2017 11:15 AM, Steve Pruitt wrote: > If I sign out, I lose my running Solr. I need to start it up and then sign > out. If you're starting Solr with NSSM and having that problem, I think that would be something to discuss with the NSSM project.  That behavior sounds like Solr is not

Re: Java profiler?

2017-12-06 Thread Tim Casey
I really like Profiler. It takes a little bit of set up, but it works. tim On Wed, Dec 6, 2017 at 2:04 AM, Peter Sturge wrote: > Hi, > We'be been using JPRofiler (www.ej-technologies.com) for years now. > Without a doubt, the most comprehensive and useful profiler for

Re: Does apache solr stores the file?

2017-12-06 Thread Gora Mohanty
On 6 December 2017 at 10:39, Munish Kumar Arora wrote: > > So the questions are, > 1. Can I get the PDF content? > 2. does Solr stores the actual file somewhere? >a. If it stores then where it does? > b. If it does not store then, is there a way

Re: Java profiler?

2017-12-06 Thread Peter Sturge
Hi, We'be been using JPRofiler (www.ej-technologies.com) for years now. Without a doubt, the most comprehensive and useful profiler for java. Works very well, supports remote profiling and includes some very neat heap walking/gc profiling. Peter On Tue, Dec 5, 2017 at 3:21 PM, Walter Underwood

Re: Howto search for § character

2017-12-06 Thread Rick Leir
Bernd, What is the analysis chain you have in schema.xml? The chain tokenizes text and filters characters. There is an index time chain and a query time chain. My suspicion is that your analysis chain is mapping that char to a plain ascii char. Use the SolrAdmin analysis tab to debug this.

indexing XML stored on HDFS

2017-12-06 Thread Matthew Roth
Hi All, Is there a DIH for HDFS? I see this old feature request [0 ] that never seems to have gone anywhere. Google searches and searches on this list don't get me to far. Essentially my workflow is that I have many thousands of XML documents

Re: indexing XML stored on HDFS

2017-12-06 Thread Erick Erickson
Perhaps the bin/post tool? See: https://lucidworks.com/2015/08/04/solr-5-new-binpost-utility/ On Wed, Dec 6, 2017 at 2:05 PM, Matthew Roth wrote: > Hi All, > > Is there a DIH for HDFS? I see this old feature request [0 > ] that

Re: Issue while searching with escape characters

2017-12-06 Thread Emir Arnautović
Hi, You need to escape special chars with \ and if you are sending it in URL you can URL encode it, but that is URL related thing not Solr. Here is the list of Lucene characters that need to be escaped:

SOLR-10272

2017-12-06 Thread Chris Ulicny
Hi all, We are currently in the process of testing out solr 7.1, and I was running into some strange issues with config upload and collection creation. After some digging, I found SOLR-10272 which makes the configName parameter necessary for collection creation, but all of our scripts for 6.X

Re: Issue while searching with escape characters

2017-12-06 Thread Roopesh Uniyal
Thanks Emir & Jan! I have a situation where I need to search a field value is between parenthesis () like - *(DVeto1)* Based on the documentation parenthesis

Re: Dataimporter status

2017-12-06 Thread Shawn Heisey
On 12/6/2017 1:38 AM, Mahmoud Almokadem wrote: > I'm already using the admin UI and get URL for fetching the status of > dataimporter from network console and tried it outside the admin UI. Admin > UI have the same behavior, when I pressed on execute the status messages > are swapped between "not

Re: SOLR-10272

2017-12-06 Thread Shawn Heisey
On 12/6/2017 6:43 AM, Chris Ulicny wrote: > I am curious as to whether overwriting an _existing_ config with the > "_default" one was intended or not when the change was made. If it was, the > documentation for CREATE in the Collections API could do with an update, > because it currently seems to

Re: Issue while searching with escape characters

2017-12-06 Thread Emir Arnautović
Hi Roopesh, What are *? Is it wildcard or special char as well? Examples that you provided are not what you said you want to search - * are not on the same position. If you are not finding anything, that can be due to your analysis - are you sure that your analysis does not trim parenthesis?

Re: Issue while searching with escape characters

2017-12-06 Thread Roopesh Uniyal
Oh, that might be because I made DVeto1 in bold but it converted bold into *. So you can ignore both *. On Wed, Dec 6, 2017 at 10:35 AM, Emir Arnautović < emir.arnauto...@sematext.com> wrote: > Hi Roopesh, > What are *? Is it wildcard or special char as well? Examples that you > provided are