{% hint style="info" %} For higher limits become a Design Partner {% endhint %}
In beta, Spice.ai has a number of limitations, including:
- 10 apps per account.
- 10 request-per-second (rps).
- 90-second request/query timeout.
- 500 row limit for HTTP API results (use the Apache Arrow API or the Async HTTP API for no limit).
- 4 request-per-minute SQL API limit.
- 10 row result limit.
- API Key (provided as gRPC password) is always required.
- 3 concurrent-requests.
- 128-bit integer limit (while data can be uint256). We include both the 128-bit
DECIMAL(38)
type and_hex
fields where the type is 256-bit.
- List data cannot be downloaded as CSV
- If you wish to download list data as CSV, you should use the flatten operator first:
select topics from eth.logs limit 1
will NOT be able to be downloaded as CSVselect flatten(topics) from eth.logs limit 1
will be able to be downloaded as CSV
- If you wish to download list data as CSV, you should use the flatten operator first: