Skip to content

Commit

Permalink
[docs] Add ysql_output_buffer_size to yb-tserver config reference.
Browse files Browse the repository at this point in the history
@netlify preview/reference/configuration/yb-tserver/#ysql-output-buffer-size
  • Loading branch information
pao214 committed Jul 19, 2024
1 parent 835e30d commit f794c4c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/content/preview/reference/configuration/yb-tserver.md
Original file line number Diff line number Diff line change
Expand Up @@ -855,6 +855,14 @@ Default: `-1` (disables logging statement durations)

Specifies the lowest YSQL message level to log.

##### --ysql_output_buffer_size

Size of YSQL layer output buffer, in bytes. YSQL buffers query responses in this output buffer until either a buffer flush is requested by the client or the buffer overflows.

As long as no data has been flushed from the buffer, the database can retry queries on retryable errors. For example, you can increase the size of the buffer so that YSQL can retry [read restart errors](../../../architecture/transactions/read-restart-error).

Default: `262144` (256kB, type: int32)

### YCQL

The following flags support the use of the [YCQL API](../../../api/ycql/):
Expand Down
8 changes: 8 additions & 0 deletions docs/content/stable/reference/configuration/yb-tserver.md
Original file line number Diff line number Diff line change
Expand Up @@ -855,6 +855,14 @@ Default: `-1` (disables logging statement durations)

Specifies the lowest YSQL message level to log.

##### --ysql_output_buffer_size

Size of YSQL layer output buffer, in bytes. YSQL buffers query responses in this output buffer until either a buffer flush is requested by the client or the buffer overflows.

As long as no data has been flushed from the buffer, the database can retry queries on retryable errors. For example, you can increase the size of the buffer so that YSQL can retry [read restart errors](../../../architecture/transactions/read-restart-error).

Default: `262144` (256kB, type: int32)

### YCQL

The following flags support the use of the [YCQL API](../../../api/ycql/):
Expand Down
8 changes: 8 additions & 0 deletions docs/content/v2.20/reference/configuration/yb-tserver.md
Original file line number Diff line number Diff line change
Expand Up @@ -732,6 +732,14 @@ Default: `-1` (disables logging statement durations)

Specifies the lowest YSQL message level to log.

##### --ysql_output_buffer_size

Size of YSQL layer output buffer, in bytes. YSQL buffers query responses in this output buffer until either a buffer flush is requested by the client or the buffer overflows.

As long as no data has been flushed from the buffer, the database can retry queries on retryable errors. For example, you can increase the size of the buffer so that YSQL can retry [read restart errors](../../../architecture/transactions/read-restart-error).

Default: `262144` (256kB, type: int32)

### YCQL

The following flags support the use of the [YCQL API](../../../api/ycql/):
Expand Down

0 comments on commit f794c4c

Please sign in to comment.