Skip to content

Commit da71b30

Browse files
authored
Drop old epoch reorder impl (#11218)
1 parent b234935 commit da71b30

File tree

7 files changed

+1
-358
lines changed

7 files changed

+1
-358
lines changed

ydb/library/yql/providers/yt/common/yql_yt_settings.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,6 @@ TYtConfiguration::TYtConfiguration(TTypeAnnotationContext& typeCtx)
457457
REGISTER_SETTING(*this, UseAggPhases);
458458
REGISTER_SETTING(*this, UsePartitionsByKeysForFinalAgg);
459459
REGISTER_SETTING(*this, ForceJobSizeAdjuster);
460-
REGISTER_SETTING(*this, _EnableWriteReorder);
461460
REGISTER_SETTING(*this, EnforceJobUtc);
462461
REGISTER_SETTING(*this, UseRPCReaderInDQ);
463462
REGISTER_SETTING(*this, DQRPCReaderInflight).Lower(1);

ydb/library/yql/providers/yt/common/yql_yt_settings.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,6 @@ struct TYtSettings {
275275
NCommon::TConfSetting<bool, false> JoinCommonUseMapMultiOut;
276276
NCommon::TConfSetting<bool, false> UseAggPhases;
277277
NCommon::TConfSetting<bool, false> UsePartitionsByKeysForFinalAgg;
278-
NCommon::TConfSetting<bool, false> _EnableWriteReorder;
279278
NCommon::TConfSetting<double, false> MaxCpuUsageToFuseMultiOuts;
280279
NCommon::TConfSetting<double, false> MaxReplicationFactorToFuseMultiOuts;
281280
NCommon::TConfSetting<ui64, false> ApplyStoredConstraints;

ydb/library/yql/providers/yt/lib/graph_reorder/ya.make

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ LIBRARY()
22

33
SRCS(
44
yql_graph_reorder.cpp
5-
yql_graph_reorder_old.cpp
65
)
76

87
PEERDIR(

ydb/library/yql/providers/yt/lib/graph_reorder/yql_graph_reorder_old.cpp

Lines changed: 0 additions & 276 deletions
This file was deleted.

ydb/library/yql/providers/yt/lib/graph_reorder/yql_graph_reorder_old.h

Lines changed: 0 additions & 47 deletions
This file was deleted.

ydb/library/yql/providers/yt/provider/ut/yql_yt_epoch_ut.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ Y_UNIT_TEST_SUITE(TYqlEpoch) {
4545
typeAnnotationContext->RandomProvider = CreateDeterministicRandomProvider(1);
4646
auto ytState = MakeIntrusive<TYtState>(typeAnnotationContext.Get());
4747
ytState->Gateway = ytGateway;
48-
ytState->Configuration->Dispatch(NCommon::ALL_CLUSTERS, "_EnableWriteReorder", "true", NCommon::TSettingDispatcher::EStage::CONFIG, NCommon::TSettingDispatcher::GetDefaultErrorCallback());
4948

5049
InitializeYtGateway(ytGateway, ytState);
5150
typeAnnotationContext->AddDataSink(YtProviderName, CreateYtDataSink(ytState));

0 commit comments

Comments
 (0)