I also opened https://issues.apache.org/jira/browse/SOLR-10532 to fix
this annoying and confusing behavior of SuggestComponent.
On Thu, Apr 20, 2017 at 8:40 PM, Andrea Gazzarini wrote:
> Ah great, many thanks again!
>
>
>
> On 20/04/17 17:09, Shalin Shekhar Mangar wrote:
>>
>> Hi Andrea,
>>
>> Lo
Ah great, many thanks again!
On 20/04/17 17:09, Shalin Shekhar Mangar wrote:
Hi Andrea,
Looks like I have you some bad information. I looked at the code and
ran a test locally. The suggest.build and suggest.reload params are in
fact distributed across to all shards but only to one replica of e
Hi Andrea,
Looks like I have you some bad information. I looked at the code and
ran a test locally. The suggest.build and suggest.reload params are in
fact distributed across to all shards but only to one replica of each
shard. This is still bad enough and you should use buildOnOptimize as
suggest
Perfect, I don't need NRT at this moment so that fits perfectly
Thanks,
Andrea
On 20/04/17 14:37, Shalin Shekhar Mangar wrote:
Yeah, if it is just once a day then you can afford to do an optimize.
For a more NRT indexing approach, I wouldn't recommend optimize at
all.
On Thu, Apr 20, 2017 at 5
Yeah, if it is just once a day then you can afford to do an optimize.
For a more NRT indexing approach, I wouldn't recommend optimize at
all.
On Thu, Apr 20, 2017 at 5:29 PM, Andrea Gazzarini wrote:
> Ok, many thanks
>
> I see / read that it should be better to rely on the background merging
> in
Ok, many thanks
I see / read that it should be better to rely on the background merging
instead of issuing explicit optimizes, but I think in this case one
optimize in a day it shouldn't be a problem.
Did I get you correctly?
Thanks again,
Andrea
On 20/04/17 13:17, Shalin Shekhar Mangar wro
On Thu, Apr 20, 2017 at 4:27 PM, Andrea Gazzarini wrote:
> Hi Shalin,
> many thanks for your response. This is my scenario:
>
> * I build my index once in a day, it could be a delta or a full
>re-index.In any case, that takes some time;
> * I have an auto-commit (hard, no soft-commits) set t
Hi Shalin,
many thanks for your response. This is my scenario:
* I build my index once in a day, it could be a delta or a full
re-index.In any case, that takes some time;
* I have an auto-commit (hard, no soft-commits) set to a given period
and during the indexing cycle, several hard comm
Comments inline:
On Wed, Apr 19, 2017 at 2:46 PM, Andrea Gazzarini wrote:
> Hi,
> any help out there?
>
> BTW I forgot the Solr version: 6.5.0
>
> Thanks,
> Andrea
>
>
> On 18/04/17 11:45, Andrea Gazzarini wrote:
>>
>> Hi,
>> I have a project, with SolrCloud, where I'm going to use the Suggester
Hi,
any help out there?
BTW I forgot the Solr version: 6.5.0
Thanks,
Andrea
On 18/04/17 11:45, Andrea Gazzarini wrote:
Hi,
I have a project, with SolrCloud, where I'm going to use the Suggester
component (BlendedInfixLookupFactory with DocumentDictionaryFactory).
Some info:
* I will have
Thank you. I like both option XSLT and mapping rules. Would you please
provide some pointers to it? so that I can use it.
Thanks again.
Regards,
rn
On Wed, Mar 15, 2017 at 1:37 PM, Alexandre Rafalovitch
wrote:
> Additionally,
>
> Solr can index arbitrary XML by applying an XSLT transform to it
Would you please elaborate the 1>
I guess you are saying add an attribute in managed-schema that is stored
only. i.e
While posting the doc provide the location of file with loc attribute?
Thanks again.
Regards,
rn
On Wed, Mar 15, 2017 at 2:24 PM, Erick Erickson
wrote:
> bq: How original docu
Additionally,
Solr can index arbitrary XML by applying an XSLT transform to it
before indexing. But you still need to write the XSLT transform.
Solr can also index arbitrary XML with DataImportHandler by pulling
out specific fields. But you need to write mapping rules.
I am not sure what exactly
bq: How original document X will be returned? Should I store location
of X in Tx? I s there a generic way of doing it?
A couple of choices here:
1> create a stored-only field (i.e. stored="true" indexed="false"
docValues="false") and stuff the original in that. It'll chew up some
disk space, but
Solr does not index XML. Period.
Solr uses an XML protocol for indexing. It can also use JSON or binary
protocols for indexing.
You need to convert your XML document into fields, then send those fields to
Solr using one of the indexing protocols.
If you need an XML database and search engine,
Thank you Erick for such a prompt reply. I am bit confused.
Suppose I have a document X, I transformed it document Tx. Tx matches the
format that you have described. I post Tx and I asume it get indexed.
Now I query. How original document X will be returned? Should I store
location of X in Tx?
Solr does _not_ index arbitrary XML, it will index XML in a very
specific format, i.e.
value
.
.
So if you're sending arbitrary XML to Solr I'm actually surprised it's indexing.
You might be able to do something with sending docs through Tika
(ExtractingRequestHandler).
_name}[ DATA ]
>
>
> https://cwiki.apache.org/confluence/display/solr/Other+Parsers
>
>
> : Date: Tue, 5 Jul 2016 08:45:57 +0530
> : From: Anil
> : Reply-To: solr-user@lucene.apache.org
> : To: solr-user@lucene.apache.org
> : Subject: Re: Index and query brackets
: Date: Tue, 5 Jul 2016 08:45:57 +0530
: From: Anil
: Reply-To: solr-user@lucene.apache.org
: To: solr-user@lucene.apache.org
: Subject: Re: Index and query brackets
:
: NO Ediwin. Thanks for your response.
:
: i was checking how to check [1 TO 5] as a content not as a range query.
:
: i tried by
NO Ediwin. Thanks for your response.
i was checking how to check [1 TO 5] as a content not as a range query.
i tried by escaping [ and ] and did not work. seems need to check analyzers
at index side.
Regards,
Anil
On 5 July 2016 at 08:42, Zheng Lin Edwin Yeo wrote:
> Hi Anil,
>
> Are you refe
Hi Anil,
Are you referring to something like q=level:[1 TO 5] ? This will search for
level that ranges from 1 to 5.
You may refer to the documentation here:
https://wiki.apache.org/solr/SolrQuerySyntax
Regards,
Edwin
On 4 July 2016 at 15:05, Anil wrote:
> HI,
>
> how can index and query conte
21 matches
Mail list logo