Quotas & Pricing
OQL accounts are scoped by tier. Quotas reset at midnight UTC. Upgrade at ocalt.com/pricing.
| Tier | Storage | Queries / Day | Concurrent | Price |
|---|---|---|---|---|
| Free | 4 GB | 100 | 1 | $0 / mo |
| Starter | 8 GB | 10,000 | 4 | $10 / mo |
| Pro | 64 GB | 100,000 | 16 | $50 / mo |
| Enterprise | 256 GB | 1,000,000 | 64 | $200 / mo |
Quota errors
When your daily query limit is reached, the API returns:
{ "status": "error", "error": { "code": "QuotaExceeded", "message": "..." } }
Instance limits
The concurrent instance limit applies to simultaneously executing queries for one account. A query that calls SLEEP "10s" holds an instance slot for 10 seconds.
{ "status": "error", "error": { "code": "InstanceLimitExceeded", "message": "..." } }
Filesystem storage
Storage limits apply to everything inside /root/. Delete unused files with REMOVE or set up a CRON job to purge /root/tmp/ daily.
(* Clean up tmp daily *)
DEFINE CRON "clean-tmp" ON SCHEDULE "0 3 * * *"
OPEN NEST
CLEAR "/root/tmp/"
CLOSE NEST