Tomcat vs Jetty: A Comparative Analysis?

2010-02-16 Thread Steve Radhouani
Hi there, Is there any analysis out there that may help to choose between Tomcat and Jetty to deploy Solr? I wonder wether there's a significant difference between them in terms of performance. Any advice would be much appreciated, -Steve

Re: Tomcat vs Jetty: A Comparative Analysis?

2010-02-16 Thread Steve Radhouani
;ve had successful deployments on both. > > Any difference in performance is far outweighed by ease of setup/support > that you personally find in each. > > There is far more "knowledge" around Tomcat, but Jetty is more lightweight > and real easy to embed. > > Ron

Re: Tomcat vs Jetty: A Comparative Analysis?

2010-02-17 Thread Steve Radhouani
t it > > - Original Message - > From: "Steve Radhouani" > To: solr-user@lucene.apache.org > Sent: Wednesday, 17 February, 2010 7:24:01 AM > Subject: Re: Tomcat vs Jetty: A Comparative Analysis? > > Thanks Ron. Actually, I'm developing a Web search e

Re: solr word frequency

2010-02-17 Thread Steve Radhouani
search the frequency of a given word in the new field. That being said, the frequency is available in the _i.frq file under your index directory; perhaps you find a way to read it (I didn't it). -Steve chema Browser <http://localhost:8983/solr/admin/schema.jsp>] 2010/2/17 michaelnaz

Re: solr word frequency

2010-02-17 Thread Steve Radhouani
in the Schema browser, you can specify the Top X Terms you want to display. Here's what you have on the browser: *Docs: * xxx *Distinct: * Top Terms Thus, you can get the frequency of a given word, even though it's not the most elegant solution. 2010/2/17 michaelnazaruk > > Schema browser

Re: Tomcat vs Jetty: A Comparative Analysis?

2010-02-17 Thread Steve Radhouani
M > > > > http://www.webtide.com/choose/jetty.jsp > > >> > - Original Message - > >> > From: "Steve Radhouani" > >> > To: solr-user@lucene.apache.org > >> > Sent: Tuesday, 16 February, 2010 12:38:04 PM > >> > Subject:

Search Result differences Standard vs DisMax

2010-03-01 Thread Steve Reichgut
ptional so I am confused as to why I am only getting such a small subset. Can anyone shed some light on what I am doing wrong or if I am misunderstanding how DisMax works. Thanks, Steve

Re: Search Result differences Standard vs DisMax

2010-03-01 Thread Steve Reichgut
Thanks Joe. That was exactly the issue. When I added 'mm=1', I got exactly the results I was looking for. Where would I change the default value for the 'mm' parameter? Is it in solrconfig.xml? Steve On 3/1/2010 5:30 PM, Joe Calderon wrote: what are you using for the mm p

Solrj - Sorting with range queries

2010-03-10 Thread Steve Radhouani
Using Solrj, I would like to sort the response of a range query based on some specific labels. For instance, using the query: facet=true &facet.query={!key= Less than 100}[* TO 99] &facet.query={!key=100 - 200}[100 TO 200] &facet.query={!key=200 +}[201 TO *] I would like to display the response i

Re: Solrj - Sorting with range queries

2010-03-10 Thread Steve Radhouani
Thanks Erik. That's what I've done so far, but I was wondering wether there is a "cleaner" solution from Solr itself. -Steve 2010/3/10 Erik Hatcher > You're going to have to employ some UI work to make the arrangement how you > like. Order from So

Re: Solrj - Sorting with range queries

2010-03-10 Thread Steve Radhouani
I noticed that, Yonik, but I couldnt figure out how to preserve the "correct" order produced by Solr. Do you have any idea how to preserve it? Thanks. 2010/3/10 Yonik Seeley > On Wed, Mar 10, 2010 at 9:49 AM, Steve Radhouani > wrote: > > Thanks Erik. That's what

mincount doesn't work with FacetQuery

2010-03-11 Thread Steve Radhouani
I'm faceting with a query range (with addFacetQuery) and setting mincount to 10 (with setFacetMinCount(10)), but Solr is not respecting this mincount; it's still giving me all responses, even those having less than 10 retrieved documents. I'm wondering wether there's another way to define the minc

SolrJ - separte different results from the same facet query?

2010-03-11 Thread Steve Radhouani
I'm faceting with a two different query ranges while using addFacetQuery. I wonder wether it's possible using SolrJ to extract the result of each query range separately. Here's is my example: addFacetQuery("price:[* TO 150]"); addFacetQuery("price:[151 TO 300]"); etc. addFacetQuery("date:[* TO NOW

Trouble Implementing Extracting Request Handler

2010-03-12 Thread Steve Reichgut
n try to install the ExtractingRequestHandler to no avail. He had said that he was having real trouble finding good documentation on how to install and enable this handler. Could anyone point me to good documentation on how to install/troubleshoot this? Steve

Re: Trouble Implementing Extracting Request Handler

2010-03-12 Thread Steve Reichgut
ot;libs" directory. Where else can I get the contents of what should be in "libs"? Steve On 3/12/2010 2:15 PM, Grant Ingersoll wrote: On Mar 12, 2010, at 2:20 PM, Steve Reichgut wrote: Now that I have configured my Solr instance for standard indexing, I wanted to start ind

Re: Trouble Implementing Extracting Request Handler

2010-03-15 Thread Steve Reichgut
Thanks Lance. That helped ( we are using Solr-1.4). We've run into a follow-on error though. It is giving the following error: ClassNotFoundException: org.apache.solr.util.plugin.SolrCoreAware Did we miss something else in the setup? Steve Is there something else we haven't copie

Re: Trouble Implementing Extracting Request Handler

2010-03-15 Thread Steve Reichgut
12 PM, Steve Reichgut wrote: Thanks Lance. That helped ( we are using Solr-1.4). We've run into a follow-on error though. It is giving the following error: ClassNotFoundException: org.apache.solr.util.plugin.SolrCoreAware Did we miss something else in the setup? Steve Is there somethi

Re: Trouble Implementing Extracting Request Handler

2010-03-16 Thread Steve Reichgut
ectly to the two Tika jar files in the Lib directory like this: * *and ** Am I including them incorrectly somehow? Steve On 3/16/2010 3:38 PM, Lance Norskog wrote: NoClassDefFoundError usually means that the class was found, but it needs other classes and those were not found. That is, Solr

How do I create a solr core with the data from an existing one?

2010-03-24 Thread Steve Dupree
*Solr 1.4 Enterprise Search Server* recommends doing large updates on a copy of the core, and then swapping it in for the main core. I tried following these steps: 1. Create prep core: http://localhost:8983/solr/admin/cores?action=CREATE&name=prep&instanceDir=main 2. Perform index update

newbie question on how to batch commit documents

2010-05-31 Thread Steve Kuo
I have a newbie question on what is the best way to batch add/commit a large collection of document data via solrj. My first attempt was to write a multi-threaded application that did following. Collection docs = new ArrayList(); for (Widget w : widges) { doc.addField("id", w.getId()); d

Facet question

2007-12-07 Thread Steve Barr
ation 0 1 true Europe -1 location 0 1 1 1 Thanks for any help! Steve

Offsets in results?

2008-02-21 Thread Steve Suppe
elves. Is this something I need to hack up on my own? Thanks, Steve Suppe

Re: Offsets?

2008-02-28 Thread Steve Suppe
Chris, Thanks, you're exactly right. I think the Search Component may be the right way to go. I will definitely look into this shortly - if it works out, is this something that should be 'donated' if at all possible? Steve At 05:47 PM 2/26/2008, you wrote: (mov

Question about facet.prefix usage

2008-03-04 Thread steve berry
eturn more complex facet sets. As far as I can tell looking at the docs this won't work. Is this possible using the existing facet.prefix functionality? Anyone have a better idea of how I should accomplish this? Thanks, steve berry American City Business Journals

Re: Multi-word Synonyms - how does sow parameter work?

2018-08-15 Thread Steve Rowe
read your post in full, you should subscribe to the mailing list instead of using Nabble. Instructions here: http://lucene.apache.org/solr/community.html#solr-user-list-solr-userluceneapacheorg -- Steve www.lucidworks.com > On Aug 15, 2018, at 7:00 PM, Roy Lim wrote: > > Thanks

Re: Multi-word Synonyms - how does sow parameter work?

2018-08-15 Thread Steve Rowe
Yes please. That way we’ll see the whole thing. -- Steve www.lucidworks.com > On Aug 15, 2018, at 7:20 PM, Roy Lim wrote: > > I've subscribed, shall I re-post it then via email? > > > > -- > Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Please subscribe me to solr -user forum

2018-08-16 Thread Steve Rowe
To subscribe, send an email to: solr-user-subscr...@lucene.apache.org -- Steve www.lucidworks.com > On Aug 16, 2018, at 7:09 AM, Arumugam, Senthil Kumar > wrote: > >

need help with a complicated join query

2018-08-23 Thread Steve Pruitt
At least it is complicated to me. :>) We are investigating how to find return a list documents whose identifier is contained in a multi-value field in another document. The index consists of essentially two different documents sharing some common fields. To make it simple, I will refer to them

Re: [help!] java.lang.NoSuchMethodError: org.apache.solr.client.solrj.request.schema.SchemaRequest

2018-08-24 Thread Steve Rowe
. [1] https://issues.apache.org/jira/browse/SOLR-12455 -- Steve www.lucidworks.com > On Aug 24, 2018, at 6:47 PM, yx zhou wrote: > > Got the following errow when i try to delete a field with Schema API, on > Solr 7.0.1, cloud model > > java.lang

Re: [help!] java.lang.NoSuchMethodError: org.apache.solr.client.solrj.request.schema.SchemaRequest

2018-08-27 Thread Steve Rowe
Thanks for letting us know about the source of the problem. -- Steve www.lucidworks.com > On Aug 27, 2018, at 3:15 PM, yx zhou wrote: > > i found the root cause, it is my setting > > >org.noggit >noggit > > > It's has

join works with a core, doesn't work with a collection

2018-08-30 Thread Steve Pruitt
Is there something different I need to do for a query with a join for a Collection? Singular Collection, not across Collections. Initially, I used a Core for simple development. One of my queries uses a join. It works fine. I created a Collection with the same schema. Indexed the same docum

RE: [EXTERNAL] - Re: join works with a core, doesn't work with a collection

2018-08-30 Thread Steve Pruitt
8/30/2018 9:00 AM, Steve Pruitt wrote: > Is there something different I need to do for a query with a join for a > Collection? Singular Collection, not across Collections. > > Initially, I used a Core for simple development. One of my queries uses a > join. It works fine. I kn

RE: [EXTERNAL] - Re: join works with a core, doesn't work with a collection

2018-08-30 Thread Steve Pruitt
If you mean another running Solr server running, then no. -Original Message- From: Shawn Heisey Sent: Thursday, August 30, 2018 11:31 AM To: solr-user@lucene.apache.org Subject: Re: [EXTERNAL] - Re: join works with a core, doesn't work with a collection On 8/30/2018 9:17 AM,

RE: [EXTERNAL] - Re: join works with a core, doesn't work with a collection

2018-08-30 Thread Steve Pruitt
30, 2018 12:11 PM To: solr-user@lucene.apache.org Subject: Re: [EXTERNAL] - Re: join works with a core, doesn't work with a collection On 8/30/2018 9:49 AM, Steve Pruitt wrote: > If you mean another running Solr server running, then no. I mean multiple Solr processes. The cloud example

RE: [EXTERNAL] - Re: join works with a core, doesn't work with a collection

2018-08-30 Thread Steve Pruitt
Shawn, You are correct. I created another setup. This time with 1 node, 1 shard, 2 replicas and the join worked! Running with the example SolrCloud setup doesn't work for join queries. Thanks. -S -Original Message- From: Steve Pruitt Sent: Thursday, August 30, 2018 12:25

Re: Null Pointer Exception without details on Update in schemaless 7.4

2018-09-06 Thread Steve Rowe
Hi, Null handling in AddSchemaFieldsUpdateProcessorFactory has been added for Solr 7.5, see https://issues.apache.org/jira/browse/SOLR-12704 . -- Steve www.lucidworks.com > On Sep 6, 2018, at 1:11 AM, deniz wrote: > > server is also 7.4 > > and your assumption/check on null

Re: Keystore and Password is displayed in Dashboard

2018-09-07 Thread Steve Rowe
Hi, Which version of Solr are you using? AFAIK this was fixed in Solr 6.6: https://issues.apache.org/jira/browse/SOLR-10076 . However, prior to Solr 7.0, sensitive property redaction was not enabled by default. To enable, set system property solr.redaction.system.enabled=true . -- Steve

join query in same collection

2018-09-14 Thread Steve Pruitt
I see nothing in the documentation suggesting a query with a join filter doesn't work when a single collection is involved. There is the special deployment instructions when joining across two distinct collections, but this is not my case. I have a single collection: I have two VM's, both runn

Re: Query with exact number of tokens

2018-09-21 Thread Steve Rowe
_4/other-parsers.html#OtherParsers-FunctionRangeQueryParser [6] https://lucene.apache.org/solr/guide/7_4/function-queries.html#termfreq-function [7] https://lucene.apache.org/solr/guide/7_4/function-queries.html#sub-function [8] https://lucene.apache.org/solr/guide/7_4/implicit-requesthandlers.html#analysis-handlers

Re: Query with exact number of tokens

2018-09-21 Thread Steve Rowe
Link correction - wrong fragment identifier in ref #5 - should be: [5] https://lucene.apache.org/solr/guide/7_4/other-parsers.html#function-range-query-parser -- Steve www.lucidworks.com > On Sep 21, 2018, at 12:04 PM, Steve Rowe wrote: > > Hi Sergio, > > Chris “Hoss”

Re: Rule-based replication or sharing

2018-09-21 Thread Steve Rowe
:<2,sysprop.AWSAZ:us-west-1 replica:<2,sysprop.AWSAZ:ca-central-1 -- Steve www.lucidworks.com > On Sep 21, 2018, at 4:07 PM, Chuck Reynolds wrote: > > I'm using Solr 6.6 and I want to create a 90 node cluster with a replication > factor of three. I'm using AWS EC2 instan

Re: Rule-based replication or sharing

2018-09-25 Thread Steve Rowe
t;2”, which means that no node can host more than one replica, but it's acceptable for a node to host zero replicas. Did you set system property AWSAZ on each Solr node with an appropriate value? -- Steve www.lucidworks.com > On Sep 25, 2018, at 10:39 AM, Chuck Reynolds wrote: > > Ste

Re: Rule-based replication or sharing

2018-09-25 Thread Steve Rowe
e the rule-based replica placement feature, and he corrected a misunderstanding of mine: > On 9/25/18, 9:08 AM, "Steve Rowe" wrote: > So you could specify “replica:<2”, which means that no node can host more > than one replica, but it's acceptable for a node to host

Re: Rule-based replication or sharing

2018-09-25 Thread Steve Rowe
y, one more try :) - here are the rules that should do the trick for you > (i.e., what I wrote in the previous sentence): > > - > rule=shard:*,replica:1,sysprop.AWSAZ:AZ1 > &rule=shard:*,replica:1,sysprop.AWSAZ:AZ2 > &rule=shard:*,replica:1,sysprop.AWSAZ:AZ3 > - Have you tried ^^ ? -- Steve www.lucidworks.com

Re: Want to subscribe to this list

2018-11-09 Thread Steve Rowe
Hi Michela, For subscription info see: http://lucene.apache.org/solr/community.html#mailing-lists-irc I'm not aware of any Slack discussion groups, but there are two freenode.net IRC channels - see: http://lucene.apache.org/solr/community.html#irc Steve > On Nov 8, 2018, at 10:42 AM,

Re: How to archive Solr cloud and delete the data?

2018-12-31 Thread Steve Rowe
Hi Rekha, Do you know about Solr's Time Routed Aliases feature[1]? Steve [1] https://lucene.apache.org/solr/guide/7_6/time-routed-aliases.html > On Dec 30, 2018, at 11:48 AM, Rekha > wrote: > > Hi Solr Team, I want to archive my Solr data. Is there any api available to

Re: Schema.xml, copyField, Slash, ignoreCase ?

2019-01-11 Thread Steve Rowe
ntire field text, while the *filter* is given the text of single terms. - - [1] http://archive.apache.org/dist/lucene/solr/ref-guide/apache-solr-ref-guide-5.4.pdf -- Steve > On Jan

Re: Solr -plugins Jar in Cloud mode

2019-02-06 Thread Steve Rowe
From https://issues.apache.org/jira/browse/SOLR-9175 : "[O]nly components specified in solrconfig.xml can be loaded from blob store. Schema components are not yet loaded from blob store." Steve > On Feb 3, 2019, at 7:51 PM, Lucky Sharma wrote: > > Hi, > I was trying t

document colocation

2018-01-05 Thread Steve Pruitt
I have two document types that share several fields. We currently plan a single index for both types. One of the shared fields contains a value that correlates two document instances, i.e. two documents of the two types has the same value. The values are random integers. We would like each c

Re: ClassicTokenizer

2018-01-11 Thread Steve Rowe
egmentation <http://unicode.org/reports/tr29/> -- Steve www.lucidworks.com > On Jan 10, 2018, at 10:09 PM, Shawn Heisey wrote: > > On 1/10/2018 2:27 PM, Rick Leir wrote: >> I did not express that clearly. >> The reference guide says "The Classic Tokenizer preserves

Re: Need help with solr highlighting feature

2018-01-17 Thread Steve Rowe
Hi Aashish, Which version of Solr are you using? Please share your configuration: highlighter and schema. -- Steve www.lucidworks.com > On Jan 16, 2018, at 12:20 PM, Aashish Agarwal wrote: > > Hello, > > I am using solr highlighting feature on multivalued field containing kor

Re: Need help with solr highlighting feature

2018-01-18 Thread Steve Rowe
Hi Aashish, Thanks for letting us know. -- Steve www.lucidworks.com > On Jan 17, 2018, at 1:41 PM, Aashish Agarwal wrote: > > Hello Steve, > > Sorry to disturb, the issue was due to custom tokenizer that I used. Since > that was not storing offset so term vector was

SolrCloudClient multi-threading

2018-02-02 Thread Steve Pruitt
The 7.2.1 SolrCloudClientBuilder has the method withParallelUpdates(Boolean). It's my understanding the SolrCloudClient does not manage multiple threads like the ConcurrentUpdateSolrClient. Curious what the withParallelUpdates setting on SolrCloudClientBuilder does. It hints at multi-threaded

Re: SynonymGraphFilterFactory with WordDelimiterGraphFilterFactory usage

2018-02-05 Thread Steve Rowe
ilters also have this issue, see e.g. <https://issues.apache.org/jira/browse/LUCENE-3475> for ShingleFilter; this issue has gotten some attention recently, and hopefully it will inspire fixes elsewhere. Patches welcome! -- Steve www.lucidworks.com > On Feb 5, 2018, at 11:19 AM, Shawn Heise

analysis error - cannot change numBytes from 4 to 8

2018-02-05 Thread Steve Pruitt
I have a collection with a field defined as plongs. The field schema is: For each document to add, I build up a HashMap of field values. Since its multi-valued field, I create an ArrayList of type Long and add the values to it. The ArrayList is added to the HashMap. Next, I create a SolrI

Re: SynonymGraphFilterFactory with WordDelimiterGraphFilterFactory usage

2018-02-06 Thread Steve Rowe
filters do not correctly interpret input token graphs, you can only expect correct positions if a graph token filter is not followed by any other filter. -- Steve www.lucidworks.com

Re: Min-should-match and Mutli-word synonyms unexpected result

2018-02-06 Thread Steve Rowe
Hi Nick, I think this was fixed by https://issues.apache.org/jira/browse/LUCENE-7878 in Solr 6.6.1. -- Steve www.lucidworks.com > On Feb 5, 2018, at 3:58 PM, Nick D wrote: > > I have run into an issue with multi-word synonyms and a min-should-match > (MM) of anything other tha

RE: [EXTERNAL] - Re: analysis error - cannot change numBytes from 4 to 8

2018-02-06 Thread Steve Pruitt
: [EXTERNAL] - Re: analysis error - cannot change numBytes from 4 to 8 Steve: Did this work in the past but just stopped? If so, did you change your schema at all? If you changed your schema at all, you probably have to reindex from scratch. However, you _must_ be absolutely sure you've re

Re: SynonymGraphFilterFactory with WordDelimiterGraphFilterFactory usage

2018-02-07 Thread Steve Rowe
Thanks Webster, I created https://issues.apache.org/jira/browse/SOLR-11955 to work on this. -- Steve www.lucidworks.com > On Feb 6, 2018, at 2:47 PM, Webster Homer wrote: > > I noticed that in some of the current example schemas that are shipped with > Solr, there is

Re: Multi words query time synonyms

2018-02-10 Thread Steve Rowe
following for qq=“maillot om”: +((name_text_gp:maillot) (((+name_text_gp:olympiqu +name_text_gp:de +name_text_gp:marseil) name_text_gp:om))) (btw my stop list only has “de” on it) Thanks, -- Steve www.lucidworks.com > On Feb 10, 2018, at 2:12 AM, Dominique Bejean > wrote: > > H

Re: Solr - Managed Resources REST API to get stopwords

2018-02-13 Thread Steve Rowe
e file. -- Steve www.lucidworks.com > On Feb 13, 2018, at 3:41 PM, ruby wrote: > > I added following to my Solr schema: > > stored="true" > multiValued="true"/> > >class="solr.TextField"> >

Re: StandardTokenizer and splitting on mixedcase strings

2018-02-23 Thread Steve Rowe
Hi Dan, StandardTokenizerFactory does not do this. Maybe you have a filter in your analysis chain that does this? E.g. WordDelimiterFilterFactory has this capability. -- Steve www.lucidworks.com > On Feb 23, 2018, at 6:08 AM, Dan . wrote: > > Hi, > > The StandardTokenize

Re: Synonym not working in 4.10 / CDH 5.14

2018-03-01 Thread Steve Rowe
Hi Abhi, PropertyAddressState is of type “string”, which has no analysis applied. Since you copyfield to “text” field, which has the analysis you expect, you could try querying it instead. -- Steve www.lucidworks.com > On Mar 1, 2018, at 12:23 PM, Abhi Basu <9000r...@gmail.com&

Re: Synonym not working in 4.10 / CDH 5.14

2018-03-01 Thread Steve Rowe
I think you want type=“text_general” -- Steve www.lucidworks.com > On Mar 1, 2018, at 2:19 PM, Abhi Basu <9000r...@gmail.com> wrote: > > Should it be defined as this instead? > > stored="true" docValues="true"/> > > > > On Thu, Mar

Re: Synonym not working in 4.10 / CDH 5.14

2018-03-01 Thread Steve Rowe
Yes, either type “text_general” or some other TextField-based field type that includes a synonym filter. -- Steve www.lucidworks.com > On Mar 1, 2018, at 3:02 PM, Abhi Basu <9000r...@gmail.com> wrote: > > Yes, agreed. Just tested and it works. :) > > I will have a lot

[ANNOUNCE] Apache Solr 6.6.3 released

2018-03-07 Thread Steve Rowe
7 March 2018, Apache Solr™ 6.6.3 available The Lucene PMC is pleased to announce the release of Apache Solr 6.6.3. Solr is the popular, blazing fast, open source NoSQL search platform from the Apache Lucene project. Its major features include powerful full-text search, hit highlighting, facet

Re: UIMA-SOLR integration

2018-03-29 Thread Steve Rowe
where a pre-release HTML view is available): <https://git-wip-us.apache.org/repos/asf?p=lucene-solr.git;a=blob;f=solr/contrib/analysis-extras/src/java/org/apache/solr/update/processor/OpenNLPExtractNamedEntitiesUpdateProcessorFactory.java;hb=refs/heads/branch_7_3#l60> -- Steve www.lucidwork

Re: [ANNOUNCE] Solr Reference Guide for Solr 7.3 released

2018-04-05 Thread Steve Rowe
comment-16303006 [2] https://issues.apache.org/jira/browse/SOLR-11701 [3] https://lucene.apache.org/solr/7_3_0/changes/Changes.html#v7.3.0.other_changes -- Steve www.lucidworks.com > On Apr 5, 2018, at 11:05 AM, Terry Steichen wrote: > > I'm a bit confused because of the issue I was co

Re: Running an analyzer chain in an update request processor

2018-04-06 Thread Steve Rowe
://lucene.apache.org/solr/7_3_0/solr-core/org/apache/solr/update/processor/StatelessScriptUpdateProcessorFactory.html -- Steve www.lucidworks.com > On Apr 6, 2018, at 5:46 PM, Walter Underwood wrote: > > Is there an easy way to define an analyzer chain in schema.xml then run it in > an update reque

Re: ant eclipse on branch_6_4

2018-04-12 Thread Steve Rowe
://issues.apache.org/jira/browse/IVY-1489 -- Steve www.lucidworks.com > On Apr 12, 2018, at 10:34 AM, rgummadi wrote: > > I cloned lucene-solr git and working on git branch branch_6_4. I am trying to > make this eclipse compatible. > So I "ant eclipse" from the root folder. I am get

Re: Solr OpenNLP named entity extraction

2018-04-17 Thread Steve Rowe
ing an “id” field. 3. For whatever reason, the pre-trained model "en-ner-person.bin" doesn’t extract anything from text “This is Steve Jobs 2”. It will extract “Steve Jobs” from text “This is Steve Jobs in white” e.g. though. 4. (Not a problem necessarily) You may want to use a mult

Re: schema-api: modifying schema in xml format

2018-04-18 Thread Steve Rowe
Hi Arturas, The Schema API only understands commands in JSON. I looked through the ref guide page, and I’m surprised that this isn’t stated directly; I’ll try to fix that. -- Steve www.lucidworks.com > On Apr 18, 2018, at 4:12 AM, Arturas Mazeika wrote: > > Hi solr-users, &

Re: NER question

2018-04-18 Thread Steve Rowe
Hi Alexey, Did you see my response to your “Solr OpenNLP named entity extraction” thread? I think I’ve answered your questions. -- Steve www.lucidworks.com > On Apr 18, 2018, at 4:28 AM, Alexey Ponomarenko > wrote: > > Hi, I have a question regarding NER > > https:/

Re: Running an analyzer chain in an update request processor

2018-04-23 Thread Steve Rowe
Hi Walter, I haven’t seen this before, but it looks like https://bugs.java.com/view_bug.do?bug_id=8071775 -- Steve www.lucidworks.com > On Apr 20, 2018, at 7:54 PM, Walter Underwood wrote: > > I’m back. > > I think I’m following the steps in Eric Hatcher’s s

Re: Error when indexing against a specific dynamic field type

2018-05-01 Thread Steve Rowe
/solr-core/org/apache/solr/update/processor/TruncateFieldUpdateProcessorFactory.html [3] https://lucene.apache.org/solr/guide/7_3/filter-descriptions.html#length-filter -- Steve www.lucidworks.com > On May 1, 2018, at 11:28 AM, Erick Erickson wrote: > > You're sending it a huge ter

Re: Error deleting copy field

2018-06-06 Thread Steve Rowe
out the exact spelling of your copy field rules by looking at the schema. -- Steve www.lucidworks.com > On Jun 6, 2018, at 5:00 PM, Ikenna Okonkwo wrote: > > Hi all, > > I encountered an error when using SOLR cloud 7.2.1. I used the UI to add a > bunch of “copy fields” to a f

Re: Error deleting copy field

2018-06-06 Thread Steve Rowe
Ikenna, Can you please create a JIRA issue[1], and if possible include your schema? Thanks. -- Steve www.lucidworks.com [1] https://wiki.apache.org/solr/HowToContribute#JIRA_tips_.28our_issue.2Fbug_tracker.29 > On Jun 6, 2018, at 5:16 PM, Ikenna Okonkwo wrote: > > Hi Steve, >

Re: Mailing List Subscription

2018-06-25 Thread Steve Rowe
Hi Rainman, See http://lucene.apache.org/solr/community.html#mailing-lists-irc for subscription information. -- Steve www.lucidworks.com > On Jun 25, 2018, at 12:07 AM, Rainman Sián wrote: > > Hello > > I'm Rainman, I have worked with Solr in a couple of projects in the

Re: Solr OpenNLP named entity extraction

2018-07-09 Thread Steve Rowe
/guide/7_4/setting-up-an-external-zookeeper-ensemble.html#increasing-the-file-size-limit -- Steve www.lucidworks.com > On Jul 9, 2018, at 12:50 AM, Jerome Yang wrote: > > Hi guys, > > In Solrcloud mode, where to put the OpenNLP models? > Upload to zookeeper? > As I test

Re: Solr OpenNLP named entity extraction

2018-07-10 Thread Steve Rowe
themselves are not included in the set of directories from which resources are loaded; only their children are. -- Steve www.lucidworks.com > On Jul 9, 2018, at 10:10 PM, Jerome Yang wrote: > > Hi Steve, > > Put models under " ${solr.solr.home}/lib/ " is n

Re: Hi, happy to join this solr party.

2018-07-11 Thread Steve Rowe
Welcome! To subscribe, send an email to solr-user-subscr...@lucene.apache.org . More info here: http://lucene.apache.org/solr/community.html#mailing-lists-irc -- Steve www.lucidworks.com > On Jul 10, 2018, at 6:07 AM, zhenyuan wei wrote: > > I'd like to subscribe this maillist, thanks.

Re: Exact Phrase search not returning results.

2018-07-20 Thread Steve Rowe
Hi Deepti, Your schema snippet didn’t make it to the list. Please repost as inline text rather than an image. -- Steve www.lucidworks.com > On Jul 20, 2018, at 10:33 AM, Krishnan, Deepti (NIH/OD) [C] > wrote: > > Hi, > > We are working on a .net application using Solr.

executing /suggest in Admin Console

2018-08-06 Thread Steve Pruitt
Changing the request handler to /suggest in the Admin Console Query panel doesn't work. It was a guess on my part to see if it would. Is the way to do this, or do I need to always use browser, postman, etc. for debugging? Thanks. -Steve

Re: deprecated field types

2018-08-07 Thread Steve Rowe
I created a JIRA issue to track the Trie field removal effort: https://issues.apache.org/jira/browse/SOLR-12632 -- Steve www.lucidworks.com > On Aug 7, 2018, at 11:48 AM, Shawn Heisey wrote: > > On 8/6/2018 11:52 PM, Hendrik Haddorp wrote: >> Below the table the following is

UUIDField in defined schema

2018-08-08 Thread Steve Pruitt
Admin guide has UUIDField as a field type, but it's not defined in the default schema. The Admin guide describes it in conjunction with the UUIDUpdateProcessorFactory. I see the updateProcessor defined in the default schema. The only place I see UUIDUpdateProcessorFactory discussed in the Adm

exception using atomic update on a field

2018-08-08 Thread Steve Pruitt
I am updating an existing document using the "add-distinct" directive. One of my fields is declared: The field being updated is a different field. All I set in my code is Map fields = new HashMap<>(); SolrInputDocument solrDoc = new SolrInputDocument(); fields.put("add-distinct", member); so

Re: Easiest way to export the entire index

2020-01-29 Thread Steve Ge
@Amanda You can try using curl and write output to a file   curl http://localhost:8983/Solr?q={theSolrQuery) > out.json   theSolrQuery - you need to specify all attrs you want exported, not just * If you are on Windows, there is a Windows curl tool you can download to use Steve On

Re: UAX29 URL Email Tokenizer not working as expected

2019-05-07 Thread Steve Rowe
etter overall to keep the hyphen out of the default definition. Hyphens include U+002D HYPHEN-MINUS, U+2010 HYPHEN, possibly also U+058A ARMENIAN HYPHEN, and U+30A0 KATAKANA-HIRAGANA DOUBLE HYPHEN. Steve [1] To figure out which chars to use to not trigger a word break, l

Solr not returning stored field

2019-06-27 Thread Steve Pruitt
I cannot get Solr to return a stored field. My schema is: : : I am using the SolrJ client and trying this: The query string contains = " user: " and a list of user field values; The query executes ok. I get several documents. SolrQuery solrQuery = new SolrQuery(query); solrQuery.setSort("r

RE: [EXTERNAL] - Re: Solr not returning stored field

2019-06-27 Thread Steve Pruitt
n 27, 2019, 1:37 PM Steve Pruitt, wrote: > I cannot get Solr to return a stored field. > > My schema is: > > : > name="ranking" type="pdouble" indexed="false" stored="true"/> name="reference" type="string" indexed

RE: [EXTERNAL] - Re: Solr not returning stored field

2019-06-27 Thread Steve Pruitt
. -S -Original Message- From: Steve Pruitt Sent: Thursday, June 27, 2019 2:46 PM To: solr-user@lucene.apache.org Subject: RE: [EXTERNAL] - Re: Solr not returning stored field Ok, I am totally confused. It works fine using Solr Admin console on some test cases. I set the fl box with

Re: regarding Extracting text from Images

2020-01-22 Thread Steve Ge
  Not recommend. Steve On Wed, Oct 23, 2019 at 7:08 PM, suresh pendap wrote: Hi Alex, Thanks for your reply. How do we integrate tesseract with Solr?  Do we have to implement Custom update processor or extend the ExtractingRequestProcessor? Regards Suresh On Wed, Oct 23, 2019 at 11:21 AM Alex

Re: SolrDeletionPolicy & Core Reload

2021-01-04 Thread Steve Lacerda
p, maxCommitAge) from the solr > admin console? > > Thank you. > -- Steve Lacerda e. steve.lace...@datastax.com w. www.datastax.com

Re: Congratulations to the new Apache Solr PMC Chair, Jan Høydahl!

2021-02-18 Thread Steve Rowe
Congratulations Jan! -- Steve > On Feb 18, 2021, at 1:55 PM, Anshum Gupta wrote: > > Hi everyone, > > I’d like to inform everyone that the newly formed Apache Solr PMC nominated > and elected Jan Høydahl for the position of the Solr PMC Chair and Vice > President. This

how to access solr in solrcloud

2018-09-12 Thread Gu, Steve (CDC/OD/OADS) (CTR)
appreciated. Steve

RE: how to access solr in solrcloud

2018-09-12 Thread Gu, Steve (CDC/OD/OADS) (CTR)
Thanks, David -Original Message- From: David Santamauro Sent: Wednesday, September 12, 2018 10:28 AM To: solr-user@lucene.apache.org Cc: David Santamauro Subject: Re: how to access solr in solrcloud ... or haproxy. On 9/12/18, 10:23 AM, "Vadim Ivanov" wrote: Hi, St

RE: how to access solr in solrcloud

2018-09-12 Thread Gu, Steve (CDC/OD/OADS) (CTR)
. Zookeeper never handles queries. It coordinates cluster changes with the Solr instances. wunder Walter Underwood wun...@wunderwood.org http://observer.wunderwood.org/ (my blog) > On Sep 12, 2018, at 6:38 AM, Gu, Steve (CDC/OD/OADS) (CTR) > wrote: > > Hi, all > > I am upg

RE: how to access solr in solrcloud

2018-09-12 Thread Gu, Steve (CDC/OD/OADS) (CTR)
Vadim, That makes perfect sense. Thanks Steve -Original Message- From: Vadim Ivanov Sent: Wednesday, September 12, 2018 10:23 AM To: solr-user@lucene.apache.org Subject: RE: how to access solr in solrcloud Hi, Steve If you are using solr1:8983 to access solr and solr1 is down IMHO

RE: how to access solr in solrcloud

2018-09-13 Thread Gu, Steve (CDC/OD/OADS) (CTR)
Hi, Florian We need to pass zookeeper url to CloudSolrClient. Since there are multiple zk servers, is it the common practice to set a proxy server in front of zookeeper? Thanks for your advice. Steve -Original Message- From: Florian Gleixner Sent: Wednesday, September 12, 2018 6:27

solrcloud configuration: solr failed to start with multiple zookeeper servers

2018-09-13 Thread Gu, Steve (CDC/OD/OADS) (CTR)
d to start solr: localhost:2182 was unexpected at this time. Solr starts ok if I set ZK_Host to only one server, such as set ZK_HOST="localhost:2181". Any suggestions? Thanks Steve

<    1   2   3   4   5   6   >