54 lines
1.1 KiB
Plaintext
54 lines
1.1 KiB
Plaintext
|
|
# Doris MCP Server Environment Configuration
|
||
|
|
# Copy this file to .env and modify the values as needed
|
||
|
|
|
||
|
|
# Database Configuration
|
||
|
|
DORIS_HOST=localhost
|
||
|
|
DORIS_PORT=9030
|
||
|
|
DORIS_USER=root
|
||
|
|
DORIS_PASSWORD=your_password_here
|
||
|
|
DORIS_DATABASE=your_database_name
|
||
|
|
|
||
|
|
# Connection Pool Settings
|
||
|
|
DORIS_MIN_CONNECTIONS=5
|
||
|
|
DORIS_MAX_CONNECTIONS=20
|
||
|
|
DORIS_CONNECTION_TIMEOUT=30
|
||
|
|
DORIS_HEALTH_CHECK_INTERVAL=60
|
||
|
|
DORIS_MAX_CONNECTION_AGE=3600
|
||
|
|
|
||
|
|
# Security Settings
|
||
|
|
AUTH_TYPE=token
|
||
|
|
TOKEN_SECRET=your_256_bit_secret_key_here
|
||
|
|
TOKEN_EXPIRY=3600
|
||
|
|
MAX_RESULT_ROWS=10000
|
||
|
|
ENABLE_MASKING=true
|
||
|
|
|
||
|
|
# Performance Settings
|
||
|
|
ENABLE_QUERY_CACHE=true
|
||
|
|
CACHE_TTL=300
|
||
|
|
MAX_CACHE_SIZE=1000
|
||
|
|
MAX_CONCURRENT_QUERIES=50
|
||
|
|
QUERY_TIMEOUT=300
|
||
|
|
|
||
|
|
# Logging Configuration
|
||
|
|
LOG_LEVEL=INFO
|
||
|
|
LOG_FILE_PATH=./log/doris-mcp-server.log
|
||
|
|
ENABLE_AUDIT=true
|
||
|
|
AUDIT_FILE_PATH=./log/doris-mcp-audit.log
|
||
|
|
|
||
|
|
# Monitoring Settings
|
||
|
|
ENABLE_METRICS=true
|
||
|
|
METRICS_PORT=3001
|
||
|
|
METRICS_PATH=/metrics
|
||
|
|
HEALTH_CHECK_PORT=3002
|
||
|
|
HEALTH_CHECK_PATH=/health
|
||
|
|
ENABLE_ALERTS=false
|
||
|
|
ALERT_WEBHOOK_URL=
|
||
|
|
|
||
|
|
# Server Settings
|
||
|
|
SERVER_NAME=doris-mcp-server
|
||
|
|
SERVER_VERSION=0.3.0
|
||
|
|
SERVER_PORT=3000
|
||
|
|
|
||
|
|
# Development Settings (for development environment only)
|
||
|
|
DEBUG=false
|
||
|
|
VERBOSE=false
|