Skip to content
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
12 changes: 6 additions & 6 deletions be/src/olap/tablet_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ OLAPStatus TabletManager::_add_tablet_unlock(TTabletId tablet_id, SchemaHash sch
}

if (table_item == nullptr) {
LOG(INFO) << "not find exist tablet just add it to map"
<< " tablet_id = " << tablet_id
<< " schema_hash = " << schema_hash;
VLOG(3) << "not find exist tablet just add it to map"
<< " tablet_id = " << tablet_id
<< " schema_hash = " << schema_hash;
return _add_tablet_to_map(tablet_id, schema_hash, tablet, update_meta, false, false);
}

Expand Down Expand Up @@ -200,9 +200,9 @@ OLAPStatus TabletManager::_add_tablet_to_map(TTabletId tablet_id, SchemaHash sch
}
_tablet_map[tablet_id].table_arr.push_back(tablet);
_tablet_map[tablet_id].table_arr.sort(_sort_tablet_by_creation_time);
LOG(INFO) << "add tablet to map successfully"
<< " tablet_id = " << tablet_id
<< " schema_hash = " << schema_hash;
VLOG(3) << "add tablet to map successfully"
<< " tablet_id = " << tablet_id
<< " schema_hash = " << schema_hash;
return res;
}

Expand Down