I want to import a CSV into solr via Index Handlers like described in the docs: https://solr.apache.org/guide/7_1/uploading-data-with-index-handlers.html#csv-update-parameters
I have a CSV with the following structure:
ID | Name | Property |
1 | Tee | Sweet |
1 | Tee | Fluid |
1 | Tee | Hot |
2 | Bread | Salty |
3 | Milk | Fluid |
The first values are always equal if the ID is the same, only the property varies. Now I want to import the property as a multivalue Field to solr.
Is there any way to achieve this with a Index Handler. If not, how else?