Recommended resources
Scaling
Provision the agent close to your RPC providers and database to minimize latency, which directly affects quote competitiveness.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Recommended resources and scaling for running a settler agent in production.
| Resource | Specification |
|---|---|
| CPU | 6 vCPUs |
| Memory | 24 GB RAM |
| Instances | 1 minimum, 20 maximum (auto-scaling) |
| Storage | 100 GB SSD |
| Network | Low-latency connection to RPC providers |
# Example Kubernetes HPA
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: settler-agent
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: settler-agent
minReplicas: 1
maxReplicas: 20
metrics:
- type: Resource
resource:
name: cpu
target:
type: Utilization
averageUtilization: 70