Re: Use TopicStream as percolator

2020-05-01 Thread Charlie Hull
Great! I ran Flax, where we created Luwak, up to last year when we merged with OSC, so this is great to see. Did you know we donated Luwak to Lucene recently? https://issues.apache.org/jira/browse/LUCENE-8766 It would be great to work this up into a Solr contrib module Charlie .. Berlin

Re: Use TopicStream as percolator

2020-05-01 Thread SOLR4189
Hi everyone, I wrote SOLR Update Processor that wraps Luwak library and implements Saved Searches a la ElasticSearch Percolator. https://github.com/SOLR4189/solcolator for anyone who wants to use. -- Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Re: Use TopicStream as percolator

2018-04-08 Thread Joel Bernstein
Some interesting articles on uses of the topic, that might answer the questions you have above: http://joelsolr.blogspot.com/2017/01/deploying-ai-alerting-system-with-solrs.html http://joelsolr.blogspot.com/2017/01/deploying-solrs-new-parallel-executor.html If you have a smaller number of alerts

Use TopicStream as percolator

2018-04-08 Thread SOLR4189
Hi all, I need to implement percolator functionality in SOLR (i.e. get all indexed docs that are matched to monitored query). How can I do this? I found out in Solr TopicStream class. If I understand right, using TopicStream with DaemonStream will give me percolator functionality, won't it? (lik