The thumbnail images on my homepage load a bit slowly, taking about two seconds to fully display #7697

Closed
opened 2026-02-05 13:14:42 +03:00 by OVERLORD · 2 comments
Owner

Originally created by @mxz94 on GitHub (Nov 1, 2025).

I have searched the existing issues, both open and closed, to make sure this is not a duplicate report.

  • Yes

The bug

Image

The OS that Immich Server is running on

windows10

Version of Immich Server

v2.2.0

Version of Immich Mobile App

v2.2.0

Platform with the issue

  • Server
  • Web
  • Mobile

Device make and model

No response

Your docker-compose.yml content

name: immich
services:
  immich-server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    volumes:
      - ${UPLOAD_LOCATION}:/data
      - ./immich-server/geodata:/build/geodata
      - ./immich-server/i18n-iso-countries/langs:/usr/src/app/server/node_modules/i18n-iso-countries/langs
    env_file:
      - .env
    ports:
      - 2283:2283
    depends_on:
      - redis
      - database
    restart: always
    healthcheck:
      disable: false
  immich-machine-learning:
    container_name: immich_machine_learning
    image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
    volumes:
      - ./model-cache:/cache
    env_file:
      - .env
    restart: always
    healthcheck:
      disable: false

  redis:
    container_name: immich_redis
    image: docker.io/valkey/valkey:8-bookworm@sha256:42cba146593a5ea9a622002c1b7cba5da7be248650cbb64ecb9c6c33d29794b1
    healthcheck:
      test: redis-cli ping || exit 1
    restart: always
    ports:
          - 6379:6379

  database:
    container_name: immich_postgres
    image: ghcr.io/immich-app/postgres:14-vectorchord0.3.0-pgvectors0.2.0
    env_file:
      - .env
    ports:
          - 54321:5432
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
      POSTGRES_INITDB_ARGS: '--data-checksums'
      PG_DATA: /var/lib/postgresql/data
      # Uncomment the DB_STORAGE_TYPE: 'HDD' var if your database isn't stored on SSDs
      # DB_STORAGE_TYPE: 'HDD'
    volumes:
      - ${DB_DATA_LOCATION}:/var/lib/postgresql/data
    shm_size: 128mb
    restart: always

# volumes:
#  model-cache:

Your .env content

###################################################################################
# Database
###################################################################################

# NOTE: The following four database variables support Docker secrets by adding a *_FILE suffix to the variable name
# See the docker-compose documentation on secrets for additional details: https://docs.docker.com/compose/compose-file/compose-file-v3/#secrets
DB_HOSTNAME=immich_postgres
DB_USERNAME=postgres
DB_PASSWORD=postgres
DB_DATABASE_NAME=immich


UPLOAD_LOCATION=./data

IMMICH_VERSION=release

DB_DATA_LOCATION=./postgres

Reproduction steps

The thumbnail images on my homepage load a bit slowly, taking about two seconds to fully display.

Relevant log output


Additional information

No response

Originally created by @mxz94 on GitHub (Nov 1, 2025). ### I have searched the existing issues, both open and closed, to make sure this is not a duplicate report. - [x] Yes ### The bug <img width="2478" height="508" alt="Image" src="https://github.com/user-attachments/assets/74a4165f-2f77-4e5a-8a9e-d924a31ef07a" /> ### The OS that Immich Server is running on windows10 ### Version of Immich Server v2.2.0 ### Version of Immich Mobile App v2.2.0 ### Platform with the issue - [x] Server - [x] Web - [ ] Mobile ### Device make and model _No response_ ### Your docker-compose.yml content ```YAML name: immich services: immich-server: container_name: immich_server image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} volumes: - ${UPLOAD_LOCATION}:/data - ./immich-server/geodata:/build/geodata - ./immich-server/i18n-iso-countries/langs:/usr/src/app/server/node_modules/i18n-iso-countries/langs env_file: - .env ports: - 2283:2283 depends_on: - redis - database restart: always healthcheck: disable: false immich-machine-learning: container_name: immich_machine_learning image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release} volumes: - ./model-cache:/cache env_file: - .env restart: always healthcheck: disable: false redis: container_name: immich_redis image: docker.io/valkey/valkey:8-bookworm@sha256:42cba146593a5ea9a622002c1b7cba5da7be248650cbb64ecb9c6c33d29794b1 healthcheck: test: redis-cli ping || exit 1 restart: always ports: - 6379:6379 database: container_name: immich_postgres image: ghcr.io/immich-app/postgres:14-vectorchord0.3.0-pgvectors0.2.0 env_file: - .env ports: - 54321:5432 environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} POSTGRES_INITDB_ARGS: '--data-checksums' PG_DATA: /var/lib/postgresql/data # Uncomment the DB_STORAGE_TYPE: 'HDD' var if your database isn't stored on SSDs # DB_STORAGE_TYPE: 'HDD' volumes: - ${DB_DATA_LOCATION}:/var/lib/postgresql/data shm_size: 128mb restart: always # volumes: # model-cache: ``` ### Your .env content ```Shell ################################################################################### # Database ################################################################################### # NOTE: The following four database variables support Docker secrets by adding a *_FILE suffix to the variable name # See the docker-compose documentation on secrets for additional details: https://docs.docker.com/compose/compose-file/compose-file-v3/#secrets DB_HOSTNAME=immich_postgres DB_USERNAME=postgres DB_PASSWORD=postgres DB_DATABASE_NAME=immich UPLOAD_LOCATION=./data IMMICH_VERSION=release DB_DATA_LOCATION=./postgres ``` ### Reproduction steps The thumbnail images on my homepage load a bit slowly, taking about two seconds to fully display. ### Relevant log output ```shell ``` ### Additional information _No response_
Author
Owner

@electricmessiah commented on GitHub (Nov 1, 2025):

How large is the library? Is it on SSD? Have you tried with a fresh browser and no addons loaded?

@electricmessiah commented on GitHub (Nov 1, 2025): How large is the library? Is it on SSD? Have you tried with a fresh browser and no addons loaded?
Author
Owner

@mxz94 commented on GitHub (Nov 1, 2025):

300GB, SSD, Equally slow

@mxz94 commented on GitHub (Nov 1, 2025): 300GB, SSD, Equally slow
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#7697