Aleksandra Martyniuk
8afa54d4f6
compaction: create task manager's task for offstrategy keyspace compaction on one shard
...
Implementation of task_manager's task that covers local offstrategy keyspace compaction.
2023-03-30 10:49:09 +02:00
Aleksandra Martyniuk
73860b7c9d
compaction: create task manager's task for offstrategy keyspace compaction
...
Implementation of task_manager's task covering offstrategy keyspace compaction
that can be started through storage_service api.
2023-03-30 10:44:56 +02:00
Aleksandra Martyniuk
e8ef8a51d5
compaction: create offstrategy_compaction_task_impl
...
offstrategy_compaction_task_impl serves as a base class of all
concrete offstrategy compaction task classes.
2023-03-30 10:28:17 +02:00
Aleksandra Martyniuk
27b999808f
compaction: create task manager's task for cleanup keyspace compaction on one shard
...
Implementation of task_manager's task that covers cleanup keyspace compaction
on one shard.
2023-03-13 16:35:39 +01:00
Aleksandra Martyniuk
7dd27205f6
compaction: create task manager's task for cleanup keyspace compaction
...
Implementation of task_manager's task covering cleanup keyspace compaction
that can be started through storage_service api.
2023-03-13 16:35:39 +01:00
Aleksandra Martyniuk
8801f326c6
compaction: create cleanup_compaction_task_impl
2023-03-13 16:35:39 +01:00
Aleksandra Martyniuk
b188060535
compaction: create task manager's task for major keyspace compaction on one shard
...
Implementation of task_manager's task that covers major keyspace compaction
on one shard.
2023-03-01 18:56:26 +01:00
Aleksandra Martyniuk
159e603ac4
compaction: create task manager's task for major keyspace compaction
...
Implementation of task_manager's task covering major keyspace compaction
that can be started through storage_service api.
2023-02-23 15:48:05 +01:00
Aleksandra Martyniuk
b908369e85
compaction: add major_compaction_task_impl
...
All major compaction tasks will share some methods like
type or abort. The common part of the tasks should be
inherited from major_compaction_task_impl.
2023-02-22 09:52:04 +01:00
Aleksandra Martyniuk
be101078a0
compacition: add pure virtual compaction_task_impl
...
Add compaction_task_impl that is a pure virtual class from which
all compaction tasks implementations will inherit.
2023-02-22 09:51:57 +01:00
Aleksandra Martyniuk
47ef689077
compaction: create and register task manager's module for compaction
...
As an initial part of integration of compaction with task manager, compaction
module is added. Compaction module inherits from tasks::task_manager::module
and shared_ptr to it is kept in compaction manager. No compaction tasks are
created yet.
2023-02-03 13:52:30 +01:00