Re: [TOKYO Lucene/Solr meetup] ~ How to Integrate Open Source Large Language with Apache Solr (Alessandro) ~

2023-12-01 Thread Mikhail Khludnev
Hi there! Is it supposed to go right now? I joined via link in event https://meet.google.com/eob-sjub-ghe, but I'm the only one. On Mon, Nov 27, 2023 at 5:01 AM Moriyasu Kannami < moriyasu.kann...@rondhuit.com> wrote: > Hi, Alessandro. > > Thank you for your reply and advertisement. > I am looki

Re: [TOKYO Lucene/Solr meetup] ~ How to Integrate Open Source Large Language with Apache Solr (Alessandro) ~

2023-12-01 Thread Koji Sekiguchi
https://meet.google.com/zrf-khvk-ifw 2023年12月1日(金) 17:09 Mikhail Khludnev : > Hi there! > Is it supposed to go right now? I joined via link in event > https://meet.google.com/eob-sjub-ghe, but I'm the only one. > > On Mon, Nov 27, 2023 at 5:01 AM Moriyasu Kannami < > moriyasu.kann...@rondhuit.co

Re: Invalid JSON response with UUID field

2023-12-01 Thread Mikhail Khludnev
Andrew, do you got the same problem if UUID is not a primary, but just a regular field? blind guess mode on: I suppose this bug resides a log ago https://issues.apache.org/jira/browse/SOLR-10653 But I guess it was hidden by old text json writer, until https://issues.apache.org/jira/browse/SOLR-166

solr 8.11 attribute for deltaImportQuery

2023-12-01 Thread Vince McMahon
Hi, Could someone please help me with the what Solr is looking in deltaQuery of Delta Import ? I have got 18 rows fetched from the database, but none of the row is processed as document. There are the "WARN" In the solr.log, but, what attribute is not specified? It seems important because the Ra

Re: solr 8.11 attribute for deltaImportQuery

2023-12-01 Thread Vince McMahon
I need help, please. I keep looking at the Configuration, the full import works using the entity "query". I have tested the SELECT statement from deltaQuery in a Teradata terminal and that works. The following teradata query returns 18 rows from the Teradata terminal. SELECT id, updated_at FROM

Optimal Way to Index a Document on Multiple Solr Shards

2023-12-01 Thread Saksham Gupta
Hi Solr Developers, We have been using solr cloud with implicit sharding. The data of the collection has been sharded into 56 shards. Due to business requirements, we have created a collection such that there is a chance that a single document could be indexed on multiple shards. To implement thi

Re: solr 8.11 attribute for deltaImportQuery

2023-12-01 Thread Andy Webb
hi Vince, The deltaQuery is used to fetch the IDs of any changed items - DIH then runs the deltaImportQuery to fetch the document for each of those IDs, using a WHERE clause of the form "WHERE id = '${dataimporter.delta.id}'. (You can make it use compound PKs if necessary - and you might want a de

Re: solr 8.11 attribute for deltaImportQuery

2023-12-01 Thread Vince McMahon
Andy, you rock! You've made my day. it works after adding the deltaImportQuery with the WHERE id =... into the entity section. BTW, would you have a pointer when to use the variable dataimporter vs dih '${dataimporter.delta.id}? I see some other online places use dih, when doing dih.last_index

Re: Invalid JSON response with UUID field

2023-12-01 Thread Mikhail Khludnev
Andrew, Could you please check the build snapshot from https://ci-builds.apache.org/job/Solr/job/Solr-Artifacts-9x/ to verify if https://issues.apache.org/jira/browse/SOLR-10653 fixes the json issue as well. Thank you. On Fri, Dec 1, 2023 at 12:28 PM Mikhail Khludnev wrote: > Andrew, do you got

Re: Conditional query re-ranking

2023-12-01 Thread Joel Bernstein
Currently it does not. I'm assuming you mean conditions related to the main query result set. Can you give an example of what type of condition you have in mind? Joel Bernstein http://joelsolr.blogspot.com/ On Tue, Nov 28, 2023 at 10:29 AM rajani m wrote: > Hi Solr Users, > > Does query rera

Re: Optimal Way to Index a Document on Multiple Solr Shards

2023-12-01 Thread Saksham Gupta
Hi All, Pinging again for assistance. On Fri, Dec 1, 2023 at 4:58 PM Saksham Gupta wrote: > Hi Solr Developers, > > We have been using solr cloud with implicit sharding. The data of the > collection has been sharded into 56 shards. > > Due to business requirements, we have created a collection s