Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Creating SWAP can Temporaly resolve this problem (until you upgrade your droplet RAM).
https://www.digitalocean.com/community/tutorials/how-to-add-swap-on-ubuntu-14-04
Heya,
I’m sorry to hear about your experience. If you’re having issues with processes being killed due to memory issues you can start with examining the logs and also monitor the resource usage on your droplet.
You can check this article on how to monitor the resource usage on your droplet:
When dealing with out-of-memory (OOM) issues on a Linux server, there are several key logs and tools that can help you diagnose and understand what is causing the memory exhaustion.
The kernel log often contains messages related to memory management, including out-of-memory (OOM) events. These messages can be found in /var/log/kern.log or through the dmesg command.
dmesg | grep -i oom
dmesg | grep -i "out of memory"
grep -i oom /var/log/kern.log
The general system log (/var/log/syslog or /var/log/messages) may also contain useful information about memory issues.
grep -i oom /var/log/syslog
grep -i "out of memory" /var/log/syslog
Adding a swap file can also benefit the performance.
https://www.digitalocean.com/community/tutorials/how-to-add-swap-space-on-ubuntu-22-04
Regards