On Wed, 2017-09-13 at 11:56 -0700, fabigol wrote:
> my problem is that my index freeze several time and i don't know why.
> So i lost all the data of my index.
> I have 14 million of documents from postgresql database. I have an
> only node with 31 GO for my JVM and my server has 64GO. My index mak
Hi everyone,
First of all, i want to use spatial index for my data include polyghons and
points. But solr indexed first 18 rows, other rows not indexed. I need sample
datas include polyghons and points.
Other problem, i will write spatial query this datas. This spatial query
include inters
I agree with Tom. Doc values and stored fields are present for different
reasons. Doc values is another index that gets build for faster
sorting/faceting.
On Wed, Sep 13, 2017 at 11:30 PM Tom Evans wrote:
> On Tue, Sep 12, 2017 at 4:06 AM, Aman Tandon
> wrote:
> > Hi,
> >
> > We want to know ab
Hi,
I'm a beginner at SolrJ , and am currently looking to implement and
integrate the same at my current organisation using Java .
After a lot of research, I failed to find any good material / examples for
SolrJ 's Java library that I could use as reference.
Please suggest some good material.
Th
Hi,
This may help:
https://github.com/leoperezpulido/lucene-solr/tree/master/solr/solrj/src/test/org/apache/solr/client/solrj
Regards.
On Thu, Sep 14, 2017 at 4:21 AM, Vishal Srivastava wrote:
> Hi,
> I'm a beginner at SolrJ , and am currently looking to implement and
> integrate the same at m
hi Can Ezgi
> First of all, i want to use spatial index for my data include
polyghons and points. But solr indexed first 18 rows, other rows not
indexed.
Do all rows have a unique id field?
Are there errors in the logfile?
cheers -- Rick
.
Hi,
I have a problem when searching on email addresses.
@ seems to be handled as a special character but I don't find anything about it
in the documentation.
This is my test data
t...@one.com
t...@two.com
searching for test* results both, ok.
searching for t...@one.com results the correct one,
Hi,
Can you give us a little information about the query parser you using in
your handler ?
Thanks,
Ati
On Thu, Sep 14, 2017 at 4:36 PM, Mannott, Birgit
wrote:
> Hi,
>
> I have a problem when searching on email addresses.
> @ seems to be handled as a special character but I don't find anythin
On 9/14/2017 5:06 AM, Mannott, Birgit wrote:
> I have a problem when searching on email addresses.
> @ seems to be handled as a special character but I don't find anything about
> it in the documentation.
>
> This is my test data
> t...@one.com
> t...@two.com
Chances are that have analysis define
You may want to use UAX29URLEmailTokenizerFactory tokenizer into your
analysis chain.
Thanks,
Susheel
On Thu, Sep 14, 2017 at 8:46 AM, Shawn Heisey wrote:
> On 9/14/2017 5:06 AM, Mannott, Birgit wrote:
> > I have a problem when searching on email addresses.
> > @ seems to be handled as a speci
I had never seen the /solr/admin/metrics endpoint, so I tried to access
it on my dev server. It threw an exception. This is the first line:
2017-09-1414:27:11.629ERROR
(qtp1394336709-480905)[]o.a.s.h.RequestHandlerBaseorg.apache.lucene.store.AlreadyClosedException:Alreadyclosed
The rest of the
Hi Any one tried, have 2 solr Instance with One Data Directory.
I get below Error when i try to point the 2nd solr to the first solr directory.
Any help ?
org.apache.solr.common.SolrException:org.apache.solr.common.SolrException:
Index dir '/engine/data/index/' of core 'engine' is already loc
I know I can apply PatternReplaceFilterFactory to remove control characters
from indexed value. However, is it possible to do similar thing for stored
value? Because of some control characters included in indexing request,
Solr throws Illegal Character Exception.
Hello all,
Is it possible to highlight the results of subqueries?
Thanks,
-Peter
--
Peter Eichman
Senior Software Developer
University of Maryland Libraries
peich...@umd.edu
Sounds as though an update request processor will do that, and also
eliminate the need to use the PatternReplaceFilterfactory downstream.
Take a look at the documentation in
https://lucene.apache.org/solr/guide/6_6/update-request-processors.html.
I'm thinking that the RegexReplaceProcessorFactory
Hello,
You can not do this in Solr, you cannot even send non-character code points in
the first place. For Apache Nutch we solved the problem by stripping those
non-character code points from Strings before putting them in SolrDocument.
Check the ticket, you can easily resuse the strip method.
On 9/14/2017 10:18 AM, Ravi Kumar Taminidi wrote:
> Hi Any one tried, have 2 solr Instance with One Data Directory.
>
> I get below Error when i try to point the 2nd solr to the first solr
> directory.
>
> Any help ?
>
> org.apache.solr.common.SolrException:org.apache.solr.common.SolrException:
@Arnold: are these non UTF-8 control characters (which is what the Nutch
issue was about) or otherwise legal UTF-8 characters which Solr for some
reason is choking on ?
If you could provide a full stack trace it would be really helpful.
On Thu, Sep 14, 2017 at 2:55 PM, Markus Jelsma
wrote:
>
Thanks for information. Here is the full stack trace. I thought to handle it
from client side but client apps are not under my control and I don't have
access to them.
org.apache.solr.common.SolrException: Illegal character ((CTRL-CHAR, code
11))
at [row,col {unknown-source}]: [1,413]
at
I have a staging and a production solr cluster. I'd like to have them use
the same zookeeper cluster. It seems like it is possible if I can set a
different directory for the second cluster. I've looked through the
documentation though and I can't quite figure out where to set that up. As
a result m
When you specify the zk string for a solr instance, you typically include a
chroot in it. I think the default is /solr, but it doesn't have to be, so
you should be able to run with -z zk1:2181/sorl-dev and /solr-prod
https://lucene.apache.org/solr/guide/6_6/setting-up-an-external-zookeeper-ensembl
See:
https://lucidworks.com/2011/11/29/whats-with-lowercasing-wildcard-multiterm-queries-in-solr/
It discusses the general problem of particular filters being able to
cope with wildcards or not. Generally any filter that could
potentially produce more than one output token per input token is
skip
looks as though the problem is in parsing some malformed XML, based on
what I'm seeing:
...
Caused by: com.ctc.wstx.exc.WstxUnexpectedCharException: Illegal character
((CTRL-CHAR, code 11))
... ( char #11 is a vertical tab).
This should be fixed outside Solr, but if that is not practical, and yo
Hello All,
I am confused by the field search behavior of solr (6.6), and hope someone
can help me understand the results.
For example,
I search "fit you handgun" on the field of "title_lemma".
http://localhost:8983/solr/bkb4/select?fq=doc_type:
document&indent=on&q=title_lemma:%20fit%20you%20han
Hi Chang Wang,
Searching is worng here, q=title_lemma: fit you handgun
It will search title_lemma: fit or _text:you or _text:handgun (if stop words
are not excluded)
Here _text is default search field , you might have different default search
field.
Try search like q=title_lemma:(fit you han
Hi,all
An exception as below occurred when I used spellcheck component only for
specific word "さいじんg".
2017-09-13 23:07:30.911 INFO (qtp1712536284-299) [c:hoge s:shard2
r:core_node4 x:hoge_shard2_replica2] o.a.s.c.S.Request
[hoge_shard2_replica2] webapp=/solr path=/suggest_ja
params={q=*:*&spel
26 matches
Mail list logo