-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (22 loc) · 950 Bytes
/
.env.example
File metadata and controls
29 lines (22 loc) · 950 Bytes
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
# Ray Cluster Configuration
# Copy this file to .env and update with your cluster details
# Required: Ray cluster address
# Format: ray://head-node-ip:port or http://head-node-ip:8265
# Example: ray://192.168.1.100:10001
RAY_ADDRESS=ray://your-cluster-head:10001
# Required: Namespace for logical grouping of jobs and actors
# Example: production, development, staging
RAY_NAMESPACE=production
# Optional: Runtime environment as JSON string
# Example: {\"pip\": [\"numpy\", \"pandas\"], \"env_vars\": {\"MY_VAR\": \"value\"}}
RAY_RUNTIME_ENV=
# Optional: Job configuration as JSON string
# Example: {\"runtime_env\": {\"pip\": [\"requests\"]}}
RAY_JOB_CONFIG=
# Optional: Maximum task retries (default: 3)
# Set to 0 to disable retries
RAY_TASK_MAX_RETRIES=3
# Optional: GCS reconnection timeout in seconds
RAY_gcs_rpc_server_reconnect_timeout_s=60
# Optional: Enable pickle debugging (0=off, 1=basic, 2=verbose)
RAY_PICKLE_VERBOSE_DEBUG=0