-
Notifications
You must be signed in to change notification settings - Fork 606
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
schemeshard: reject operations with too big local tx commit
Add commit redo size check for successfully ignited operations as a precaution measure to avoid infinite loop of schemeshard hitting local tx commit redo size limit, restarting, attempting to propose persisted operation again, hitting commit redo size limit again, restarting and so on. This could happen with inherently massive operations such as copy-tables used as a starting step of database export/backup. Coping large number of tables with huge number of partitions can result in so large TTxOperationPropose local transaction size that it would hit the limit imposed by the tablet executor level. Tablet violating that limit is considered broken and will be immediately stopped. See ydb/core/tablet_flat/flat_executor.cpp, NTabletFlatExecutor::TExecutor::ExecuteTransaction(). KIKIMR-21751
- Loading branch information
Showing
5 changed files
with
232 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
113 changes: 113 additions & 0 deletions
113
ydb/core/tx/schemeshard/ut_base/ut_commit_redo_limit.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
#include <ydb/core/tx/schemeshard/ut_helpers/helpers.h> | ||
|
||
using namespace NKikimr; | ||
using namespace NSchemeShard; | ||
using namespace NSchemeShardUT_Private; | ||
|
||
Y_UNIT_TEST_SUITE(TSchemeShardCheckProposeSize) { | ||
|
||
//TODO: can't check all operations as many of them do not implement | ||
// TSubOperation::AbortPropose() properly and will abort. | ||
|
||
Y_UNIT_TEST(CopyTable) { | ||
TTestBasicRuntime runtime; | ||
TTestEnv env(runtime); | ||
|
||
// Take control over MaxCommitRedoMB ICB setting. | ||
// Drop down its min-value limit to be able to set it as low as test needs. | ||
TControlWrapper MaxCommitRedoMB; | ||
{ | ||
runtime.GetAppData().Icb->RegisterSharedControl(MaxCommitRedoMB, "TabletControls.MaxCommitRedoMB"); | ||
MaxCommitRedoMB.Reset(200, 1, 4096); | ||
} | ||
|
||
ui64 txId = 100; | ||
|
||
TestCreateTable(runtime, ++txId, "/MyRoot", R"( | ||
Name: "table" | ||
Columns { Name: "key" Type: "Uint64"} | ||
Columns { Name: "value" Type: "Utf8"} | ||
KeyColumnNames: ["key"] | ||
)"); | ||
env.TestWaitNotification(runtime, txId); | ||
|
||
// 1. Set MaxCommitRedoMB to 1 and try to create table. | ||
// | ||
// (Check at the operation's Propose tests commit redo size against (MaxCommitRedoMB - 1) | ||
// to give 1MB leeway to executer/tablet inner stuff to may be do "something extra". | ||
// So MaxCommitRedoMB = 1 means effective 0 for the size of operation's commit.) | ||
{ | ||
MaxCommitRedoMB = 1; | ||
AsyncCopyTable(runtime, ++txId, "/MyRoot", "table-copy", "/MyRoot/table"); | ||
TestModificationResults(runtime, txId, | ||
{{NKikimrScheme::StatusSchemeError, "local tx commit redo size generated by IgniteOperation() is more than allowed limit"}} | ||
); | ||
env.TestWaitNotification(runtime, txId); | ||
} | ||
|
||
// 2. Set MaxCommitRedoMB back to high value and try again. | ||
{ | ||
MaxCommitRedoMB = 200; | ||
AsyncCopyTable(runtime, ++txId, "/MyRoot", "table-copy", "/MyRoot/table"); | ||
env.TestWaitNotification(runtime, txId); | ||
} | ||
} | ||
|
||
Y_UNIT_TEST(CopyTables) { | ||
TTestBasicRuntime runtime; | ||
TTestEnv env(runtime); | ||
|
||
// Take control over MaxCommitRedoMB ICB setting. | ||
// Drop down its min-value limit to be able to set it as low as test needs. | ||
TControlWrapper MaxCommitRedoMB; | ||
{ | ||
runtime.GetAppData().Icb->RegisterSharedControl(MaxCommitRedoMB, "TabletControls.MaxCommitRedoMB"); | ||
MaxCommitRedoMB.Reset(200, 1, 4096); | ||
} | ||
|
||
const ui64 tables = 100; | ||
const ui64 shardsPerTable = 1; | ||
|
||
ui64 txId = 100; | ||
|
||
for (ui64 i : xrange(tables)) { | ||
TestCreateTable(runtime, ++txId, "/MyRoot", Sprintf( | ||
R"( | ||
Name: "table-%lu" | ||
Columns { Name: "key" Type: "Uint64"} | ||
Columns { Name: "value" Type: "Utf8"} | ||
KeyColumnNames: ["key"] | ||
UniformPartitionsCount: %lu | ||
)", | ||
i, | ||
shardsPerTable | ||
)); | ||
env.TestWaitNotification(runtime, txId); | ||
} | ||
|
||
auto testCopyTables = [](auto& runtime, ui64 txId, ui64 tables) { | ||
TVector<TEvTx*> schemeTxs; | ||
for (ui64 i : xrange(tables)) { | ||
schemeTxs.push_back(CopyTableRequest(txId, "/MyRoot", Sprintf("table-%lu-copy", i), Sprintf("/MyRoot/table-%lu", i))); | ||
} | ||
AsyncSend(runtime, TTestTxConfig::SchemeShard, CombineSchemeTransactions(schemeTxs)); | ||
}; | ||
|
||
// 1. Set MaxCommitRedoMB to 1 and try to copy tables. | ||
{ | ||
MaxCommitRedoMB = 1; | ||
testCopyTables(runtime, ++txId, tables); | ||
TestModificationResults(runtime, txId, | ||
{{NKikimrScheme::StatusSchemeError, "local tx commit redo size generated by IgniteOperation() is more than allowed limit"}} | ||
); | ||
} | ||
|
||
// 2. Set MaxCommitRedoMB back to high value and try again. | ||
{ | ||
MaxCommitRedoMB = 200; | ||
testCopyTables(runtime, ++txId, tables); | ||
TestModificationResults(runtime, txId, {{NKikimrScheme::StatusAccepted}}); | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ SRCS( | |
ut_base.cpp | ||
ut_info_types.cpp | ||
ut_table_pg_types.cpp | ||
ut_commit_redo_limit.cpp | ||
) | ||
|
||
END() |