While using the Cassandra driver (version 2.7) in my product I keep hitting the following error:
(Here's a snippet from my product's logs)
Jun 27 11:12:05.273 [ATCS|CASS] WARN (00007f352a5e2700) Exceeded write bytes water mark (current: 65754 water mark: 65536) on connection to host 127.0.0.2
Jun 27 11:12:05.274 [ATCS|CASS] WARN (00007f352a5e2700) Exceeded write bytes water mark (current: 65541 water mark: 65536) on connection to host 127.0.0.2
Jun 27 11:12:10.270 [ATCS|CASS] WARN (00007f352a5e2700) Exceeded write bytes water mark (current: 65561 water mark: 65536) on connection to host 127.0.0.2
My first instinct is to increase the high watermark with CassCluster's cass_cluster_set_write_bytes_low_water_mark()
However, I noticed from the documents that in the latest driver version (2.9) the watermark settings are deprecated and ignored.
So my questions:
- Is this a problem I can upgrade out of?
- If I upgrade to 2.9, will I hit a different limit? If so, is there a setting for the that limit?
Thanks in advance, I really appreciate the help.
-Greg Fast
Hi Cassandra C++ driver experets,
While using the Cassandra driver (version 2.7) in my product I keep hitting the following error:
(Here's a snippet from my product's logs)
Jun 27 11:12:05.273 [ATCS|CASS] WARN (00007f352a5e2700) Exceeded write bytes water mark (current: 65754 water mark: 65536) on connection to host 127.0.0.2
Jun 27 11:12:05.274 [ATCS|CASS] WARN (00007f352a5e2700) Exceeded write bytes water mark (current: 65541 water mark: 65536) on connection to host 127.0.0.2
Jun 27 11:12:10.270 [ATCS|CASS] WARN (00007f352a5e2700) Exceeded write bytes water mark (current: 65561 water mark: 65536) on connection to host 127.0.0.2
My first instinct is to increase the high watermark with CassCluster's cass_cluster_set_write_bytes_low_water_mark()
However, I noticed from the documents that in the latest driver version (2.9) the watermark settings are deprecated and ignored.
(This doc: https://docs.datastax.com/en/developer/cpp-driver/2.9/api/struct.CassCluster/#function-cass_cluster_set_write_bytes_high_water_mark)
So my questions:
- Is this a problem I can upgrade out of?
- If I upgrade to 2.9, will I hit a different limit? If so, is there a setting for the that limit?
Thanks in advance, I really appreciate the help.
-Greg Fast
--
You received this message because you are subscribed to the Google Groups "DataStax C++ Driver for Apache Cassandra User Mailing List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cpp-driver-us...@lists.datastax.com.