-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docs: vtctldclient ExecuteMultiFetchAsDBA (#1709)
Signed-off-by: Shlomi Noach <[email protected]>
- Loading branch information
1 parent
3073202
commit 405a3dc
Showing
2 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
...ocs/20.0/reference/programs/vtctldclient/vtctldclient_ExecuteMultiFetchAsDBA.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
title: ExecuteMultiFetchAsDBA | ||
series: vtctldclient | ||
commit: fdabcfb130ec3ca15b23c278a0f20802bcd05756 | ||
--- | ||
## vtctldclient ExecuteMultiFetchAsDBA | ||
|
||
Executes given multiple queries as the DBA user on the remote tablet. | ||
|
||
``` | ||
vtctldclient ExecuteMultiFetchAsDBA [--max-rows <max-rows>] [--json|-j] [--disable-binlogs] [--reload-schema] <tablet alias> <sql> | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
--disable-binlogs Disables binary logging during the query. | ||
-h, --help help for ExecuteMultiFetchAsDBA | ||
-j, --json Output the results in JSON instead of a human-readable table. | ||
--max-rows int The maximum number of rows to fetch from the remote tablet. (default 10000) | ||
--reload-schema Instructs the tablet to reload its schema after executing the query. | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--action_timeout duration timeout to use for the command (default 1h0m0s) | ||
--compact use compact format for otherwise verbose outputs | ||
--server string server to use for the connection (required) | ||
--topo-global-root string the path of the global topology data in the global topology server (default "/vitess/global") | ||
--topo-global-server-address strings the address of the global topology server(s) (default [localhost:2379]) | ||
--topo-implementation string the topology implementation to use (default "etcd2") | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [vtctldclient](../) - Executes a cluster management command on the remote vtctld server. | ||
|