Error: The VectorChord extension version is 0.4.3, but Immich only supports >=0.3 <0.4
Hello, everyone!
I
Community, do you know, what`s wrong with it?
Thanks for reading!
I
ve started update Immich Server from 1.132.3 to 1.133.0 (applied breaking changes in Github https://github.com/immich-app/immich/discussions/18429)
But, while updating, I see the next error in Immich Server:
```
Error: The VectorChord extension version is 0.4.3, but Immich only supports >=0.3 <0.4.
```
1) First of all, I checked the "pg_extensions" in PSQL Server:
```
postgres=# SELECT * FROM pg_extension;
oid | extname | extowner | extnamespace | extrelocatable | extversion | extconfig | extcondition
--------+---------+----------+--------------+----------------+------------+-----------+--------------
13766 | plpgsql | 10 | 11 | f | 1.0 | |
169515 | vector | 10 | 2200 | t | 0.8.0 | |
169843 | vchord | 10 | 2200 | t | 0.3.0 | |
(3 rows)
```
As you see, "vchord" has a correct version for Immich Server.
2) Next time, I checked the stack (Immich) in Portainer:
```
....
database:
container_name: immich_postgres
image: ghcr.io/immich-app/postgres:14-vectorchord0.3.0-pgvectors0.2.0
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_DB: ${DB_DATABASE_NAME}
POSTGRES_INITDB_ARGS: '--data-checksums'
# Uncomment the DB_STORAGE_TYPE: 'HDD' var if your database isn't stored on SSDs
# DB_STORAGE_TYPE: 'HDD'
volumes:
# Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
- ${DB_DATA_LOCATION}:/var/lib/postgresql/data
shm_size: 128mb
restart: always
volumes:
model-cache:
....
```
As you see, Its also correct.Community, do you know, what`s wrong with it?
Thanks for reading!