forked from nitinbs24/Obsidian
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (25 loc) · 1.49 KB
/
Copy path.env.example
File metadata and controls
31 lines (25 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# ── OpenSearch ─────────────────────────────────────────────────────────────────
OPENSEARCH_HOST=localhost
OPENSEARCH_PORT=9200
OPENSEARCH_INDEX=hpe-search-docs
# ── Redis Cache ─────────────────────────────────────────────────────────────────
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_DB=0
REDIS_PASSWORD=
# TTL settings (seconds)
REDIS_TTL_DEFAULT=300
REDIS_TTL_FILTERED=600
REDIS_TTL_POPULAR=1800
REDIS_POPULAR_THRESHOLD=10
# ── Search tuning ───────────────────────────────────────────────────────────────
SEARCH_KNN_K=50
SEARCH_BM25_BOOST=0.4
SEARCH_KNN_BOOST=0.6
SEARCH_DEFAULT_SIZE=10
# ── Ingestion tuning ────────────────────────────────────────────────────────────
OPENSEARCH_BULK_CHUNK_SIZE=200
OPENSEARCH_MAX_RETRIES=5
OPENSEARCH_RETRY_BASE_DELAY=1.0
# ── Observability ───────────────────────────────────────────────────────────────
LOG_LEVEL=INFO