Skip to content

Commit

Permalink
Merge pull request #37 from NASA-IMPACT/gcorradini/heap_allocations
Browse files Browse the repository at this point in the history
new heap/off-heap allocations
  • Loading branch information
ranchodeluxe authored Mar 4, 2024
2 parents 67a3ec0 + e2f3831 commit 257817b
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.90),
"task_off_heap": int(remaining_memory * 0.10),
"task_heap": int(remaining_memory * 0.75),
"task_off_heap": int(remaining_memory * 0.25),
"task_memory_managed_fraction": managed_memory_ratio
}

Expand Down

0 comments on commit 257817b

Please sign in to comment.