You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, when deploying NebulaGraph in docker compose for test purposes, the OOM won't be triggered as other bare-metal processes, thus it will exhausted your ram when some crazy query was shot.
this is what we could do:
Add the memory limit with deploy.resources.limits.memory: "160G" to the compose yaml file to ensure your graphd won't eat memory larger than 160G.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
By default, when deploying NebulaGraph in docker compose for test purposes, the OOM won't be triggered as other bare-metal processes, thus it will exhausted your ram when some crazy query was shot.
this is what we could do:
deploy.resources.limits.memory: "160G"
to the compose yaml file to ensure your graphd won't eat memory larger than 160G.--compatibility
to your up command, otherwise the deploy config will be ignored as it's designed for swarm mode only.Then we could see from stats that
graphd
is no with Mem Limitation:Beta Was this translation helpful? Give feedback.
All reactions