Skip to content

iOS people API calls very slow #14214

Open
@pjft

Description

@pjft

The bug

Since one of the most recent versions, opening up a person's page is exceedingly slow on the iOS app. It used to be fast.
On the web it works well.
Logs below.

The OS that Immich Server is running on

Raspberry Pi OS

Version of Immich Server

v1.120.2

Version of Immich Mobile App

1.120.2 build.184

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

name: immichservices:
  immich-server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
      - ${EXTERNAL_PATH}:/usr/src/app/external:ro
    env_file:
      - .env
    ports:      
      - 2283:2283
    depends_on:
      - redis
      - database
    restart: always
    deploy:
      resources:
        limits:
          memory: 4G
    healthcheck:
      disable: true
  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: true  redis:
    container_name: immich_redis    image: docker.io/redis:6.2-alpine@sha256:2ba50e1ac3a0ea17b736ce9db2b0a9f6f8b85d4c27d5f5accc6a416d8f42c6d5
    restart: always  database:
    container_name: immich_postgres
    image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
      POSTGRES_INITDB_ARGS: '--data-checksums'
    volumes:
      - ${DB_DATA_LOCATION}:/var/lib/postgresql/data
    healthcheck:
      test: pg_isready --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' || exit 1; Chksum="$$(psql --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' --tuples-only --no-align --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; echo "checksum failure count is $$Chksum"; [ "$$Chksum" = '0' ] || exit 1
      interval: 5m
      start_interval: 30s
      start_period: 5m
    command: ["postgres", "-c", "track_activity_query_size=1048576",  "-c" ,"shared_preload_libraries=vectors.so", "-c", 'search_path="$$user", public, vectors', "-c", "logging_collector=on", "-c", "max_wal_size=2GB", "-c", "shared_buffers=512MB", "-c", "wal_compression=on"]
    restart: always
volumes:
  model-cache:

Your .env content

# You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables

# The location where your uploaded files are stored
UPLOAD_LOCATION=/srv/dev-disk-by-label-HDD/immich/library
# The location where your database files are stored
DB_DATA_LOCATION=/srv/dev-disk-by-label-HDD/immich/postgres
#DB_DATA_LOCATION=/var/lib/postgres

EXTERNAL_PATH=/srv/dev-disk-by-label-HDD/root/photos

##IMMICH_CONFIG_FILE=/srv/dev-disk-by-label-HDD/immich

# The Immich version to use. You can pin this to a specific version like "v1.71.0"
IMMICH_VERSION=release

# Connection secret for postgres. You should change it to a random password
DB_PASSWORD=xxx



MACHINE_LEARNING_REQUEST_THREADS=1
MACHINE_LEARNING_MODEL_TTL=0


# The values below this line do not need to be changed
###################################################################################
DB_USERNAME=xxx
DB_DATABASE_NAME=xxx

Reproduction steps

  1. Open a person on the iOS app that has several thousand pictures (18k in my case)
  2. Slow to open.

Relevant log output

On the web: 
--- START OF WEB REQUEST LOG ---
[Nest] 17  - 11/18/2024, 6:11:44 PM   DEBUG [Api:LoggingInterceptor~2ylsv31v] GET /api/people/6bcec731-7d0b-4dbf-9e3c-73d8029defb8 200 3.38ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:44 PM   DEBUG [Api:LoggingInterceptor~p1s89cyr] GET /api/people/6bcec731-7d0b-4dbf-9e3c-73d8029defb8/statistics 200 107.44ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:44 PM   DEBUG [Api:LoggingInterceptor~lxy7lqjw] GET /api/people/6bcec731-7d0b-4dbf-9e3c-73d8029defb8/statistics 200 87.46ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:44 PM   DEBUG [Api:LoggingInterceptor~es1s3v9w] GET /api/timeline/buckets?personId=6bcec731-7d0b-4dbf-9e3c-73d8029defb8&size=MONTH 200 138.93ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:44 PM   DEBUG [Api:LoggingInterceptor~9whziqx8] GET /api/timeline/bucket?personId=6bcec731-7d0b-4dbf-9e3c-73d8029defb8&size=MONTH&timeBucket=2024-11-01T00%3A00%3A00.000Z 200 89.20ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:45 PM   DEBUG [Api:LoggingInterceptor~nrqdw69l] GET /api/timeline/bucket?personId=6bcec731-7d0b-4dbf-9e3c-73d8029defb8&size=MONTH&timeBucket=2024-10-01T00%3A00%3A00.000Z 200 112.55ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:45 PM   DEBUG [Api:LoggingInterceptor~wxrdqfbj] GET /api/timeline/bucket?personId=6bcec731-7d0b-4dbf-9e3c-73d8029defb8&size=MONTH&timeBucket=2024-09-01T00%3A00%3A00.000Z 200 95.27ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:45 PM   DEBUG [Api:LoggingInterceptor~8xc0nffk] GET /api/assets/da83ae57-df74-46d4-bc0d-eeae11a62734/thumbnail?size=thumbnail&c=15ToFrb6%2FDY%2Fp5X92khzbaD%2Bmt8%3D 200 8.51ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:45 PM   DEBUG [Api:LoggingInterceptor~5hnl53q9] GET /api/assets/e9131245-3c88-4a91-83a0-d107495bc59e/thumbnail?size=thumbnail&c=aBfJomTCQbO9f3%2Bwky%2F3IxgsdkM%3D 200 7.59ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:45 PM   DEBUG [Api:LoggingInterceptor~x18fyldd] GET /api/assets/063369f5-a981-4469-8270-dea3fad39995/thumbnail?size=thumbnail&c=lsELN7%2Bo3nlUzsIc%2BvPJxDPeSkg%3D 200 10.43ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:45 PM   DEBUG [Api:LoggingInterceptor~g8bnabpc] GET /api/assets/bb5dcfbd-be14-4dc2-bbb9-8f32a9ee6f97/thumbnail?size=thumbnail&c=4nZJ3vlHtYkHTQ0%2BmJRaNnmOIhQ%3D 200 6.99ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:45 PM   DEBUG [Api:LoggingInterceptor~48xcqe1r] GET /api/assets/ed0869f3-1738-40f7-b383-4b7e9271f20e/thumbnail?size=thumbnail&c=Omao2dQEmsgnZrCRPdrE%2FRMHbn8%3D 200 11.48ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:45 PM   DEBUG [Api:LoggingInterceptor~wuc6lgv4] GET /api/assets/d71704cf-9579-4cfd-b9bd-b501178a4566/thumbnail?size=thumbnail&c=TqBiIfreExecQd3BUhaeYG74RHo%3D 200 10.75ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:45 PM   DEBUG [Api:LoggingInterceptor~ob8xe9cm] GET /api/assets/330034c8-d362-45c4-ad4e-430999363269/thumbnail?size=thumbnail&c=N6SFIFha8RHWutaOwgZehmUSVG4%3D 200 8.14ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:45 PM   DEBUG [Api:LoggingInterceptor~07lfhca8] GET /api/assets/d5c0c913-6de4-401e-9639-ecec96d49337/thumbnail?size=thumbnail&c=oB0Q%2F6vZtQwUwfyao4Xqqg0N7lo%3D 200 5.03ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:45 PM   DEBUG [Api:LoggingInterceptor~2bai5urr] GET /api/assets/6bd79030-9406-41b6-afe9-569b343e185e/thumbnail?size=thumbnail&c=xoworZwOtZ%2FrkoJa54n4Bw3ctlc%3D 200 9.58ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:45 PM   DEBUG [Api:LoggingInterceptor~6f5ts1vr] GET /api/assets/05c7693c-cff2-494c-9a7b-dd70117b5a53/thumbnail?size=thumbnail&c=9Ghy3bGggAsAyp4%2BpuPzIL9mGUQ%3D 200 6.79ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~07xo11w7] GET /api/assets/3dadc1d1-dad5-405f-b6cd-4a95d5e791f4/thumbnail?size=thumbnail&c=5ng9bhMmEKxpr%2FZKiOc1i9PKWiw%3D 200 10.38ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~s0tksv5b] GET /api/assets/bc1d36a4-ee9c-43c2-9e33-adafe566e93f/thumbnail?size=thumbnail&c=lH2SSl20rhsRhUy44Gsna4JP0VY%3D 200 8.88ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~ass9aw6g] GET /api/assets/bc9c79cf-6289-442f-aeff-58e38939141a/thumbnail?size=thumbnail&c=xE83aus1swUvuYdCnKg5TBO%2Byrw%3D 200 6.05ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~oh912z3d] GET /api/assets/08d9d1d5-256e-4581-8a07-9876fc5791f9/thumbnail?size=thumbnail&c=oZeNIglO5R7UVxrhfE115klB7DQ%3D 200 5.66ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~h030c87k] GET /api/assets/2bfd8918-66ce-4760-bf73-ffe55ab5c092/thumbnail?size=thumbnail&c=4pfPfOXmau1%2B4LJ4yWLSGJZI04g%3D 200 7.94ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~cfrkvgvm] GET /api/assets/dea2da59-ac2a-4540-a709-53f1dda9bcd2/thumbnail?size=thumbnail&c=tgdWRHbbKJ8EwrgGTn0fpFNoOyA%3D 200 9.97ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~6we787jl] GET /api/assets/1ee720eb-d887-4bb7-8f59-7f5dd5267aea/thumbnail?size=thumbnail&c=sHVLIOex%2FOmHv0SO7jV4fB6fKBk%3D 200 5.02ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~jff53fvm] GET /api/assets/94dfb12e-1d97-41b5-b2a3-cee6198e227e/thumbnail?size=thumbnail&c=yed9BpG5bdd5fiSeQgug69I8YDE%3D 200 11.46ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~0twz5nqh] GET /api/assets/b4fb69fb-cec8-444e-a0e8-54de1889381c/thumbnail?size=thumbnail&c=DCD5XbNCy%2FiXKr3de8%2BdSTMGIMU%3D 200 16.73ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~bwc11ps6] GET /api/assets/4254ae8c-b74a-404d-9bed-ba5e923253b5/thumbnail?size=thumbnail&c=X%2BERZ1Yzlxc0haN62lROWkHhSmw%3D 200 14.57ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~c3ptpupe] GET /api/assets/ae49c42d-838f-4e99-ba0c-47a105fa31db/thumbnail?size=thumbnail&c=1rh7LrN9yjN5hJhKZrrUrf95jOs%3D 200 14.89ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~tb859bcr] GET /api/assets/6ad3bb47-a0e9-467a-b974-1d175d8007cf/thumbnail?size=thumbnail&c=gMtE1x%2BBTD92hLIJUa71QDwNnao%3D 200 12.92ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~u07ql1h2] GET /api/assets/bf9d3cd6-d6d7-4e43-86e2-b1a5651fb918/thumbnail?size=thumbnail&c=GiIMnvCJB3cOZK%2BUXJPTUdoeU%2Bo%3D 200 10.00ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~nela3w74] GET /api/assets/e9c3e6bf-769c-4650-81a3-136d39e72a0c/thumbnail?size=thumbnail&c=gdTaD0aVX9KS%2FCY2dYUBpJw9IIs%3D 200 12.63ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~2lq3uwe9] GET /api/assets/0cab81cb-3244-48cd-98a8-c64598817e36/thumbnail?size=thumbnail&c=HIkGfstsyDeeFfVTtF5e2kiNvIU%3D 200 11.06ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~lw1emi18] GET /api/assets/5d41b3d0-8ce8-4b8e-b2d3-5960ae17af04/thumbnail?size=thumbnail&c=tb51TsaUtWpzavfnZy9G%2FV1NgYg%3D 200 29.02ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~kt2qc8ik] GET /api/assets/aaa9c8b6-c56b-458c-8cd0-5358abe2e92c/thumbnail?size=thumbnail&c=lZuMVxgcEcdox6Cpfa6yrkCenAs%3D 200 26.30ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~rqdr50do] GET /api/assets/bb470008-4269-4090-8fe8-4cc0595f2acb/thumbnail?size=thumbnail&c=mxepdn6hpsCOpCl%2FJFNLTJbxBpM%3D 200 17.39ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~8nbwhhxg] GET /api/assets/48023ef5-f993-46b0-87d3-0d2d36cab04b/thumbnail?size=thumbnail&c=sAY5HJ3xVCh8P%2FJdDh4kcJ2fBxo%3D 200 20.78ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~z4eg27az] GET /api/assets/d608e33f-8964-4323-b6de-0f0aca16f1a4/thumbnail?size=thumbnail&c=LMMbIFLT4XJ6dFMOdG4Ak84ZVqM%3D 200 13.29ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~9xvc43uc] GET /api/assets/24f3fd52-609c-4fb5-af1a-851617a581fa/thumbnail?size=thumbnail&c=uWCsqWhLLUwyPtVLZdD1117mK10%3D 200 13.07ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~0dbz3dsh] GET /api/assets/35acf5a9-1734-4d44-8a96-c4906bea37e9/thumbnail?size=thumbnail&c=hsfEKpyvTLxINVCXhJehYIk%2Bv6Y%3D 200 6.13ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~pvlvtxos] GET /api/assets/bbfc8977-c714-437c-a159-2df51872dbec/thumbnail?size=thumbnail&c=NSJA%2FQ2zGdL%2B9A0ql4UeBhn%2BIBQ%3D 200 6.38ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~7vbg54wy] GET /api/assets/814d917f-45aa-4ec0-a4a0-590bb35a4187/thumbnail?size=thumbnail&c=GOanrhBN3a3U888w6C4nFs6vVX8%3D 200 11.56ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~6plklzdf] GET /api/assets/9ed74024-6dbc-42b6-b2b5-d7e737d4b2c1/thumbnail?size=thumbnail&c=TsPk68yoV39cinAfqJd1d3ZChVU%3D 200 19.72ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~zq20bb1o] GET /api/assets/bca5d5d4-43a0-407a-a8d2-a82e3fb0295b/thumbnail?size=thumbnail&c=pahODVSTWhM6gA1w19cLMcg10xE%3D 200 14.45ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~vqoyk3lk] GET /api/assets/5c2458de-e945-4ec4-a218-1d007eebec0f/thumbnail?size=thumbnail&c=FLoihsDdLhPIwJufZOdrRvbw0QU%3D 200 17.30ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~u08f2sx8] GET /api/assets/8751d296-df7b-4a91-90b5-ebd6239dd856/thumbnail?size=thumbnail&c=ksbfIi8h25SK8nhBkGPcVbZbMJQ%3D 200 16.10ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~gkla4olc] GET /api/assets/bb4f465b-cd0f-4243-ab80-5ac124708e01/thumbnail?size=thumbnail&c=TPRCSxisJVtWqOx7qDdmMm7qpi0%3D 200 8.07ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~9cvnpvw5] GET /api/assets/610ec375-9afa-4058-bd18-b37614e9d980/thumbnail?size=thumbnail&c=%2BbWm6zPVRw9wUIjDk0QwocvlGXc%3D 200 7.12ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~cu0tjmxj] GET /api/assets/883c8436-2fc0-4f08-bdfb-140f394b0b3b/thumbnail?size=thumbnail&c=ybUB%2BemAN4q%2FQa%2FTQyLdjydXka4%3D 200 23.74ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~sn8wh4ox] GET /api/assets/35cfa013-e0b7-44e7-8a1d-e3d40c608d36/thumbnail?size=thumbnail&c=%2BvvbNYV6U8jfjwCjbi%2B%2B8E%2Fhi14%3D 200 23.17ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~8jwd5hkp] GET /api/assets/64c5362a-2445-40a0-bef3-e9d19a895780/thumbnail?size=thumbnail&c=yrZ%2Bs7JXe4C0U1%2FLwgJX7as75kI%3D 200 19.72ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~eug0chk8] GET /api/assets/980a7661-ef0b-4dce-b44f-832cbf6967f6/thumbnail?size=thumbnail&c=qhU5u9jYHmicMY%2BrePL4pI6LvPY%3D 200 19.59ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~p37g1oif] GET /api/assets/f76e84bc-493e-4400-93cd-9de7567f24bf/thumbnail?size=thumbnail&c=a%2FjrX9EbMK9lkSrVW%2F8qDbCQg0M%3D 200 17.58ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~auwmpiip] GET /api/assets/2e16825c-e0df-4a24-bb83-62831bacaa45/thumbnail?size=thumbnail&c=cHdxLB1s%2FtGkpMyPU3rRsPhIUtk%3D 200 11.11ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~ni52j0e9] GET /api/assets/768783c5-d712-441d-8858-618f14db8755/thumbnail?size=thumbnail&c=X8pNu5PT9bJgiLnRzxITaHQi5a8%3D 200 52.52ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~p0n98yys] GET /api/assets/21acd953-4f30-4e3e-8ac9-4fe279271e6a/thumbnail?size=thumbnail&c=1HC47ltOf%2B3Pn5nhYwzieLctaAA%3D 200 50.41ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~zd9ye9pm] GET /api/assets/0117830e-6149-4ed8-8a50-161284b90a19/thumbnail?size=thumbnail&c=4hFe5LizJMO3PVkYS9%2BeiUm3Sd8%3D 200 16.63ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~0ehh2u8t] GET /api/assets/7cf15315-9f73-442d-ac59-7b5d690c535b/thumbnail?size=thumbnail&c=lNM7twA%2BvnIptH3GTJoRyQfItgg%3D 200 31.77ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~t6r8rnbs] GET /api/assets/7420e382-72fc-4aec-9cfe-cee7c7212a18/thumbnail?size=thumbnail&c=8FtLJ%2FJLlMNrOlmFtzo3%2BSUdtL0%3D 200 18.58ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~qmun3o19] GET /api/assets/c1347176-38d6-4009-93d3-b7e39b7e6184/thumbnail?size=thumbnail&c=N51C5cQv0LdzMP5vrQsicXDSz68%3D 200 15.57ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~diuds734] GET /api/assets/33d12163-0783-40a3-ad27-d9973ccf4893/thumbnail?size=thumbnail&c=M%2FSRXFA%2BTqfDUkNtx8SoarFMJks%3D 200 23.80ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~eirbzzne] GET /api/assets/adcd1553-39ee-40a6-9fd3-31af7ae1cf15/thumbnail?size=thumbnail&c=YGK6ZPG6g4OuCt1FduQ%2BfLdIDP8%3D 200 20.62ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~vzdrgonk] GET /api/assets/e07f7bc1-e2cf-409e-862b-e05cc4730f33/thumbnail?size=thumbnail&c=W9u6oia68%2BajPew0ZYt6zU8Il2Y%3D 200 21.03ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~v9f1dgnf] GET /api/assets/c3c66024-7b46-4464-81f5-e58a56fa09a9/thumbnail?size=thumbnail&c=YJCQ%2BqckyLeDAkhftqnc9cG4P88%3D 200 16.11ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~uu2soi1i] GET /api/assets/7454d418-cd14-416a-9555-6b510177a57f/thumbnail?size=thumbnail&c=FdNqasDizylo3tyacki6YLDgrLY%3D 200 9.34ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~n3dxxzsy] GET /api/assets/eea0c4ed-8c39-44bf-8d1a-875771080014/thumbnail?size=thumbnail&c=bSNlpHF9H0pH%2FpNfxjEPQwA7PJg%3D 200 12.55ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~38vht6gq] GET /api/assets/1c1c7ce7-0523-405a-a1e3-192b54c1bbf7/thumbnail?size=thumbnail&c=AJAB2fuw8183DTlVfQObOvDVMvc%3D 200 11.63ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~03lwckz7] GET /api/assets/3270bcf4-9742-453c-98b6-2576f9b79d4b/thumbnail?size=thumbnail&c=DP3PTQ%2FUSucUDwktUA1%2B2pNMUqY%3D 200 9.70ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~l7jv7d0g] GET /api/assets/79979e76-ce04-4635-8645-dfb7cbbc7bf7/thumbnail?size=thumbnail&c=DIghrXv9wbeYF4rVXZu5Zsw5MBw%3D 200 7.22ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~1ku9v8ql] GET /api/assets/39a4adf0-fb00-4657-9cf8-c43abe4b4cad/thumbnail?size=thumbnail&c=YP%2F0ZSzNeP7KjxhHnAEp65EjPdg%3D 200 5.62ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~omhf1udm] GET /api/assets/ac1c7ede-51d9-4a2a-85d7-1433c49974e6/thumbnail?size=thumbnail&c=%2BBJu0aaLtNP3kW2KvVEPiJJ9eY4%3D 200 10.16ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~rastur52] GET /api/assets/613793f4-a2b5-4036-97a9-e5f95d3974b9/thumbnail?size=thumbnail&c=poEzCJu2%2Bzrn3JNhpttc%2BDNl6xc%3D 200 9.34ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~n2mbqdd9] GET /api/assets/ee760df8-a06d-432f-a3a9-4c94842be100/thumbnail?size=thumbnail&c=MWjwmFqOWQTKVmCqMG3mZKXa0Y4%3D 200 11.42ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~w2aaymik] GET /api/assets/ceca4cbd-12f4-4c75-8e50-42a70ce455d8/thumbnail?size=thumbnail&c=ForB%2FNnOx%2FHXbKhQuRZUqQSGlzI%3D 200 17.81ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~mvh57y54] GET /api/assets/9708119c-949e-4722-8453-b39c480be769/thumbnail?size=thumbnail&c=zV5eVIYXS7VGtqvIA0jGggCqNfM%3D 200 16.54ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~dclkzg7j] GET /api/assets/3d634e44-e4cf-498d-8f2d-d462c7a63016/thumbnail?size=thumbnail&c=68M9g7HRsVH8qiEw398GKdJ3WKI%3D 200 16.98ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~3fyfab28] GET /api/assets/2955aa5f-e15a-4f85-a179-169837ed86fd/thumbnail?size=thumbnail&c=TzwkOf2BJM87o0EYNPRj7RbE8u4%3D 200 12.87ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~5fbfqpqe] GET /api/assets/57d328ca-b00f-45f2-8fa5-b37d2ad4f870/thumbnail?size=thumbnail&c=xg%2F6HBZPwbo0LCSQIeWyHYmSCdU%3D 200 14.00ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:46 PM   DEBUG [Api:LoggingInterceptor~5qy8wtv6] GET /api/assets/2407e828-4d53-40bf-adfe-b1c1dbfd5122/thumbnail?size=thumbnail&c=DvbBgmDuZy3fqNV6wvicj0ItwTs%3D 200 7.23ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:47 PM   DEBUG [Api:LoggingInterceptor~sqc7vs6d] GET /api/assets/058165d9-cf34-4054-8775-100969f39900/thumbnail?size=thumbnail&c=FHY7SFVPjG7nUqYXtU65gmPzqi8%3D 200 7.37ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:47 PM   DEBUG [Api:LoggingInterceptor~k8r8tu0x] GET /api/assets/deca8f52-7e81-444a-a03a-1dcf0541519d/thumbnail?size=thumbnail&c=kxUkmckKS%2FyT1qXR1O5JWwTZlK8%3D 200 5.40ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:47 PM   DEBUG [Api:LoggingInterceptor~cn29vhkz] GET /api/assets/9e55568d-172a-4a1c-81cc-3a01f79c6e5a/thumbnail?size=thumbnail&c=L%2BBGyrL4MaX0F1558lBbJ8pQyFg%3D 200 18.94ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:47 PM   DEBUG [Api:LoggingInterceptor~ktve6v4b] GET /api/assets/bf45dd7b-f126-4a0d-a5e8-2df75cf89df8/thumbnail?size=thumbnail&c=vgavVDSSiA2xXLGMJhhiRGDEFFI%3D 200 17.42ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:47 PM   DEBUG [Api:LoggingInterceptor~6anilifb] GET /api/assets/2ee4a132-6078-4a89-aaef-064b2c12310b/thumbnail?size=thumbnail&c=Zgv9j2FygmvyyY17IeXcrbHXxFc%3D 200 15.77ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:47 PM   DEBUG [Api:LoggingInterceptor~lk12gkrj] GET /api/assets/d83ada3a-8eb1-4f40-9aac-9908071f6063/thumbnail?size=thumbnail&c=XBu8Rc5jNUzeSwOget4D75QaRts%3D 200 21.31ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:47 PM   DEBUG [Api:LoggingInterceptor~w7tlzo0i] GET /api/assets/332e90de-47f0-4063-a12d-72674d930643/thumbnail?size=thumbnail&c=%2FSGHebVBDHicPfadUXo8AP2A0UM%3D 200 11.71ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:47 PM   DEBUG [Api:LoggingInterceptor~sjtrpnwm] GET /api/assets/ae76409f-0cc1-4919-9cad-1cd48ea7a692/thumbnail?size=thumbnail&c=%2BKxXu9l4j3w7V3iKTBxiUqyUmRQ%3D 200 8.60ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:47 PM   DEBUG [Api:LoggingInterceptor~oun3p64n] GET /api/assets/27e68e5b-2fb5-4eb0-9ae2-31c4c8dcd986/thumbnail?size=thumbnail&c=fwZulXPxF1LzPKgXhCZUL%2FjCD%2Bc%3D 200 13.04ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:47 PM   DEBUG [Api:LoggingInterceptor~pnrse9mb] GET /api/assets/ac46feff-73eb-4aa5-873a-a0fa50eaed13/thumbnail?size=thumbnail&c=gwWIW3f2%2BFqifunkZAamzxj51bg%3D 200 20.25ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:47 PM   DEBUG [Api:LoggingInterceptor~i3veuz56] GET /api/assets/a2d7cafb-098b-4387-8093-321aceeafbef/thumbnail?size=thumbnail&c=Tnqd2hmezUrg0pUiyU3MCXOO%2FKQ%3D 200 17.66ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:11:56 PM   DEBUG [Api:LoggingInterceptor~ys26vt5a] GET /api/assets/ba8bea47-8d27-41a0-8148-a10ef47afef0/thumbnail?size=preview 200 9.51ms ::ffff:172.22.0.1
--- END OF WEB REQUEST LOG ---



On iOS:

--- START OF MOBILE REQUEST LOG ---
[Nest] 17  - 11/18/2024, 6:13:04 PM   DEBUG [Api:LoggingInterceptor~n4cdvxin] POST /api/auth/validateToken 200 0.22ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:13:09 PM   DEBUG [Api:LoggingInterceptor~rk6giwwv] POST /api/search/metadata 200 4702.36ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:13:09 PM VERBOSE [Api:LoggingInterceptor~rk6giwwv] {"page":1,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
[Nest] 17  - 11/18/2024, 6:13:13 PM   DEBUG [Api:LoggingInterceptor~ad4iwjja] POST /api/search/metadata 200 4467.32ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:13:13 PM VERBOSE [Api:LoggingInterceptor~ad4iwjja] {"page":2,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
[Nest] 17  - 11/18/2024, 6:13:19 PM   DEBUG [Api:LoggingInterceptor~imvb3yq4] POST /api/search/metadata 200 4567.14ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:13:19 PM VERBOSE [Api:LoggingInterceptor~imvb3yq4] {"page":3,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
[Nest] 17  - 11/18/2024, 6:13:23 PM   DEBUG [Api:LoggingInterceptor~gt8em0ks] POST /api/search/metadata 200 4606.07ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:13:23 PM VERBOSE [Api:LoggingInterceptor~gt8em0ks] {"page":4,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
[Nest] 17  - 11/18/2024, 6:13:27 PM   DEBUG [Api:LoggingInterceptor~fwjq58qt] GET /api/assets/1d87a2a4-6ebe-46f4-8b3f-1dda679d2c22/thumbnail?size=preview 200 20.86ms ::ffff:172.22.0.1
[Nest] 17  - 11/18/2024, 6:13:29 PM   DEBUG [Api:LoggingInterceptor~uqp5ff7c] POST /api/search/metadata 200 4547.98ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:13:29 PM VERBOSE [Api:LoggingInterceptor~uqp5ff7c] {"page":5,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
[Nest] 17  - 11/18/2024, 6:13:34 PM   DEBUG [Api:LoggingInterceptor~9wgetani] POST /api/search/metadata 200 4557.61ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:13:34 PM VERBOSE [Api:LoggingInterceptor~9wgetani] {"page":6,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
[Nest] 17  - 11/18/2024, 6:13:39 PM   DEBUG [Api:LoggingInterceptor~caqp8jw4] POST /api/search/metadata 200 4554.66ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:13:39 PM VERBOSE [Api:LoggingInterceptor~caqp8jw4] {"page":7,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
[Nest] 17  - 11/18/2024, 6:13:44 PM   DEBUG [Api:LoggingInterceptor~ekouma65] POST /api/search/metadata 200 4509.94ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:13:44 PM VERBOSE [Api:LoggingInterceptor~ekouma65] {"page":8,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
[Nest] 17  - 11/18/2024, 6:13:48 PM   DEBUG [Api:LoggingInterceptor~3b4nnzok] POST /api/search/metadata 200 4530.32ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:13:48 PM VERBOSE [Api:LoggingInterceptor~3b4nnzok] {"page":9,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
[Nest] 17  - 11/18/2024, 6:13:53 PM   DEBUG [Api:LoggingInterceptor~6yeej1dk] POST /api/search/metadata 200 4515.00ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:13:53 PM VERBOSE [Api:LoggingInterceptor~6yeej1dk] {"page":10,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
[Nest] 17  - 11/18/2024, 6:13:58 PM   DEBUG [Api:LoggingInterceptor~en2ke2o1] POST /api/search/metadata 200 4520.82ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:13:58 PM VERBOSE [Api:LoggingInterceptor~en2ke2o1] {"page":11,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
[Nest] 17  - 11/18/2024, 6:13:59 PM   DEBUG [Api:LoggingInterceptor~9cslydo9] POST /api/search/random?kiosk=dd100e7a5637c4cbdbd20cc77ea790570f7287c25154f980a0c808cb66db0284 200 1234.23ms ::ffff:172.22.0.1
[Nest] 17  - 11/18/2024, 6:13:59 PM VERBOSE [Api:LoggingInterceptor~9cslydo9] {"personIds":["f06df2f4-2f5f-4a18-9192-fec8e492ae6b"],"size":100,"type":"IMAGE","withExif":true,"withPeople":true}
[Nest] 17  - 11/18/2024, 6:13:59 PM   DEBUG [Api:LoggingInterceptor~yn9rl2si] GET /api/assets/f7242de8-f6e3-4d02-8999-ffc62534d62d/thumbnail?size=preview 200 17.64ms ::ffff:172.22.0.1
[Nest] 17  - 11/18/2024, 6:14:03 PM   DEBUG [Api:LoggingInterceptor~mjc85imn] POST /api/search/metadata 200 4540.51ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:14:03 PM VERBOSE [Api:LoggingInterceptor~mjc85imn] {"page":12,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
[Nest] 17  - 11/18/2024, 6:14:08 PM   DEBUG [Api:LoggingInterceptor~zrbfhes8] POST /api/search/metadata 200 4510.36ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:14:08 PM VERBOSE [Api:LoggingInterceptor~zrbfhes8] {"page":13,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
[Nest] 17  - 11/18/2024, 6:14:12 PM   DEBUG [Api:LoggingInterceptor~zda96lj1] POST /api/search/metadata 200 4549.41ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:14:12 PM VERBOSE [Api:LoggingInterceptor~zda96lj1] {"page":14,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
[Nest] 17  - 11/18/2024, 6:14:17 PM   DEBUG [Api:LoggingInterceptor~sagpl4v8] POST /api/search/metadata 200 4559.05ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:14:17 PM VERBOSE [Api:LoggingInterceptor~sagpl4v8] {"page":15,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
[Nest] 17  - 11/18/2024, 6:14:22 PM   DEBUG [Api:LoggingInterceptor~shfptpx9] POST /api/search/metadata 200 4558.14ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:14:22 PM VERBOSE [Api:LoggingInterceptor~shfptpx9] {"page":16,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
[Nest] 17  - 11/18/2024, 6:14:27 PM   DEBUG [Api:LoggingInterceptor~d2mradkk] POST /api/search/metadata 200 4496.60ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:14:27 PM VERBOSE [Api:LoggingInterceptor~d2mradkk] {"page":17,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
[Nest] 17  - 11/18/2024, 6:14:28 PM   DEBUG [Api:LoggingInterceptor~u3bhu3gn] GET /api/people/6bcec731-7d0b-4dbf-9e3c-73d8029defb8/statistics 200 91.09ms ::ffff:172.22.0.1
[Nest] 17  - 11/18/2024, 6:14:28 PM   DEBUG [Api:LoggingInterceptor~id3ozzf8] GET /api/people/f06df2f4-2f5f-4a18-9192-fec8e492ae6b/statistics 200 60.17ms ::ffff:172.22.0.1
[Nest] 17  - 11/18/2024, 6:14:29 PM   DEBUG [Api:LoggingInterceptor~zqphp1hk] GET /api/albums/bd552079-8199-41f4-980c-15618fd736da 200 143.49ms ::ffff:172.22.0.1
[Nest] 17  - 11/18/2024, 6:14:29 PM   DEBUG [Api:LoggingInterceptor~upl8lmvo] GET /api/albums/ef9a05cc-57e7-478e-bfbb-654dadac1249 200 156.84ms ::ffff:172.22.0.1
[Nest] 17  - 11/18/2024, 6:14:29 PM   DEBUG [Api:LoggingInterceptor~gkkxnqm8] GET /api/albums/33e05f78-4f30-4ed9-8494-9ecb7fbf3e78 200 85.88ms ::ffff:172.22.0.1
[Nest] 17  - 11/18/2024, 6:14:29 PM   DEBUG [Api:LoggingInterceptor~831655qb] GET /api/assets/a5e3a6a9-0c6b-4a22-9adc-9ae88fcd315d/thumbnail?size=preview 200 23.02ms ::ffff:172.22.0.1
[Nest] 17  - 11/18/2024, 6:14:31 PM   DEBUG [Api:LoggingInterceptor~cy3grmwa] POST /api/search/metadata 200 2969.69ms 46.189.193.127
[Nest] 17  - 11/18/2024, 6:14:31 PM VERBOSE [Api:LoggingInterceptor~cy3grmwa] {"page":18,"personIds":["6bcec731-7d0b-4dbf-9e3c-73d8029defb8"],"size":1000,"withArchived":false}
--- END OF MOBILE REQUEST LOG ---

Additional information

Unsure if related, but Immich Kiosk also started timing out on my end after one of the recent server updates.

damongolding/immich-kiosk#159

After allowing me to adjust the size of the people requests via API, reducing size from 1000 to 400 or less makes it responsive.

In this case, though, it just seems it's requesting all the pages at once for the person, so I'm not sure what's the bottleneck - each page request seems to take 4-5 seconds, but when we're loading 18 pages it all adds up. This didn't happen a few versions ago.

My server is on a Raspberry Pi 5, 8GB of RAM, and running on an SSD. Everything runs well - and, as I said, on the web it works perfect, and it used to work well on mobile as well.

Happy to share more details if helpful. Thank you for the great work!

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions