From 83eb955e83367c17882a1337216a041062e9f4b3 Mon Sep 17 00:00:00 2001 From: Harshit Gangal Date: Thu, 21 Sep 2023 10:09:06 +0530 Subject: [PATCH] add grpc-send-session-in-streaming flag to doc (#1592) Signed-off-by: Harshit Gangal --- content/en/docs/17.0/reference/programs/vtgate.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/en/docs/17.0/reference/programs/vtgate.md b/content/en/docs/17.0/reference/programs/vtgate.md index 362d15c43..2021f6612 100644 --- a/content/en/docs/17.0/reference/programs/vtgate.md +++ b/content/en/docs/17.0/reference/programs/vtgate.md @@ -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). | @@ -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 |