You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And requires them to be string type.
Let's say I want to define
--grpc_max_message_size int Maximum allowed RPC message size. Larger messages will be rejected by gRPC with the error 'exceeding the max size'. (default 16777216)
parameter.
For that purpose I define parameter in my cluster definition:
When I try to apply the changes, I am getting the following error:
knv apply -f cluster_k8s-mysql.yml
The VitessCluster "test" is invalid: spec.keyspaces.partitionings.custom.shards.tabletPools.vttablet.extraFlags.grpc_max_message_size: Invalid value: "integer": spec.keyspaces.partitionings.custom.shards.tabletPools.vttablet.extraFlags.grpc_max_message_size in body must be of type string: "integer"
knv apply -f cluster_k8s-mysql.yml
The VitessCluster "test" is invalid: spec.keyspaces.partitionings.custom.shards.tabletPools.vttablet.extraFlags.vreplication-parallel-insert-workers: Invalid value: "integer": spec.keyspaces.partitionings.custom.shards.tabletPools.vttablet.extraFlags.vreplication-parallel-insert-workers in body must be of type string: "integer"
the same, my current workaroud is to wrap it in quotas, so it would like a string type:
I am facing a similar issue, I am unable to provide the value of --grpc_max_message_size flag as an integer in extraFlags, due to which the MoveTables workflow is continuously erroring out with the following error:
vttablet: rpc error: code = ResourceExhausted desc = trying to send message larger than max (80491362 vs. 67108864)
And requires them to be
string
type.Let's say I want to define
parameter.
For that purpose I define parameter in my cluster definition:
When I try to apply the changes, I am getting the following error:
The workaround I use for now:
The same goes for
vreplication-parallel-insert-workers
param:returned
the same, my current workaroud is to wrap it in quotas, so it would like a
string
type:The text was updated successfully, but these errors were encountered: