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
spring.data.cassandra.keyspace-name= # Keyspace name to use.
593
592
spring.data.cassandra.load-balancing-policy= # Class name of the load balancing policy.
594
-
spring.data.cassandra.max-requests-per-connection.*= # Pooling option: max requests per connection.
595
-
spring.data.cassandra.max-queue-size= # Pooling option: max queue size.
596
593
spring.data.cassandra.port= # Port of the Cassandra server.
597
594
spring.data.cassandra.password= # Login password of the server.
598
595
spring.data.cassandra.pool.heartbeat-interval=30 # Heartbeat interval (in seconds) after which a message is sent on an idle connection to make sure it's still alive.
@@ -1024,6 +1021,12 @@ content into your application; rather pick only the properties that you need.
1024
1021
spring.rabbitmq.listener.direct.default-requeue-rejected= # Whether rejected deliveries are requeued by default; default true.
1025
1022
spring.rabbitmq.listener.direct.idle-event-interval= # How often idle container events should be published in milliseconds.
1026
1023
spring.rabbitmq.listener.direct.prefetch= # Number of messages to be handled in a single request. It should be greater than or equal to the transaction size (if used).
1024
+
spring.rabbitmq.listener.direct.retry.enabled=false # Whether or not publishing retries are enabled.
1025
+
spring.rabbitmq.listener.direct.retry.initial-interval=1000 # Interval between the first and second attempt to publish or deliver a message.
1026
+
spring.rabbitmq.listener.direct.retry.max-attempts=3 # Maximum number of attempts to publish or deliver a message.
1027
+
spring.rabbitmq.listener.direct.retry.max-interval=10000 # Maximum interval between attempts.
1028
+
spring.rabbitmq.listener.direct.retry.multiplier=1 # A multiplier to apply to the previous retry interval.
1029
+
spring.rabbitmq.listener.direct.retry.stateless=true # Whether or not retries are stateless or stateful.
1027
1030
spring.rabbitmq.listener.simple.acknowledge-mode= # Acknowledge mode of container.
1028
1031
spring.rabbitmq.listener.simple.auto-startup=true # Start the container automatically on startup.
1029
1032
spring.rabbitmq.listener.simple.concurrency= # Minimum number of listener invoker threads.
0 commit comments