Merge pull request #1057 from croneter/increase-batch

Increase batch size for library sync from 500 to 2000 to increase sync speed
This commit is contained in:
croneter 2019-11-14 17:20:24 +01:00 committed by GitHub
commit 24ec8dd8e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,7 @@ if common.PLAYLIST_SYNC_ENABLED:
LOG = getLogger('PLEX.sync.full_sync')
# How many items will be put through the processing chain at once?
BATCH_SIZE = 500
BATCH_SIZE = 2000
# Safety margin to filter PMS items - how many seconds to look into the past?
UPDATED_AT_SAFETY = 60 * 5
LAST_VIEWED_AT_SAFETY = 60 * 5