-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: tison <[email protected]>
- Loading branch information
Showing
3 changed files
with
69 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<!--- | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
--> | ||
|
||
# Download | ||
|
||
The official Apache DataFusion releases are provided as source artifacts. | ||
|
||
## Releases | ||
|
||
The latest source release is [37.0.0][source-link] ([asc][asc-link], | ||
[sha512][sha512-link]). | ||
|
||
[source-link]: https://www.apache.org/dyn/closer.lua/arrow/arrow-datafusion-37.0.0/apache-arrow-datafusion-37.0.0.tar.gz?action=download | ||
[asc-link]: https://www.apache.org/dyn/closer.lua/arrow/arrow-datafusion-37.0.0/apache-arrow-datafusion-37.0.0.tar.gz.asc?action=download | ||
[sha512-link]: https://www.apache.org/dyn/closer.lua/arrow/arrow-datafusion-37.0.0/apache-arrow-datafusion-37.0.0.tar.gz.sha512?action=download | ||
|
||
For older releases, please check the [archive](https://archive.apache.org/dist/datafusion/). | ||
|
||
For even older releases when DataFusion is a subproject of Apache Arrow, please check [Arrow's archive](https://archive.apache.org/dist/arrow/). | ||
|
||
## Notes | ||
|
||
- When downloading a release, please verify the OpenPGP compatible signature (or failing that, check the SHA-512); these should be fetched from the main Apache site. | ||
- The KEYS file contains the public keys used for signing release. It is recommended that (when possible) a web of trust is used to confirm the identity of these keys. | ||
- Please download the [KEYS](https://downloads.apache.org/datafusion/KEYS) as well as the .asc signature files. | ||
|
||
### To verify the signature of the release artifact | ||
|
||
You will need to download both the release artifact and the .asc signature file for that artifact. Then verify the signature by: | ||
|
||
- Download the KEYS file and the .asc signature files for the relevant release artifacts. | ||
- Import the KEYS file to your GPG keyring: | ||
|
||
```shell | ||
gpg --import KEYS | ||
``` | ||
|
||
- Verify the signature of the release artifact using the following command: | ||
|
||
```shell | ||
gpg --verify <artifact>.asc <artifact> | ||
``` | ||
|
||
### To verify the checksum of the release artifact | ||
|
||
You will need to download both the release artifact and the .sha512 checksum file for that artifact. Then verify the checksum by: | ||
|
||
```shell | ||
shasum -a 512 -c <artifact>.sha512 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters