How to specify memory resources in lima/nerdctl #453
-
I'm trying to a run an Oracle Database in a Docker image in a lima environment on macOS and get a lot of errors related to the shm volume. lima nerdctl run --detach --name="oracledb" --network="oraclenet" --memory="4g" --publish="1521:1521" --volume="/dev/shm" --tmpfs="/dev/shm:rw,exec,size=1g" qualiant/database I did not find documentation that explains how memory resources are allocated in lima and wanted to ask a few specific questions:
Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
When you started the virtual machine, there was a YAML file to edit. It included fields like "cpus" and memory"
After it has been started, it is saved as ~/.lima/default/lima.yaml (or similar, for other instances than "default") # CPUs: if you see performance issues, try limiting cpus to 1.
# Default: 4
cpus: 4
# Memory size
# Default: "4GiB"
memory: "4GiB"
# Disk size
# Default: "100GiB"
disk: "100GiB" You need to Resizing the disk image is be a bit trickier, and requires manual commands. |
Beta Was this translation helpful? Give feedback.
-
Thank you for your feedback. |
Beta Was this translation helpful? Give feedback.
-
I think it is just a limit, you might run into hardware limitations (even virtual ones) before hitting such a software limit
|
Beta Was this translation helpful? Give feedback.
-
It is the total amount of memory available to the virtual machine created. You can see how much is "left" after the kernel and other system processes: $ lima free -h
total used free shared buff/cache available
Mem: 3.8Gi 208Mi 3.2Gi 1.0Mi 485Mi 3.4Gi
Swap: 0B 0B 0B So we allocated 4.0 to the VM, where 3.8 was "total" and 3.4 is "available". So if you want to start a process (container) with 4.0, memory needs to be 4.6+ |
Beta Was this translation helpful? Give feedback.
When you started the virtual machine, there was a YAML file to edit. It included fields like "cpus" and memory"
After it has been started, it is saved as ~/.lima/default/lima.yaml (or similar, for other instances than "default")
Y…