Avatica Downloads

Avatica is released as a source artifact, and also through Maven and Docker Hub.

Source releases

Release Date Commit Download
1.24.0 04 Dec 2023 4c0999b tar (sha512 pgp)
1.23.0 19 Jan 2023 fab0354 tar (sha512 pgp)
1.22.0 28 Jul 2022 71fc0ab tar (sha512 pgp)
1.21.0 08 May 2022 0883262 tar (sha512 pgp)
1.20.0 13 Dec 2021 8f83775 tar (sha512 pgp)
1.19.0 11 Oct 2021 d9f4374 tar (sha512 pgp)
1.18.0 18 May 2021 a7cfca4 tar (sha512 pgp)
1.17.0 22 Jun 2020 d56fcd0 tar (sha512 pgp)
1.16.0 19 Dec 2019 512bbee tar (sha512 pgp)
1.15.0 13 May 2019 95e1545 tar (sha512 pgp)
1.14.0 29 Apr 2019 4fe0f9b tar (sha512 pgp)
1.13.0 04 Dec 2018 861d05a tar (sha512 pgp)
1.12.0 24 Jun 2018 019a4ec tar (sha256 pgp)
1.11.0 09 Mar 2018 e533391 tar (sha256 pgp)
zip (sha256 pgp)
1.10.0 30 May 2017 fcec4be tar (mds pgp)
zip (mds pgp)
1.9.0 01 Nov 2016 e32d778 tar (md5 pgp)
zip (md5 pgp)
1.8.0 04 Jun 2016 ddfaf07 tar (md5 pgp)
zip (md5 pgp)
1.7.1 18 Mar 2016 11cb0a8 tar (md5 pgp)
zip (md5 pgp)

Choose a source distribution in either tar or zip format.

For fast downloads, current source distributions are hosted on mirror servers; older source distributions are in the archive. If a download from a mirror fails, retry, and the second download will likely succeed.

For security, hash and signature files are always hosted at Apache.

Verify the integrity of the files

You must verify the integrity of the downloaded file using the PGP signature (.asc file) or a hash (.sha256, .md5 for older releases). For more information why this must be done, please read Verifying Apache Software Foundation Releases.

To verify the signature using GPG or PGP, please do the following:

  1. Download the release artifact and the corresponding PGP signature from the table above.
  2. Download the Apache Calcite KEYS file.
  3. Import the KEYS file and verify the downloaded artifact using one of the following methods:
% gpg --import KEYS
% gpg --verify downloaded_file.asc downloaded_file

or

% pgpk -a KEYS
% pgpv downloaded_file.asc

or

% pgp -ka KEYS
% pgp downloaded_file.asc

Maven artifacts

Add the following to the dependencies section of your pom.xml file:

<dependencies>
  <dependency>
    <groupId>org.apache.calcite.avatica</groupId>
    <artifactId>avatica</artifactId>
    <version>5.3.0</version>
  </dependency>
  <dependency>
    <groupId>org.apache.calcite.avatica</groupId>
    <artifactId>avatica-server</artifactId>
    <version>5.3.0</version>
  </dependency>
</dependencies>

As of Apache Calcite Avatica 1.9.0, the following un-shaded client artifact is also available:

<dependencies>
  <dependency>
    <groupId>org.apache.calcite.avatica</groupId>
    <artifactId>avatica-core</artifactId>
    <version>5.3.0</version>
  </dependency>
</dependencies>

Docker images

From release 1.10.0 onwards, Docker images for Avatica Server are available at Docker Hub.