This is an automated email from the ASF dual-hosted git repository.
fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/main by this push:
new b752b742e4 docs: Update Quickstart to Hive 4.0.0 (#10325)
b752b742e4 is described below
commit b752b742e4d114df07e285dba018cda3cd7c5261
Author: 911432 <[email protected]>
AuthorDate: Mon May 13 15:54:32 2024 +0900
docs: Update Quickstart to Hive 4.0.0 (#10325)
---
site/docs/hive-quickstart.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/site/docs/hive-quickstart.md b/site/docs/hive-quickstart.md
index 80247525f7..c110d56f63 100644
--- a/site/docs/hive-quickstart.md
+++ b/site/docs/hive-quickstart.md
@@ -35,11 +35,11 @@ highlight some powerful features. You can learn more about
Iceberg's Hive runtim
The fastest way to get started is to use [Apache Hive
images](https://hub.docker.com/r/apache/hive)
which provides a SQL-like interface to create and query Iceberg tables from
your laptop. You need to install the [Docker
Desktop](https://www.docker.com/products/docker-desktop/).
-Take a look at the Tags tab in [Apache Hive docker
images](https://hub.docker.com/r/apache/hive/tags?page=1&ordering=-last_updated)
to see the available Hive versions.
+Take a look at the Tags tab in [Apache Hive docker
images](https://hub.docker.com/r/apache/hive/tags?ordering=last_updated) to see
the available Hive versions.
Set the version variable.
```sh
-export HIVE_VERSION=4.0.0-beta-1
+export HIVE_VERSION=4.0.0
```
Start the container, using the option `--platform linux/amd64` for a Mac with
an M-Series chip:
@@ -108,7 +108,7 @@ SELECT * FROM nyc.taxis;
#### Adding Iceberg to Hive
-If you already have a Hive 4.0.0-alpha-1, or later, environment, it comes with
the Iceberg 0.13.1 included. No additional downloads or jars are needed. If you
have a Hive 2.3.x or Hive 3.1.x environment see [Enabling Iceberg support in
Hive](docs/latest/hive.md#enabling-iceberg-support-in-hive).
+If you already have a Hive 4.0.0, or later, environment, it comes with the
Iceberg 1.4.3 included. No additional downloads or jars are needed. If you have
a Hive 2.3.x or Hive 3.1.x environment see [Enabling Iceberg support in
Hive](docs/latest/hive.md#hive-23x-hive-31x).
#### Learn More