| Ocalt Query Language
Pricing Dashboard ocalt.com v1.0

Quotas & Pricing

OQL accounts are scoped by tier. Quotas reset at midnight UTC. Upgrade at ocalt.com/pricing.

TierStorageQueries / DayConcurrentPrice
Free4 GB1001$0 / mo
Starter8 GB10,0004$10 / mo
Pro64 GB100,00016$50 / mo
Enterprise256 GB1,000,00064$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