Skip to main content

Release List

Download

Use the links below to download the Apache Linkis Releases, the latest release is 1.5.0

VersionRelease DateSourceBinaryWeb BinaryRelease Notes
1.5.02023-12-27[Source] [Sign] [SHA512][Binary] [Sign] [SHA512][Binary] [Sign] [SHA512]Release-Notes
1.4.02023-08-05[Source] [Sign] [SHA512][Binary] [Sign] [SHA512][Binary] [Sign] [SHA512]Release-Notes
1.3.22023-04-03[Source] [Sign] [SHA512][Binary] [Sign] [SHA512][Binary] [Sign] [SHA512]Release-Notes
1.3.12023-01-18[Source] [Sign] [SHA512][Binary] [Sign] [SHA512][Binary] [Sign] [SHA512]Release-Notes
1.3.02022-10-25[Source] [Sign] [SHA512][Binary] [Sign ][SHA512][Binary] [Sign] [SHA512]Release-Notes
1.2.02022-09-05[Source] [Sign] [SHA512][Binary] [Sign ][SHA512][Binary] [Sign] [SHA512]Release-Notes
1.1.32022-08-01[Source] [Sign] [SHA512][Binary] [Sign ][SHA512][Binary] [Sign] [SHA512]Release-Notes
1.1.22022-07-04[Source] [Sign] [SHA512][Binary] [Sign ][SHA512][Binary] [Sign] [SHA512]Release-Notes
1.1.12022-05-24[Source] [Sign] [SHA512][Binary] [Sign ][SHA512][Binary] [Sign] [SHA512]Release-Notes
1.1.02022-04-15[Source] [Sign] [SHA512][Binary] [Sign ][SHA512][Binary] [Sign] [SHA512]Release-Notes
1.0.32022-01-29[Source] [Sign] [SHA512][Binary] [Sign ][SHA512][Binary] [Sign] [SHA512]Release-Notes
1.0.2
(Non-ASF)
2021-09-02[Source][Binary]Release-Notes

Release Integrity

You must verify the integrity of the downloaded files. We provide OpenPGP signatures for every release file. This signature should be matched against the KEYS file which contains the OpenPGP keys of Linkis's Release Managers. We also provide SHA-512 checksums for every release file. After you download the file, you should calculate a checksum for your download, and make sure it is the same as ours.

validation example:

#download public key
$ curl https://downloads.apache.org/incubator/linkis/KEYS > KEYS

#Import public key
$ gpg -i KEYS

# Check gpg signature
$ gpg --verify apache-linkis-xxxxx.tar.gz.asc apache-linkis-xxxxx.tar.gz

# check sha512 hash
$ sha512sum --check apache-linkis-xxxxx-src.tar.gz.sha512

Source Code Compilation

If it is the downloaded version of the Source code package, you can compile it according to the following simple steps

$ tar -xvf apache-linkis-xxxxx-incubating-src.tar.gz

$ cd apache-linkis-xxxxx-incubating-src

#If this source code package is compiled for the first time, you need to execute this command, which is usually completed within 3 minutes
$ ./mvnw -N install

#If the performance of the machine where the compilation is located is relatively poor, this process will be time-consuming, usually about 30min
$ ./mvnw clean install -Dmaven.javadoc.skip=true -Dmaven.test.skip=true

For detailed guidelines, please refer to: Compilation and Packaging Guidelines