Skip to content

Commit

Permalink
docs: update docs for idle connection timeout (#8021)
Browse files Browse the repository at this point in the history
Co-authored-by: Jim Galasyn <jim.galasyn@confluent.io>
  • Loading branch information
agavra and JimGalasyn committed Aug 19, 2021
1 parent 6129eab commit 3f90bb9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/reference/server-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,16 @@ Sets the maximum number of concurrent pull queries. This limit is enforced per h
After hitting the limit, the host will fail pull query requests until it determines that it's no longer
at the limit.

## `ksql.idle.connection.timeout.seconds`

Sets the timeout for idle connections. A connection is idle if there is no data in either direction
on that connection for the duration of the timeout. This configuration can be helpful if you are
issuing push queries that only receive data infrequently from the server, as otherwise those
connections will be severed when the timeout (default 10 minutes) is hit.

Decreasing this timeout enables closing connections more aggressively to save server resources.
Increasing this timeout makes the server more tolerant of low-data volume use cases.

## `ksql.variable.substitution.enable`

Enables variable substitution through [`DEFINE`](../../../../developer-guide/ksqldb-reference/define) statements.
Expand Down

0 comments on commit 3f90bb9

Please sign in to comment.