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
*`delivery_group` - (optional) When set Push consumers will only deliver messages to subscriptions with this group set
188
188
*`durable_name` - The durable name of the Consumer
189
189
*`filter_subject` - (optional) Only receive a subset of messages from the Stream based on the subject they entered the Stream on
190
+
*`filter_subjects` - (optional) Only receive a subset tof messages from the Stream based on subjects they entered the Stream on. This is exclusive to `filter_subject`. Only works with v2.10 or better.
190
191
*`max_delivery` - (optional) Maximum deliveries to attempt for each message
191
192
*`replay_policy` - (optional) The rate at which messages will be replayed from the stream
192
193
*`sample_freq` - (optional) The percentage of acknowledgements that will be sampled for observability purposes
*`delivery_group` - (optional) When set Push consumers will only deliver messages to subscriptions with this group set
34
34
*`durable_name` - The durable name of the Consumer
35
35
*`filter_subject` - (optional) Only receive a subset of messages from the Stream based on the subject they entered the Stream on
36
+
*`filter_subjects` - (optional) Only receive a subset tof messages from the Stream based on subjects they entered the Stream on. This is exclusive to `filter_subject`. Only works with v2.10 or better.
36
37
*`max_delivery` - (optional) Maximum deliveries to attempt for each message
37
38
*`replay_policy` - (optional) The rate at which messages will be replayed from the stream
38
39
*`sample_freq` - (optional) The percentage of acknowledgements that will be sampled for observability purposes
Description: "Only receive a subset of messages from the Stream based on the subject they entered the Stream on",
136
-
Default: "",
134
+
Type: schema.TypeString,
135
+
Description: "Only receive a subset of messages from the Stream based on the subject they entered the Stream on",
136
+
Default: "",
137
+
Optional: true,
138
+
ForceNew: false,
139
+
ConflictsWith: []string{"filter_subjects"},
140
+
},
141
+
"filter_subjects": {
142
+
Type: schema.TypeList,
143
+
Description: "Only receive a subset of messages from the stream baseed on the subjects they entered the Streeam on, exlusive to filter_subject and works with nats-server v2.10 or better",
0 commit comments