Java SDK
The Java SDK
is the easiest way to query the Spice Cloud Platform from Java.
It uses Apache Arrow Flight to efficiently stream data to the client and Apache Arrow Records as data frames.
Supported Java Versions
This library supports the following Java implementations:
OpenJDK 17
OpenJDK 21
OracleJDK 17
OracleJDK 21
OracleJDK 22
Installation
Usage
1. Import the package.
2. Create a SpiceClient passing in your API key. Get your free API key at spice.ai.
3. Execute a query and get back a FlightStream.
5. Iterate through the FlightStream to access the records.
Check full example to learn more.
Usage with local Spice.ai OSS runtime
Follow the quickstart guide to install and run spice locally.
Or using custom flight address:
Check Spice OSS documentation or Java SDK Sample to learn more
Connection retry
The SpiceClient
implements connection retry mechanism (3 attempts by default). The number of attempts can be configured with withMaxRetries
:
Retries are performed for connection and system internal errors. It is the SDK user's responsibility to properly handle other errors, for example RESOURCE_EXHAUSTED (HTTP 429).
Last updated