You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updating the image on one of the worker groups started the migration process.
Once it got to the v1 to v2 migration it fails after a few minutes and then the container terminates and gets restarted and attempts again. This is happening in a continuous loop.
2025-02-21T06:16:12.576439429Z 2025-02-21T06:16:12.575768Z INFO windmill-api/src/db.rs:93: Acquired global PG lock
2025-02-21T06:16:12.587240719Z 2025-02-21T06:16:12.587029Z INFO windmill-api/src/db.rs:130: Started applying migration 20250201124748: v2 migrate from v1
2025-02-21T06:18:32.191178681Z 2025-02-21T06:18:32.190955Z INFO windmill-api/src/db.rs:156: Finished applying migration 20250201124748
2025-02-21T06:18:32.232113713Z Error: Error migrating db: Migrating database: while executing migration 20250201124748: error returned from database: value too long for type character varying(50)
To reproduce
Go to '...'
Click on '....'
Scroll down to '....'
See error
Expected behavior
That the migration is successful?
Screenshots
No response
Browser information
No response
Application version
Windmill EE v1.447.5
Additional Context
No response
The text was updated successfully, but these errors were encountered:
The migration has a small mistake which is that it limits the tag length to 50 chars for jobs which it didn't before. We are working on a solution but for now the best is to shorten those tags prior to migration:
SELECT id, tag FROM queue WHERE LENGTH(tag) > 50;
SELECT id, tag FROM completed_job WHERE LENGTH(tag) > 50;
UPDATE queue SET tag = <shorter_tag> WHERE tag = <longer_tag>;
UPDATE completed_job SET tag = <shorter_tag> WHERE tag = <longer_tag>;
Describe the bug
Updating the image on one of the worker groups started the migration process.
Once it got to the v1 to v2 migration it fails after a few minutes and then the container terminates and gets restarted and attempts again. This is happening in a continuous loop.
2025-02-21T06:16:12.576439429Z 2025-02-21T06:16:12.575768Z INFO windmill-api/src/db.rs:93: Acquired global PG lock
2025-02-21T06:16:12.587240719Z 2025-02-21T06:16:12.587029Z INFO windmill-api/src/db.rs:130: Started applying migration 20250201124748: v2 migrate from v1
2025-02-21T06:18:32.191178681Z 2025-02-21T06:18:32.190955Z INFO windmill-api/src/db.rs:156: Finished applying migration 20250201124748
2025-02-21T06:18:32.232113713Z Error: Error migrating db: Migrating database: while executing migration 20250201124748: error returned from database: value too long for type character varying(50)
To reproduce
Expected behavior
That the migration is successful?
Screenshots
No response
Browser information
No response
Application version
Windmill EE v1.447.5
Additional Context
No response
The text was updated successfully, but these errors were encountered: