Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@ datastax-java-driver {
hostname-validation = false
}

# For every connection, Amazon Keyspaces allows 3000 request per connection per endpoint
# If pool.local.size = 3 * 3 endpoints = 9 total connections for session
# For 9 connections at 3000 request per connection for a total of 27,000 rps
# Amazon Keyspaces supports up to 3000 CQL requests per connection per second.
# Public endpoints expose 9 peers: pool.local.size = 3 * 9 endpoints = 27 connections.
# VPC endpoints typically expose 2-5 peers (most commonly 3).
# At 500 requests/sec per connection (recommended), 27 connections support 13,500 rps.
advanced.connection.pool.local.size = 3

}
Loading