What is pk in solr DIH delta import? I am trying to delta index multiple fields in solr?
|
I believe it is whatever field you specify in your schema.xml file as the id field. |
|||||
|
|
It is a name of Solr field that serves as a unique key for that record. You define your mapping of source to that Solr column and then - after mapping - Solr checks its presence and values based on the pk field you specified. It is different from primaryKey because you may be generating primaryKey or it may not be suitable somehow. But it could be same. I think the clearest Wiki explanation may be in the example for HttpDataSource. I believe, you may also be able to define a compound pk for when you are flattening inner source entries into one Solr entry. |
|||||||||||
|
|
I think the problem is in your delta-query for the child entity. You have given,
I think the where condition in the above query validates to TRUE always and there is no specific purpose of having that. The Solution I would suggest is to have a separate "last_modified_date" field in the "cc_gadget_lang" table in your database and use that in the delta query of your child entity. I also believe that there is no need to have the "pk" of the child entity in your schema file because, they are stored and used temporarily during delta-imports and do not require to be stored permanently in Index. |
|||
|