WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 67be7ac

Browse files
committed
Release 0.3
1 parent 2303f8c commit 67be7ac

File tree

4 files changed

+9
-36
lines changed

4 files changed

+9
-36
lines changed

cuelake.yaml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,14 @@ data:
88
# POSTGRES_DB_USERNAME: postgres
99
# POSTGRES_DB_PASSWORD: postgres
1010
# POSTGRES_DB_SCHEMA: cuelake
11-
# POSTGRES_DB_PORT: 5432
12-
13-
## S3 Settings
14-
# export S3_BUCKET_NAME="YourBucketName"
15-
# export S3_FILES_PREFIX="files/"
16-
# export HADOOP_S3_PREFIX="cuelake/"
11+
# POSTGRES_DB_PORT: '5432'
1712

1813
## Change below properties to point to your metastore database
19-
# METASTORE_POSTGRES_HOST="localhost"
20-
# METASORE_POSTGRES_PORT=5432
21-
# METASORE_POSTGRES_USERNAME="postgres"
22-
# METASORE_POSTGRES_PASSWORD="postgres"
23-
# METASORE_POSTGRES_DATABASE="cuelake_metastore"
14+
# METASTORE_POSTGRES_HOST: localhost
15+
# METASORE_POSTGRES_PORT: '5432'
16+
# METASORE_POSTGRES_USERNAME: postgres
17+
# METASORE_POSTGRES_PASSWORD: postgres
18+
# METASORE_POSTGRES_DATABASE: cuelake_metastore
2419
---
2520
apiVersion: v1
2621
kind: ConfigMap
@@ -129,7 +124,7 @@ spec:
129124
path: nginx.conf
130125
containers:
131126
- name: zeppelin-server
132-
image: cuebook/zeppelin-server-lite:0.2
127+
image: cuebook/zeppelin-server-lite:0.3
133128
command: ["sh", "-c"]
134129
args:
135130
- curl https://raw.githubusercontent.com/cuebook/cuelake/main/zeppelinConf/zeppelin-env.sh -o $(ZEPPELIN_HOME)/conf/zeppelin-env.sh && curl https://raw.githubusercontent.com/cuebook/cuelake/main/zeppelinConf/zeppelin-site.xml -o $(ZEPPELIN_HOME)/conf/zeppelin-site.xml && $(ZEPPELIN_HOME)/bin/zeppelin.sh
@@ -290,7 +285,7 @@ spec:
290285
claimName: lakehouse-db-volume-pvc
291286
containers:
292287
- name: lakehouse
293-
image: cuebook/lakehouse:0.2
288+
image: cuebook/lakehouse:0.3
294289
resources:
295290
requests:
296291
memory: "2560Mi"

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You should see 3 pods in running status, something like below:
2727
NAME READY STATUS RESTARTS AGE
2828
lakehouse-74cd5d759b-8pj5c 1/1 Running 0 1m
2929
redis-69cc674bf8-rsd74 1/1 Running 0 1m
30-
zeppelin-server-865974dc55-rt9vg 3/3 Running 0 1m
30+
zeppelin-server-main-865974dc55-rt9vg 3/3 Running 0 1m
3131
```
3232

3333
Now visit [http://localhost:8080](http://localhost:8080) in your browser.

docs/index.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@ A lakehouse is a new, open architecture that combines the best elements of data
6565

6666
### Current Limitations
6767
* Supports AWS S3 as a destination. Support for ADLS and GCS is in the roadmap.
68-
* Uses Apache Iceberg as an open table format. Delta support is in the roadmap.
69-
* Uses Celery for scheduling jobs. Support for Airflow is in the roadmap.
7068

7169

7270
# Support

docs/installation.md

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -81,26 +81,6 @@ POSTGRES_DB_SCHEMA="cuelake_db"
8181
POSTGRES_DB_PORT=5432
8282
```
8383

84-
### S3 Settings
85-
Name of the S3 bucket being used as your data warehouse location. This will be also used for uploading files via CueLake.
86-
87-
```yaml
88-
S3_BUCKET_NAME="YourBucketName"
89-
```
90-
91-
Default directory for uplaoding files is s3://<YourBucketName>/files. If you wish to change it you can do so by setting S3_FILES_PREFIX property.
92-
93-
```yaml
94-
S3_FILES_PREFIX="files/"
95-
```
96-
97-
Default directory for iceberg tables (hadoop catalog) is s3://<YourBucketName>/cuelake. If you wish to change it you can do so by setting HADOOP_S3_PREFIX property.
98-
99-
```yaml
100-
HADOOP_S3_PREFIX="cuelake/"
101-
```
102-
103-
If you change HADOOP_S3_PREFIX, please change the spark interpreter setting `spark.sql.catalog.cuelake.warehouse` accordingly.
10484

10585
### Metastore DB Settings
10686
We currently support Postgres as spark metastore database. Information related to saved spark tables and views get stored here. If not set the tables and views will be destroyed on every interpreter restart.

0 commit comments

Comments
 (0)