Re: solr 9.8.0 and data import handler

2025-02-18 Thread Mikhail Khludnev
On Tue, Feb 18, 2025 at 10:16 PM Mike Phillips < m.phill...@prosperodigital.com> wrote: > Is there a mail group or a way to reach just the data import handler > project? > It's hosted here https://github.com/SearchScale/dataimporthandler > Our project depends solely on the data import handler t

More information about copyField?

2025-02-18 Thread mwood
So *how* does copyField work? Do I wind up with two identical copies of the data stored in the index (if stored='true')? Does the copyField element accept a 'stored' attribute, and can it have a different value than the source field declares? What *are* the defined attributes for copyField, and

Re: More information about copyField?

2025-02-18 Thread mwood
On Tue, Feb 18, 2025 at 05:44:23PM +, Rahul Goswami wrote: > The official documentation should be a good starting point for your > questions : > https://solr.apache.org/guide/solr/latest/indexing-guide/copy-fields.html > > Reading the above documentation should help answer some of them and p

Re: solr 9.8.0 and data import handler

2025-02-18 Thread Dmitri Maziuk
On 2/18/25 13:15, Mike Phillips wrote: When did this go wrong? We are running on solr 8.4.1 and full and delta imports work just fine. I'm sure they do, given a sufficiently straightforward schema and clean data and preferably a "last updated" column in each table. Which is not what our sourc

Re: Medium vulnerability CVE-2024-6763 found in org.eclipse.jetty:jetty-http 10.0.22

2025-02-18 Thread Altamirano, Emmanuel
Hi community. By the chance do you have any update regarding this reported CVE-2024-6763? Best, Emmanuel Altamirano (E-man-u-wellaa l t aa – m ih r AA n oh) Sr Consultant, Applications Development emmanuel.altamir...@transunion.com P: 312-985-3

Re: More information about copyField?

2025-02-18 Thread Walter Underwood
copyField is pretty straightforward. Before any field processing, it copies the data destined for one field to another field. The copyField element/directive doesn’t take any attributes. It copies, period. The destination field has stored, indexed, etc. The source field and destination field are

Re: solr 9.8.0 and data import handler

2025-02-18 Thread Mike Phillips
When did this go wrong? We are running on solr 8.4.1 and full and delta imports work just fine. We need to get to a solr version without log security CVEs and we rely on the DIH. Is there a mail group or a way to reach just the data import handler project? It is miss leading to say the DIH o

Re: solr 9.8.0 and data import handler

2025-02-18 Thread Mike Phillips
The database connection count to my database goes After Full import 1:  25 connections After Full import 2:  50 connections After Full import 3:  73 connections After Full import 4:  90 connections         Exception about reading, that is no doubt related to lack of cleanup of database connectio

Re: More information about copyField?

2025-02-18 Thread Walter Underwood
> On Feb 18, 2025, at 10:08 AM, mw...@iu.edu wrote: > > Thank you. This is good to know. In > https://solr.apache.org/guide/solr/latest/indexing-guide/copy-fields.html > there is no list of defined attributes and no statement that copyField > accepts the same attributes as field. The only attr

Re: More information about copyField?

2025-02-18 Thread Walter Underwood
copyField is pretty straightforward. Before any field processing, it copies the data destined for one field to another field. The copyField element/directive doesn’t take any attributes. It copies, period. The destination field has stored, indexed, etc. The source field and destination field are

Re: More information about copyField?

2025-02-18 Thread Walter Underwood
> On Feb 18, 2025, at 10:08 AM, mw...@iu.edu wrote: > > Thank you. This is good to know. In > https://solr.apache.org/guide/solr/latest/indexing-guide/copy-fields.html > there is no list of defined attributes and no statement that copyField > accepts the same attributes as field. The only attr

Re: More information about copyField?

2025-02-18 Thread Rahul Goswami
The official documentation should be a good starting point for your questions : https://solr.apache.org/guide/solr/latest/indexing-guide/copy-fields.html Reading the above documentation should help answer some of them and provide a general structure to your understanding of copyFields. Overall,