In the web console, I get the following warning:
Warning: vm.max_map_count limit is too low [current=262144, recommended=1048576]
I followed the steps outlined at Capacity planning | QuestDB and still run into this issue.
I’m on Fedora 40 Ultramarine and running QuestDB in a Docker container and cat /proc/sys/vm/max_map_count
shows 1048576
. I tried increasing it to 5242880
to no avail either.
I changed the setting, deleted the container, restarted the Docker service, and created a new container but it’s still reading the old value. I tried passing this value in via docker run --sysctl vm.max_map_count=1048576 image
but this didn’t let me start the container either. What might be going wrong here?