Skip to content

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Explore page empty when Machine Learning is disabled #9526

Closed
1 of 3 tasks
pig-cop opened this issue May 16, 2024 · 0 comments
Closed
1 of 3 tasks

[BUG] Explore page empty when Machine Learning is disabled #9526

pig-cop opened this issue May 16, 2024 · 0 comments

Comments

@pig-cop
Copy link

pig-cop commented May 16, 2024

The bug

When Machine Learning is disabled the Explore page doesn't work properly.
Before it was possible to access Recently Added and other categories from there, now there's only an empty page.

image

The OS that Immich Server is running on

Debian

Version of Immich Server

v1.105.1

Version of Immich Mobile App

v1.105.1 build.139

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

version: "3.8"

services:
  immich-server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:${TAG}
    command: [ "start.sh", "immich" ]
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - stack.env
    ports:
      - 2283:3001
    depends_on:
      - redis
      - database
    restart: always

  immich-microservices:
    container_name: immich_microservices
    image: ghcr.io/immich-app/immich-server:${TAG}
    command: [ "start.sh", "microservices" ]
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - stack.env
    depends_on:
      - redis
      - database
    restart: always

  redis:
    container_name: immich_redis
    image: redis:6.2
    restart: always

  database:
    container_name: immich_postgres
    image: tensorchord/pgvecto-rs:pg14-v0.2.0
    env_file:
      - stack.env
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
      PG_DATA: /var/lib/postgresql/data
    volumes:

      - ${DB_DATA_LOCATION}:/var/lib/postgresql/data
    restart: always

volumes:
  model-cache:

Your .env content

IMMICH_MACHINE_LEARNING_ENABLED = false

Reproduction steps

1. Disable Machine Learning by removing the container from docker-compose.yml
2. Add IMMICH_MACHINE_LEARNING_ENABLED environment variable, set it to false
3. Disable Machine Learning in Settings
3. Check Search and Explore from Web

Relevant log output

No response

Additional information

No response

@immich-app immich-app locked and limited conversation to collaborators May 16, 2024
@mertalev mertalev converted this issue into discussion #9536 May 16, 2024

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant