Type_ |
string |
|
[default to null] |
Keyspace |
string |
keyspace to upgrade SSTables of |
[default to null] |
Tables |
[]string |
an array of tables to upgrade SSTables of, empty or not provided array will default to upgrading of SSTables of all tables in respective keyspace |
[optional] [default to null] |
Jobs |
int32 |
the number of threads to use - 0 means use all available, it never uses more than concurrent_compactor threads |
[optional] [default to null] |
IncludeAllSStables |
bool |
include all sstables, even those already on the current version, defaults to false |
[optional] [default to null] |
Id |
string |
unique identifier of an operation, a random id is assigned to each operation after a request is submitted, from caller's perspective, an id is sent back as a response to his request so he can further query state of that operation, referencing id, by operations/{id} endpoint |
[default to null] |
State |
string |
state of an operation, operation might be in various states, PENDING - this operation is pending for being submitted. RUNNING - this operation is actively doing its job, COMPLETED - this operation has finished successfully, CANCELLED - this operation was interrupted while being run, FAILED - this operation has finished errorneously |
[default to null] |
Progress |
string |
float from 0.0 to 1.0, 1.0 telling that operation is completed, either successfully or with errors. |
[default to null] |
CreationTime |
time.Time |
timestamp telling when this operation was created on Sidecar's side |
[default to null] |
StartTime |
time.Time |
timestamp telling when this operation was started by Sidecar, if an operation is created, it does not necessarily mean that it will be started right away, in most cases it is the case but if e.g. ExecutorService is full on its working thread, an execution of an operation is postponed and start time is updated only after that |
[optional] [default to null] |
CompletionTime |
time.Time |
timestamp telling when an operation has finished, irrelevant of its result, an operation can be failed and it would still have this field populated. |
[optional] [default to null] |
Errors |
[]ErrorObject |
|
[optional] [default to null] |