Vasil Averyanau
Vasil Averyanau
Accordingly to the [backup cmd docs](https://manager.docs.scylladb.com/stable/sctool/backup.html#l-location), -L (--location) format is following `[:]: ` But in [this example](https://manager.docs.scylladb.com/stable/backup/examples.html#backup-to-a-specific-location-per-dc), format is `:[:]` Make sure other examples using the correct format as well.
This adds progress tracking of various 1-1-restore stage. Each progress update represented by RunProgress model saved into db. w.getProgress is used to aggregate current task progress by Keyspaces, Tables and...
During drop/re-create views stage current implementation relies on modifying `CREATE ` statements of a view by adding `IF NOT EXISTS` to it, so if view is already exists (e.g. resume...
During restore (and 1-1-restore) procedure views (materialized view and secondary index) needs to be dropped and later re-created. For the re-creation we need to have a `CREATE ` statement of...
When doing 1-1-restore we need to set tombstone gc mode to 'repair' for regular tables to avoid data resurrection (https://github.com/scylladb/scylla-manager/issues/4258). But maybe we need to do this for views as...
To avoid data resurrection during 1-1-restore procedure, alter the tombstone garbage collection mode to repair before copy data stage.
#### Views In regular restore procedure we drop views before data is uploaded to the nodes and re-create them after. This is necessary for data consistency - snapshot operation in...
Accordingly to scylladb configuration ([link](https://opensource.docs.scylladb.com/stable/reference/configuration-parameters.html#confval-data_file_directories) ), `data_file_directories` is a list, but it's not clear what the behavior of scylladb and how it handles it if multiple values were provided. From...