aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpogorelov <pogorelov@yandex-team.com>2024-09-26 07:01:22 +0300
committerpogorelov <pogorelov@yandex-team.com>2024-09-26 07:13:00 +0300
commitce46dd723f5a9ce88a32c17a1b012c5b64c6788f (patch)
tree196c67f21b9f82b24cb3aaa7c1802ba8a1cd50a4
parent4440a98227783b4462ab9696cde263c46a30fe21 (diff)
downloadydb-ce46dd723f5a9ce88a32c17a1b012c5b64c6788f.tar.gz
YT-14116: Restart gang operation jobs on another one job restart
* Changelog entry Type: feature Component: map-reduce Inroduced operation incarnation controller that restart all jobs of operation on one job terminated (useful for distributed machine learning) commit_hash:1c8af58b607c543698b92cc64319898de18ed48e
-rw-r--r--yt/yt/client/scheduler/public.h1
-rw-r--r--yt/yt/core/misc/id_generator.h1
2 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt/client/scheduler/public.h b/yt/yt/client/scheduler/public.h
index d07e8469df..d92ae73f78 100644
--- a/yt/yt/client/scheduler/public.h
+++ b/yt/yt/client/scheduler/public.h
@@ -133,6 +133,7 @@ DEFINE_ENUM(EAbortReason,
((UnresolvedNodeId) ( 53))
((RootVolumePreparationFailed) ( 54))
((InterruptionFailed) ( 55))
+ ((OperationIncarnationChanged) ( 56))
((SchedulingFirst) (100))
((SchedulingTimeout) (101))
((SchedulingResourceOvercommit) (102))
diff --git a/yt/yt/core/misc/id_generator.h b/yt/yt/core/misc/id_generator.h
index 8fc1eff48b..8e0bd71554 100644
--- a/yt/yt/core/misc/id_generator.h
+++ b/yt/yt/core/misc/id_generator.h
@@ -21,7 +21,6 @@ public:
private:
std::atomic<ui64> Current_ = 0;
-
};
////////////////////////////////////////////////////////////////////////////////