version: “3”
services:
baserow:
container_name: baserow_admin
image: baserow/baserow:1.24.2
restart: unless-stopped
environment:
BASEROW_EXTRA_ALLOWED_HOSTS: “baserow”
BASEROW_PUBLIC_URL: ${BASEROW_PUBLIC_URL}
DATABASE_HOST: ${DATABASE_HOST}
DATABASE_NAME: ${DATABASE_NAME}
DATABASE_USER: ${DATABASE_USER}
DATABASE_PASSWORD: ${DATABASE_PASSWORD}
DATABASE_PORT: ${DATABASE_PORT}
EMAIL_SMTP: ${EMAIL_SMTP}
EMAIL_SMTP_HOST: ${EMAIL_SMTP_HOST}
EMAIL_SMTP_USE_TLS: ${EMAIL_SMTP_USE_TLS}
EMAIL_SMTP_PORT: ${EMAIL_SMTP_PORT}
EMAIL_SMTP_USER: ${EMAIL_SMTP_USER}
EMAIL_SMTP_PASSWORD: ${EMAIL_SMTP_PASSWORD}
FROM_EMAIL: ${FROM_EMAIL}
ports:
- “8019:80”
volumes:
- $HOME/docker-volumes/baserow_admin_data:/baserow/data
networks:
- baserow-admin-app-network
postgres:
container_name: baserow_postgres_admin
image: postgres:11
environment:
POSTGRES_USER: ${DATABASE_USER}
POSTGRES_PASSWORD: ${DATABASE_PASSWORD}
POSTGRES_DB: ${DATABASE_NAME}
PGDATA: /data/postgres
volumes:
- $HOME/docker-volumes/postgres_admin:/var/lib/postgresql/data
ports:
- “5435:5432”
networks:
- baserow-admin-app-network
restart: unless-stopped
adminer:
image: adminer
container_name: baserow_adminer_admin
restart: unless-stopped
ports:
- 8086:8080
networks:
- baserow-admin-app-network
pgadmin:
container_name: baserow_pgadmin_admin
image: dpage/pgadmin4
environment:
PGADMIN_DEFAULT_EMAIL: leo@skolavefurinn.is
PGADMIN_DEFAULT_PASSWORD: ${DATABASE_PASSWORD}
PGADMIN_CONFIG_SERVER_MODE: “False”
volumes:
- pgadmin_admin:/var/lib/pgadmin
ports:
- “5051:80”
networks:
- baserow-admin-app-network
restart: unless-stopped
docker Networks
networks:
baserow-admin-app-network:
driver: bridge
volumes:
baserow_admin_data:
postgres_admin:
pgadmin_admin:
Hey @arunraja, have you been following these steps on upgrading to PostgreSQL 15?: Discontinuing PostgreSQL 11 Support: Upgrade Required
Thanks for the update @olgatrykush . Yes I did had a look at that. But it’s just have that docker run command and I need to work with docker compose file right?
docker run \
--name baserow-pgautoupgrade \
# ALL THE ARGUMENTS YOU NORMALLY ADD TO YOUR BASEROW INSTANCE
--restart no \
baserow/baserow-pgautoupgrade:1.30.1
@bram Please help me out here
Hey @arunraja, because you’re using separate PostgreSQL container, you would need to follow different steps in order to upgrade it.
- Stop all the docker containers.
- Take a backup of your PostgreSQL database.
- In the
postgres
service, temporarily replace theimage
frompostgres:11
topgautoupgrade/pgautoupgrade:15-bookworm
. This is an image created by a third party (https://hub.docker.com/r/pgautoupgrade/pgautoupgrade/tags) that allows you to easily upgrade your PostgreSQL container. - Start your self-hosted environment again, and check the logs of the
postgres
service. - Once it’s completed, you must stop your environment again.
- In the
postgres
service, set theimage
topostgres:15
. - Start your self-hosted environment, and observe that the PostgreSQL server has been updated.
Thanks you very much for your response.
I tried out what you mentioned and for some reason, when I used pgautoupgrade/pgautoupgrade:15-bookworm
image, it throwed memory error and I tried with pgautoupgrade/pgautoupgrade:15-alpine
and it worked.
I actually did it with baserow version 1.24.2, which I was using for more than 9 months. But When I try to upgrade it to 1.31.2, baserow docker container is just restarting for every 24 seconds. I can’t even use version 1.25.1.
Seems like a Redis memory issue
Cannot connect to redis://:**@localhost:6379/0: Error 99 connecting to localhost:6379. Cannot assign requested address..
If docker version is old running on Ubuntu 16 LTS, will it create issues on running latest versions of baserow @bram
Currently I can use baserow 1.24.2 with postgres 15, It works well. But for all upcoming versions from baserow 1.25, It’s not working as expected. Anything else to look out? @bram
Hey @arunraja, glad to hear that you were able to upgrade your PostgreSQL database. You should be able to update to the latest version of Baserow now as well. Would you be able to share all output logs of the Baserow container? That might help to identify your problem.
This is my docker compose file now
version: "2.4"
services:
baserow:
container_name: baserow_admin
image: baserow/baserow:1.31.1
restart: unless-stopped
environment:
BASEROW_EXTRA_ALLOWED_HOSTS: "baserow"
BASEROW_PUBLIC_URL: ${BASEROW_PUBLIC_URL}
DATABASE_HOST: ${DATABASE_HOST}
DATABASE_NAME: ${DATABASE_NAME}
DATABASE_USER: ${DATABASE_USER}
DATABASE_PASSWORD: ${DATABASE_PASSWORD}
DATABASE_PORT: ${DATABASE_PORT}
EMAIL_SMTP: ${EMAIL_SMTP}
EMAIL_SMTP_HOST: ${EMAIL_SMTP_HOST}
EMAIL_SMTP_USE_TLS: ${EMAIL_SMTP_USE_TLS}
EMAIL_SMTP_PORT: ${EMAIL_SMTP_PORT}
EMAIL_SMTP_USER: ${EMAIL_SMTP_USER}
EMAIL_SMTP_PASSWORD: ${EMAIL_SMTP_PASSWORD}
FROM_EMAIL: ${FROM_EMAIL}
ports:
- "8019:80"
volumes:
- $HOME/docker-volumes/baserow_admin_data:/baserow/data
networks:
- baserow-admin-app-network
postgres:
container_name: baserow_postgres_admin
image: postgres:15-bullseye
environment:
POSTGRES_USER: ${DATABASE_USER}
POSTGRES_PASSWORD: ${DATABASE_PASSWORD}
POSTGRES_DB: ${DATABASE_NAME}
PGDATA: /data/postgres
volumes:
- $HOME/docker-volumes/postgres_admin:/var/lib/postgresql/data
ports:
- "5435:5432"
networks:
- baserow-admin-app-network
restart: unless-stopped
mem_limit: 4g
mem_reservation: 2g
adminer:
image: adminer
container_name: baserow_adminer_admin
restart: unless-stopped
ports:
- 8086:8080
networks:
- baserow-admin-app-network
pgadmin:
container_name: baserow_pgadmin_admin
image: dpage/pgadmin4
environment:
PGADMIN_DEFAULT_EMAIL: leo@skolavefurinn.is
PGADMIN_DEFAULT_PASSWORD: ${DATABASE_PASSWORD}
PGADMIN_CONFIG_SERVER_MODE: "False"
volumes:
- pgadmin_admin:/var/lib/pgadmin
ports:
- "5051:80"
networks:
- baserow-admin-app-network
restart: unless-stopped
#Docker Networks
networks:
baserow-admin-app-network:
driver: bridge
volumes:
baserow_admin_data:
postgres_admin:
pgadmin_admin:
Here are the logs to look out when I ran baserow 1.31.1 ( All versions after 1.24.2 is not working)
[REDIS][2025-03-13 09:55:13] 529:C 13 Mar 2025 09:55:13.627 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
[REDIS][2025-03-13 09:55:13] 529:C 13 Mar 2025 09:55:13.627 # Redis version=7.0.15, bits=64, commit=00000000, modified=0, pid=529, just started
[REDIS][2025-03-13 09:55:13] 529:C 13 Mar 2025 09:55:13.627 # Configuration loaded
[REDIS][2025-03-13 09:55:13] 529:M 13 Mar 2025 09:55:13.628 * monotonic clock: POSIX clock_gettime
[REDIS][2025-03-13 09:55:13] 529:M 13 Mar 2025 09:55:13.628 * Running mode=standalone, port=6379.
[REDIS][2025-03-13 09:55:13] 529:M 13 Mar 2025 09:55:13.628 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
[REDIS][2025-03-13 09:55:13] 529:M 13 Mar 2025 09:55:13.628 # Server initialized
[REDIS][2025-03-13 09:55:13] 529:M 13 Mar 2025 09:55:13.629 # Fatal: Can't initialize Background Jobs.
2025-03-13 09:55:13,630 WARN exited: redis (exit status 1; not expected)
2025-03-13 09:55:13,630 WARN exited: redis (exit status 1; not expected)
2025-03-13 09:55:13,630 INFO gave up: redis entered FATAL state, too many start retries too quickly
2025-03-13 09:55:13,630 INFO gave up: redis entered FATAL state, too many start retries too quickly
[BACKEND][2025-03-13 09:55:14] python /baserow/backend/src/baserow/manage.py locked_migrate
[BACKEND][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 1 of 8: Operation not permitted
[BACKEND][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[BACKEND][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 2 of 8: Operation not permitted
[BACKEND][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[BACKEND][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 3 of 8: Operation not permitted
[BACKEND][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[BACKEND][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 4 of 8: Operation not permitted
[BACKEND][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[BACKEND][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 5 of 8: Operation not permitted
[BACKEND][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[BACKEND][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 6 of 8: Operation not permitted
[BACKEND][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[BACKEND][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 7 of 8: Operation not permitted
2025-03-13 09:55:14,614 INFO spawned: 'webfrontend' with pid 540
2025-03-13 09:55:14,614 INFO spawned: 'webfrontend' with pid 540
2025-03-13 09:55:14,615 INFO reaped unknown pid 538 (exit status 0)
2025-03-13 09:55:14,615 INFO reaped unknown pid 538 (exit status 0)
Baserow was stopped or one of it's services crashed, see the logs above for more details.
[BACKEND][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[BACKEND][2025-03-13 09:55:14] Traceback (most recent call last):
[BACKEND][2025-03-13 09:55:14] File "/baserow/backend/src/baserow/manage.py", line 41, in <module>
[BACKEND][2025-03-13 09:55:14] main()
[BACKEND][2025-03-13 09:55:14] File "/baserow/backend/src/baserow/manage.py", line 37, in main
[BACKEND][2025-03-13 09:55:14] execute_from_command_line(sys.argv)
[BACKEND][2025-03-13 09:55:14] File "/baserow/venv/lib/python3.11/site-packages/django/core/management/__init__.py", line 442, in execute_from_command_line
[BACKEND][2025-03-13 09:55:14] utility.execute()
[BACKEND][2025-03-13 09:55:14] File "/baserow/venv/lib/python3.11/site-packages/django/core/management/__init__.py", line 416, in execute
[BACKEND][2025-03-13 09:55:14] django.setup()
[BACKEND][2025-03-13 09:55:14] File "/baserow/venv/lib/python3.11/site-packages/django/__init__.py", line 24, in setup
[BACKEND][2025-03-13 09:55:14] apps.populate(settings.INSTALLED_APPS)
[BACKEND][2025-03-13 09:55:14] File "/baserow/venv/lib/python3.11/site-packages/django/apps/registry.py", line 116, in populate
[BACKEND][2025-03-13 09:55:14] app_config.import_models()
[BACKEND][2025-03-13 09:55:14] File "/baserow/venv/lib/python3.11/site-packages/django/apps/config.py", line 269, in import_models
[BACKEND][2025-03-13 09:55:14] self.models_module = import_module(models_module_name)
[BACKEND][2025-03-13 09:55:14] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[BACKEND][2025-03-13 09:55:14] File "/usr/lib/python3.11/importlib/__init__.py", line 126, in import_module
[BACKEND][2025-03-13 09:55:14] return _bootstrap._gcd_import(name[level:], package, level)
[BACKEND][2025-03-13 09:55:14] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[BACKEND][2025-03-13 09:55:14] File "<frozen importlib._bootstrap>", line 1206, in _gcd_import
[BACKEND][2025-03-13 09:55:14] File "<frozen importlib._bootstrap>", line 1178, in _find_and_load
[BACKEND][2025-03-13 09:55:14] File "<frozen importlib._bootstrap>", line 1149, in _find_and_load_unlocked
[BACKEND][2025-03-13 09:55:14] File "<frozen importlib._bootstrap>", line 690, in _load_unlocked
[BACKEND][2025-03-13 09:55:14] File "<frozen importlib._bootstrap_external>", line 940, in exec_module
[BACKEND][2025-03-13 09:55:14] File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
[BACKEND][2025-03-13 09:55:14] File "/baserow/premium/backend/src/baserow_premium/models.py", line 1, in <module>
[BACKEND][2025-03-13 09:55:14] from .fields.models import AIField
[BACKEND][2025-03-13 09:55:14] File "/baserow/premium/backend/src/baserow_premium/fields/models.py", line 6, in <module>
[BACKEND][2025-03-13 09:55:14] from .ai_field_output_types import TextAIFieldOutputType
[BACKEND][2025-03-13 09:55:14] File "/baserow/premium/backend/src/baserow_premium/fields/ai_field_output_types.py", line 6, in <module>
[BACKEND][2025-03-13 09:55:14] from langchain.output_parsers.enum import EnumOutputParser
[BACKEND][2025-03-13 09:55:14] File "/baserow/venv/lib/python3.11/site-packages/langchain/output_parsers/__init__.py", line 31, in <module>
[BACKEND][2025-03-13 09:55:14] from langchain._api import create_importer
[BACKEND][2025-03-13 09:55:14] File "/baserow/venv/lib/python3.11/site-packages/langchain/_api/__init__.py", line 19, in <module>
[BACKEND][2025-03-13 09:55:14] from .module_import import create_importer
[BACKEND][2025-03-13 09:55:14] File "/baserow/venv/lib/python3.11/site-packages/langchain/_api/module_import.py", line 7, in <module>
[BACKEND][2025-03-13 09:55:14] from langchain.utils.interactive_env import is_interactive_env
[BACKEND][2025-03-13 09:55:14] File "/baserow/venv/lib/python3.11/site-packages/langchain/utils/__init__.py", line 31, in <module>
[BACKEND][2025-03-13 09:55:14] from langchain.utils.math import cosine_similarity, cosine_similarity_top_k
[BACKEND][2025-03-13 09:55:14] File "/baserow/venv/lib/python3.11/site-packages/langchain/utils/math.py", line 1, in <module>
[BACKEND][2025-03-13 09:55:14] from langchain_community.utils.math import (
[BACKEND][2025-03-13 09:55:14] File "/baserow/venv/lib/python3.11/site-packages/langchain_community/utils/math.py", line 5, in <module>
[BACKEND][2025-03-13 09:55:14] import numpy as np
[BACKEND][2025-03-13 09:55:14] File "/baserow/venv/lib/python3.11/site-packages/numpy/__init__.py", line 130, in <module>
[BACKEND][2025-03-13 09:55:14] from numpy.__config__ import show as show_config
[BACKEND][2025-03-13 09:55:14] File "/baserow/venv/lib/python3.11/site-packages/numpy/__config__.py", line 4, in <module>
[BACKEND][2025-03-13 09:55:14] from numpy.core._multiarray_umath import (
[BACKEND][2025-03-13 09:55:14] File "/baserow/venv/lib/python3.11/site-packages/numpy/core/__init__.py", line 24, in <module>
[BACKEND][2025-03-13 09:55:14] from . import multiarray
[BACKEND][2025-03-13 09:55:14] File "/baserow/venv/lib/python3.11/site-packages/numpy/core/multiarray.py", line 10, in <module>
[BACKEND][2025-03-13 09:55:14] from . import overrides
[BACKEND][2025-03-13 09:55:14] File "/baserow/venv/lib/python3.11/site-packages/numpy/core/overrides.py", line 8, in <module>
[BACKEND][2025-03-13 09:55:14] from numpy.core._multiarray_umath import (
[BACKEND][2025-03-13 09:55:14] File "<frozen importlib._bootstrap>", line 216, in _lock_unlock_module
2025-03-13 09:55:14,616 WARN received SIGTERM indicating exit request
2025-03-13 09:55:14,616 WARN received SIGTERM indicating exit request
2025-03-13 09:55:14,616 INFO waiting for processes, baserow-watcher, caddy, backend, celeryworker, exportworker, webfrontend, beatworker to die
2025-03-13 09:55:14,616 INFO waiting for processes, baserow-watcher, caddy, backend, celeryworker, exportworker, webfrontend, beatworker to die
[WEBFRONTEND][2025-03-13 09:55:14]
[WEBFRONTEND][2025-03-13 09:55:14] # node[540]: std::unique_ptr<long unsigned int> node::WorkerThreadsTaskRunner::DelayedTaskScheduler::Start() at ../src/node_platform.cc:68
[WEBFRONTEND][2025-03-13 09:55:14] # Assertion failed: (0) == (uv_thread_create(t.get(), start_thread, this))
[WEBFRONTEND][2025-03-13 09:55:14]
[WEBFRONTEND][2025-03-13 09:55:14] ----- Native stack trace -----
[WEBFRONTEND][2025-03-13 09:55:14]
[WEBFRONTEND][2025-03-13 09:55:14] 1: 0xe2fcd7 node::Assert(node::AssertionInfo const&) [node]
[WEBFRONTEND][2025-03-13 09:55:14] 2: 0xeb54ce node::WorkerThreadsTaskRunner::WorkerThreadsTaskRunner(int) [node]
[WEBFRONTEND][2025-03-13 09:55:14] 3: 0xeb55ac node::NodePlatform::NodePlatform(int, v8::TracingController*, v8::PageAllocator*) [node]
[WEBFRONTEND][2025-03-13 09:55:14] 4: 0xdd22b6 [node]
[WEBFRONTEND][2025-03-13 09:55:14] 5: 0xdd37b4 node::Start(int, char**) [node]
[WEBFRONTEND][2025-03-13 09:55:14] 6: 0x7f27508f224a [/lib/x86_64-linux-gnu/libc.so.6]
[WEBFRONTEND][2025-03-13 09:55:14] 7: 0x7f27508f2305 __libc_start_main [/lib/x86_64-linux-gnu/libc.so.6]
[EXPORT_WORKER][2025-03-13 09:55:14] OTEL_RESOURCE_ATTRIBUTES=service.namespace=Baserow,service.version=1.31.1,deployment.environment=unknown
[EXPORT_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 1 of 8: Operation not permitted
[EXPORT_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[EXPORT_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 2 of 8: Operation not permitted
[EXPORT_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[EXPORT_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 3 of 8: Operation not permitted
[EXPORT_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[EXPORT_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 4 of 8: Operation not permitted
[EXPORT_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[EXPORT_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 5 of 8: Operation not permitted
[EXPORT_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[EXPORT_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 6 of 8: Operation not permitted
[EXPORT_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[EXPORT_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 7 of 8: Operation not permitted
[EXPORT_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[EXPORT_WORKER][2025-03-13 09:55:14]
[CELERY_WORKER][2025-03-13 09:55:14] OTEL_RESOURCE_ATTRIBUTES=service.namespace=Baserow,service.version=1.31.1,deployment.environment=unknown
[CELERY_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 1 of 8: Operation not permitted
[CELERY_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[CELERY_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 2 of 8: Operation not permitted
[CELERY_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[CELERY_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 3 of 8: Operation not permitted
[CELERY_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[CELERY_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 4 of 8: Operation not permitted
[CELERY_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[CELERY_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 5 of 8: Operation not permitted
[CELERY_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[CELERY_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 6 of 8: Operation not permitted
[CELERY_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[CELERY_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: pthread_create failed for thread 7 of 8: Operation not permitted
[CELERY_WORKER][2025-03-13 09:55:14] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[CELERY_WORKER][2025-03-13 09:55:14]
[WEBFRONTEND][2025-03-13 09:55:14] 8: 0xd2717e _start [node]
2025-03-13 09:55:14,817 WARN exited: webfrontend (terminated by SIGABRT (core dumped); not expected)
2025-03-13 09:55:14,817 WARN exited: webfrontend (terminated by SIGABRT (core dumped); not expected)
2025-03-13 09:55:14,817 INFO gave up: webfrontend entered FATAL state, too many start retries too quickly
2025-03-13 09:55:14,817 INFO gave up: webfrontend entered FATAL state, too many start retries too quickly
2025-03-13 09:55:14,817 INFO reaped unknown pid 549 (exit status 0)
2025-03-13 09:55:14,817 INFO reaped unknown pid 549 (exit status 0)
[BACKEND][2025-03-13 09:55:15] KeyboardInterrupt
2025-03-13 09:55:15,023 WARN exited: backend (exit status 130; not expected)
2025-03-13 09:55:15,023 WARN exited: backend (exit status 130; not expected)
2025-03-13 09:55:15,023 INFO reaped unknown pid 471 (exit status 0)
2025-03-13 09:55:15,023 INFO reaped unknown pid 471 (exit status 0)
[EXPORT_WORKER][2025-03-13 09:55:15] Aborted!
2025-03-13 09:55:15,226 WARN exited: exportworker (exit status 1; not expected)
2025-03-13 09:55:15,226 WARN exited: exportworker (exit status 1; not expected)
2025-03-13 09:55:15,227 INFO reaped unknown pid 487 (exit status 0)
2025-03-13 09:55:15,227 INFO reaped unknown pid 487 (exit status 0)
[CELERY_WORKER][2025-03-13 09:55:15] Aborted!
2025-03-13 09:55:15,266 WARN exited: celeryworker (exit status 1; not expected)
2025-03-13 09:55:15,266 WARN exited: celeryworker (exit status 1; not expected)
2025-03-13 09:55:15,266 INFO reaped unknown pid 474 (exit status 0)
2025-03-13 09:55:15,266 INFO reaped unknown pid 474 (exit status 0)
[BASEROW-WATCHER][2025-03-13 09:55:16] Waiting for Baserow to become available, this might take 30+ seconds...
2025-03-13 09:55:18,402 INFO waiting for processes, baserow-watcher, caddy, backend, celeryworker, exportworker, beatworker to die
2025-03-13 09:55:18,402 INFO waiting for processes, baserow-watcher, caddy, backend, celeryworker, exportworker, beatworker to die
2025-03-13 09:55:21,404 INFO waiting for processes, baserow-watcher, caddy, backend, celeryworker, exportworker, beatworker to die
2025-03-13 09:55:21,404 INFO waiting for processes, baserow-watcher, caddy, backend, celeryworker, exportworker, beatworker to die
[BEAT_WORKER][2025-03-13 09:55:21] Sleeping for 15 before starting beat to prevent startup errors.
[BEAT_WORKER][2025-03-13 09:55:22] celery beat v5.4.0 (opalescent) is starting.
[BEAT_WORKER][2025-03-13 09:55:22] OpenBLAS blas_thread_init: pthread_create failed for thread 1 of 8: Operation not permitted
[BEAT_WORKER][2025-03-13 09:55:22] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[BEAT_WORKER][2025-03-13 09:55:22] OpenBLAS blas_thread_init: pthread_create failed for thread 2 of 8: Operation not permitted
[BEAT_WORKER][2025-03-13 09:55:22] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[BEAT_WORKER][2025-03-13 09:55:22] OpenBLAS blas_thread_init: pthread_create failed for thread 3 of 8: Operation not permitted
[BEAT_WORKER][2025-03-13 09:55:22] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[BEAT_WORKER][2025-03-13 09:55:22] OpenBLAS blas_thread_init: pthread_create failed for thread 4 of 8: Operation not permitted
[BEAT_WORKER][2025-03-13 09:55:22] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[BEAT_WORKER][2025-03-13 09:55:22] OpenBLAS blas_thread_init: pthread_create failed for thread 5 of 8: Operation not permitted
[BEAT_WORKER][2025-03-13 09:55:22] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[BEAT_WORKER][2025-03-13 09:55:22] OpenBLAS blas_thread_init: pthread_create failed for thread 6 of 8: Operation not permitted
[BEAT_WORKER][2025-03-13 09:55:22] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[BEAT_WORKER][2025-03-13 09:55:22] OpenBLAS blas_thread_init: pthread_create failed for thread 7 of 8: Operation not permitted
[BEAT_WORKER][2025-03-13 09:55:22] OpenBLAS blas_thread_init: RLIMIT_NPROC -1 current, -1 max
[BEAT_WORKER][2025-03-13 09:55:22]
[BEAT_WORKER][2025-03-13 09:55:23] Aborted!
2025-03-13 09:55:23,150 WARN stopped: beatworker (exit status 1)
2025-03-13 09:55:23,150 WARN stopped: beatworker (exit status 1)
2025-03-13 09:55:23,151 INFO reaped unknown pid 229 (exit status 0)
2025-03-13 09:55:23,151 INFO reaped unknown pid 229 (exit status 0)
The thing is I can’t able to update like before from baserow version 1.25, Currently we are using 1.24.2 without any issues and we have backup of postgres database as well . It’s just restarting continuously for every 20-24 seconds or so. Other thing to note here is Our ubuntu version is Ubuntu 16.04.2 LTS
and docker version is Docker version 20.10.7, build f0df350
@bram
Hey @arunraja, do you have any resource limitations set on the server? It looks like it’s not possible to spawn new threads based on the output logs. I’m also curious what the specs of the server are.
Hey @arunraja, I don’t know if there are other applications running on your server, but if you only have 1 GB of free memory, while Baserow is not yet running, then you would need to have additional resources there. It’s difficult to say how much of your CPU is being used.
I’m already running one baserow docker instance on my server and now trying to run another baserow instance. Maybe this is the issue? @bram
It indeed looks like a resources problem.