Skip to main content

Default Limits

ResourceDefaultMax
CPU1 core2 cores
Memory512 MB2 GB
Timeout30 seconds300 seconds
Disk100 MB1 GB

Configuration

Set limits in environment variables or per-request:
# Per-request timeout
curl -X POST http://localhost:8002/api/v1/execute \
  -H "X-API-Key: your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "code": "print(42)",
    "language": "python",
    "timeout": 60
  }'