-
Notifications
You must be signed in to change notification settings - Fork 293
feat(docs): Add Getting Stated guide for MinIO #2227
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,37 @@ | ||
# | ||
# 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. | ||
# | ||
|
||
set -e | ||
|
||
apk add --no-cache jq | ||
|
||
realm=${1:-"POLARIS"} | ||
|
||
TOKEN=$(curl -s http://polaris:8181/api/catalog/v1/oauth/tokens \ | ||
--user ${CLIENT_ID}:${CLIENT_SECRET} \ | ||
-H "Polaris-Realm: $realm" \ | ||
-d grant_type=client_credentials \ | ||
-d scope=PRINCIPAL_ROLE:ALL | jq -r .access_token) | ||
|
||
if [ -z "${TOKEN}" ]; then | ||
echo "Failed to obtain access token." | ||
exit 1 | ||
fi | ||
|
||
export TOKEN |
This file contains hidden or 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,90 @@ | ||
<!-- | ||
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. | ||
--> | ||
|
||
# Getting Started with Apache Polaris and MinIO | ||
|
||
## Overview | ||
|
||
This example uses MinIO as a storage provider with Polaris. | ||
|
||
Spark is used as a query engine. This example assumes a local Spark installation. | ||
See the [Spark Notebooks Example](../spark/README.md) for a more advanced Spark setup. | ||
|
||
## Starting the Example | ||
|
||
1. Build the Polaris server image if it's not already present locally: | ||
|
||
```shell | ||
./gradlew \ | ||
:polaris-server:assemble \ | ||
:polaris-server:quarkusAppPartsBuild --rerun \ | ||
-Dquarkus.container-image.build=true | ||
``` | ||
|
||
2. Start the docker compose group by running the following command from the root of the repository: | ||
|
||
```shell | ||
docker compose -f getting-started/minio/docker-compose.yml up | ||
``` | ||
|
||
## Connecting From Spark | ||
|
||
```shell | ||
bin/spark-sql \ | ||
--packages org.apache.iceberg:iceberg-spark-runtime-3.5_2.12:1.9.0,org.apache.iceberg:iceberg-aws-bundle:1.9.0 \ | ||
--conf spark.sql.extensions=org.apache.iceberg.spark.extensions.IcebergSparkSessionExtensions \ | ||
--conf spark.sql.catalog.polaris=org.apache.iceberg.spark.SparkCatalog \ | ||
--conf spark.sql.catalog.polaris.type=rest \ | ||
--conf spark.sql.catalog.polaris.uri=http://localhost:8181/api/catalog \ | ||
--conf spark.sql.catalog.polaris.token-refresh-enabled=false \ | ||
--conf spark.sql.catalog.polaris.warehouse=quickstart_catalog \ | ||
--conf spark.sql.catalog.polaris.scope=PRINCIPAL_ROLE:ALL \ | ||
--conf spark.sql.catalog.polaris.header.X-Iceberg-Access-Delegation=vended-credentials \ | ||
--conf spark.sql.catalog.polaris.credential=root:s3cr3t | ||
``` | ||
|
||
Note: `s3cr3t` is defined as the password for the `root` users in the `docker-compose.yml` file. | ||
|
||
## Running Queries | ||
|
||
Run inside the Spark SQL shell: | ||
|
||
``` | ||
spark-sql (default)> use polaris; | ||
Time taken: 0.837 seconds | ||
|
||
spark-sql ()> create namespace ns; | ||
Time taken: 0.374 seconds | ||
|
||
spark-sql ()> create table ns.t1 as select 'abc'; | ||
Time taken: 2.192 seconds | ||
|
||
spark-sql ()> select * from ns.t1; | ||
abc | ||
Time taken: 0.579 seconds, Fetched 1 row(s) | ||
``` | ||
|
||
## MinIO Endpoints | ||
|
||
Note that the catalog configuration defined in the `docker-compose.yml` contains | ||
different endpoints for the Polaris Server and the client (Spark). Specifically, | ||
the client endpoint is `http://localhost:9000`, but `endpointInternal` is `http://minio:9000`. | ||
|
||
This is necessary because clients running on `localhost` do not normally see service | ||
names (such as `minio`) that are internal to the docker compose environment. |
This file contains hidden or 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,112 @@ | ||
# | ||
# 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. | ||
# | ||
|
||
services: | ||
|
||
minio: | ||
image: quay.io/minio/minio:latest | ||
ports: | ||
# API port | ||
- "9000:9000" | ||
# UI port | ||
- "9001:9001" | ||
environment: | ||
MINIO_ROOT_USER: minio_root | ||
MINIO_ROOT_PASSWORD: m1n1opwd | ||
command: | ||
- "server" | ||
- "/data" | ||
- "--console-address" | ||
- ":9001" | ||
healthcheck: | ||
test: ["CMD", "curl", "http://127.0.0.1:9000/minio/health/live"] | ||
interval: 1s | ||
timeout: 10s | ||
|
||
polaris: | ||
image: apache/polaris:latest | ||
ports: | ||
# API port | ||
- "8181:8181" | ||
# Optional, allows attaching a debugger to the Polaris JVM | ||
- "5005:5005" | ||
depends_on: | ||
minio: | ||
condition: service_healthy | ||
environment: | ||
JAVA_DEBUG: true | ||
JAVA_DEBUG_PORT: "*:5005" | ||
AWS_REGION: us-west-2 | ||
AWS_ACCESS_KEY_ID: minio_root | ||
AWS_SECRET_ACCESS_KEY: m1n1opwd | ||
POLARIS_BOOTSTRAP_CREDENTIALS: POLARIS,root,s3cr3t | ||
polaris.realm-context.realms: POLARIS | ||
quarkus.otel.sdk.disabled: "true" | ||
healthcheck: | ||
test: ["CMD", "curl", "http://localhost:8182/q/health"] | ||
interval: 2s | ||
timeout: 10s | ||
retries: 10 | ||
start_period: 10s | ||
|
||
setup_bucket: | ||
image: quay.io/minio/mc:latest | ||
depends_on: | ||
minio: | ||
condition: service_healthy | ||
entrypoint: "/bin/sh" | ||
command: | ||
- "-c" | ||
- >- | ||
echo Creating MinIO bucket...; | ||
mc alias set pol http://minio:9000 minio_root m1n1opwd; | ||
mc mb pol/bucket123; | ||
mc ls pol; | ||
echo Bucket setup complete.; | ||
|
||
polaris-setup: | ||
image: alpine/curl | ||
depends_on: | ||
polaris: | ||
condition: service_healthy | ||
environment: | ||
- CLIENT_ID=root | ||
- CLIENT_SECRET=s3cr3t | ||
volumes: | ||
- ../assets/polaris/:/polaris | ||
entrypoint: "/bin/sh" | ||
command: | ||
- "-c" | ||
- >- | ||
chmod +x /polaris/create-catalog.sh; | ||
chmod +x /polaris/obtain-token.sh; | ||
source /polaris/obtain-token.sh; | ||
echo Creating catalog...; | ||
export STORAGE_CONFIG_INFO='{"storageType":"S3", | ||
"endpoint":"http://localhost:9000", | ||
"endpointInternal":"http://minio:9000", | ||
"pathStyleAccess":true}'; | ||
export STORAGE_LOCATION='s3://bucket123'; | ||
/polaris/create-catalog.sh POLARIS $$TOKEN; | ||
echo Extra grants...; | ||
curl -H "Authorization: Bearer $$TOKEN" -H 'Content-Type: application/json' \ | ||
-X PUT \ | ||
http://polaris:8181/api/management/v1/catalogs/quickstart_catalog/catalog-roles/catalog_admin/grants \ | ||
-d '{"type":"catalog", "privilege":"CATALOG_MANAGE_CONTENT"}'; | ||
echo Done.; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't we modify
create-catalog.sh
to call this script? Right now the token fetch logic is duplicated.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
refactored. PTAL