Skip to content

Commit

Permalink
Fix Typo in High Memory Task Manager Config
Browse files Browse the repository at this point in the history
  • Loading branch information
swapsmagic committed Nov 8, 2023
1 parent 43f996d commit 641c269
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ public HighMemoryTaskKillerStrategy getHighMemoryTaskKillerStrategy()
return highMemoryTaskKillerStrategy;
}

@Config("experiemental.task.high-memory-task-killer-strategy")
@Config("experimental.task.high-memory-task-killer-strategy")
public TaskManagerConfig setHighMemoryTaskKillerStrategy(HighMemoryTaskKillerStrategy highMemoryTaskKillerStrategy)
{
this.highMemoryTaskKillerStrategy = highMemoryTaskKillerStrategy;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public void testExplicitPropertyMappings()
.put("task.interrupt-runaway-splits-timeout", "599s")
.put("experimental.task.memory-based-slowdown-threshold", "0.9")
.put("experimental.task.high-memory-task-killer-enabled", "true")
.put("experiemental.task.high-memory-task-killer-strategy", "FREE_MEMORY_ON_FREQUENT_FULL_GC")
.put("experimental.task.high-memory-task-killer-strategy", "FREE_MEMORY_ON_FREQUENT_FULL_GC")
.put("experimental.task.high-memory-task-killer-reclaim-memory-threshold", "0.8")
.put("experimental.task.high-memory-task-killer-frequent-full-gc-duration-threshold", "2s")
.put("experimental.task.high-memory-task-killer-heap-memory-threshold", "0.8")
Expand Down

0 comments on commit 641c269

Please sign in to comment.