Skip to content
Merged
Show file tree
Hide file tree
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
42 changes: 41 additions & 1 deletion ydb/core/mind/hive/hive_ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#include <ydb/core/mind/tenant_pool.h>
#include <ydb/core/tablet_flat/tablet_flat_executed.h>
#include <ydb/core/tablet/tablet_impl.h>
#include <ydb/core/testlib/actors/block_events.h>
#include <ydb/core/testlib/basics/appdata.h>
#include <ydb/core/testlib/basics/helpers.h>
#include <ydb/core/testlib/tablet_helpers.h>
Expand Down Expand Up @@ -6154,13 +6155,14 @@ Y_UNIT_TEST_SUITE(THiveTest) {
ActorIdToProto(owner, event->Record.MutableOwnerActor());
}
TActorId senderB = runtime.AllocateEdgeActor(nodeIndex);
Ctest << "Send UnlockTablet\n";
runtime.SendToPipe(hiveTablet, senderB, event.Release(), nodeIndex, GetPipeConfigWithRetries());

TAutoPtr<IEventHandle> handle;
auto result = runtime.GrabEdgeEventRethrow<TEvHive::TEvUnlockTabletExecutionResult>(handle);
UNIT_ASSERT(result);
UNIT_ASSERT_VALUES_EQUAL(result->Record.GetTabletID(), tabletId);
UNIT_ASSERT_VALUES_EQUAL(result->Record.GetStatus(), expectedStatus);
UNIT_ASSERT_C(result->Record.GetStatus() == expectedStatus, "Expected status " << expectedStatus << ", got reply " << result->Record.ShortDebugString());
}

Y_UNIT_TEST(TestLockTabletExecutionBadUnlock) {
Expand Down Expand Up @@ -6237,6 +6239,44 @@ Y_UNIT_TEST_SUITE(THiveTest) {
VerifyLockTabletExecutionLost(runtime, tabletId, owner);
}

Y_UNIT_TEST(TestLockTabletExecutionLocalGone) {
TTestBasicRuntime runtime(3, false);
Setup(runtime, false);
CreateLocal(runtime, 0); // only the 1st node has local running
const ui64 hiveTablet = MakeDefaultHiveID();
const ui64 testerTablet = MakeTabletID(false, 1);
const TActorId hiveActor = CreateTestBootstrapper(runtime, CreateTestTabletInfo(hiveTablet, TTabletTypes::Hive), &CreateDefaultHive);
const TActorId senderA = runtime.AllocateEdgeActor(0);
runtime.EnableScheduleForActor(hiveActor);

TTabletTypes::EType tabletType = TTabletTypes::Dummy;
THolder<TEvHive::TEvCreateTablet> ev(new TEvHive::TEvCreateTablet(testerTablet, 0, tabletType, BINDED_CHANNELS));
ui64 tabletId = SendCreateTestTablet(runtime, hiveTablet, testerTablet, std::move(ev), 0, true);
MakeSureTabletIsUp(runtime, tabletId, 0);

TActorId owner = runtime.AllocateEdgeActor(1);
SendLockTabletExecution(runtime, hiveTablet, tabletId, 1, NKikimrProto::OK, owner, 100500);
MakeSureTabletIsDown(runtime, tabletId, 0);

// Block events related to node disconnect
// TEvents::TEvUndelivered - actor system does not guarantee that this event will be sent
// TEvLocal::TEvStatus - we cannot expect that the disconnecting node will always be able to send this
// TEvInterconnect::TEvNodeDisconnected - we will send this one, but follow it up with NodeConnected
// This is simulating a case when a new host is using the old node id and that new host does not run Local
TBlockEvents<TEvents::TEvUndelivered> blockUndleivered(runtime, [](auto&& ev) { return ev->Get()->SourceType == TEvLocal::EvPing; });
TBlockEvents<TEvLocal::TEvStatus> blockStatus(runtime, [](auto&& ev) { return ev->Get()->Record.GetStatus() != NKikimrProto::OK; });
SendKillLocal(runtime, 0);
runtime.SendToPipe(hiveTablet, senderA, new TEvInterconnect::TEvNodeDisconnected(runtime.GetNodeId(0)), 0, GetPipeConfigWithRetries());
CreateLocal(runtime, 2);
runtime.Register(CreateTabletKiller(hiveTablet));
runtime.SendToPipe(hiveTablet, senderA, new TEvInterconnect::TEvNodeConnected(runtime.GetNodeId(0)), 0, GetPipeConfigWithRetries());

// Unlocking with the same owner should succeed and boot the tablet
SendUnlockTabletExecution(runtime, hiveTablet, tabletId, 1, NKikimrProto::OK, owner);
WaitForTabletIsUp(runtime, tabletId, 0);

}

Y_UNIT_TEST(TestExternalBoot) {
TTestBasicRuntime runtime(1, false);
Setup(runtime, true);
Expand Down
1 change: 1 addition & 0 deletions ydb/core/mind/hive/tx__lock_tablet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ class TTxLockTabletExecution : public TTransactionBase<THive> {
follower.InitiateStop(SideEffects);
}
tablet->InitiateStop(SideEffects);
db.Table<Schema::Tablet>().Key(TabletId).Update<Schema::Tablet::LeaderNode>(0);
}
if (tablet->LockedToActor == OwnerActor && tablet->PendingUnlockSeqNo == 0) {
// Lock is still valid, watch for node disconnections
Expand Down
Loading