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
* fixed source delivery and adapter sendwithretries retryConfig + fixed source perf test related tests and added retry to one sample
* added retry test to source receive adapter
Copy file name to clipboardExpand all lines: samples/source/external-cluster/200-perf-test.yaml
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -55,13 +55,12 @@ spec:
55
55
value: "true"
56
56
- name: SIZE
57
57
value: "1000"
58
-
59
58
- name: EXCHANGE
60
59
value: "eventing-rabbitmq-source"
61
60
- name: TYPE
62
-
value: "fanout"
61
+
value: "headers"
63
62
# This version of PerfTest cannot declare a durable exchange: https://github.com/rabbitmq/rabbitmq-perf-test/issues/281
64
-
# This version of PerfTest will create an exchange if it does not exist if if PREDECLARED is set to true: https://github.com/rabbitmq/rabbitmq-perf-test/issues/282
63
+
# This version of PerfTest will create an exchange if it does not exist if PREDECLARED is set to true: https://github.com/rabbitmq/rabbitmq-perf-test/issues/282
65
64
# This means that we cannot use the messaging topology operator to manage our exchange as it can create race conditions with PerfTest: https://github.com/rabbitmq/messaging-topology-operator
66
65
# We have chosen the "lesser evil" and are using a non-durable exchange
Copy file name to clipboardExpand all lines: samples/source/quick-setup/300-perf-test.yaml
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -55,11 +55,12 @@ spec:
55
55
value: "true"
56
56
- name: SIZE
57
57
value: "1000"
58
-
58
+
- name: PREDECLARED
59
+
value: "true"
59
60
- name: EXCHANGE
60
61
value: "eventing-rabbitmq-source"
61
62
- name: TYPE
62
-
value: "fanout"
63
+
value: "headers"
63
64
# This version of PerfTest cannot declare a durable exchange: https://github.com/rabbitmq/rabbitmq-perf-test/issues/281
64
65
# This version of PerfTest will create an exchange if it does not exist if if PREDECLARED is set to true: https://github.com/rabbitmq/rabbitmq-perf-test/issues/282
65
66
# This means that we cannot use the messaging topology operator to manage our exchange as it can create race conditions with PerfTest: https://github.com/rabbitmq/messaging-topology-operator
0 commit comments