RE: External file fields

2018-02-02 Thread Chris Hostetter
category_rank i want to change. : : -Original Message- : From: Chris Hostetter [mailto:hossman_luc...@fucit.org] : Sent: Friday, February 2, 2018 12:24 PM : To: solr-user@lucene.apache.org : Subject: RE: External file fields : : : : I did look into updatable docValues, but my understanding is that the :

RE: External file fields

2018-02-02 Thread Brian Yee
, February 2, 2018 12:24 PM To: solr-user@lucene.apache.org Subject: RE: External file fields : I did look into updatable docValues, but my understanding is that the : field has to be non-indexed (indexed="false"). I need to be able to sort : on these values. External field fields are sortable

RE: External file fields

2018-02-02 Thread Chris Hostetter
: I did look into updatable docValues, but my understanding is that the : field has to be non-indexed (indexed="false"). I need to be able to sort : on these values. External field fields are sortable. YOu can absolutely sort on a field that is docValues="true" indexed="false" ... that is

Re: External file fields

2018-02-02 Thread Emir Arnautović
r/guide/6_6/updating-parts-of-documents.html#UpdatingPartsofDocuments-In-PlaceUpdates > > > -Original Message- > From: Erick Erickson [mailto:erickerick...@gmail.com] > Sent: Thursday, February 1, 2018 5:00 PM > To: solr-user <solr-user@lucene.apache.org> > Subject:

RE: External file fields

2018-02-02 Thread Brian Yee
ments.html#UpdatingPartsofDocuments-In-PlaceUpdates -Original Message- From: Erick Erickson [mailto:erickerick...@gmail.com] Sent: Thursday, February 1, 2018 5:00 PM To: solr-user <solr-user@lucene.apache.org> Subject: Re: External file fields Have you considered updateable docValues? Best, Er

Re: External file fields

2018-02-02 Thread Charlie Hull
On 01/02/2018 18:55, Brian Yee wrote: Hello, I want to use external file field to store frequently changing inventory and price data. I got a proof of concept working with a mock text file and this will suit my needs. What is the best way to keep this file updated in a fast way. Ideally I

Re: External file fields

2018-02-02 Thread Emir Arnautović
Maybe you can try or extend Sematext’s Redis parser: https://github.com/sematext/solr-redis . Downside of this approach is another moving part - Redis. HTH, Emir -- Monitoring - Log Management - Alerting - Anomaly Detection Solr & Elasticsearch

Re: External file fields

2018-02-01 Thread Erick Erickson
Have you considered updateable docValues? Best, Erick On Thu, Feb 1, 2018 at 10:55 AM, Brian Yee wrote: > Hello, > > I want to use external file field to store frequently changing inventory and > price data. I got a proof of concept working with a mock text file and this >