Hello,
currently, I try to upgrade redash v8 to v10
but, I got some trouble for upgrading
first, I setup redash v8 by using aws ami which introduced in that guide and modify someting which that explained (modify yml’s docker tag to redash/redash:10.0.0.b50363 , and so on)

when I ran this command docker-compose up --force-recreate --build
the execution log seems to be repeated without stopping or succeeding.

There were no error logs or warning logs, and this was the only log that seemed to be a problem.
postgres_1 | LOG: unexpected EOF on client connection with an open transaction

How can I solve this problem?

this is my yml

Blockquotversion: “2”
x-redash-service: &redash-service
image: redash/redash:10.0.0.b50363
depends_on:
- postgres
- redis
env_file: /opt/redash/env
restart: always
services:
worker:
<<: *redash-service
command: worker
environment:
QUEUES: “periodic emails default”
WORKERS_COUNT: 1
server:
<<: *redash-service
command: server
ports:
- “5000:5000”
environment:
REDASH_WEB_WORKERS: 4
scheduler:
<<: *redash-service
command: scheduler
scheduled_worker:
<<: *redash-service
command: worker
environment:
QUEUES: “scheduled_queries,schemas”
WORKERS_COUNT: 1
adhoc_worker:
<<: *redash-service
command: worker
environment:
QUEUES: “queries”
WORKERS_COUNT: 2
redis:
image: redis:5.0-alpine
restart: always
postgres:
image: postgres:9.6-alpine
env_file: /opt/redash/env
volumes:
- /opt/redash/postgres-data:/var/lib/postgresql/data
restart: always
nginx:
image: redash/nginx:latest
ports:
- “80:80”
depends_on:
- server
links:
- server:redash
restart: always

Have you done migration of the DB? See https://redash.io/help/open-source/admin-guide/how-to-upgrade
It solved problem for me.

1 Like

@pappfire
wow… I upgraded redash ver 8 to 10 thanks to your advice and link.
I exactly dont know why this problem solved by following linked advice. :thinking:
but, really thanks for your help! :grinning: