1.133.1 crash loop

Howdy all .. first off this program is absoutly amazing and thank you to the devs for it!

I am having an issue with 1.133.1 with a crash loop on immich_server. All the dependancies are up but server runs for 10s then reloads.

Here is the docker log:

missing 'error' handler on this Redis client
Query failed : {
durationMs: 4.528843000000052,
error: PostgresError: function array_length(vector, integer) does not exist
at ErrorResponse (/usr/src/app/node_modules/postgres/cjs/src/connection.js:790:26)
at handle (/usr/src/app/node_modules/postgres/cjs/src/connection.js:476:6)
at Socket.data (/usr/src/app/node_modules/postgres/cjs/src/connection.js:315:9)
at Socket.emit (node:events:518:28)
at addChunk (node:internal/streams/readable:561:12)
at readableAddChunkPushByteMode (node:internal/streams/readable:512:3)
at Readable.push (node:internal/streams/readable:392:5)
at TCP.onStreamRead (node:internal/stream_base_commons:189:23) {
severity_local: 'ERROR',
severity: 'ERROR',
code: '42883',
hint: 'No function matches the given name and argument types. You might need to add explicit type casts.',
file: 'parse_func.c',
line: '629',
routine: 'ParseFuncOrColumn'
},
sql: '\n' +
' ALTER TABLE smart_search\n' +
' ALTER COLUMN embedding\n' +
' SET DATA TYPE vector(512)',
params: []
}


Postgres log says similar:
2025-05-25 01:02:34.261 UTC [777] ERROR: function array_length(vector, integer) does not exist
2025-05-25 01:02:34.261 UTC [777] HINT: No function matches the given name and argument types. You might need to add explicit type casts.
2025-05-25 01:02:34.261 UTC [777] STATEMENT:
ALTER TABLE smart_search
ALTER COLUMN embedding
SET DATA TYPE vector(512)


I checked and made sure my docker_compose is of the latest version and can't get this to come out of the issue. Any hints would be great. Tks in adv.
Was this page helpful?