Change the new command to be all lower case to follow the convention. Updated the command line interface documentation and the release notes for 6.2.29.

This commit is contained in:
Xin Dong 2020-12-03 14:49:23 -08:00
parent 78503db523
commit da22308025
3 changed files with 9 additions and 3 deletions

View File

@ -294,6 +294,11 @@ status json
``status json`` will provide the cluster status in its JSON format. For a detailed description of this format, see :doc:`mr-status`.
triggerddteaminfolog
------
The ``triggerddteaminfolog`` command would trigger the data distributor to log very detailed teams information into trace event logs.
unlock
------

View File

@ -8,6 +8,7 @@ Release Notes
======
* Fix invalid memory access on data distributor when snapshotting large clusters. `(PR #4076) <https://github.com/apple/foundationdb/pull/4076>`_
* Add human-readable DateTime to trace events `(PR #4087) <https://github.com/apple/foundationdb/pull/4087>`_
* Add a command in fdbcli to manually trigger the detailed teams information loggings in data distribution. `(PR #4060) <https://github.com/apple/foundationdb/pull/4060>`_
6.2.28
======

View File

@ -581,8 +581,8 @@ void initHelp() {
CommandHelp("unlock <UID>", "unlock the database with the provided lockUID",
"Unlocks the database with the provided lockUID. This is a potentially dangerous operation, so the "
"user will be asked to enter a passphrase to confirm their intent.");
helpMap["triggerDDTeamInfoLog"] =
CommandHelp("triggerDDTeamInfoLog", "trigger the data distributor teams logging",
helpMap["triggerddteaminfolog"] =
CommandHelp("triggerddteaminfolog", "trigger the data distributor teams logging",
"Trigger the data distributor to log detailed information about its teams.");
hiddenCommands.insert("expensive_data_check");
@ -2988,7 +2988,7 @@ ACTOR Future<int> cli(CLIOptions opt, LineNoise* plinenoise) {
continue;
}
if (tokencmp(tokens[0], "triggerDDTeamInfoLog")) {
if (tokencmp(tokens[0], "triggerddteaminfolog")) {
wait(triggerDDTeamInfoLog(db));
continue;
}