You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2019/11/26 12:04:22 UTC

[GitHub] [incubator-doris] lingbin commented on a change in pull request #2296: Ignore non-existent tablet in clear_transaction_task()

lingbin commented on a change in pull request #2296: Ignore non-existent tablet in clear_transaction_task()
URL: https://github.com/apache/incubator-doris/pull/2296#discussion_r350700931
 
 

 ##########
 File path: be/src/olap/storage_engine.cpp
 ##########
 @@ -495,10 +491,12 @@ void StorageEngine::clear_transaction_task(const TTransactionId transaction_id,
         // each tablet
         for (auto& tablet_info : tablet_infos) {
             // should use tablet uid to ensure clean txn correctly
-            TabletSharedPtr tablet = _tablet_manager->get_tablet(tablet_info.first.tablet_id, 
+            TabletSharedPtr tablet = _tablet_manager->get_tablet(tablet_info.first.tablet_id,
                 tablet_info.first.schema_hash, tablet_info.first.tablet_uid);
+            // The tablet may be dropped or altered, leave a INFO log and go on process other tablet
             if (tablet == nullptr) {
-                return;
+                LOG(INFO) << "tablet is no longer exist. tablet_id=" << tablet_info.first.tablet_id;
 
 Review comment:
   Done.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org