mirror of
https://github.com/open-webui/open-webui.git
synced 2026-07-17 07:46:16 -05:00
[GH-ISSUE #3785] Process stop at : INFO [alembic.runtime.migration] Will assume non-transactional DDL. #67988
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @zouzeTG on GitHub (Jul 11, 2024).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/3785
Bug Report
Process stop at : INFO [alembic.runtime.migration] Will assume non-transactional DDL.
Description
When I launch open-webui with Start windows.bat
the process stop at step : INFO [alembic.runtime.migration] Will assume non-transactional DDL. even if I wait lot of minutes
Bug Summary:
[Provide a brief but clear summary of the bug]
Steps to Reproduce:
[Outline the steps to reproduce the bug. Be as detailed as possible.]
Expected Behavior:
[Describe what you expected to happen.]
Actual Behavior:
[Describe what actually happened.]
Environment
Reproduction Details
Confirmation:
Logs and Screenshots
Browser Console Logs:
[Include relevant browser console logs, if applicable]
Docker Container Logs:
[Include relevant Docker container logs, if applicable]
Screenshots (if applicable):
[Attach any relevant screenshots to help illustrate the issue]
Installation Method
[Describe the method you used to install the project, e.g., manual installation, Docker, package manager, etc.]
Additional Information
[Include any additional details that may help in understanding and reproducing the issue. This could include specific configurations, error messages, or anything else relevant to the bug.]
Note
If the bug report is incomplete or does not follow the provided instructions, it may not be addressed. Please ensure that you have followed the steps outlined in the README.md and troubleshooting.md documents, and provide all necessary information for us to reproduce and address the issue. Thank you!
@silentoplayz commented on GitHub (Jul 11, 2024):
This is not a bug. This line is informational, and it means that Alembic will assume that the Data Definition Language (DDL) operations (e.g., creating tables, indices, etc.) will not be executed within a transaction. In other words, when Alembic applies migrations to the database, it will not wrap the DDL operations in a transaction. This means that if any of these operations fail, the database will not roll back to its previous state, and the migration process will continue.
By assuming non-transactional DDL, Alembic is allowing the database to execute these operations directly, without creating a transaction that could be rolled back. This is often the default behavior for many databases, as transactions are not always supported for DDL operations.
In general, this message is just an informational notification, and it doesn't require any specific action from you. Alembic is designed to handle these situations, and the migration will continue as usual.
Related: https://github.com/open-webui/open-webui/pull/3595
@zouzeTG commented on GitHub (Jul 11, 2024):
thank's for your response, but the process seems stopped at this step and I don't have any other step started like below
INFO: Started server process [14860]
INFO: Waiting for application startup.
INFO: Application startup complete.
INFO: Uvicorn running on http://127.0.0.4:8084 (Press CTRL+C to quit)
This step don't appear
that's why http://127.0.0.4:8084 don't work !