cysorion
ATApache TinkerPop
•Created by cysorion on 7/23/2023 in #questions
What does Setting Write Buffer Watermark do?
int writeBufferHighWaterMark
If the number of bytes in the network send buffer exceeds this value then the channel is no longer writeable, accepting no additional writes until buffer is drained and the writeBufferLowWaterMark is met.
int writeBufferLowWaterMark
Once the number of bytes queued in the network send buffer exceeds the high water mark, the channel will not become writeable again until the buffer is drained and it drops below this value.
I am setting up a Janus Graph server. I got writeBufferHighWaterMark warning when I execute most of my queries. I figured I need to tune it (It says it will pause the response). What is this buffer and how should I tune it? Where can I monitor how my query filling up the buffer?
4 replies