You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by GitBox <gi...@apache.org> on 2022/07/07 18:20:02 UTC

[GitHub] [accumulo] EdColeman commented on pull request #2801: Add fate summary command option

EdColeman commented on PR #2801:
URL: https://github.com/apache/accumulo/pull/2801#issuecomment-1178034868

   Sample command outputs
   
   Output for: `> fate -summary -np`
   
   <details>
     <summary>Sample FATE summary text report: Click to expand</summary>
   
   ```
   Report Time: 2022-07-07T18:08:23Z
   Status counts:
     IN_PROGRESS: 2
   
   Command counts:
     CompactRange: 2
   
   Step counts:
     CompactionDriver: 2
   
   Fate transactions (oldest first):
   Status Filters: [NONE]
   
   Running	txn_id				Status		Command		Step (top)		locks held:(table id, name)	locks waiting:(table id, name)
   0:00:04	0a2aad53b1003a09	IN_PROGRESS	CompactRange	CompactionDriver	held:[R:(1,ns:ns1), R:(2,t:ns1.ShellServerIT_testFateSummaryCommandWithSlowCompaction0)]	waiting:[]
   0:00:03	5faa992f7db93cf8	IN_PROGRESS	CompactRange	CompactionDriver	held:[R:(1,ns:ns1), R:(2,t:ns1.ShellServerIT_testFateSummaryCommandWithSlowCompaction0)]	waiting:[]
   ```
   </details>
   
   Sample output for `> fate -summary -np json`
   
   <details>
     <summary>Sample FATE summary json output - Click to expand</summary>
     
   ```
   {
     "statusCounts": {
       "IN_PROGRESS": 2
     },
     "cmdCounts": {
       "CompactRange": 2
     },
     "stepCounts": {
       "CompactionDriver": 2
     },
     "fateDetails": [
       {
         "running": 4148,
         "status": "IN_PROGRESS",
         "command": "CompactRange",
         "step": "CompactionDriver",
         "txnId": "0a2aad53b1003a09",
         "locksHeld": [
           "R:(1,ns:ns1)",
           "R:(2,t:ns1.ShellServerIT_testFateSummaryCommandWithSlowCompaction0)"
         ],
         "locksWaiting": []
       },
       {
         "running": 3057,
         "status": "IN_PROGRESS",
         "command": "CompactRange",
         "step": "CompactionDriver",
         "txnId": "5faa992f7db93cf8",
         "locksHeld": [
           "R:(1,ns:ns1)",
           "R:(2,t:ns1.ShellServerIT_testFateSummaryCommandWithSlowCompaction0)"
         ],
         "locksWaiting": []
       }
     ],
     "reportTime": 1657217303363,
     "statusFilterNames": []
   }
   ```
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org