Re: Command Line Indexer

2018-09-18 Thread Shawn Heisey
On 9/18/2018 2:21 PM, Christopher Schultz wrote: AIUI, Solr doesn't support updating a single field in a document. The document is replaced no matter how hard to try to be surgical about updating a single field. Solr does have Atomic Update functionality.  For this to work, the index must be

Re: Command Line Indexer

2018-09-18 Thread Dan Brown
Yup, thanks for the clarification. I see now that some of the items I list in 2 are moot. On Tue, Sep 18, 2018 at 4:16 PM Alexandre Rafalovitch wrote: > Uhm, inline: > > On 18 September 2018 at 17:05, Dan Brown wrote: > > 1. Thank you. > > > > 2. I think this is what you're looking for.

Re: Command Line Indexer

2018-09-18 Thread Alexandre Rafalovitch
Oops, premature send. But basically, nearly all the items below seem to be a mix of things that CSV can already do or that URP can already do or would be the good place to inject that as a plugin. E.g.

Re: Command Line Indexer

2018-09-18 Thread Alexandre Rafalovitch
Uhm, inline: On 18 September 2018 at 17:05, Dan Brown wrote: > 1. Thank you. > > 2. I think this is what you're looking for. You'd be able to be more > specific than with bin/post. For instance: > a. specify the CSV delimiter, CSV quote character, and multivalued field > delimiter

Re: Command Line Indexer

2018-09-18 Thread Dan Brown
1. Thank you. 2. I think this is what you're looking for. You'd be able to be more specific than with bin/post. For instance: a. specify the CSV delimiter, CSV quote character, and multivalued field delimiter b. the dynamic-fields feature let's you write plugins in Java to define values (very

Re: Command Line Indexer

2018-09-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Dan, On 9/18/18 2:51 PM, Dan Brown wrote: > I've been working on this for a while and it's finally in a state > where it's ready for public consumption. > > This is a command line indexer that will index CSV or JSON > documents:

Re: Command Line Indexer

2018-09-18 Thread Alexandre Rafalovitch
1. Congrats! 2. How is this different from bin\post? CSV and JSON are both supported formats. I am sure it is very clear to you, but to a visitor - not so much. 3. What is the significance of "replace just the field". Is that an atomic update? Similar to AtomicUpdateProcessorFactory? What is the