Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add grpc-send-session-in-streaming flag to doc #1592

Merged
merged 1 commit into from
Sep 21, 2023
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
3 changes: 2 additions & 1 deletion content/en/docs/17.0/reference/programs/vtgate.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ The following global options apply to `vtgate`:
| --gate_query_cache_memory | Int | gate server query cache size in bytes, maximum amount of memory to be cached. vtgate analyzes every incoming query and generate a query plan, these plans are being cached in a lru cache. This config controls the capacity of the lru cache. (default 33554432) |
| --gate_query_cache_size | Int | gate server query cache size, maximum number of queries to be cached. vtgate analyzes every incoming query and generate a query plan, these plans are being cached in a cache. This config controls the expected amount of unique entries in the cache. (default 5000) |
| --gateway_initial_tablet_timeout | Duration | At startup, the tabletGateway will wait up to this duration to get at least one tablet per keyspace/shard/tablet type (default 30s) |
| --grpc-send-session-in-streaming | Boolean | If set, will send the session as last packet in streaming api to support transactions in streaming |
| --grpc-use-effective-groups | Boolean | If set, and SSL is not used, will set the immediate caller's security groups from the effective caller id's groups. |
| --grpc_auth_mode | String | Which auth plugin implementation to use (eg: static) |
| --grpc_auth_mtls_allowed_substrings | String | List of substrings of at least one of the client certificate names (separated by colon). |
Expand Down Expand Up @@ -93,7 +94,7 @@ The following global options apply to `vtgate`:
| --grpc_server_keepalive_enforcement_policy_min_time | Duration | gRPC server minimum keepalive time (default 10s) |
| --grpc_server_keepalive_enforcement_policy_permit_without_stream | Boolean | gRPC server permit client keepalive pings even when there are no active streams (RPCs) |
| --grpc_use_effective_callerid | Boolean | If set, and SSL is not used, will set the immediate caller id from the effective caller id's principal. |
| --grpc-use-static-authentication-callerid | boolean | If set, will set the immediate caller id to the username authenticated by the static auth plugin. |
| --grpc-use-static-authentication-callerid | boolean | If set, will set the immediate caller id to the username authenticated by the static auth plugin. |
| --healthcheck_retry_delay | Duration | health check retry delay (default 2ms) |
| --healthcheck_timeout | Duration | the health check timeout period (default 1m0s) |
| -h, --help | Boolean | display usage and exit |
Expand Down