Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Proper replay shutdown from database_guard_exception #7215

Merged
merged 1 commit into from
Apr 25, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 22 additions & 11 deletions libraries/chain/controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -453,17 +453,22 @@ struct controller_impl {
auto start_block_num = head->block_num + 1;
auto start = fc::time_point::now();

std::exception_ptr except_ptr;

if( start_block_num <= blog_head->block_num() ) {
ilog( "existing block log, attempting to replay from ${s} to ${n} blocks",
("s", start_block_num)("n", blog_head->block_num()) );
while( auto next = blog.read_block_by_num( head->block_num + 1 ) ) {
replay_push_block( next, controller::block_status::irreversible );
if( next->block_num() % 500 == 0 ) {
ilog( "${n} of ${head}", ("n", next->block_num())("head", blog_head->block_num()) );
if( shutdown() ) break;
try {
while( auto next = blog.read_block_by_num( head->block_num + 1 ) ) {
replay_push_block( next, controller::block_status::irreversible );
if( next->block_num() % 500 == 0 ) {
ilog( "${n} of ${head}", ("n", next->block_num())("head", blog_head->block_num()) );
if( shutdown() ) break;
}
}
} catch( const database_guard_exception& e ) {
except_ptr = std::current_exception();
}
std::cerr<< "\n";
ilog( "${n} irreversible blocks replayed", ("n", 1 + head->block_num - start_block_num) );

auto pending_head = fork_db.pending_head();
Expand All @@ -488,18 +493,24 @@ struct controller_impl {
ilog( "no irreversible blocks need to be replayed" );
}

int rev = 0;
while( auto obj = reversible_blocks.find<reversible_block_object,by_num>(head->block_num+1) ) {
++rev;
replay_push_block( obj->get_block(), controller::block_status::validated );
if( !except_ptr && !shutdown() ) {
int rev = 0;
while( auto obj = reversible_blocks.find<reversible_block_object,by_num>(head->block_num+1) ) {
++rev;
replay_push_block( obj->get_block(), controller::block_status::validated );
}
ilog( "${n} reversible blocks replayed", ("n",rev) );
}

ilog( "${n} reversible blocks replayed", ("n",rev) );
auto end = fc::time_point::now();
ilog( "replayed ${n} blocks in ${duration} seconds, ${mspb} ms/block",
("n", head->block_num + 1 - start_block_num)("duration", (end-start).count()/1000000)
("mspb", ((end-start).count()/1000.0)/(head->block_num-start_block_num)) );
replay_head_time.reset();

if( except_ptr ) {
std::rethrow_exception( except_ptr );
}
}

void init(std::function<bool()> shutdown, const snapshot_reader_ptr& snapshot) {
Expand Down