Links
Comment on page

Limitations

See plan-specific limits in Pricing
Spice.ai has the following limitations:

Global API Limits

Data Limitations (as of October 2023)

  • 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.

Data format limitations

  • List data cannot be downloaded as CSV from the Portal
    • 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 CSV
      • select flatten(topics) from eth.logs limit 1 will be able to be downloaded as CSV
Last modified 1mo ago