Downloads

Calcite is released as a source artifact, and also through Maven.

Source releases

Release Date Commit Download
1.36.0 10 Nov 2023 0be8eae tar (digest pgp)
1.35.0 26 Jul 2023 75750b7 tar (digest pgp)
1.34.0 14 Mar 2023 7dfd641 tar (digest pgp)
1.33.0 07 Feb 2023 5ad825c tar (digest pgp)
1.32.0 10 Sep 2022 413eded tar (digest pgp)
1.31.0 02 Aug 2022 86d1bf4 tar (digest pgp)
1.30.0 19 Mar 2022 cd5229b tar (digest pgp)
1.29.0 25 Dec 2021 cbfe060 tar (digest pgp)
1.28.0 19 Oct 2021 dec167a tar (digest pgp)
1.27.0 03 Jun 2021 60f0711 tar (digest pgp)
1.26.0 06 Oct 2020 cfa37c3 tar (digest pgp)
1.25.0 22 Aug 2020 68b02df tar (digest pgp)
1.24.0 23 Jul 2020 4b5b910 tar (digest pgp)
1.23.0 23 May 2020 b708fdc tar (digest pgp)
1.22.0 05 Mar 2020 537b8db tar (digest pgp)
1.21.0 11 Sep 2019 adc1532 tar (digest pgp)
1.20.0 24 Jun 2019 31a3321 tar (digest pgp)
1.19.0 25 Mar 2019 4143176 tar (digest pgp)
1.18.0 21 Dec 2018 27d8839 tar (digest pgp)
1.17.0 20 Jul 2018 c2b3a99 tar (digest pgp)
1.16.0 19 Mar 2018 96b7306 tar (digest pgp)
zip (digest pgp)
1.15.0 11 Dec 2017 a2aa00e tar (digest pgp)
zip (digest pgp)
1.14.0 02 Oct 2017 7426eef tar (digest pgp)
zip (digest pgp)
1.13.0 26 Jun 2017 54b9823 tar (digest pgp)
zip (digest pgp)
1.12.0 24 Mar 2017 ea7ace1 tar (digest pgp)
zip (digest pgp)
1.11.0 09 Jan 2017 f8ba670 tar (digest pgp)
zip (digest pgp)
1.10.0 12 Oct 2016 448dd85 tar (digest pgp)
zip (digest pgp)
1.9.0 22 Sep 2016 08c56b1 tar (digest pgp)
zip (digest pgp)
1.8.0 13 Jun 2016 aeb6bf1 tar (digest pgp)
zip (digest pgp)
1.7.0 22 Mar 2016 8eebfc6 tar (digest pgp)
zip (digest pgp)
1.6.0 22 Jan 2016 c4d346b tar (digest pgp)
zip (digest pgp)
1.5.0 10 Nov 2015 ba6e43c tar (digest pgp)
zip (digest pgp)
1.4.0-incubating 02 Sep 2015 0c0c203 tar (digest pgp)
zip (digest pgp)
1.3.0-incubating 30 May 2015 495f185 tar (digest pgp)
zip (digest pgp)
1.2.0-incubating 07 Apr 2015 d60f2aa tar (digest pgp)
zip (digest pgp)
1.1.0-incubating 13 Mar 2015 f10ea36 tar (digest pgp)
zip (digest pgp)
1.0.0-incubating 31 Jan 2015 2dd83f2 tar (digest pgp)
zip (digest pgp)
0.9.2-incubating 05 Nov 2014 0404fd2 tar (digest pgp)
zip (digest pgp)
0.9.1-incubating 02 Oct 2014 6801257 tar (digest pgp)
zip (digest pgp)
0.9.0-incubating 19 Aug 2014 45e5269 zip (digest pgp)

To download a source distribution for a particular release, click on the tar link (for older releases, zip format is also available).

The commit hash links to github, which contains the release’s version control history but does not contain the definitive source artifacts.

For fast downloads, current source distributions are hosted on mirror servers; older source distributions are in the archive or incubator 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</groupId>
    <artifactId>calcite-core</artifactId>
    <version>1.36.0</version>
  </dependency>
</dependencies>

Also include <dependency> elements for any extension modules you need: calcite-mongodb, calcite-spark, calcite-splunk, and so forth.