Skip to content

Commit

Permalink
Change default write timeout for cassandra to 1 minute
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-slac committed Apr 26, 2024
1 parent 8196936 commit 7a4c258
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/dax/apdb/cassandra/apdbCassandra.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class ApdbCassandraConfig(ApdbConfig):
doc="Name for consistency level of write operations, default: QUORUM, can be ONE.", default="QUORUM"
)
read_timeout = Field[float](doc="Timeout in seconds for read operations.", default=120.0)
write_timeout = Field[float](doc="Timeout in seconds for write operations.", default=10.0)
write_timeout = Field[float](doc="Timeout in seconds for write operations.", default=60.0)
remove_timeout = Field[float](doc="Timeout in seconds for remove operations.", default=600.0)
read_concurrency = Field[int](doc="Concurrency level for read operations.", default=500)
protocol_version = Field[int](
Expand Down

0 comments on commit 7a4c258

Please sign in to comment.