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 > > e

Re: NullPointerException in Graph Traversal nodes streaming expression

2021-01-21 Thread Mike Drob
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&shards.tolerant=true and > shards.tolerant=true in nodes expressions, with no luck. I als

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&shards.tolerant=true and shards.tolerant=true in nodes expressions, with no luck. I also t

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 "&wt=csv" to the end of the collection's LIST api (eg: http://localhost:8983/solr/admin/co

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 org.apach

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 Matc

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) thro

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 tr

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&collection=name&sha

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
pand > > 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 maj

Re: NullPointerException with ExpandComponent on Collapsed Null Values

2019-06-04 Thread aus...@3bx.org.INVALID
ity 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 t

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 use

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 fold

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 schema

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 Dani

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 i

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 08:47:46

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&start=0&rows=1&indent=on&tv=true&tv.all=true&terms=trueWhen run, I get the following messagejava.lang.NullPointerException at org.apache.solr.handler.component.TermVectorComponent.process(TermVec

Re: NullPointerException in PeerSync.handleUpdates

2017-11-22 Thread Michael Braun
? 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. > > >> > >

Re: NullPointerException in PeerSync.handleUpdates

2017-11-22 Thread Pushkar Raste
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.Pee

Re: NullPointerException in PeerSync.handleUpdates

2017-11-21 Thread Erick Erickson
; 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 wrote: >> > Hi, >> > >> > We are running 6.2 version of Solr and hitting this error frequently. >> &g

Re: NullPointerException in PeerSync.handleUpdates

2017-11-21 Thread S G
e, 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. core=my_core:java.lang. > NullPointerException > > at org.apache.solr.update.PeerSync.ha

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. core=my_core:java.lang.NullPointerException > at org.apache.s

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 org.apache.solr.update.PeerSync.handleResponse(PeerSync.java:

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.SolrExce

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 I'm not setting in > the StreamC

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: ja

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? - StringBu

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(); streamContext.s

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: https://github.com/

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 org.apache.solr.client.solrj.io.stream.CloudSolrSt

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.apach

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

2016-11-01 Thread Gintautas Sulskus
t;>>> how’d you set “$term” - the correct way would be &term=apple on the > Solr > >>>> request. > >>>> > >>>> > >>>>> On Oct 31, 2016, at 2:07 PM, Gintautas Sulskus < > >>>> gintautas.suls...@gmail.com&

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

2016-11-01 Thread Erik Hatcher
PM, Gintautas Sulskus < >>>> gintautas.suls...@gmail.com> wrote: >>>>> >>>>> Hi, >>>>> >>>>> I am trying to construct a timestamp-boosted query comprising two >>>> weighted >>>>

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

2016-11-01 Thread Gintautas Sulskus
> >>> 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=apple

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

2016-11-01 Thread Erik Hatcher
{!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 "title" >>> and "body&

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

2016-11-01 Thread Gintautas Sulskus
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 SearchHandler: > > > > > > > > >

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

2016-10-31 Thread Markus Jelsma
ene.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.16e-11,1,1)} >  

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

2016-10-31 Thread Gintautas Sulskus
ot;: > > > > {!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 "title" > > and

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

2016-10-31 Thread Erik Hatcher
uot;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 usin

Getting NullPointerException in an attempt to boost query result by date

2016-10-31 Thread Gintautas Sulskus
above to 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

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 a

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 org.apache.solr.handler.dataimport.DataI

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

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: 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 asc". -Yonik

Re: Json facet api NullPointerException

2015-11-12 Thread Yago Riveiro
u, Nov 12, 2015 at 4:21 PM, Yonik Seeley wrote: >> Thanks for the report Yago, >> What version is this? >> -Yonik >> On Thu, Nov 12, 2015 at 10:53 AM, Yago Riveiro >> wrote: >>> Hi, >>> >>> I'm hitting this NullPointerException using

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 wrote: > Thanks for the report Yago, > What version is this? > -Yonik > On Thu, Nov 12, 2015 at 10:53 AM, Yago Riveiro wrote: >> Hi, >> >> I'm hitting this NullPointerException using t

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 wrote: > Hi, > > I'm hitting this NullPointerException using the json facet API. > > Same query using Facet component is working. > > Json facet query: > >

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]&rows=0&json.facet={ urls: {

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 Alessandro Benedetti
; Data Scientist > 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: Nul

RE: NullPointerException

2015-10-13 Thread Duck Geraint (ext) GBJH
Message- From: 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"

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

RE: NullPointerException

2015-10-12 Thread Duck Geraint (ext) GBJH
20:03 To: solr 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,

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 stack

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. The

Re: NullPointerException for ExternalFileField when key field has no terms

2014-10-08 Thread Matthew Nigl
48 > > To: solr-user@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

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.apach

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 org.apache.solr.search.function.FileFloatSource.getFlo

Re: [Spellcheck] NullPointerException on QueryComponent.mergeIds

2013-12-07 Thread Jean-Marc Desprez
m: 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 this tutorial : http://wiki.apache.org/solr/Sol

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: java.lang.NullPointerException at org.apache.solr.handler.component.TermVectorComponent.finishStage(TermVectorComponent.java:437) at org.apache.solr.handler.component.SearchHandler.handleReq

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 wrote: > Hi, > > I am working on using term vector component with solr 4.2.1. If I use solr > in a multicore environment,

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, t

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 wrote: > > Hello all, > > I have perform a full indexation with solr, but when I try to perform an > incrementation indexation I get the

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 INF

RE: [Spellcheck] NullPointerException on QueryComponent.mergeIds

2013-11-12 Thread Dyer, James
lCheckComponent#Distributed_Search_Support . 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.mergeI

[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 org.apach

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.N

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... 2013/1/3

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, 201

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

2012-10-27 Thread Dominik Siebel
- > | From: "Dominik Siebel" > | 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. > |

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/j

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

2012-10-22 Thread Dominik Siebel
f the JIRA issues against the DIH from your old Solr > capture date. > > > - Original Message - > | From: "Dominik Siebel" > | To: solr-user@lucene.apache.org > | Sent: Thursday, October 18, 2012 11:22:54 PM > | Subject: Fwd: DIH throws NullPointer

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

2012-10-19 Thread Lance Norskog
date. - Original Message - | From: "Dominik Siebel" | 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 currentl

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

2012-10-18 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.

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 Thre

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 interested

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 Yonik Seeley
On Wed, Apr 11, 2012 at 8:16 AM, Dmitry Kan 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 result of that.

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 SimpleOrderedMap(a

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 wrote: > Hello, > > Hopefully this question is not too complex to handle, but I'm currently > stuck with it. > > We have a system with nTiers, tha

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 I've removed the index dir and c

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-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: /select?indent=on&version=2.2&q=beffy&fq=&start=0&rows=10&fl=*%2Cscore&qt=dismax&wt=standa

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 Moises wrote: Hi again, well it turns out that it sti

Re: NullpointerException when combining spellcheck component and synonyms

2010-09-21 Thread 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 Moises wrote: > 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

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-01 Thread Stefan Moises
doh, looks like I only forgot to add the spellcheck component to my edismax request handler... now it works with: ... spellcheck elevator What's strange is that spellchecking seemed to work *without* that entry, too Cheers, Stefan Am 01.09.2010 13:33, schrieb Stefan Moises: Hi ther

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 sta

  1   2   >