Skip to content

Commit

Permalink
main: improve init logging
Browse files Browse the repository at this point in the history
Signed-off-by: Benny Halevy <[email protected]>
  • Loading branch information
bhalevy committed Jun 20, 2019
1 parent e96b1af commit cbbe5a5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -723,13 +723,14 @@ int main(int ac, char** av) {
// truncation record migration
db::system_keyspace::migrate_truncation_records().get();

supervisor::notify("loading sstables");
supervisor::notify("loading system sstables");

distributed_loader::ensure_system_table_directories(db).get();

supervisor::notify("loading sstables");
supervisor::notify("loading non-system sstables");
distributed_loader::init_non_system_keyspaces(db, proxy).get();

supervisor::notify("starting view update generator");
view_update_generator.start(std::ref(db), std::ref(proxy)).get();
supervisor::notify("discovering staging sstables");
db.invoke_on_all([] (database& db) {
Expand Down

0 comments on commit cbbe5a5

Please sign in to comment.