Skip to content
Merged
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
17 changes: 17 additions & 0 deletions docs/user_guide/targets/targets.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,23 @@ targets:
# If false, when there are no active RPCs,
# Time and Timeout will be ignored and no keepalive pings will be sent.
permit-without-stream: false
# set how much data (in bytes) can be read at most for each read syscall.
# The default value for this buffer is 32KB. Zero or negative values will
# disable read buffer for a connection so data framer can access the underlying conn directly.
grpc-read-buffer-size:
# determines how much data (in bytes) can be batched before doing a write on the wire.
# The default value for this buffer is 32KB.
# Zero or negative values will disable the write buffer such that each write will be on underlying connection.
# Note: A Send call may not directly translate to a write.
grpc-write-buffer-size:
# sets the value for initial window size on a connection. The lower bound for window size is 64K and any value smaller than that will be ignored.
grpc-conn-window-size:
# sets the value for initial window size on a stream. The lower bound for window size is 64K and any value smaller than that will be ignored.
grpc-window-size:
# sets the initial connection window size to the value provided and disables dynamic flow control.
grpc-static-connec-window-size:
# sets the initial stream window size to the value provided and disables dynamic flow control.
grpc-static-stream-window-size:
```

### Example
Expand Down
Loading