You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Browse filesBrowse the repository at this point in the historyBrowse files
authored
[Fix][Zeta] Clean failed pipeline metrics without full-map cleanup scan (#10757)
Co-authored-by: Doyeon Kim <132787602+dybyte@users.noreply.github.com>
Co-authored-by: Daniel <escheduler@outlook.com>
Co-authored-by: Daniel <48329107+DanielLeens@users.noreply.github.com>
Co-authored-by: DanielLeens <DanielLeens@users.noreply.github.com>
Copy file name to clipboardExpand all lines: seatunnel-engine/seatunnel-engine-common/src/main/java/org/apache/seatunnel/engine/common/config/EngineConfig.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -169,7 +169,7 @@ public void setJobMetricsBackupInterval(int jobMetricsBackupInterval) {
Copy file name to clipboardExpand all lines: seatunnel-engine/seatunnel-engine-server/src/main/java/org/apache/seatunnel/engine/server/CoordinatorService.java
Copy file name to clipboardExpand all lines: seatunnel-engine/seatunnel-engine-server/src/main/java/org/apache/seatunnel/engine/server/common/statestore/metrics/hazelcast/HazelcastMetricsSnapshotStateStore.java
+17-35Lines changed: 17 additions & 35 deletions
Original file line number
Diff line number
Diff line change
@@ -30,14 +30,12 @@
30
30
31
31
importjava.util.HashMap;
32
32
importjava.util.HashSet;
33
-
importjava.util.List;
34
33
importjava.util.Map;
35
34
importjava.util.Set;
36
35
importjava.util.UUID;
37
36
importjava.util.concurrent.ConcurrentHashMap;
38
37
importjava.util.concurrent.atomic.AtomicBoolean;
39
38
importjava.util.concurrent.atomic.AtomicLong;
40
-
importjava.util.stream.Collectors;
41
39
42
40
/** Implementation backed by a partitioned Hazelcast metrics {@link IMap}. */
43
41
publicclassHazelcastMetricsSnapshotStateStore
@@ -115,40 +113,24 @@ public void remove(final TaskLocation taskLocation) {
Copy file name to clipboardExpand all lines: seatunnel-engine/seatunnel-engine-server/src/main/java/org/apache/seatunnel/engine/server/master/JobMaster.java
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1114,8 +1114,11 @@ public void enqueuePipelineCleanupIfNeeded(
Copy file name to clipboardExpand all lines: seatunnel-engine/seatunnel-engine-server/src/main/java/org/apache/seatunnel/engine/server/master/cleanup/PipelineCleanupRecord.java
0 commit comments