-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathzeppelin.toml.example
More file actions
59 lines (49 loc) · 2.3 KB
/
zeppelin.toml.example
File metadata and controls
59 lines (49 loc) · 2.3 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
# Zeppelin configuration
# Copy to zeppelin.toml and uncomment values to override defaults.
# Environment variables (shown in comments) take precedence over file values.
# Set ZEPPELIN_CONFIG to point to a custom config file path.
[server]
# host = "0.0.0.0" # ZEPPELIN_HOST
# port = 8080 # ZEPPELIN_PORT
# request_timeout_secs = 30 # ZEPPELIN_REQUEST_TIMEOUT_SECS
# max_concurrent_queries = 64 # ZEPPELIN_MAX_CONCURRENT_QUERIES
# max_batch_size = 10000 # ZEPPELIN_MAX_BATCH_SIZE
# max_top_k = 10000 # ZEPPELIN_MAX_TOP_K
# shutdown_timeout_secs = 30 # ZEPPELIN_SHUTDOWN_TIMEOUT_SECS
# max_dimensions = 65536 # ZEPPELIN_MAX_DIMENSIONS
# max_vector_id_length = 1024 # ZEPPELIN_MAX_VECTOR_ID_LENGTH
# max_request_body_mb = 50 # ZEPPELIN_MAX_REQUEST_BODY_MB
[storage]
# backend = "s3" # STORAGE_BACKEND — "s3", "gcs", "azure"
# bucket = "zeppelin" # S3_BUCKET
# S3 / MinIO / R2
# s3_region = "us-east-1" # AWS_REGION
# s3_endpoint = "" # S3_ENDPOINT — set for MinIO/R2
# s3_access_key_id = "" # AWS_ACCESS_KEY_ID
# s3_secret_access_key = "" # AWS_SECRET_ACCESS_KEY
# s3_allow_http = false # S3_ALLOW_HTTP — "true" for local MinIO
# GCS
# gcs_service_account_path = "" # GCS_SERVICE_ACCOUNT_PATH
# Azure Blob Storage
# azure_account = "" # AZURE_ACCOUNT
# azure_access_key = "" # AZURE_ACCESS_KEY
[cache]
# dir = "/var/cache/zeppelin" # ZEPPELIN_CACHE_DIR
# max_size_gb = 50 # ZEPPELIN_CACHE_MAX_SIZE_GB
# eviction = "lru"
[indexing]
# default_num_centroids = 256 # ZEPPELIN_DEFAULT_NUM_CENTROIDS
# default_nprobe = 16 # ZEPPELIN_DEFAULT_NPROBE
# max_nprobe = 128
# kmeans_max_iterations = 25
# kmeans_convergence_epsilon = 0.0001
# oversample_factor = 3
[compaction]
# interval_secs = 30 # ZEPPELIN_COMPACTION_INTERVAL_SECS
# max_wal_fragments_before_compact = 1000
# retrain_imbalance_threshold = 5.0
[consistency]
# default = "strong" # "strong" or "eventual"
[logging]
# level = "info" # RUST_LOG compatible
# format = "json" # ZEPPELIN_LOG_FORMAT — "json" or "pretty"