With documentation, there is :
Data ID: An identifier for the data represented by this row. We do not impose a requirement that Data IDs are globally unique but they should be unique for the adapter. Therefore, the pairing of Internal Adapter ID and Data ID define a unique identifier for a data element. An example of a data ID for vector data would be the feature ID.
according to that, Adapter ID and Data ID define a unique identifier, so how to ingest data without duplication allowed?
now, my index looks like
adapter_id data_id
4 ...... places.12
4 ...... places.12
Why this happened?
The values of adapter_id and data_id in these two records are the same
i want to get a single record without a duplicated one, how can i do?
With documentation, there is :
according to that, Adapter ID and Data ID define a unique identifier, so how to ingest data without duplication allowed?
now, my index looks like
Why this happened?
The values of
adapter_idanddata_idin these two records are the samei want to get a single record without a duplicated one, how can i do?