NearestNeighborSearchOperationMetadata

Runtime operation metadata with regard to Matching Engine Index.

Fields
contentValidationStats[] object (ContentValidationStats)

The validation stats of the content (per file) to be inserted or updated on the Matching Engine Index resource. Populated if contentsDeltaUri is provided as part of Index.metadata. Please note that, currently for those files that are broken or has unsupported file format, we will not have the stats for those files.

dataBytesCount string (int64 format)

The ingested data size in bytes.

JSON representation
{
  "contentValidationStats": [
    {
      object (ContentValidationStats)
    }
  ],
  "dataBytesCount": string
}

ContentValidationStats

Fields
sourceGcsUri string

Cloud Storage URI pointing to the original file in user's bucket.

validRecordCount string (int64 format)

Number of records in this file that were successfully processed.

invalidRecordCount string (int64 format)

Number of records in this file we skipped due to validate errors.

partialErrors[] object (RecordError)

The detail information of the partial failures encountered for those invalid records that couldn't be parsed. Up to 50 partial errors will be reported.

validSparseRecordCount string (int64 format)

Number of sparse records in this file that were successfully processed.

invalidSparseRecordCount string (int64 format)

Number of sparse records in this file we skipped due to validate errors.

JSON representation
{
  "sourceGcsUri": string,
  "validRecordCount": string,
  "invalidRecordCount": string,
  "partialErrors": [
    {
      object (RecordError)
    }
  ],
  "validSparseRecordCount": string,
  "invalidSparseRecordCount": string
}

RecordError

Fields
errorType enum (RecordErrorType)

The error type of this record.

errorMessage string

A human-readable message that is shown to the user to help them fix the error. Note that this message may change from time to time, your code should check against errorType as the source of truth.

sourceGcsUri string

Cloud Storage URI pointing to the original file in user's bucket.

embeddingId string

Empty if the embedding id is failed to parse.

rawRecord string

The original content of this record.

JSON representation
{
  "errorType": enum (RecordErrorType),
  "errorMessage": string,
  "sourceGcsUri": string,
  "embeddingId": string,
  "rawRecord": string
}