@@ -60,7 +60,7 @@ namespace {
6060 using namespace NActors ;
6161
6262 void SetupLogging (TTestActorRuntime& runtime) {
63- NActors::NLog::EPriority priority = ENABLE_DETAILED_HIVE_LOG ? NLog::PRI_DEBUG : NLog::PRI_ERROR ;
63+ NActors::NLog::EPriority priority = ENABLE_DETAILED_HIVE_LOG ? NLog::PRI_DEBUG : NLog::PRI_NOTICE ;
6464 NActors::NLog::EPriority otherPriority = NLog::PRI_DEBUG;
6565
6666 if (ENABLE_DETAILED_HIVE_LOG) {
@@ -6841,6 +6841,32 @@ Y_UNIT_TEST_SUITE(THiveTest) {
68416841 }
68426842}
68436843
6844+ Y_UNIT_TEST_SUITE (THeavyPerfTest) {
6845+ Y_UNIT_TEST (TTestLoadEverything) {
6846+ TTestBasicRuntime runtime (2 , false );
6847+ Setup (runtime, true );
6848+ const ui64 hiveTablet = MakeDefaultHiveID ();
6849+ CreateTestBootstrapper (runtime, CreateTestTabletInfo (hiveTablet, TTabletTypes::Hive), &CreateDefaultHive);
6850+ NTestSuiteTHiveTest::MakeSureTabletIsUp (runtime, hiveTablet, 0 );
6851+ TActorId senderB = runtime.AllocateEdgeActor (0 );
6852+ runtime.SendToPipe (hiveTablet, senderB, new NHive::TEvPrivate::TEvGenerateTestData (), 0 , GetPipeConfigWithRetries ());
6853+ {
6854+ TDispatchOptions options;
6855+ options.FinalEvents .emplace_back (TEvTablet::TEvCommit::EventType, 2 );
6856+ runtime.DispatchEvents (options);
6857+ }
6858+
6859+ runtime.Register (CreateTabletKiller (hiveTablet));
6860+
6861+ {
6862+ TDispatchOptions options;
6863+ options.FinalEvents .emplace_back (NHive::TEvPrivate::EvBootTablets);
6864+ runtime.DispatchEvents (options);
6865+ }
6866+
6867+ }
6868+ }
6869+
68446870Y_UNIT_TEST_SUITE (TStorageBalanceTest) {
68456871 static constexpr i64 DEFAULT_BIND_SIZE = 100'000'000 ;
68466872 const std::vector<TString> STORAGE_POOLS = {" def1" };
0 commit comments