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
When ApplySchema is supplied with multiple queries, it runs a per-query loop that applies each query onto the shards. With direct strategy, we just run ExecuteFetchAsDBA.
A common scenario is when you want to bootstrap a new shard/cluster with a known schema. In that scenario, one may need to apply thousands of CREATE TABLE|VIEW statements onto the shards. Applying those one-at-a-time takes a significant toll due do network overhead.
We want to improve this performance.,
Use Case(s)
Populating new large schemas on empty shards.
The text was updated successfully, but these errors were encountered:
Feature Description
When
ApplySchema
is supplied with multiple queries, it runs a per-query loop that applies each query onto the shards. Withdirect
strategy, we just runExecuteFetchAsDBA
.A common scenario is when you want to bootstrap a new shard/cluster with a known schema. In that scenario, one may need to apply thousands of
CREATE TABLE|VIEW
statements onto the shards. Applying those one-at-a-time takes a significant toll due do network overhead.We want to improve this performance.,
Use Case(s)
Populating new large schemas on empty shards.
The text was updated successfully, but these errors were encountered: