WeaviateEx.Batch.ErrorTracking.ErrorObject (WeaviateEx v0.7.4)

View Source

Represents a failed object in a batch operation.

Fields

  • :message - Error message from the server
  • :object - The original object that failed
  • :original_uuid - The UUID that was attempted (if provided)
  • :retry_count - Number of retry attempts made

Summary

Types

t()

@type t() :: %WeaviateEx.Batch.ErrorTracking.ErrorObject{
  message: String.t(),
  object: map(),
  original_uuid: String.t() | nil,
  retry_count: non_neg_integer() | nil
}