streaming from /export sorts fields, /select does not

2019-03-12 Thread David '-1' Schmid
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)

Re: UpdateHandler batch size / search solr-user

2019-02-19 Thread David '-1' Schmid
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

How to suggest prefix matches over all tokens of a field (was Re: Suggest Component, prefix match (sur-)name)

2019-02-18 Thread David '-1' Schmid
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

UpdateHandler batch size / search solr-user

2019-02-18 Thread David '-1' Schmid
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

Re: Suggest Component, prefix match (sur-)name

2019-02-18 Thread David '-1' Schmid
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

Re: Suggest Component, prefix match (sur-)name

2019-02-17 Thread David '-1' Schmid
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

Suggest Component, prefix match (sur-)name

2019-02-15 Thread David '-1' Schmid
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

Suggest Component, prefix match (sur-)name

2019-02-15 Thread David '-1' Schmid
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

Graph/Stream requestHandlers in standalone

2018-08-13 Thread David '-1' Schmid
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