Aleksandr Chesnokov created IGNITE-28872:
--------------------------------------------
Summary: Incorrect help text for control.sh --cache
reset_lost_partitions
Key: IGNITE-28872
URL: https://issues.apache.org/jira/browse/IGNITE-28872
Project: Ignite
Issue Type: Bug
Reporter: Aleksandr Chesnokov
Assignee: Aleksandr Chesnokov
Fix For: 2.19
help for control.(sh|bat) says that reset_lost_partitions uses cache names:
{noformat}
control.(sh|bat) --cache reset_lost_partitions cacheName1,...,cacheNameN
{noformat}
But the command works with cache group names. In the code, the argument is used
as a cache group name. The command searches a cache group and then resets lost
partitions for all caches in this group.
This can confuse users. A user can pass a cache name from the help, but the
command expects a cache group name.
Let's update the help text for control.(sh|bat) --cache reset_lost_partitions.
Change:
{noformat}
Reset the state of lost partitions for the specified caches{noformat}
to smth like
{noformat}
Reset the state of lost partitions for the specified cache groups{noformat}
Change the example:
{noformat}
control.(sh|bat) --cache reset_lost_partitions cacheName1,...,cacheNameN
{noformat}
to:
{noformat}
control.(sh|bat) --cache reset_lost_partitions
groupName1,...,groupNameN{noformat}
Also update related documentation and expected help output tests
--
This message was sent by Atlassian Jira
(v8.20.10#820010)