Hi!
I've encountered something surprising in solr on the stream handler.
When I use the expression:
select(
search(s2, q="author:"Florian Lindemann"", fl="id, author, title", sort="id
desc", qt=/select),
indexOf(author, "Florian Lindemann") as idx,
author,
title
)
.. response (snippet)
Hi!
On 2019-02-18T20:36:35, Erick Erickson wrote:
> Typically, people set their autocommit (hard) settings in
> solrconfig.xml and forget about it. I usually use a time-based trigger
> and don’t use documents as a trigger.
I added a timed autoCommit and it seems to work out nicely. Thank you!
> U
On 2019-02-18T18:12:44, David '-1' Schmid wrote:
> Will report back if that's working out.
It's working!
If anybody want's to replicate, here's what I
Hello!
Another question I could not find an answer to:
is there a best-practice / recommendation for pushing several million
documents into a new index?
I'm currently splittig my documents into batches of 10,000 json-line
payloads into the update request handler, with commit set to 'true'
(yes, f
Hello again!
After playing around with more simple solutions, I gather the suggester
cannot do this.
I've found a resource (namely 'Solr in Action'), they use a
combination of
- two copyFields:
- solr.TextField with simple whitespace tokenizer (field:'words')
- as above, but with added EdgeNG
Hi Lev,
On 2019-02-15T17:14:50, Tannen, Lev (USAEO) [Contractor] wrote:
> If I understood your requirement correctly you should use "AND" rather
> than "or". Also I, believe, "AND" should be in capital letters, but I
> am not sure.
I think that the suggestion query does not support boolean logic
Hello solr-users!
I'm a bit stumped and after some days of trial-and-error, I've come to
the conclusion that I cannot figure this out by myself.
Where I'm at:
Solr 7.7 in cloud mode:
- 3 shards,
- 1 replication factor,
- 1 shards per node,
- 3 nodes,
- coordinated with external zookeeper
- r
Hello solr-users!
I'm a bit stumped and after some days of trial-and-error, I've come to
the conclusion that I cannot figure this out by myself.
Where I'm at:
Solr 7.7 in cloud mode:
- 3 shards,
- 1 replication factor,
- 1 shards per node,
- 3 nodes,
- coordinated with external zookeeper
- r
Hello!
I'm interested in using the graph traversal streaming expressions.
My solr instance is running in standalone (not SolrCloud) mode, so I'm
missing the "Stream" interface on the admin pages. The request handler
is there (I guess because it's implicit), but no UI.
Is the streaming something t