This is an automated email from the ASF dual-hosted git repository.

edcoleman pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/main by this push:
     new eb6f34ac update fate command moved from shell to admin (#390)
eb6f34ac is described below

commit eb6f34acd65f1832ef5e633a9968a54c18015750
Author: EdColeman <d...@etcoleman.com>
AuthorDate: Mon Aug 7 12:33:15 2023 +0000

    update fate command moved from shell to admin (#390)
    
    * update doc - fate command moved from shell to admin in 2.1
---
 _docs-2/troubleshooting/advanced.md | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/_docs-2/troubleshooting/advanced.md 
b/_docs-2/troubleshooting/advanced.md
index b2b24b30..5b6ddf9f 100644
--- a/_docs-2/troubleshooting/advanced.md
+++ b/_docs-2/troubleshooting/advanced.md
@@ -333,16 +333,21 @@ overridden by using the `--local-wal-directories` option 
on the tool. It can be
 **I am trying to start the manager after upgrading but the upgrade is aborting 
with the following message:**
   `org.apache.accumulo.core.client.AccumuloException: Aborting upgrade because 
there are outstanding FATE transactions from a previous Accumulo version.`
 
-You can use the shell to delete completed FATE transactions using the 
following:
+For versions 2.1 and later, you can use the admin fate command to delete 
completed FATE transactions using the following:
 
 * Start tservers
 * Start shell
-* Run `fate print` to list all
-* If completed, just delete with `fate delete`
+* Run `accumulo admin fate --print` to list all transactions
+* If the transactions have completed, just delete with them with `accumulo 
admin fate --delete TXID [TXID...]`
 * Start managers once there are no more fate operations
 
 If any of the operations are not complete, you should rollback the upgrade and 
troubleshoot completing them with your prior version.
 
+Prior to 2.1, the same steps apply, but the fate command is accessed with the 
Accumulo shell instead of the admin command.  The shell commands are as 
follows: 
+
+use `fate print` to list transactions
+use `fate delete` to delete completed transactions
+
 ## File Naming Conventions
 
 **Why are files named like they are? Why do some start with `C` and others 
with `F`?**

Reply via email to