You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- You can specify any valid `name` for your broker. Using `default` will create a broker named `default`.
35
34
- The `namespace` must be an existing namespace in your cluster. Using `default` will create the broker in the `default` namespace.
36
35
36
+
### Event Delivery Options
37
+
- You can use `dead-letter sink` for error handling and auditing of undelivered messages. Specify Kubernetes object reference where undelivered messages will be sent using `ref` and an optional URI to route undelivered messages using `uri`.
38
+
- You can set the `Backoff policies` to define the delay strategy between retry attempts. It can be `exponantial` or `linear`.
39
+
- You can set the `Backoff delay ` to specify the initial delay before retrying, using the ISO 8601 duration format.
40
+
- You can specify the number of retry attempts before sending the event to the dead-letter sink using the `retry` configuration.
41
+
- `spec.delivery`is used to configure event delivery options. Event delivery options specify what happens to an event that fails to be delivered to an event sink. For more information, see the documentation on [Event delivery](../event-delivery.md).
42
+
37
43
### Advance broroker class options
38
44
When a Broker is created without a specified `eventing.knative.dev/broker.class` annotation, the default `MTChannelBasedBroker` Broker class is used, as specified by default in the `config-br-defaults` ConfigMap.
39
45
@@ -70,25 +76,3 @@ In case you have multiple Broker classes installed in your cluster and want to u
70
76
```
71
77
72
78
For further information about configuring a default Broker class cluster wide or on a per namespace basis, check the [Administrator configuration options](../configuration/broker-configuration.md#configuring-the-broker-class).
73
-
74
-
75
-
### Event Delivery Options
76
-
- You can sets up a dead-letter sink, retry policies, and a backoff delay for event delivery.
77
-
- `spec.delivery`is used to configure event delivery options. Event delivery options specify what happens to an event that fails to be delivered to an event sink. For more information, see the documentation on [Event delivery](../event-delivery.md).
78
-
79
-
### Monitoring to Status Options
80
-
You can use the status of Broker to monitor its status. Here is example:
0 commit comments