Skip to content

Commit 4e8b6e9

Browse files
committed
Merge branch 'develop'
2 parents cdb74c3 + 36d7948 commit 4e8b6e9

File tree

385 files changed

+3351
-2482
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

385 files changed

+3351
-2482
lines changed

.env.docker

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ ONETL_S3_PORT=9000
8383
ONETL_S3_ACCESS_KEY=onetl
8484
ONETL_S3_SECRET_KEY=123UsedForTestOnly@!
8585
ONETL_S3_BUCKET=onetl
86+
ONETL_S3_REGION=us-east-1
8687

8788
# HDFS
8889
ONETL_HDFS_HOST=hdfs
@@ -110,3 +111,7 @@ ONETL_WEBDAV_HOST=webdav
110111
ONETL_WEBDAV_PORT=80
111112
ONETL_WEBDAV_USER=onetl
112113
ONETL_WEBDAV_PASSWORD=123UsedForTestOnly@!
114+
115+
# Iceberg REST Catalog
116+
ONETL_ICEBERG_REST_CATALOG_HOST=iceberg-rest
117+
ONETL_ICEBERG_REST_CATALOG_PORT=8181

.env.local

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ export ONETL_S3_PORT=9010
8383
export ONETL_S3_ACCESS_KEY=onetl
8484
export ONETL_S3_SECRET_KEY=123UsedForTestOnly@!
8585
export ONETL_S3_BUCKET=onetl
86+
export ONETL_S3_REGION=us-east-1
8687

8788
# HDFS
8889
export ONETL_HDFS_HOST=localhost
@@ -110,3 +111,7 @@ export ONETL_WEBDAV_HOST=localhost
110111
export ONETL_WEBDAV_PORT=8000
111112
export ONETL_WEBDAV_USER=onetl
112113
export ONETL_WEBDAV_PASSWORD=123UsedForTestOnly@!
114+
115+
# Iceberg REST Catalog
116+
export ONETL_ICEBERG_REST_CATALOG_HOST=localhost
117+
export ONETL_ICEBERG_REST_CATALOG_PORT=8181

.github/labels.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,6 @@
7878
description: Postgres-related
7979
color: 1077a6
8080

81-
- name: db:teradata
82-
description: Teradata-related
83-
color: 04115d
84-
8581
- name: file:ftp
8682
description: FTP-related
8783
color: e41c74

.github/workflows/cache-cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Check out code
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121

2222
- name: Cleanup cache
2323
run: |

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout code
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
fetch-depth: 0
2929

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232

3333
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
3434
uses: actions/setup-python@v6
@@ -87,7 +87,7 @@ jobs:
8787

8888
steps:
8989
- name: Checkout repository
90-
uses: actions/checkout@v5
90+
uses: actions/checkout@v6
9191

9292
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
9393
uses: actions/setup-python@v6
@@ -96,11 +96,11 @@ jobs:
9696

9797
# Initializes the CodeQL tools for scanning.
9898
- name: Initialize CodeQL
99-
uses: github/codeql-action/init@v3
99+
uses: github/codeql-action/init@v4
100100
with:
101101
languages: python
102102

103103
- name: Perform CodeQL Analysis
104-
uses: github/codeql-action/analyze@v3
104+
uses: github/codeql-action/analyze@v4
105105
with:
106106
category: /language:python

.github/workflows/data/clickhouse/matrix.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
3_5_x: &3_5_x
1212
clickhouse-image: clickhouse/clickhouse-server
13-
clickhouse-version: 25.8-alpine
14-
spark-version: 3.5.6
13+
clickhouse-version: 25.9-alpine
14+
spark-version: 3.5.7
1515
pydantic-version: 2
1616
python-version: '3.13'
1717
java-version: 20
1818
os: ubuntu-latest
1919

2020
4_0_x: &4_0_x
2121
clickhouse-image: clickhouse/clickhouse-server
22-
clickhouse-version: 25.8-alpine
23-
spark-version: 4.0.0
22+
clickhouse-version: 25.9-alpine
23+
spark-version: 4.0.1
2424
pydantic-version: 2
2525
python-version: '3.13'
2626
# https://stackoverflow.com/a/79017758/23601543

.github/workflows/data/core/matrix.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
os: ubuntu-22.04
77

88
3_5_x: &3_5_x
9-
spark-version: 3.5.6
9+
spark-version: 3.5.7
1010
pydantic-version: 2
1111
python-version: '3.13'
1212
java-version: 20
1313
os: ubuntu-latest
1414

1515
4_0_x: &4_0_x
16-
spark-version: 4.0.0
16+
spark-version: 4.0.1
1717
pydantic-version: 2
1818
python-version: '3.13'
1919
# https://stackoverflow.com/a/79017758/23601543

.github/workflows/data/hdfs/matrix.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88

99
3_5_x: &3_5_x
1010
hadoop-version: hadoop3-hdfs
11-
spark-version: 3.5.6
11+
spark-version: 3.5.7
1212
pydantic-version: 2
1313
python-version: '3.13'
1414
java-version: 20
1515
os: ubuntu-latest
1616

1717
4_0_x: &4_0_x
1818
hadoop-version: hadoop3-hdfs
19-
spark-version: 4.0.0
19+
spark-version: 4.0.1
2020
pydantic-version: 2
2121
python-version: '3.13'
2222
# https://stackoverflow.com/a/79017758/23601543

.github/workflows/data/hive/matrix.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
os: ubuntu-22.04
77

88
3_5_x: &3_5_x
9-
spark-version: 3.5.6
9+
spark-version: 3.5.7
1010
pydantic-version: 2
1111
python-version: '3.13'
1212
java-version: 20
1313
os: ubuntu-latest
1414

1515
4_0_x: &4_0_x
16-
spark-version: 4.0.0
16+
spark-version: 4.0.1
1717
pydantic-version: 2
1818
python-version: '3.13'
1919
# https://stackoverflow.com/a/79017758/23601543

0 commit comments

Comments
 (0)