mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-18 21:15:16 +02:00
add INDEXING_CHUNK_INSERT_BATCH_SIZE config
This commit is contained in:
parent
0fe650fd8e
commit
220d9c4fbb
1 changed files with 3 additions and 0 deletions
|
|
@ -959,6 +959,9 @@ class Config:
|
|||
CHUNK_RECONCILE_ENABLED = (
|
||||
os.getenv("CHUNK_RECONCILE_ENABLED", "true").strip().lower() == "true"
|
||||
)
|
||||
INDEXING_CHUNK_INSERT_BATCH_SIZE = int(
|
||||
os.getenv("INDEXING_CHUNK_INSERT_BATCH_SIZE", "200")
|
||||
)
|
||||
|
||||
# Proxy provider selection. Maps to a ProxyProvider implementation registered
|
||||
# in app/utils/proxy/registry.py. Add new vendors there and switch via this var.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue