Skip to content

Commit 350c701

Browse files
committed
Polish
1 parent 2ffe480 commit 350c701

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -588,11 +588,8 @@ content into your application; rather pick only the properties that you need.
588588
spring.data.cassandra.consistency-level= # Queries consistency level.
589589
spring.data.cassandra.contact-points=localhost # Comma-separated list of cluster node addresses.
590590
spring.data.cassandra.fetch-size= # Queries default fetch size.
591-
spring.data.cassandra.heartbeat-interval-seconds= # Pooling option: heartbeat interval.
592591
spring.data.cassandra.keyspace-name= # Keyspace name to use.
593592
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.
596593
spring.data.cassandra.port= # Port of the Cassandra server.
597594
spring.data.cassandra.password= # Login password of the server.
598595
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.
10241021
spring.rabbitmq.listener.direct.default-requeue-rejected= # Whether rejected deliveries are requeued by default; default true.
10251022
spring.rabbitmq.listener.direct.idle-event-interval= # How often idle container events should be published in milliseconds.
10261023
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.
10271030
spring.rabbitmq.listener.simple.acknowledge-mode= # Acknowledge mode of container.
10281031
spring.rabbitmq.listener.simple.auto-startup=true # Start the container automatically on startup.
10291032
spring.rabbitmq.listener.simple.concurrency= # Minimum number of listener invoker threads.

0 commit comments

Comments
 (0)