-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
62 lines (55 loc) · 2.03 KB
/
.env.example
File metadata and controls
62 lines (55 loc) · 2.03 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# UDAV Environment Configuration Example
# Copy this file to .env and modify values as needed
# ============================================
# Database Configuration
# ============================================
DB_URL=jdbc:postgresql://postgres:5432/udav
DB_USER=postgres
DB_PASS=postgres
POSTGRES_DB=udav
DB_SCHEMA=public
DB_DIALECT=POSTGRES
# Batch size for database inserts (default: 5000)
# Higher = fewer DB roundtrips, more memory. Range: 1000-15000
DB_BATCH_SIZE=5000
# Max identifier length (PostgreSQL: 63, MySQL: 64, MSSQL: 128)
DB_MAX_IDENT=255
# ============================================
# DUUI Importer Configuration
# ============================================
# Enable/disable DUUI importer
DUUI_IMPORTER=false
# Path to input files
DUUI_IMPORTER_PATH=/app/data/input
# File extension: .xmi (uncompressed) or .gz (gzip compressed)
DUUI_IMPORTER_FILE_ENDING=.xmi
# Number of parallel workers (default: 4, rule: 1 per CPU core)
DUUI_IMPORTER_WORKERS=4
# UIMA CAS pool size (default: 2×workers)
DUUI_IMPORTER_CAS_POOL_SIZE=8
# Optional: External TypeSystem XML file path (auto-detected from XMI if not set)
DUUI_IMPORTER_TYPE_SYSTEM_PATH=
# ============================================
# Application Configuration
# ============================================
APP_INPUT_DIR=/app/data/input
# ============================================
# Pipeline Configuration
# ============================================
PIPELINE_IMPORTER=false
PIPELINE_IMPORTER_FOLDER=/app/data/pipelines
PIPELINE_IMPORTER_REPLACE_IF_DIFFERENT=false
# ============================================
# Source Builder
# ============================================
SROUCE_BUILDER=false
# ============================================
# LLM API Configuration (optional)
# ============================================
LLM_BASE_URL=http://your-llm-server:8000
LLM_API_TOKEN=your-api-token-here
# ============================================
# Java Options
# ============================================
# Adjust memory based on your system and data size
JAVA_OPTS="-Xmx10G -Xms1024m"