Skip to content

Commit

Permalink
give heap more percentage
Browse files Browse the repository at this point in the history
  • Loading branch information
ranchodeluxe committed Feb 10, 2024
1 parent 06af8b5 commit 26f166f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ def calc_task_manager_resources(task_manager_process_memory):
# calculate dynamic values
return {
"total_flink": int(total_flink_memory),
"task_heap": int(remaining_memory * 0.75),
"task_off_heap": int(remaining_memory * 0.25),
"task_heap": int(remaining_memory * 0.90),
"task_off_heap": int(remaining_memory * 0.10),
"task_memory_managed_fraction": managed_memory_ratio
}

Expand Down

0 comments on commit 26f166f

Please sign in to comment.