[BUG] Explore menu dosent work. Loading then time out #930

Closed
opened 2026-02-04 23:36:28 +03:00 by OVERLORD · 4 comments
Owner

Originally created by @wavesswe on GitHub (Jun 12, 2023).

The bug

Suddenly noticed this in version v1.60.0.

The OS that Immich Server is running on

Ubuntu Server

Version of Immich Server

v1.60.0

Version of Immich Mobile App

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:release
    entrypoint: ["/bin/sh", "./start-server.sh"]
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
    env_file:
      - stack.env
    depends_on:
      - redis
      - database
      - typesense
    restart: always

  immich-microservices:
    container_name: immich_microservices
    image: ghcr.io/immich-app/immich-server:release
    entrypoint: ["/bin/sh", "./start-microservices.sh"]
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
    env_file:
      - stack.env
    depends_on:
      - redis
      - database
      - typesense
    restart: always

  immich-machine-learning:
    container_name: immich_machine_learning
    image: ghcr.io/immich-app/immich-machine-learning:release
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - immich_prod_truenas_model-cache:/cache
    env_file:
      - stack.env
    restart: always

  immich-web:
    container_name: immich_web
    image: ghcr.io/immich-app/immich-web:release
    entrypoint: ["/bin/sh", "./entrypoint.sh"]
    env_file:
      - stack.env
    restart: always

  typesense:
    container_name: immich_typesense
    image: typesense/typesense:0.24.0
    environment:
      - TYPESENSE_API_KEY=${TYPESENSE_API_KEY}
      - TYPESENSE_DATA_DIR=/data
    logging:
      driver: none
    volumes:
      - immich_prod_truenas_tsdata:/data
    restart: always

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

  database:
    container_name: immich_postgres
    image: postgres:14
    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:
      - immich_prod_pgdata:/var/lib/postgresql/data
    restart: always

  immich-proxy:
    container_name: immich_proxy
    image: ghcr.io/immich-app/immich-proxy:release
    environment:
      # Make sure these values get passed through from the env file
      - IMMICH_SERVER_URL
      - IMMICH_WEB_URL
    ports:
      - 2283:8080
    logging:
      driver: none
    depends_on:
      - immich-server
    restart: always

volumes:
  immich_prod_pgdata:
    external: false
  immich_prod_truenas_model-cache:
    external: true
  immich_prod_truenas_tsdata:
    external: true
  immich_prod_truenas_upload:
    external: true

Your .env content

DB_HOSTNAME=immich_postgres
DB_USERNAME=!secret
DB_PASSWORD=!secret
DB_DATABASE_NAME=immich_prod
REDIS_HOSTNAME=immich_redis
UPLOAD_LOCATION=!secret
TYPESENSE_API_KEY=
PUBLIC_LOGIN_PAGE_MESSAGE=!secret
IMMICH_WEB_URL=http://immich-web:3000
IMMICH_SERVER_URL=http://immich-server:3001
IMMICH_MACHINE_LEARNING_URL=http://immich-machine-learning:3003
DISABLE_REVERSE_GEOCODING=false

Reproduction steps

1.Open browser and log in
2. Press Explore
3.
...

Additional information

Everything else seams to work fine.

Any one else seeing this or know what to do?

Originally created by @wavesswe on GitHub (Jun 12, 2023). ### The bug Suddenly noticed this in version v1.60.0. ### The OS that Immich Server is running on Ubuntu Server ### Version of Immich Server v1.60.0 ### Version of Immich Mobile App - ### Platform with the issue - [X] Server - [X] Web - [ ] Mobile ### Your docker-compose.yml content ```YAML version: "3.8" services: immich-server: container_name: immich_server image: ghcr.io/immich-app/immich-server:release entrypoint: ["/bin/sh", "./start-server.sh"] volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload env_file: - stack.env depends_on: - redis - database - typesense restart: always immich-microservices: container_name: immich_microservices image: ghcr.io/immich-app/immich-server:release entrypoint: ["/bin/sh", "./start-microservices.sh"] volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload env_file: - stack.env depends_on: - redis - database - typesense restart: always immich-machine-learning: container_name: immich_machine_learning image: ghcr.io/immich-app/immich-machine-learning:release volumes: - ${UPLOAD_LOCATION}:/usr/src/app/upload - immich_prod_truenas_model-cache:/cache env_file: - stack.env restart: always immich-web: container_name: immich_web image: ghcr.io/immich-app/immich-web:release entrypoint: ["/bin/sh", "./entrypoint.sh"] env_file: - stack.env restart: always typesense: container_name: immich_typesense image: typesense/typesense:0.24.0 environment: - TYPESENSE_API_KEY=${TYPESENSE_API_KEY} - TYPESENSE_DATA_DIR=/data logging: driver: none volumes: - immich_prod_truenas_tsdata:/data restart: always redis: container_name: immich_redis image: redis:6.2 restart: always database: container_name: immich_postgres image: postgres:14 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: - immich_prod_pgdata:/var/lib/postgresql/data restart: always immich-proxy: container_name: immich_proxy image: ghcr.io/immich-app/immich-proxy:release environment: # Make sure these values get passed through from the env file - IMMICH_SERVER_URL - IMMICH_WEB_URL ports: - 2283:8080 logging: driver: none depends_on: - immich-server restart: always volumes: immich_prod_pgdata: external: false immich_prod_truenas_model-cache: external: true immich_prod_truenas_tsdata: external: true immich_prod_truenas_upload: external: true ``` ### Your .env content ```Shell DB_HOSTNAME=immich_postgres DB_USERNAME=!secret DB_PASSWORD=!secret DB_DATABASE_NAME=immich_prod REDIS_HOSTNAME=immich_redis UPLOAD_LOCATION=!secret TYPESENSE_API_KEY= PUBLIC_LOGIN_PAGE_MESSAGE=!secret IMMICH_WEB_URL=http://immich-web:3000 IMMICH_SERVER_URL=http://immich-server:3001 IMMICH_MACHINE_LEARNING_URL=http://immich-machine-learning:3003 DISABLE_REVERSE_GEOCODING=false ``` ### Reproduction steps ```bash 1.Open browser and log in 2. Press Explore 3. ... ``` ### Additional information Everything else seams to work fine. Any one else seeing this or know what to do?
Author
Owner

@wavesswe commented on GitHub (Jun 17, 2023):

still present in v1.61.0

@wavesswe commented on GitHub (Jun 17, 2023): still present in v1.61.0
Author
Owner

@alextran1502 commented on GitHub (Jun 18, 2023):

Can you please provide the console log on the web browser and server, microservices container logs?

@alextran1502 commented on GitHub (Jun 18, 2023): Can you please provide the console log on the web browser and server, microservices container logs?
Author
Owner

@wavesswe commented on GitHub (Jun 18, 2023):

Here are the logs.. It looks like its related to the typsense contaioner. I also have problem to access Immich during start up. sometimes it requires a couple of restart of the typesense container as well.

Microservices
Request #1687118608855: Sleeping for 4s and then retrying request... Request #1687118588850: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118588850: Sleeping for 4s and then retrying request... Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118593853: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118593853: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:02 PM ERROR [TypesenseRepository] Unable to index documents Request #1687118598854: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118598854: Sleeping for 4s and then retrying request... Request #1687118583846: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118583846: Sleeping for 4s and then retrying request... Request #1687118603855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118603855: Sleeping for 4s and then retrying request... Request #1687118608855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118608855: Sleeping for 4s and then retrying request... Request #1687118588850: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118588850: Sleeping for 4s and then retrying request... Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118593853: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118593853: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... Request #1687118598854: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118598854: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:07 PM ERROR [TypesenseRepository] Unable to index documents Request #1687118603855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118603855: Sleeping for 4s and then retrying request... Request #1687118608855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118608855: Sleeping for 4s and then retrying request... Request #1687118588850: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118588850: Sleeping for 4s and then retrying request... Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118593853: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118593853: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... Request #1687118598854: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118598854: Sleeping for 4s and then retrying request... Request #1687118603855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118603855: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:12 PM ERROR [TypesenseRepository] Unable to index documents Request #1687118608855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118608855: Sleeping for 4s and then retrying request... Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118593853: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118593853: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... Request #1687118598854: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118598854: Sleeping for 4s and then retrying request... Request #1687118603855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118603855: Sleeping for 4s and then retrying request... Request #1687118608855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118608855: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:17 PM ERROR [TypesenseRepository] Unable to index documents Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... Request #1687118598854: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118598854: Sleeping for 4s and then retrying request... Request #1687118603855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118603855: Sleeping for 4s and then retrying request... Request #1687118608855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118608855: Sleeping for 4s and then retrying request... Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:22 PM ERROR [TypesenseRepository] Unable to index documents Request #1687118603855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118603855: Sleeping for 4s and then retrying request... Request #1687118608855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118608855: Sleeping for 4s and then retrying request... Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:27 PM ERROR [TypesenseRepository] Unable to index documents Request #1687118608855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118608855: Sleeping for 4s and then retrying request... Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:32 PM ERROR [TypesenseRepository] Unable to index documents Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:37 PM ERROR [TypesenseRepository] Unable to index documents Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:42 PM ERROR [TypesenseRepository] Unable to index documents
Microservises
Request #1687118240039: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118240039: Sleeping for 4s and then retrying request... Request #1687118240039: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118240039: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 7:58:24 PM ERROR [JobService] Unable to run job handler: ServerError: Request failed with HTTP code 503 | Server said: Not Ready or Lagging [Nest] 7 - 06/18/2023, 7:58:24 PM ERROR [JobService] ServerError: Request failed with HTTP code 503 | Server said: Not Ready or Lagging at ServerError.TypesenseError [as constructor] (/usr/src/app/node_modules/typesense/lib/Typesense/Errors/TypesenseError.js:23:28) at new ServerError (/usr/src/app/node_modules/typesense/lib/Typesense/Errors/ServerError.js:25:42) at ApiCall.customErrorForResponse (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:347:21) at /usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:204:58 at step (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:33:23) at Object.next (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:14:53) at step (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:18:139) at Object.next (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:14:53) at fulfilled (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:5:58) at process.processTicksAndRejections (node:internal/process/task_queues:95:5) [Nest] 7 - 06/18/2023, 7:58:24 PM ERROR [JobService] Object: { "id": "ff62d03a-93b7-475e-a82e-8d093160af2b", "source": "upload" } [Nest] 7 - 06/18/2023, 8:02:34 PM LOG [MediaService] Start encoding video e7937ed1-85d6-4e15-9fae-f01b242da86d -vcodec h264,-acodec aac,-movflags faststart,-vf scale=-2:720,-preset ultrafast,-crf 23 [Nest] 7 - 06/18/2023, 8:02:36 PM LOG [MediaService] Encoding success e7937ed1-85d6-4e15-9fae-f01b242da86d [Nest] 7 - 06/18/2023, 8:02:36 PM LOG [MediaService] Start encoding video c5c0d251-435c-460f-b50d-4b5ac690cff6 -vcodec h264,-acodec aac,-movflags faststart,-vf scale=-2:720,-preset ultrafast,-crf 23 [Nest] 7 - 06/18/2023, 8:02:38 PM LOG [MediaService] Encoding success c5c0d251-435c-460f-b50d-4b5ac690cff6 Request #1687118558833: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118558833: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:02:39 PM LOG [MediaService] Start encoding video 4fbf5085-3f16-4c10-9ae0-a21f4a647288 -vcodec h264,-acodec aac,-movflags faststart,-vf scale=720:-2,-preset ultrafast,-crf 23 [Nest] 7 - 06/18/2023, 8:02:39 PM LOG [MediaService] Generating video thumbnail [Nest] 7 - 06/18/2023, 8:02:39 PM ERROR [JobService] Unable to run job handler: Error: ffmpeg exited with code 1: upload/library/2770307e-2ad5-482d-ad68-391fbaa3b372/2023/2023-06-18/IMG_7809.MOV: Invalid argument [Nest] 7 - 06/18/2023, 8:02:39 PM ERROR [JobService] Error: ffmpeg exited with code 1: upload/library/2770307e-2ad5-482d-ad68-391fbaa3b372/2023/2023-06-18/IMG_7809.MOV: Invalid argument at ChildProcess.<anonymous> (/usr/src/app/node_modules/fluent-ffmpeg/lib/processor.js:182:22) at ChildProcess.emit (node:events:513:28) at ChildProcess._handle.onexit (node:internal/child_process:291:12) [Nest] 7 - 06/18/2023, 8:02:39 PM ERROR [JobService] Object: { "id": "4fbf5085-3f16-4c10-9ae0-a21f4a647288", "source": "upload" } Request #1687118558833: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118558833: Sleeping for 4s and then retrying request... Request #1687118563879: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118563879: Sleeping for 4s and then retrying request... Request #1687118558833: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118558833: Sleeping for 4s and then retrying request... Request #1687118563879: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118563879: Sleeping for 4s and then retrying request... Request #1687118568841: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118568841: Sleeping for 4s and then retrying request... Request #1687118558833: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118558833: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:02:51 PM LOG [MediaService] Encoding success 4fbf5085-3f16-4c10-9ae0-a21f4a647288 [Nest] 7 - 06/18/2023, 8:02:51 PM LOG [MediaService] Start encoding video 369c716b-69aa-43a2-b96e-1f1ebc2528ff -vcodec h264,-acodec aac,-movflags faststart,-vf scale=-2:720,-preset ultrafast,-crf 23 Request #1687118563879: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118563879: Sleeping for 4s and then retrying request... Request #1687118568841: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118568841: Sleeping for 4s and then retrying request... Request #1687118573843: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118573843: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:02:54 PM LOG [MediaService] Encoding success 369c716b-69aa-43a2-b96e-1f1ebc2528ff [Nest] 7 - 06/18/2023, 8:02:54 PM LOG [MediaService] Start encoding video 8fe6464c-656c-4688-9bff-e74fdba87ef4 -vcodec h264,-acodec aac,-movflags faststart,-vf scale=-2:720,-preset ultrafast,-crf 23 Request #1687118558833: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118558833: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:02:55 PM LOG [MediaService] Encoding success 8fe6464c-656c-4688-9bff-e74fdba87ef4 Request #1687118563879: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118563879: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:02:56 PM LOG [MediaService] Start encoding video df5cf473-7a0c-43c9-be64-1bb3a4e959cc -vcodec h264,-acodec aac,-movflags faststart,-vf scale=-2:720,-preset ultrafast,-crf 23 Request #1687118568841: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118568841: Sleeping for 4s and then retrying request... Request #1687118573843: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118573843: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:02:58 PM LOG [MediaService] Encoding success df5cf473-7a0c-43c9-be64-1bb3a4e959cc [Nest] 7 - 06/18/2023, 8:02:58 PM LOG [MediaService] Start encoding video 25f26d19-5a18-46ae-8ede-0277f84e2175 -vcodec h264,-acodec aac,-movflags faststart,-vf scale=720:-2,-preset ultrafast,-crf 23 Request #1687118578844: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118578844: Sleeping for 4s and then retrying request... Request #1687118558833: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118558833: Sleeping for 4s and then retrying request... Request #1687118563879: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118563879: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:03:00 PM LOG [MediaService] Encoding success 25f26d19-5a18-46ae-8ede-0277f84e2175 Request #1687118568841: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118568841: Sleeping for 4s and then retrying request... Request #1687118573843: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118573843: Sleeping for 4s and then retrying request... Request #1687118578844: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118578844: Sleeping for 4s and then retrying request... Request #1687118558833: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118558833: Sleeping for 4s and then retrying request... Request #1687118583846: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118583846: Sleeping for 4s and then retrying request... Request #1687118563879: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118563879: Sleeping for 4s and then retrying request... Request #1687118568841: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118568841: Sleeping for 4s and then retrying request... Request #1687118573843: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118573843: Sleeping for 4s and then retrying request...

Server logs
[Nest] 7 - 06/18/2023, 4:10:14 PM LOG [CommunicationGateway] Client HLQ1MwCKv6WmOGZZAAAd disconnected from Websocket [Nest] 7 - 06/18/2023, 4:20:58 PM LOG [CommunicationGateway] New websocket connection: R-a4_7p0lp8qiFW9AAAf [Nest] 7 - 06/18/2023, 4:21:17 PM LOG [CommunicationGateway] Client R-a4_7p0lp8qiFW9AAAf disconnected from Websocket [Nest] 7 - 06/18/2023, 7:55:02 PM ERROR [ExpressAdapter] Premature close Error [ERR_STREAM_PREMATURE_CLOSE]: Premature close at new NodeError (node:internal/errors:399:5) at ServerResponse.onclose (node:internal/streams/end-of-stream:154:30) at ServerResponse.emit (node:events:525:35) at emitCloseNT (node:_http_server:984:10) at Socket.onServerResponseClose (node:_http_server:277:5) at Socket.emit (node:events:525:35) at TCP.<anonymous> (node:net:322:12) Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 7:56:15 PM ERROR [ExceptionsHandler] Request failed with HTTP code 503 | Server said: Not Ready or Lagging ServerError: Request failed with HTTP code 503 | Server said: Not Ready or Lagging at ServerError.TypesenseError [as constructor] (/usr/src/app/node_modules/typesense/lib/Typesense/Errors/TypesenseError.js:23:28) at new ServerError (/usr/src/app/node_modules/typesense/lib/Typesense/Errors/ServerError.js:25:42) at ApiCall.customErrorForResponse (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:347:21) at /usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:204:58 at step (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:33:23) at Object.next (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:14:53) at step (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:18:139) at Object.next (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:14:53) at fulfilled (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:5:58) at process.processTicksAndRejections (node:internal/process/task_queues:95:5) Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 7:59:24 PM ERROR [ExceptionsHandler] Request failed with HTTP code 503 | Server said: Not Ready or Lagging ServerError: Request failed with HTTP code 503 | Server said: Not Ready or Lagging at ServerError.TypesenseError [as constructor] (/usr/src/app/node_modules/typesense/lib/Typesense/Errors/TypesenseError.js:23:28) at new ServerError (/usr/src/app/node_modules/typesense/lib/Typesense/Errors/ServerError.js:25:42) at ApiCall.customErrorForResponse (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:347:21) at /usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:204:58 at step (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:33:23) at Object.next (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:14:53) at step (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:18:139) at Object.next (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:14:53) at fulfilled (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:5:58) at process.processTicksAndRejections (node:internal/process/task_queues:95:5)

web logs

autoDestroy: true, errored: null, closed: false, closeEmitted: false, [Symbol(kOnFinished)]: [] }, _events: [Object: null prototype] { response: [Function: handleResponse], error: [Function: handleRequestError], socket: [Function: handleRequestSocket] }, _eventsCount: 3, _maxListeners: undefined, _options: { maxRedirects: 21, maxBodyLength: 10485760, protocol: 'http:', path: '/user/me', method: 'GET', headers: [Object], agent: undefined, agents: [Object], auth: undefined, hostname: 'immich-server', port: '3001', nativeProtocols: [Object], pathname: '/user/me' }, _ended: true, _ending: true, _redirectCount: 0, _redirects: [], _requestBodyLength: 0, _requestBodyBuffers: [], _onNativeResponse: [Function (anonymous)], _currentRequest: ClientRequest { _events: [Object: null prototype], _eventsCount: 7, _maxListeners: undefined, outputData: [], outputSize: 0, writable: true, destroyed: false, _last: true, chunkedEncoding: false, shouldKeepAlive: false, maxRequestsOnConnectionReached: false, _defaultKeepAlive: true, useChunkedEncodingByDefault: false, sendDate: false, _removedConnection: false, _removedContLen: false, _removedTE: false, strictContentLength: false, _contentLength: 0, _hasBody: true, _trailer: '', finished: true, _headerSent: true, _closed: false, socket: [Socket], _header: 'GET /user/me HTTP/1.1\r\n' + 'Accept: application/json, text/plain, */*\r\n' + 'Authorization: Bearer ISULCccxZt9nv5ViS9orqX4BZLpSZv9izdR3E8hQ\r\n' + 'User-Agent: axios/0.27.2\r\n' + 'Host: immich-server:3001\r\n' + 'Connection: close\r\n' + '\r\n', _keepAliveTimeout: 0, _onPendingData: [Function: nop], agent: [Agent], socketPath: undefined, method: 'GET', maxHeaderSize: undefined, insecureHTTPParser: undefined, joinDuplicateHeaders: undefined, path: '/user/me', _ended: false, res: null, aborted: false, timeoutCb: null, upgradeOrConnect: false, parser: null, maxHeadersCount: null, reusedSocket: false, host: 'immich-server', protocol: 'http:', _redirectable: [Circular *1], [Symbol(kCapture)]: false, [Symbol(kBytesWritten)]: 0, [Symbol(kNeedDrain)]: false, [Symbol(corked)]: 0, [Symbol(kOutHeaders)]: [Object: null prototype], [Symbol(errored)]: null, [Symbol(kUniqueHeaders)]: null }, _currentUrl: 'http://immich-server:3001/user/me', [Symbol(kCapture)]: false } }

console

start.cd8b7b9c.js:1 GET http://192.168.x.xx:2283/explore/__data.json?x-sveltekit-invalidated=01 504 (Gateway Time-out) He @ start.cd8b7b9c.js:1 he @ start.cd8b7b9c.js:1 Ie @ start.cd8b7b9c.js:1 a @ start.cd8b7b9c.js:1 (anonymous) @ start.cd8b7b9c.js:1 setTimeout (async) (anonymous) @ start.cd8b7b9c.js:1 app.fd6e6dcd.js:1 SyntaxError: Unexpected token '<', "<html> <h"... is not valid JSON handleError @ app.fd6e6dcd.js:1 X @ start.cd8b7b9c.js:1 he @ start.cd8b7b9c.js:1 await in he (async) Ie @ start.cd8b7b9c.js:1 a @ start.cd8b7b9c.js:1 (anonymous) @ start.cd8b7b9c.js:1 setTimeout (async) (anonymous) @ start.cd8b7b9c.js:1

@wavesswe commented on GitHub (Jun 18, 2023): Here are the logs.. It looks like its related to the typsense contaioner. I also have problem to access Immich during start up. sometimes it requires a couple of restart of the typesense container as well. Microservices `Request #1687118608855: Sleeping for 4s and then retrying request... Request #1687118588850: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118588850: Sleeping for 4s and then retrying request... Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118593853: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118593853: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:02 PM ERROR [TypesenseRepository] Unable to index documents Request #1687118598854: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118598854: Sleeping for 4s and then retrying request... Request #1687118583846: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118583846: Sleeping for 4s and then retrying request... Request #1687118603855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118603855: Sleeping for 4s and then retrying request... Request #1687118608855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118608855: Sleeping for 4s and then retrying request... Request #1687118588850: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118588850: Sleeping for 4s and then retrying request... Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118593853: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118593853: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... Request #1687118598854: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118598854: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:07 PM ERROR [TypesenseRepository] Unable to index documents Request #1687118603855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118603855: Sleeping for 4s and then retrying request... Request #1687118608855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118608855: Sleeping for 4s and then retrying request... Request #1687118588850: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118588850: Sleeping for 4s and then retrying request... Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118593853: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118593853: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... Request #1687118598854: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118598854: Sleeping for 4s and then retrying request... Request #1687118603855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118603855: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:12 PM ERROR [TypesenseRepository] Unable to index documents Request #1687118608855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118608855: Sleeping for 4s and then retrying request... Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118593853: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118593853: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... Request #1687118598854: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118598854: Sleeping for 4s and then retrying request... Request #1687118603855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118603855: Sleeping for 4s and then retrying request... Request #1687118608855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118608855: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:17 PM ERROR [TypesenseRepository] Unable to index documents Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... Request #1687118598854: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118598854: Sleeping for 4s and then retrying request... Request #1687118603855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118603855: Sleeping for 4s and then retrying request... Request #1687118608855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118608855: Sleeping for 4s and then retrying request... Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:22 PM ERROR [TypesenseRepository] Unable to index documents Request #1687118603855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118603855: Sleeping for 4s and then retrying request... Request #1687118608855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118608855: Sleeping for 4s and then retrying request... Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:27 PM ERROR [TypesenseRepository] Unable to index documents Request #1687118608855: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118608855: Sleeping for 4s and then retrying request... Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:32 PM ERROR [TypesenseRepository] Unable to index documents Request #1687118613857: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118613857: Sleeping for 4s and then retrying request... Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:37 PM ERROR [TypesenseRepository] Unable to index documents Request #1687118618856: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118618856: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:04:42 PM ERROR [TypesenseRepository] Unable to index documents ` Microservises `Request #1687118240039: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118240039: Sleeping for 4s and then retrying request... Request #1687118240039: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118240039: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 7:58:24 PM ERROR [JobService] Unable to run job handler: ServerError: Request failed with HTTP code 503 | Server said: Not Ready or Lagging [Nest] 7 - 06/18/2023, 7:58:24 PM ERROR [JobService] ServerError: Request failed with HTTP code 503 | Server said: Not Ready or Lagging at ServerError.TypesenseError [as constructor] (/usr/src/app/node_modules/typesense/lib/Typesense/Errors/TypesenseError.js:23:28) at new ServerError (/usr/src/app/node_modules/typesense/lib/Typesense/Errors/ServerError.js:25:42) at ApiCall.customErrorForResponse (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:347:21) at /usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:204:58 at step (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:33:23) at Object.next (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:14:53) at step (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:18:139) at Object.next (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:14:53) at fulfilled (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:5:58) at process.processTicksAndRejections (node:internal/process/task_queues:95:5) [Nest] 7 - 06/18/2023, 7:58:24 PM ERROR [JobService] Object: { "id": "ff62d03a-93b7-475e-a82e-8d093160af2b", "source": "upload" } [Nest] 7 - 06/18/2023, 8:02:34 PM LOG [MediaService] Start encoding video e7937ed1-85d6-4e15-9fae-f01b242da86d -vcodec h264,-acodec aac,-movflags faststart,-vf scale=-2:720,-preset ultrafast,-crf 23 [Nest] 7 - 06/18/2023, 8:02:36 PM LOG [MediaService] Encoding success e7937ed1-85d6-4e15-9fae-f01b242da86d [Nest] 7 - 06/18/2023, 8:02:36 PM LOG [MediaService] Start encoding video c5c0d251-435c-460f-b50d-4b5ac690cff6 -vcodec h264,-acodec aac,-movflags faststart,-vf scale=-2:720,-preset ultrafast,-crf 23 [Nest] 7 - 06/18/2023, 8:02:38 PM LOG [MediaService] Encoding success c5c0d251-435c-460f-b50d-4b5ac690cff6 Request #1687118558833: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118558833: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:02:39 PM LOG [MediaService] Start encoding video 4fbf5085-3f16-4c10-9ae0-a21f4a647288 -vcodec h264,-acodec aac,-movflags faststart,-vf scale=720:-2,-preset ultrafast,-crf 23 [Nest] 7 - 06/18/2023, 8:02:39 PM LOG [MediaService] Generating video thumbnail [Nest] 7 - 06/18/2023, 8:02:39 PM ERROR [JobService] Unable to run job handler: Error: ffmpeg exited with code 1: upload/library/2770307e-2ad5-482d-ad68-391fbaa3b372/2023/2023-06-18/IMG_7809.MOV: Invalid argument [Nest] 7 - 06/18/2023, 8:02:39 PM ERROR [JobService] Error: ffmpeg exited with code 1: upload/library/2770307e-2ad5-482d-ad68-391fbaa3b372/2023/2023-06-18/IMG_7809.MOV: Invalid argument at ChildProcess.<anonymous> (/usr/src/app/node_modules/fluent-ffmpeg/lib/processor.js:182:22) at ChildProcess.emit (node:events:513:28) at ChildProcess._handle.onexit (node:internal/child_process:291:12) [Nest] 7 - 06/18/2023, 8:02:39 PM ERROR [JobService] Object: { "id": "4fbf5085-3f16-4c10-9ae0-a21f4a647288", "source": "upload" } Request #1687118558833: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118558833: Sleeping for 4s and then retrying request... Request #1687118563879: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118563879: Sleeping for 4s and then retrying request... Request #1687118558833: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118558833: Sleeping for 4s and then retrying request... Request #1687118563879: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118563879: Sleeping for 4s and then retrying request... Request #1687118568841: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118568841: Sleeping for 4s and then retrying request... Request #1687118558833: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118558833: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:02:51 PM LOG [MediaService] Encoding success 4fbf5085-3f16-4c10-9ae0-a21f4a647288 [Nest] 7 - 06/18/2023, 8:02:51 PM LOG [MediaService] Start encoding video 369c716b-69aa-43a2-b96e-1f1ebc2528ff -vcodec h264,-acodec aac,-movflags faststart,-vf scale=-2:720,-preset ultrafast,-crf 23 Request #1687118563879: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118563879: Sleeping for 4s and then retrying request... Request #1687118568841: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118568841: Sleeping for 4s and then retrying request... Request #1687118573843: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118573843: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:02:54 PM LOG [MediaService] Encoding success 369c716b-69aa-43a2-b96e-1f1ebc2528ff [Nest] 7 - 06/18/2023, 8:02:54 PM LOG [MediaService] Start encoding video 8fe6464c-656c-4688-9bff-e74fdba87ef4 -vcodec h264,-acodec aac,-movflags faststart,-vf scale=-2:720,-preset ultrafast,-crf 23 Request #1687118558833: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118558833: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:02:55 PM LOG [MediaService] Encoding success 8fe6464c-656c-4688-9bff-e74fdba87ef4 Request #1687118563879: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118563879: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:02:56 PM LOG [MediaService] Start encoding video df5cf473-7a0c-43c9-be64-1bb3a4e959cc -vcodec h264,-acodec aac,-movflags faststart,-vf scale=-2:720,-preset ultrafast,-crf 23 Request #1687118568841: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118568841: Sleeping for 4s and then retrying request... Request #1687118573843: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118573843: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:02:58 PM LOG [MediaService] Encoding success df5cf473-7a0c-43c9-be64-1bb3a4e959cc [Nest] 7 - 06/18/2023, 8:02:58 PM LOG [MediaService] Start encoding video 25f26d19-5a18-46ae-8ede-0277f84e2175 -vcodec h264,-acodec aac,-movflags faststart,-vf scale=720:-2,-preset ultrafast,-crf 23 Request #1687118578844: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118578844: Sleeping for 4s and then retrying request... Request #1687118558833: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118558833: Sleeping for 4s and then retrying request... Request #1687118563879: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118563879: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 8:03:00 PM LOG [MediaService] Encoding success 25f26d19-5a18-46ae-8ede-0277f84e2175 Request #1687118568841: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118568841: Sleeping for 4s and then retrying request... Request #1687118573843: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118573843: Sleeping for 4s and then retrying request... Request #1687118578844: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118578844: Sleeping for 4s and then retrying request... Request #1687118558833: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118558833: Sleeping for 4s and then retrying request... Request #1687118583846: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118583846: Sleeping for 4s and then retrying request... Request #1687118563879: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118563879: Sleeping for 4s and then retrying request... Request #1687118568841: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118568841: Sleeping for 4s and then retrying request... Request #1687118573843: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118573843: Sleeping for 4s and then retrying request... ` Server logs `[Nest] 7 - 06/18/2023, 4:10:14 PM LOG [CommunicationGateway] Client HLQ1MwCKv6WmOGZZAAAd disconnected from Websocket [Nest] 7 - 06/18/2023, 4:20:58 PM LOG [CommunicationGateway] New websocket connection: R-a4_7p0lp8qiFW9AAAf [Nest] 7 - 06/18/2023, 4:21:17 PM LOG [CommunicationGateway] Client R-a4_7p0lp8qiFW9AAAf disconnected from Websocket [Nest] 7 - 06/18/2023, 7:55:02 PM ERROR [ExpressAdapter] Premature close Error [ERR_STREAM_PREMATURE_CLOSE]: Premature close at new NodeError (node:internal/errors:399:5) at ServerResponse.onclose (node:internal/streams/end-of-stream:154:30) at ServerResponse.emit (node:events:525:35) at emitCloseNT (node:_http_server:984:10) at Socket.onServerResponseClose (node:_http_server:277:5) at Socket.emit (node:events:525:35) at TCP.<anonymous> (node:net:322:12) Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... Request #1687118111894: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118111894: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 7:56:15 PM ERROR [ExceptionsHandler] Request failed with HTTP code 503 | Server said: Not Ready or Lagging ServerError: Request failed with HTTP code 503 | Server said: Not Ready or Lagging at ServerError.TypesenseError [as constructor] (/usr/src/app/node_modules/typesense/lib/Typesense/Errors/TypesenseError.js:23:28) at new ServerError (/usr/src/app/node_modules/typesense/lib/Typesense/Errors/ServerError.js:25:42) at ApiCall.customErrorForResponse (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:347:21) at /usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:204:58 at step (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:33:23) at Object.next (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:14:53) at step (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:18:139) at Object.next (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:14:53) at fulfilled (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:5:58) at process.processTicksAndRejections (node:internal/process/task_queues:95:5) Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... Request #1687118300476: Request to Node 0 failed due to "undefined Request failed with HTTP code 503 | Server said: Not Ready or Lagging" Request #1687118300476: Sleeping for 4s and then retrying request... [Nest] 7 - 06/18/2023, 7:59:24 PM ERROR [ExceptionsHandler] Request failed with HTTP code 503 | Server said: Not Ready or Lagging ServerError: Request failed with HTTP code 503 | Server said: Not Ready or Lagging at ServerError.TypesenseError [as constructor] (/usr/src/app/node_modules/typesense/lib/Typesense/Errors/TypesenseError.js:23:28) at new ServerError (/usr/src/app/node_modules/typesense/lib/Typesense/Errors/ServerError.js:25:42) at ApiCall.customErrorForResponse (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:347:21) at /usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:204:58 at step (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:33:23) at Object.next (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:14:53) at step (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:18:139) at Object.next (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:14:53) at fulfilled (/usr/src/app/node_modules/typesense/lib/Typesense/ApiCall.js:5:58) at process.processTicksAndRejections (node:internal/process/task_queues:95:5) ` web logs ` autoDestroy: true, errored: null, closed: false, closeEmitted: false, [Symbol(kOnFinished)]: [] }, _events: [Object: null prototype] { response: [Function: handleResponse], error: [Function: handleRequestError], socket: [Function: handleRequestSocket] }, _eventsCount: 3, _maxListeners: undefined, _options: { maxRedirects: 21, maxBodyLength: 10485760, protocol: 'http:', path: '/user/me', method: 'GET', headers: [Object], agent: undefined, agents: [Object], auth: undefined, hostname: 'immich-server', port: '3001', nativeProtocols: [Object], pathname: '/user/me' }, _ended: true, _ending: true, _redirectCount: 0, _redirects: [], _requestBodyLength: 0, _requestBodyBuffers: [], _onNativeResponse: [Function (anonymous)], _currentRequest: ClientRequest { _events: [Object: null prototype], _eventsCount: 7, _maxListeners: undefined, outputData: [], outputSize: 0, writable: true, destroyed: false, _last: true, chunkedEncoding: false, shouldKeepAlive: false, maxRequestsOnConnectionReached: false, _defaultKeepAlive: true, useChunkedEncodingByDefault: false, sendDate: false, _removedConnection: false, _removedContLen: false, _removedTE: false, strictContentLength: false, _contentLength: 0, _hasBody: true, _trailer: '', finished: true, _headerSent: true, _closed: false, socket: [Socket], _header: 'GET /user/me HTTP/1.1\r\n' + 'Accept: application/json, text/plain, */*\r\n' + 'Authorization: Bearer ISULCccxZt9nv5ViS9orqX4BZLpSZv9izdR3E8hQ\r\n' + 'User-Agent: axios/0.27.2\r\n' + 'Host: immich-server:3001\r\n' + 'Connection: close\r\n' + '\r\n', _keepAliveTimeout: 0, _onPendingData: [Function: nop], agent: [Agent], socketPath: undefined, method: 'GET', maxHeaderSize: undefined, insecureHTTPParser: undefined, joinDuplicateHeaders: undefined, path: '/user/me', _ended: false, res: null, aborted: false, timeoutCb: null, upgradeOrConnect: false, parser: null, maxHeadersCount: null, reusedSocket: false, host: 'immich-server', protocol: 'http:', _redirectable: [Circular *1], [Symbol(kCapture)]: false, [Symbol(kBytesWritten)]: 0, [Symbol(kNeedDrain)]: false, [Symbol(corked)]: 0, [Symbol(kOutHeaders)]: [Object: null prototype], [Symbol(errored)]: null, [Symbol(kUniqueHeaders)]: null }, _currentUrl: 'http://immich-server:3001/user/me', [Symbol(kCapture)]: false } } ` console `start.cd8b7b9c.js:1 GET http://192.168.x.xx:2283/explore/__data.json?x-sveltekit-invalidated=01 504 (Gateway Time-out) He @ start.cd8b7b9c.js:1 he @ start.cd8b7b9c.js:1 Ie @ start.cd8b7b9c.js:1 a @ start.cd8b7b9c.js:1 (anonymous) @ start.cd8b7b9c.js:1 setTimeout (async) (anonymous) @ start.cd8b7b9c.js:1 app.fd6e6dcd.js:1 SyntaxError: Unexpected token '<', "<html> <h"... is not valid JSON handleError @ app.fd6e6dcd.js:1 X @ start.cd8b7b9c.js:1 he @ start.cd8b7b9c.js:1 await in he (async) Ie @ start.cd8b7b9c.js:1 a @ start.cd8b7b9c.js:1 (anonymous) @ start.cd8b7b9c.js:1 setTimeout (async) (anonymous) @ start.cd8b7b9c.js:1 `
Author
Owner

@wavesswe commented on GitHub (Jun 19, 2023):

I rmoved the whole typesense and the storage. recrated it and now it works

@wavesswe commented on GitHub (Jun 19, 2023): I rmoved the whole typesense and the storage. recrated it and now it works
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#930