Modules§
- boxed_
str 🔒 - columnation 🔒
- proto_
dataflow_ error - Nested message and enum types in
ProtoDataflowError. - proto_
decode_ error_ kind - Nested message and enum types in
ProtoDecodeErrorKind. - proto_
envelope_ error_ v1 - Nested message and enum types in
ProtoEnvelopeErrorV1. - proto_
source_ error_ details - Nested message and enum types in
ProtoSourceErrorDetails. - proto_
upsert_ error - Nested message and enum types in
ProtoUpsertError.
Structs§
- Collection
Missing - Error returned in response to a reference to an unknown collection.
- Decode
Error - The underlying data was not decodable in the format we expected: eg. invalid JSON or Avro data that doesn’t match a schema.
- Proto
Dataflow Error - Encoding of
ProtoDataflowErrormust be deterministic: compute serializesDataflowErrorto bytes on internal dataflow edges and relies on byte-equality implying semantic equality (forOrd,Hash, etc.). - Proto
Decode Error - Proto
Decode Error Kind - Proto
Envelope Error V1 - The “V1” suffix was requested by the storage team, since they might want to repurpose/modify this field in the future.
- Proto
Source Error - Proto
Source Error Details - Proto
Upsert Error - Proto
Upsert Null KeyError - Proto
Upsert Value Error - Source
Error - Source-wide durable errors; for example, a replication log being meaningless or corrupted. This should not include transient source errors, like connection issues or misconfigurations.
- Upsert
Null KeyError - A source contained a record with a NULL key, which we don’t support.
- Upsert
Value Error - An error from a value in an upsert source. The corresponding key is included, allowing us to reconstruct their entry in the upsert map upon restart.
Enums§
- Context
Creation Error - An error returned by
KafkaConnection::create_with_context. - CsrConnect
Error - An error returned by
CsrConnection::connect. - Dataflow
Error - An error that’s destined to be presented to the user in a differential dataflow collection. For example, a divide by zero will be visible in the error collection for a particular row.
- Decode
Error Kind - Envelope
Error - Errors arising during envelope processing.
- Source
Error Details - Upsert
Error - An error that can be retracted by a future message using upsert logic.
Traits§
- Context
Creation Error Ext - An extension trait for
Result<T, E>that makes producingContextCreationErrors easier.