Manual Docker Image Build - Containers exiting with error. #27061
-
System Information: I checked out to tags/3.1.0 branch for the last stable release code of superset. Using this branch I am building a Docker image for myself. I have not made any changes to the code yet. My docker build command is: The build is successful. Now I am trying to use this image which I have built with compose YAML in the project. I have made only one change to the compose file: When I run the command Errors I get for the exited containers:
2. superset_node:
3. superset_tests_worker:
4. superset_websocket:
Looking for support on this. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 7 replies
-
@michael-s-molina @rusackas @betodealmeida @john-bodley @geido @mistercrunch |
Beta Was this translation helpful? Give feedback.
-
Database deadlocks, looks like you have a migration (touching |
Beta Was this translation helpful? Give feedback.
-
The solution is spelled out pretty clearly. Kill the app, and all database sessions (restarting the database will kill all sessions) and then fire up |
Beta Was this translation helpful? Give feedback.
-
This could be loosely related: #30770, do you have GLOBAL_ASYNC_QUERIES on/off? |
Beta Was this translation helpful? Give feedback.
Database deadlocks, looks like you have a migration (touching
dashboard_roles
) conflicting with the app itself. Stop the app, kill all sessions in the database, get a clean run on the migrations, and restart the app.