Replies: 1 comment 1 reply
-
I think anything that reduces query time is good. I was wondering if the number of duplicates also increases the query time? I had a library of 70K with 10 duplicates that completed the query in a minute. My library with 130k had 27K duplicates took about 5 minutes to query. I'm not sure if it matters but I hope the info can help you. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
the issue #52 comes when the server is under powered regarding the size of the library.
The fist action done by immich-go is to pull the full list of assets (https://immich.app/docs/api/get-all-assets).
This query gets its data from the database through the immich server and the proxy. The immich server build a JSON response il the dataset, and send it back trough the proxy. Client receives data all at once.
My "production" immich runs on a beefy server. I'm using my laptop as a client.
The request takes 23 secondes for 95971 images. The size of data is 201Mb.
When I run the query using ssh to the nas and docker exec psql, I get the result in 12 seconds.
Should I go in that direction?
Beta Was this translation helpful? Give feedback.
All reactions