Skip to content

Commit

Permalink
Add max_connections and max_connections_per_instance to backend servi…
Browse files Browse the repository at this point in the history
  • Loading branch information
jschwing authored and nat-henderson committed Apr 19, 2018
1 parent a8ea391 commit d9872fe
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/r/compute_backend_service.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,17 @@ The `backend` block supports:
* `max_rate_per_instance` - (Optional) The maximum per-instance requests per
second (RPS).

* `max_connections` - (Optional) The max number of simultaneous connections for the
group. Can be used with either CONNECTION or UTILIZATION balancing
modes. For CONNECTION mode, either maxConnections or
maxConnectionsPerInstance must be set.

* `max_connections_per_instance` - (Optional) The max number of simultaneous connections
that a single backend instance can handle. This is used to calculate
the capacity of the group. Can be used in either CONNECTION or
UTILIZATION balancing modes. For CONNECTION mode, either
maxConnections or maxConnectionsPerInstance must be set.

* `max_utilization` - (Optional) The target CPU utilization for the group as a
float in the range [0.0, 1.0]. This flag can only be provided when the
balancing mode is `UTILIZATION`. Defaults to `0.8`.
Expand Down

0 comments on commit d9872fe

Please sign in to comment.