@ -132,16 +132,14 @@ Status DBImpl::SyncClosedLogs(JobContext* job_context) {
Status DBImpl : : FlushMemTableToOutputFile (
Status DBImpl : : FlushMemTableToOutputFile (
ColumnFamilyData * cfd , const MutableCFOptions & mutable_cf_options ,
ColumnFamilyData * cfd , const MutableCFOptions & mutable_cf_options ,
bool * made_progress , JobContext * job_context ,
bool * made_progress , JobContext * job_context ,
SuperVersionContext * superversion_context , LogBuffer * log_buffer ) {
SuperVersionContext * superversion_context ,
std : : vector < SequenceNumber > & snapshot_seqs ,
SequenceNumber earliest_write_conflict_snapshot ,
SnapshotChecker * snapshot_checker , LogBuffer * log_buffer ) {
mutex_ . AssertHeld ( ) ;
mutex_ . AssertHeld ( ) ;
assert ( cfd - > imm ( ) - > NumNotFlushed ( ) ! = 0 ) ;
assert ( cfd - > imm ( ) - > NumNotFlushed ( ) ! = 0 ) ;
assert ( cfd - > imm ( ) - > IsFlushPending ( ) ) ;
assert ( cfd - > imm ( ) - > IsFlushPending ( ) ) ;
std : : vector < SequenceNumber > snapshot_seqs ;
SequenceNumber earliest_write_conflict_snapshot ;
SnapshotChecker * snapshot_checker ;
GetSnapshotContext ( job_context , & snapshot_seqs ,
& earliest_write_conflict_snapshot , & snapshot_checker ) ;
FlushJob flush_job (
FlushJob flush_job (
dbname_ , cfd , immutable_db_options_ , mutable_cf_options ,
dbname_ , cfd , immutable_db_options_ , mutable_cf_options ,
@ -239,14 +237,20 @@ Status DBImpl::FlushMemTablesToOutputFiles(
return AtomicFlushMemTablesToOutputFiles ( bg_flush_args , made_progress ,
return AtomicFlushMemTablesToOutputFiles ( bg_flush_args , made_progress ,
job_context , log_buffer ) ;
job_context , log_buffer ) ;
}
}
std : : vector < SequenceNumber > snapshot_seqs ;
SequenceNumber earliest_write_conflict_snapshot ;
SnapshotChecker * snapshot_checker ;
GetSnapshotContext ( job_context , & snapshot_seqs ,
& earliest_write_conflict_snapshot , & snapshot_checker ) ;
Status status ;
Status status ;
for ( auto & arg : bg_flush_args ) {
for ( auto & arg : bg_flush_args ) {
ColumnFamilyData * cfd = arg . cfd_ ;
ColumnFamilyData * cfd = arg . cfd_ ;
MutableCFOptions mutable_cf_options = * cfd - > GetLatestMutableCFOptions ( ) ;
MutableCFOptions mutable_cf_options = * cfd - > GetLatestMutableCFOptions ( ) ;
SuperVersionContext * superversion_context = arg . superversion_context_ ;
SuperVersionContext * superversion_context = arg . superversion_context_ ;
Status s = FlushMemTableToOutputFile ( cfd , mutable_cf_options , made_progress ,
Status s = FlushMemTableToOutputFile (
job_context , superversion_context ,
cfd , mutable_cf_options , made_progress , job_context ,
log_buffer ) ;
superversion_context , snapshot_seqs , earliest_write_conflict_snapshot ,
snapshot_checker , log_buffer ) ;
if ( ! s . ok ( ) ) {
if ( ! s . ok ( ) ) {
status = s ;
status = s ;
if ( ! s . IsShutdownInProgress ( ) ) {
if ( ! s . IsShutdownInProgress ( ) ) {