File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
articles/managed-instance-apache-cassandra Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -85,14 +85,15 @@ The `cassandra-reset-auth-replication` command lets a user change their schema f
85
85
``` azurecli-interactive
86
86
az managed-cassandra cluster invoke-command --resource-group <rg> --cluster-name <cluster> --host <ip of data node> --command-name cassandra-reset-auth-replication --arguments password="<datacenters>"
87
87
```
88
- The ` tree ` command lets a user see their sstables.
88
+ The ` sstable- tree` command lets a user see their sstables.
89
89
``` azurecli-interactive
90
- az managed-cassandra cluster invoke-command --resource-group <rg> --cluster-name <cluster> --host <ip of data node> --command-name tree
90
+ az managed-cassandra cluster invoke-command --resource-group <rg> --cluster-name <cluster> --host <ip of data node> --command-name sstable- tree
91
91
```
92
92
The ` sstable-delete ` command lets a user delete their sstables made before a certain time.
93
93
``` azurecli-interactive
94
94
az managed-cassandra cluster invoke-command --resource-group <rg> --cluster-name <cluster> --host <ip of data node> --command-name sstable-delete --arguments datetime="<YYYY-MM-DD hh:mm:ss>"
95
95
```
96
+ Datetime argument must be formatted as shown above. You can also add --dry-run="" as an argument to see which files will be deleted.
96
97
## List of supported ` sstable ` commands
97
98
98
99
For more information on each command, see https://cassandra.apache.org/doc/latest/cassandra/tools/sstable/index.html
You can’t perform that action at this time.
0 commit comments