public async Task CreateTables()
 {
     try
     {
         await _checkpointRepository.CreateTableAsync();
     }
     catch (Exception ex)
     {
         _logger.LogError(ex, "Error creating streaming tables...");
         throw;
     }
 }