mirror of
https://github.com/scylladb/scylladb.git
synced 2026-06-08 16:03:20 +00:00
initialization As a preparation for introducing CDC generation management service. cdc_service will depend on the generation service. But the generation service needs some other services to work properly. In particular, it uses the local database, so it should be initialized after the local database. The only service that will need the cdc generation service is storage_service, so we can place the generation service initialization code right before storage_service initialization code. So the order will be cdc_generation_service -> cdc_service -> storage_service.