Re: NullPointerException in Graph Traversal nodes streaming expression

2021-01-26 Thread Joel Bernstein
newer version by chance - I know we've fixed a few > NPEs recently, maybe https://issues.apache.org/jira/browse/SOLR-14700 > > On Thu, Jan 21, 2021 at 4:13 PM ufuk yılmaz > wrote: > > > Solr version 8.4. I’m getting an unexplanetory NullPointerException when > > execut

Re: NullPointerException in Graph Traversal nodes streaming expression

2021-01-21 Thread Mike Drob
I’m getting an unexplanetory NullPointerException when > executing a simple 2 level nodes stream, do you have any idea what may > cause this? > > I tried setting /stream?partialResults=true=true and > shards.tolerant=true in nodes expressions, with no luck. I also trie

NullPointerException in Graph Traversal nodes streaming expression

2021-01-21 Thread ufuk yılmaz
Solr version 8.4. I’m getting an unexplanetory NullPointerException when executing a simple 2 level nodes stream, do you have any idea what may cause this? I tried setting /stream?partialResults=true=true and shards.tolerant=true in nodes expressions, with no luck. I also tried reading source

List Collections API output as CSV causes NullPointerException

2020-10-26 Thread Michael Belt
I'm trying to get a simple text listing of my collections (so that I can do some shell scripting loops [for example calling SOLR Cloud Backup on each]). I'm getting an exception when I simply append the "=csv" to the end of the collection's LIST api (eg:

NullPointerException in IndexSearcher.explain() when using ComplexPhraseQueryParser

2020-09-09 Thread Michał Słomkowski
Hello, I get NPE when I use IndexSearcher.explain(). Checked with Lucene 8.6.0 and 8.6.2. The query: (lorem AND NOT "dolor lorem") OR ipsum The text: dolor lorem ipsum Stack trace: > java.lang.NullPointerException > at java.util.Objects.requireNonNull(Objects.java:203) > at

Re: NullPointerException when select query on multiple IDs after splitting a shard

2020-09-03 Thread Erick Erickson
that syntax isn’t isn’t a syntax that Solr recognize intentionally at all. At very best, the select handler is using the default field (if it’s defined). Although not having a “q” parameter means all bets are off. On a local copy of 7.3 I have lying around I get a valid response, but using a

Re: NullPointerException when select query on multiple IDs after splitting a shard

2020-09-03 Thread Louis
Yes, we are sure that this is not typo. Actually we did more experiments and found that 1) https://hostname:8983/solr/my_collection/select?ids=169455599|1 2) https://hostname:8983/solr/my_collection/select?q=id:169455599|1 3) https://hostname:8983/solr/my_collection/get?ids=169455599|1 1)

Re: NullPointerException when select query on multiple IDs after splitting a shard

2020-09-03 Thread Erick Erickson
Hmm, an NPE is weird in any case, but assuming “ids” is a field, your syntax is wrong q=ids:111|222 or q=ids: (111 222) would do too. Are you sure you used this syntax before? Or is it a typo? Erick > On Sep 3, 2020, at 1:02 PM, Louis wrote: > > We are using SolrCloud 7.7.2 and having some

NullPointerException when select query on multiple IDs after splitting a shard

2020-09-03 Thread Louis
We are using SolrCloud 7.7.2 and having some trouble with multi shards. The initial number of shards in the collection was one(and 3 replica), and we have recently split a shard into 4 shards(and 3 replica for each shard) by using API call : /admin/collections?action=SPLITSHARD=name=shardID And

NullPointerException leads to msg=null.

2019-06-21 Thread Nic Rodgers
We've recently upgraded from Solr 6.6 to 7.7.2 and are getting NPE when attempting to index content in our development environment. The error in the log is: 019-06-20 13:18:29.609 ERROR (qtp363988129-21) [ x:govwalesd8_fb] o.a.s.h.RequestHandlerBase org.apache.solr.common.SolrException: ERROR:

NullPointerException in QueryComponent.unmarshalSortValues

2019-06-07 Thread Hendrik Haddorp
Hi, I'm doing a simple *:* search on an empty multi sharded collection using Solr 7.6 and am getting this exception: NullPointerException     at org.apache.solr.handler.component.QueryComponent.unmarshalSortValues(QueryComponent.java:1034

Re: NullPointerException with ExpandComponent on Collapsed Null Values

2019-06-04 Thread Joel Bernstein
results functionality. > > > > > > > > The field I’m attempting to collapse on is an “int” field that isn’t > > required, and I’m using a null policy of expand to create a unique group > > for each document that has a missing field. The majority of

Re: NullPointerException with ExpandComponent on Collapsed Null Values

2019-06-04 Thread aus...@3bx.org.INVALID
documents *are > *missing this field at this time. > > > > I’m running into a NullPointerException on the response from within the > ExpandComponent. I’ve also tried the grouping with a field where I’ve > generated an ID (to cause the field to never be null), which seems to > res

NullPointerException with ExpandComponent on Collapsed Null Values

2019-05-28 Thread aus...@3bx.org.INVALID
. The majority of documents *are *missing this field at this time. I’m running into a NullPointerException on the response from within the ExpandComponent. I’ve also tried the grouping with a field where I’ve generated an ID (to cause the field to never be null), which seems to resolve the issue

Re: misteriuos nullpointerexception while adding documents

2019-02-13 Thread Erick Erickson
bq. I also tried with a plain solr installation (just unpack solr and copy the index folder), and in this way it works. Then it sounds like your production system was not installed properly if it mysteriously fails there but succeeds on a new install. If you upgraded your prod system, did you

Re: misteriuos nullpointerexception while adding documents

2019-02-13 Thread Danilo Tomasoni
I changed the schema, but I deleted all the documents and tried a reindex. I also tried deleting the core and re-adding it. The autocommit is disabled because hard commits are controlled in the client-side. I also tried with a plain solr installation (just unpack solr and copy the index

Re: misteriuos nullpointerexception while adding documents

2019-02-12 Thread Erick Erickson
bq. I disabled autocommit (both soft and hard), but used to work with a previous version of the schema. First, did you _change_ the schema without 1> deleting all the docs in the index 2> reindexing everything or better, indexing to a new collection and aliasing to it? If you changed the

Re: misteriuos nullpointerexception while adding documents

2019-02-12 Thread MUNENDRA S.N
Are you trying to set some field to null in the request?? Also, is that particular field numeric, doc valued enabled and stored set to false?? Sharing more details would help here, specifically update request and schema for those fields. Regards, Munendra S N On Tue, Feb 12, 2019 at 2:24 PM

misteriuos nullpointerexception while adding documents

2019-02-12 Thread Danilo Tomasoni
Hello all, I get this error while uploading my documents with 'set' modifier in json format. My solr version is 7.3.1. I disabled autocommit (both soft and hard), but used to work with a previous version of the schema. Someone have any clue on what's going on here? I can't reproduce the

NullPointerException in SolrMetricManager

2018-07-31 Thread Hendrik Haddorp
Hi, we are seeing the following NPE sometimes when we delete a collection right after we modify the schema: 08:47:46.407 [zkCallback-5-thread-4] INFO org.apache.solr.rest.ManagedResource 209 processStoredData - Loaded initArgs {ignoreCase=true} for /schema/analysis/stopwords/text_ar

Re: NullPointerException at org.apache.solr.handler.component.TermVectorComponent.process(TermVectorComponent.java:324)

2018-07-18 Thread Erick Erickson
Probably SOLR-11770 and/or SOLR-11792. In the meantime, insure that has stored=true set and insure that there are terms. You'll probably have to re-index though Best, Erick On Wed, Jul 18, 2018 at 10:38 AM, babuasian wrote: > Hi,Running solr version 6.5.Trying to get tf-idf values of a term

NullPointerException at org.apache.solr.handler.component.TermVectorComponent.process(TermVectorComponent.java:324)

2018-07-18 Thread babuasian
Hi,Running solr version 6.5.Trying to get tf-idf values of a term ‘price’ .../solr/mycore/tvrh/?q=price=0=1=on=true=true=trueWhen run, I get the following messagejava.lang.NullPointerException at org.apache.solr.handler.component.TermVectorComponent.process(TermVectorComponent.java:324) at

Re: NullPointerException in PeerSync.handleUpdates

2017-11-22 Thread Michael Braun
t; wrote: > > > > > >> Did you check the JIRA list? Or CHANGES.txt in more recent versions? > > >> > > >> On Tue, Nov 21, 2017 at 1:13 AM, S G <sg.online.em...@gmail.com> > wrote: > > >> > Hi, > > >> >

Re: NullPointerException in PeerSync.handleUpdates

2017-11-22 Thread Pushkar Raste
> > >> On Tue, Nov 21, 2017 at 1:13 AM, S G <sg.online.em...@gmail.com> wrote: > >> > Hi, > >> > > >> > We are running 6.2 version of Solr and hitting this error frequently. > >> > > >> > Error while trying to recover. cor

Re: NullPointerException in PeerSync.handleUpdates

2017-11-21 Thread Erick Erickson
6.2 version of Solr and hitting this error frequently. >> > >> > Error while trying to recover. core=my_core:java.lang. >> NullPointerException >> > at org.apache.solr.update.PeerSync.handleUpdates( >> PeerSync.java:605) >> >

Re: NullPointerException in PeerSync.handleUpdates

2017-11-21 Thread S G
re recent versions? > > On Tue, Nov 21, 2017 at 1:13 AM, S G <sg.online.em...@gmail.com> wrote: > > Hi, > > > > We are running 6.2 version of Solr and hitting this error frequently. > > > > Error while trying to reco

Re: NullPointerException in PeerSync.handleUpdates

2017-11-21 Thread Erick Erickson
Did you check the JIRA list? Or CHANGES.txt in more recent versions? On Tue, Nov 21, 2017 at 1:13 AM, S G wrote: > Hi, > > We are running 6.2 version of Solr and hitting this error frequently. > > Error while trying to recover.

NullPointerException in PeerSync.handleUpdates

2017-11-21 Thread S G
Hi, We are running 6.2 version of Solr and hitting this error frequently. Error while trying to recover. core=my_core:java.lang.NullPointerException at org.apache.solr.update.PeerSync.handleUpdates(PeerSync.java:605) at

Replica node down NullPointerException

2017-10-30 Thread Webster Homer
I have a Replica marked as down in Production, but the diagnostics as to why it's down are useless. All we see is a NullPointerException I see this error message in the log: 2017-10-30 14:17:39.008 ERROR (qtp472654579-39773) [ ] o.a.s.s.HttpSolrCall null:org.apache.solr.common.SolrException

Re: NullPointerException on openStreams

2017-07-14 Thread Erick Erickson
Joel: Would it make sense to throw a more informative error when the stream context wasn't set? Maybe an explicit check in open() or some such? Erick On Fri, Jul 14, 2017 at 8:25 AM, Joe Obernberger wrote: > Still stuck on this one. I suspect there is something

Re: NullPointerException on openStreams

2017-07-14 Thread Joe Obernberger
Still stuck on this one. I suspect there is something I'm not setting in the StreamContext. I'm not sure what to put for these two? context.put("core", this.coreName); context.put("solr-core", req.getCore()); Also not sure what the class is for ClassifyStream? Error that I'm getting is:

Re: NullPointerException on openStreams

2017-07-13 Thread Joel Bernstein
If you can include the stack trace and version of Solr we can see what's causing the exception. Joel Bernstein http://joelsolr.blogspot.com/ On Thu, Jul 13, 2017 at 4:33 PM, Joe Obernberger < joseph.obernber...@gmail.com> wrote: > Thanks for this. I'm now trying to use stream for classify, but

Re: NullPointerException on openStreams

2017-07-13 Thread Joe Obernberger
Thanks for this. I'm now trying to use stream for classify, but am getting an ArrayIndexOutOfBounds error on the stream.open(). I'm setting the streamFactory up, and including .withFunctionName("classify", ClassifyStream.class) - but is that class in orga.apache.solr.handler? -

Re: NullPointerException on openStreams

2017-07-13 Thread Joe Obernberger
Thank you Joel - that was it. context = new StreamContext(); context.setSolrClientCache(StaticInfo.getSingleton(props).getClientCache()); context.workerID = 0; context.numWorkers = 1; context.setModelCache(StaticInfo.getSingleton(props).getModelCache()); Then:

Re: NullPointerException on openStreams

2017-07-13 Thread Susheel Kumar
This the working code snippet I have, if that helps public static void main(String []args) throws IOException { String clause; TupleStream stream; List tuples; StreamContext streamContext = new StreamContext(); SolrClientCache solrClientCache = new SolrClientCache();

Re: NullPointerException on openStreams

2017-07-13 Thread Joel Bernstein
It's most likely that you're not setting the StreamContext. New versions of Solr expect the StreamContext to be set before the stream is opened. The SolrClientCache also needs to present in the StreamContext. You can take a look at how the StreamHandler does this for an example:

NullPointerException on openStreams

2017-07-13 Thread Joe Obernberger
Hi All - trying to call ClouderSolrStream.open(), but I'm getting this error: java.io.IOException: java.lang.NullPointerException at org.apache.solr.client.solrj.io.stream.CloudSolrStream.constructStreams(CloudSolrStream.java:408) at

Does Solr support multiple collapse filters - throws NullPointerException

2017-06-15 Thread Jeffery Yuan
I am trying to use solr collapse function: But seems when we use 2 or more collapse filters, it will throw NullPointerException? Does anyone have idea whether solr supports multiple collapse filters? - it doesn't mention about using 2 or more collapse filters at all at https://cwiki.apache.org

Re: Getting NullPointerException in an attempt to boost query result by date

2016-11-01 Thread Gintautas Sulskus
ik Hatcher <erik.hatc...@gmail.com> > >>> wrote: > >>> > >>>> how’d you set “$term” - the correct way would be =apple on the > Solr > >>>> request. > >>>> > >>>> > >>>>> On Oct 31, 2016, at

Re: Getting NullPointerException in an attempt to boost query result by date

2016-11-01 Thread Erik Hatcher
t;> >>>> >>>>> On Oct 31, 2016, at 2:07 PM, Gintautas Sulskus < >>>> gintautas.suls...@gmail.com> wrote: >>>>> >>>>> Hi, >>>>> >>>>> I am trying to construct a timestamp-boosted que

Re: Getting NullPointerException in an attempt to boost query result by date

2016-11-01 Thread Gintautas Sulskus
query comprising two > >> weighted > >>> fields: "title" and "body": > >>> > >>> {!boost b=recip(ms(NOW/HOUR,submit_date),3.16e-11,1,1)} > >>> {!type=dismax qf='title^10 body^1' v=$term} > >>> > >>> $term=app

Re: Getting NullPointerException in an attempt to boost query result by date

2016-11-01 Thread Erik Hatcher
nd "body": >>> >>> {!boost b=recip(ms(NOW/HOUR,submit_date),3.16e-11,1,1)} >>> {!type=dismax qf='title^10 body^1' v=$term} >>> >>> $term=apple >>> >>> I expect the given example query provided above to search fields "titl

Re: Getting NullPointerException in an attempt to boost query result by date

2016-11-01 Thread Gintautas Sulskus
utas.suls...@gmail.com> > > Sent: Monday 31st October 2016 21:19 > > To: solr-user@lucene.apache.org > > Subject: Re: Getting NullPointerException in an attempt to boost query > result by date > > > > Hi Erik, > > > > I have defined the query as Se

RE: Getting NullPointerException in an attempt to boost query result by date

2016-10-31 Thread Markus Jelsma
r 2016 21:19 > To: solr-user@lucene.apache.org > Subject: Re: Getting NullPointerException in an attempt to boost query result > by date > > Hi Erik, > > I have defined the query as SearchHandler: > > >   > >   {!boost b=recip(ms(NOW/HOUR, submit_date),3

Re: Getting NullPointerException in an attempt to boost query result by date

2016-10-31 Thread Gintautas Sulskus
t; and "body" using keyword "apple" and adjust the order of the results by > the > > submission date "submit_date". > > > > However, the query just throws the NullPointerException exception: [1]. > > Could you please help me out with this issue? >

Re: Getting NullPointerException in an attempt to boost query result by date

2016-10-31 Thread Erik Hatcher
g keyword "apple" and adjust the order of the results by the > submission date "submit_date". > > However, the query just throws the NullPointerException exception: [1]. > Could you please help me out with this issue? > > I am using Sol

Getting NullPointerException in an attempt to boost query result by date

2016-10-31 Thread Gintautas Sulskus
search fields "title" and "body" using keyword "apple" and adjust the order of the results by the submission date "submit_date". However, the query just throws the NullPointerException exception: [1]. Could you please help me out with this issue? I am using Solr

Debugging NullPointerException in QueryComponent.mergeIds for cross core search

2016-05-16 Thread Douglas McGilvray
Hi, I am having trouble performing a search across multiple cores on a single server running 5.4.0 I have erased, rebuilt & optimized the indexes, and and according to the schema browser for both cores, every document has a unique key (id). However I am still getting the same error. I would

NullPointerException - Data Import Handler - TimeZone

2016-05-12 Thread Brian Narsi
We are getting the following error: Full Import failed:java.lang.RuntimeException: org.apache.solr.handler.dataimport.DataImportHandlerException: java.lang.NullPointerException at org.apache.solr.handler.dataimport.DocBuilder.execute(DocBuilder.java:270) at

Using OR along with join query results causing NullPointerException in Solr 4.7.2

2015-11-30 Thread SuReN
Hello Lucene/Solr Experts, I am getting NullPointerException while using OR along with the join results. Following are the documents and fields configured in my solr server(version 4.7.2). *brands {id, brand_name}* *products {id, product_name, brand_id}* Following are the data indexed

Re: Using OR along with join query results causing NullPointerException in Solr 4.7.2

2015-11-30 Thread Mikhail Khludnev
On Mon, Nov 30, 2015 at 1:51 PM, SuReN wrote: > o=id} product_name:Desire* just the first guess, try to avoid the space in the clause above -- Sincerely yours Mikhail Khludnev Principal Engineer, Grid Dynamics

Json facet api NullPointerException

2015-11-12 Thread Yago Riveiro
Hi, I'm hitting this NullPointerException using the json facet API. Same query using Facet component is working. Json facet query: curl -s http://node1:8983/solr/metrics/query -d 'q=datetime:[2015-10-01T00:00:00Z TO 2015-10-04T23:59:59Z]=0={ urls: { type: terms, field: url

Re: Json facet api NullPointerException

2015-11-12 Thread Yonik Seeley
Thanks for the report Yago, What version is this? -Yonik On Thu, Nov 12, 2015 at 10:53 AM, Yago Riveiro <yago.rive...@gmail.com> wrote: > Hi, > > I'm hitting this NullPointerException using the json facet API. > > Same query using Facet component is working. > > Js

Re: Json facet api NullPointerException

2015-11-12 Thread Yago Riveiro
Solr 5.3.1 —/Yago Riveiro On Thu, Nov 12, 2015 at 4:21 PM, Yonik Seeley <ysee...@gmail.com> wrote: > Thanks for the report Yago, > What version is this? > -Yonik > On Thu, Nov 12, 2015 at 10:53 AM, Yago Riveiro <yago.rive...@gmail.com> wrote: >> Hi, >> >

Re: Json facet api NullPointerException

2015-11-12 Thread Yago Riveiro
> —/Yago Riveiro > On Thu, Nov 12, 2015 at 4:21 PM, Yonik Seeley <ysee...@gmail.com> wrote: >> Thanks for the report Yago, >> What version is this? >> -Yonik >> On Thu, Nov 12, 2015 at 10:53 AM, Yago Riveiro <yago.rive...@gmail.com> >> wrote: >>>

Re: Json facet api NullPointerException

2015-11-12 Thread Yonik Seeley
On Thu, Nov 12, 2015 at 11:48 AM, Yago Riveiro wrote: > In my query I have > sort: index, > > And should be > > sort:{index:desc|asc} > > I think that the json parser should raise a “json parsing error” ... Yeah, either that or "index" should be synonymous with "index

Re: NullPointerException

2015-10-16 Thread Mark Fenbers
Yes, I'm aware that building an index is expensive and I will remove "buildOnStartup" once I have it working. The field I added was an attempt to get it working... I have attached my latest version of solrconfig.xml and schema.xml (both are in the same attachment), except that I have removed

RE: NullPointerException

2015-10-13 Thread Duck Geraint (ext) GBJH
Mark Fenbers [mailto:mark.fenb...@noaa.gov] Sent: 12 October 2015 12:14 To: solr-user@lucene.apache.org Subject: Re: NullPointerException On 10/12/2015 5:38 AM, Duck Geraint (ext) GBJH wrote: > "When I use the Admin UI (v5.3.0), and check the spellcheck.build box" > Out of interes

Re: NullPointerException

2015-10-13 Thread Alessandro Benedetti
; Toxicology and Health Sciences > Syngenta UK > Email: geraint.d...@syngenta.com > > > -Original Message- > From: Mark Fenbers [mailto:mark.fenb...@noaa.gov] > Sent: 12 October 2015 12:14 > To: solr-user@lucene.apache.org > Subject: Re: NullPointerExceptio

RE: NullPointerException

2015-10-12 Thread Duck Geraint (ext) GBJH
User Group Subject: NullPointerException Greetings! I'm new to Solr Spellchecking... I have yet to get it to work. Attached is a snippet from my solrconfig.xml pertaining to my spellcheck efforts. When I use the Admin UI (v5.3.0), and check the spellcheck.build box, I get a NullPointe

Re: NullPointerException

2015-10-12 Thread Mark Fenbers
On 10/12/2015 5:38 AM, Duck Geraint (ext) GBJH wrote: "When I use the Admin UI (v5.3.0), and check the spellcheck.build box" Out of interest, where is this option within the Admin UI? I can't find anything like it in mine... This is in the expanded options that open up once I put a checkmark in

NullPointerException

2015-10-10 Thread Mark Fenbers
Greetings! I'm new to Solr Spellchecking... I have yet to get it to work. Attached is a snippet from my solrconfig.xml pertaining to my spellcheck efforts. When I use the Admin UI (v5.3.0), and check the spellcheck.build box, I get a NullPointerException stacktrace. The actual stacktrace

NullPointerException

2015-10-02 Thread Mark Fenbers
Greetings! Attached is a snippet from solrconfig.xml pertaining to my spellcheck efforts. When I use the Admin UI (v5.3.0), and check the spellcheck.build box, I get a NullPointerException stacktrace. The actual stacktrace is at the bottom of the attachment

NullPointerException for ExternalFileField when key field has no terms

2014-10-08 Thread Matthew Nigl
Hi, I use various ID fields as the keys for various ExternalFileField fields, and I have noticed that I will sometimes get the following error: ERROR org.apache.solr.servlet.SolrDispatchFilter û null:java.lang.NullPointerException at

RE: NullPointerException for ExternalFileField when key field has no terms

2014-10-08 Thread Markus Jelsma
Subject: NullPointerException for ExternalFileField when key field has no terms Hi, I use various ID fields as the keys for various ExternalFileField fields, and I have noticed that I will sometimes get the following error: ERROR org.apache.solr.servlet.SolrDispatchFilter û

Re: NullPointerException for ExternalFileField when key field has no terms

2014-10-08 Thread Matthew Nigl
@lucene.apache.org Subject: NullPointerException for ExternalFileField when key field has no terms Hi, I use various ID fields as the keys for various ExternalFileField fields, and I have noticed that I will sometimes get the following error: ERROR org.apache.solr.servlet.SolrDispatchFilter û

Re: [Spellcheck] NullPointerException on QueryComponent.mergeIds

2013-12-07 Thread Jean-Marc Desprez
] Sent: Tuesday, November 12, 2013 8:57 AM To: solr-user@lucene.apache.org Subject: [Spellcheck] NullPointerException on QueryComponent.mergeIds Hello, I'm following this tutorial : http://wiki.apache.org/solr/SolrCloud with a SolR 4.5.0 I'm at the very first step, only two replica and two

SolrCloud Term Vectors NullPointerException

2013-11-28 Thread Stanislav Sandalnikov
Hello everyone, I have problems with setting up SolrCloud to work with term vectors, failing with error: lst name=error str name=trace java.lang.NullPointerException at org.apache.solr.handler.component.TermVectorComponent.finishStage(TermVectorComponent.java:437) at

Re: TermVectorComponent NullPointerException

2013-11-27 Thread Erick Erickson
Please review: http://wiki.apache.org/solr/UsingMailingLists You've given us almost no information to go on here. Best, Erick On Tue, Nov 26, 2013 at 2:21 PM, GOYAL, ANKUR ag3...@att.com wrote: Hi, I am working on using term vector component with solr 4.2.1. If I use solr in a multicore

TermVectorComponent NullPointerException

2013-11-26 Thread GOYAL, ANKUR
Hi, I am working on using term vector component with solr 4.2.1. If I use solr in a multicore environment, then I am getting a Null Pointer exception. However, if I use single core as is mentioned at :- http://wiki.apache.org/solr/TermVectorComponent then I do not get any exception. However,

NullPointerException

2013-11-22 Thread Adrien RUFFIE
Hello all, I have perform a full indexation with solr, but when I try to perform an incrementation indexation I get the following exception (cf attachment). Any one have a idea of the problem ? Greate thank 23 oct. 2013 08:34:40 org.apache.solr.handler.dataimport.DataImporter doDeltaImport

Re: NullPointerException

2013-11-22 Thread Bill Bell
It seems to be a modified row and referenced in EvaluatorBag. I am not familiar with either. Sent from my iPad On Nov 22, 2013, at 3:05 AM, Adrien RUFFIE a.ruf...@e-deal.com wrote: Hello all, I have perform a full indexation with solr, but when I try to perform an incrementation

[Spellcheck] NullPointerException on QueryComponent.mergeIds

2013-11-12 Thread Jean-Marc Desprez
Hello, I'm following this tutorial : http://wiki.apache.org/solr/SolrCloud with a SolR 4.5.0 I'm at the very first step, only two replica and two shard and I have only *one* document in the index. When I try to get a spellcheck, I have this error : java.lang.NullPointerException at

RE: [Spellcheck] NullPointerException on QueryComponent.mergeIds

2013-11-12 Thread Dyer, James
. James Dyer Ingram Content Group (615) 213-4311 -Original Message- From: Jean-Marc Desprez [mailto:jm.desp...@gmail.com] Sent: Tuesday, November 12, 2013 8:57 AM To: solr-user@lucene.apache.org Subject: [Spellcheck] NullPointerException on QueryComponent.mergeIds Hello, I'm following

solr cloud: NullPointerException with empty resultset

2013-06-24 Thread Mid Night
We have a solr cloud installation and when I execute a query that returns an empty resultset because of the filter queries applied, a NullPointerException is thrown. This is the error msg: Solr HTTP error: OK (500) {error:{trace:java.lang.NullPointerException\n\tat

Re: Solrcloud 4.1 Cluster state NullPointerException error.

2013-01-30 Thread Luis Cappa Banda
I´ve noticed checking Cloud admin UI that sometimes one of the nodes appears with no Cloud information (even reloading cluster state .json). However, a while later the whole Cloud status information appears again. It looks like it disconnects and re-connects itself. Quite strage, guys...

Re: NullPointerException when debugQuery=true

2012-11-09 Thread Erick Erickson
If this went away when you made your id field into a string type rather than analyzed then it's probably not worth a JIRA... Erick On Thu, Nov 8, 2012 at 11:39 AM, Otis Gospodnetic otis.gospodne...@gmail.com wrote: Looks like a bug. If Solr 4.0, maybe this needs to be in JIRA along with

Re: NullPointerException when debugQuery=true

2012-11-08 Thread Otis Gospodnetic
Looks like a bug. If Solr 4.0, maybe this needs to be in JIRA along with some sample data you indexed + your schema, so one can reproduce it. Otis -- Search Analytics - http://sematext.com/search-analytics/index.html Performance Monitoring - http://sematext.com/spm/index.html On Thu, Nov 8,

Re: DIH throws NullPointerException when using dataimporter.functions.escapeSql with parent entities

2012-10-27 Thread Dominik Siebel
...@dsiebel.de | To: solr-user@lucene.apache.org | Sent: Monday, October 22, 2012 3:15:29 AM | Subject: Re: DIH throws NullPointerException when using dataimporter.functions.escapeSql with parent entities | | That's what I thought. | I'm just curious that nobody else seems to have this problem although

Re: DIH throws NullPointerException when using dataimporter.functions.escapeSql with parent entities

2012-10-26 Thread Lance Norskog
: DIH throws NullPointerException when using dataimporter.functions.escapeSql with parent entities | | That's what I thought. | I'm just curious that nobody else seems to have this problem although | I found the exact same issue description in the issue tracker | (https://issues.apache.org/jira

Fwd: DIH throws NullPointerException when using dataimporter.functions.escapeSql with parent entities

2012-10-19 Thread Dominik Siebel
Hi folks, I am currently migrating our Solr servers from a 4.0.0 nightly build (aprox. November 2011, which worked very well) to the newly released 4.0.0 and am running into some issues concerning the existing DataImportHandler configuratiions. Maybe you have an idea where I am going wrong here.

Re: DIH throws NullPointerException when using dataimporter.functions.escapeSql with parent entities

2012-10-19 Thread Lance Norskog
. - Original Message - | From: Dominik Siebel m...@dsiebel.de | To: solr-user@lucene.apache.org | Sent: Thursday, October 18, 2012 11:22:54 PM | Subject: Fwd: DIH throws NullPointerException when using dataimporter.functions.escapeSql with parent entities | | Hi folks, | | I am currently

DIH throws NullPointerException when using dataimporter.functions.escapeSql with parent entities

2012-10-17 Thread Dominik Siebel
Hi folks, I am currently migrating our Solr servers from a 4.0.0 nightly build (aprox. November 2011, which worked very well) to the newly released 4.0.0 and am running into some issues concerning the existing DataImportHandler configuratiions. Maybe you have an idea where I am going wrong here.

A strange Solr NullPointerException while shutting down Tomcat, possible connection to messed-up index files

2012-09-18 Thread Bryan Loofbourrow
I’m using Solr/Lucene 3.6 under Tomcat 6. When shutting down an indexing server after much indexing activity, occasionally, I see the following NullPointerException trace from Tomcat: INFO: Stopping Coyote HTTP/1.1 on http-1800 Exception in thread Lucene Merge Thread #1

Re: solr 3.4 with nTiers = 2: usage of ids param causes NullPointerException (NPE)

2012-04-12 Thread Dmitry Kan
Can anyone help me out with this? Is this too complicated / unclear? I could share more detail if needed. On Wed, Apr 11, 2012 at 3:16 PM, Dmitry Kan dmitry@gmail.com wrote: Hello, Hopefully this question is not too complex to handle, but I'm currently stuck with it. We have a system

Re: solr 3.4 with nTiers = 2: usage of ids param causes NullPointerException (NPE)

2012-04-12 Thread Mikhail Khludnev
Dmitry, The last NPE in HighlightingComponent is just a sad coding issue. few rows later we can see that developer expected to have some docs not found // remove nulls in case not all docs were able to be retrieved rb.rsp.add(highlighting, SolrPluginUtils.removeNulls(new

Re: solr 3.4 with nTiers = 2: usage of ids param causes NullPointerException (NPE)

2012-04-12 Thread Yonik Seeley
On Wed, Apr 11, 2012 at 8:16 AM, Dmitry Kan dmitry@gmail.com wrote: We have a system with nTiers, that is: Solr front base --- Solr front -- shards Although the architecture had this in mind (multi-tier), all of the pieces are not yet in place to allow it. The errors you see are a direct

Re: solr 3.4 with nTiers = 2: usage of ids param causes NullPointerException (NPE)

2012-04-12 Thread Dmitry Kan
Mikhail, Thanks for sharing your thoughts. Yes I have tried checking for NULL and the entire chain of queries between tiers seems to work. But I suspect, that some docs will be missing. In principle, unless there is an OutOfMemory or a shard down, the doc ids should be retrieving valid documents.

Re: solr 3.4 with nTiers = 2: usage of ids param causes NullPointerException (NPE)

2012-04-12 Thread Dmitry Kan
Thanks Yonik, This is what I expected. How big the change would be, if I'd start just with Query and Highlight components? Did the change to QueryComponent I made make any sense to you? It would of course mean a custom solution, which I'm willing to contribute as a patch (in case anyone

solr 3.4 with nTiers = 2: usage of ids param causes NullPointerException (NPE)

2012-04-11 Thread Dmitry Kan
Hello, Hopefully this question is not too complex to handle, but I'm currently stuck with it. We have a system with nTiers, that is: Solr front base --- Solr front -- shards Inside QueryComponent there is a method createRetrieveDocs(ResponseBuilder rb) which collects doc ids of each shard and

NullPointerException with distributed facets

2011-11-22 Thread Phil Hoy
Hi, When doing a distributed query in solr 4.0 (4.0.0.2011.06.25.15.36.22) with facet.missing=true and facet.limit=20 I get a NullPointerException. By increasing the facet limit to 200 or setting facet missing to false it seems to fix it. The shards both contain the field but one shard always

NullPointerException on queries to new 3rd core

2011-02-04 Thread Alex Thurlow
I just moved to a multi core solr instance a few weeks ago, and it's been working great. I'm trying to add a 3rd core and I can't query against it though. I'm running 1.4.1 (and tried 1.4.0) with the spatial search plugin. This is the section in solr.xml cores adminPath=/admin/cores

Re: NullpointerException when combining spellcheck component and synonyms

2010-09-22 Thread Stefan Moises
Hi all, wow, this is weird... now before I file the JIRA issue - one thing I forgot to mention is that I am using the edismax query parser. I've just done the following: 1) searched with edismax parser:

Re: NullpointerException when combining spellcheck component and synonyms

2010-09-22 Thread Stefan Moises
well, to sum it up... it doesn't really matter if I use standard or dismax, at the moment both give me NullPointers for the same query, although I didn't change anything since it was working ... it seems totally random, sometimes it works a couple of times, sometimes it doesn't :( Weird...

Re: NullpointerException when combining spellcheck component and synonyms

2010-09-21 Thread Stefan Moises
Hi again, well it turns out that it still doesn't work ... Sometimes it works (i.e. for some cores), sometimes I still get the nullpointer - e.g. if I create a new core and use the same settings as a working one, but index different data, then I add a synonym (e.g. foo = bar) and activate

Re: NullpointerException when combining spellcheck component and synonyms

2010-09-21 Thread Stefan Moises
Sure, no problem, I'll submit a JIRA entry :) Am 21.09.2010 16:13, schrieb Robert Muir: I don't think you should get an error like this from SynonymFilter... would you mind opening a JIRA issue? On Tue, Sep 21, 2010 at 9:49 AM, Stefan Moisesmoi...@shoptimax.de wrote: Hi again, well it

NullpointerException when combining spellcheck component and synonyms

2010-09-01 Thread Stefan Moises
Hi there, I am using Solr from SVN, https://svn.apache.org/repos/asf/lucene/dev/trunk (my last update/build on my dev server was in July I think)... I've encountered a strange problem when using the Spellcheck component in combination with the SynonymFilter... My text field is pretty

Re: NullpointerException when combining spellcheck component and synonyms

2010-09-01 Thread Stefan Moises
doh, looks like I only forgot to add the spellcheck component to my edismax request handler... now it works with: ... arr name=last-components strspellcheck/str strelevator/str /arr What's strange is that spellchecking seemed to work *without* that entry, too Cheers, Stefan Am

Re: NullPointerException with CURL, but not in browser

2010-07-27 Thread Rene Rath
Ouch! Absolutely correct - quoting the URL fixed it. Thanks for saving me a sleepless night! cheers - rene 2010/7/26 Chris Hostetter hossman_luc...@fucit.org : However, when I'm trying this very URL with curl within my (perl) script, I : receive a NullPointerException: : CURL-COMMAND: curl

NullPointerException with CURL, but not in browser

2010-07-26 Thread Rene Rath
str name=rows0/str /lst /lst result name=response numFound=3 start=0 maxScore=1.0/ /response However, when I'm trying this very URL with curl within my (perl) script, I receive a NullPointerException: CURL-COMMAND: curl -sL http://localhost:8983/solr/select?indent=onversion=2.2q=*fq=ListId

  1   2   >