Skip to content

Commit

Permalink
feat: controller change for fallback sink (#1664)
Browse files Browse the repository at this point in the history
Signed-off-by: Derek Wang <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Vigith Maurice <[email protected]>
Co-authored-by: Yashash H L <[email protected]>
Co-authored-by: Vigith Maurice <[email protected]>
  • Loading branch information
3 people committed Apr 18, 2024
1 parent dbebe6e commit 680e5d4
Show file tree
Hide file tree
Showing 31 changed files with 5,506 additions and 2,377 deletions.
21 changes: 21 additions & 0 deletions api/json-schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -17610,6 +17610,23 @@
},
"type": "object"
},
"io.numaproj.numaflow.v1alpha1.AbstractSink": {
"properties": {
"blackhole": {
"$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.Blackhole"
},
"kafka": {
"$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.KafkaSink"
},
"log": {
"$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.Log"
},
"udsink": {
"$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.UDSink"
}
},
"type": "object"
},
"io.numaproj.numaflow.v1alpha1.AbstractVertex": {
"properties": {
"affinity": {
Expand Down Expand Up @@ -19564,6 +19581,10 @@
"blackhole": {
"$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.Blackhole"
},
"fallback": {
"$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.AbstractSink",
"description": "Fallback sink can be imagined as DLQ for primary Sink. The writes to Fallback sink will only be initiated if the ud-sink response field sets it."
},
"kafka": {
"$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.KafkaSink"
},
Expand Down
21 changes: 21 additions & 0 deletions api/openapi-spec/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -17614,6 +17614,23 @@
}
}
},
"io.numaproj.numaflow.v1alpha1.AbstractSink": {
"type": "object",
"properties": {
"blackhole": {
"$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.Blackhole"
},
"kafka": {
"$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.KafkaSink"
},
"log": {
"$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.Log"
},
"udsink": {
"$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.UDSink"
}
}
},
"io.numaproj.numaflow.v1alpha1.AbstractVertex": {
"type": "object",
"required": [
Expand Down Expand Up @@ -19551,6 +19568,10 @@
"blackhole": {
"$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.Blackhole"
},
"fallback": {
"description": "Fallback sink can be imagined as DLQ for primary Sink. The writes to Fallback sink will only be initiated if the ud-sink response field sets it.",
"$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.AbstractSink"
},
"kafka": {
"$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.KafkaSink"
},
Expand Down
426 changes: 426 additions & 0 deletions config/base/crds/full/numaflow.numaproj.io_pipelines.yaml

Large diffs are not rendered by default.

Loading

0 comments on commit 680e5d4

Please sign in to comment.