-
Notifications
You must be signed in to change notification settings - Fork 989
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
593 additions
and
174 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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
################################################################################ | ||
# 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. | ||
################################################################################ | ||
|
||
name: End to End Procedures Tests (Flink 1.18) | ||
|
||
on: | ||
push: | ||
pull_request: | ||
paths-ignore: | ||
- 'docs/**' | ||
- '**/*.md' | ||
|
||
env: | ||
JDK_VERSION: 8 | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event.number || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Set up JDK ${{ env.JDK_VERSION }} | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: ${{ env.JDK_VERSION }} | ||
distribution: 'adopt' | ||
- name: Build and Test Flink 1.18 Procedures | ||
timeout-minutes: 10 | ||
run: | | ||
# run tests with random timezone to find out timezone related bugs | ||
. .github/workflows/utils.sh | ||
jvm_timezone=$(random_timezone) | ||
echo "JVM timezone is set to $jvm_timezone" | ||
mvn -T 1C -B clean install -DskipTests -Pflink-1.18 | ||
mvn -T 1C -B test -pl FlinkProceduresE2eTest -Duser.timezone=$jvm_timezone -Pflink-1.18 | ||
env: | ||
MAVEN_OPTS: -Xmx4096m |
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
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
119 changes: 119 additions & 0 deletions
119
paimon-e2e-tests/src/test/java/org/apache/paimon/tests/FlinkProceduresE2eTest.java
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,119 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
package org.apache.paimon.tests; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.condition.EnabledIfSystemProperty; | ||
|
||
import java.util.UUID; | ||
|
||
/** Tests for flink {@code Procedure}s. */ | ||
@EnabledIfSystemProperty(named = "test.flink.version", matches = "1.18.*") | ||
public class FlinkProceduresE2eTest extends E2eTestBase { | ||
|
||
public FlinkProceduresE2eTest() { | ||
super(true, true); | ||
} | ||
|
||
@Test | ||
public void testCompact() throws Exception { | ||
String topicName = "ts-topic-" + UUID.randomUUID(); | ||
createKafkaTopic(topicName, 1); | ||
// prepare first part of test data | ||
sendKafkaMessage("1.csv", "20221205,1,100\n20221206,1,100\n20221207,1,100", topicName); | ||
|
||
// create hive catalog to test catalog loading | ||
String warehouse = HDFS_ROOT + "/" + UUID.randomUUID() + ".warehouse"; | ||
String catalogDdl = | ||
String.format( | ||
"CREATE CATALOG ts_catalog WITH (\n" | ||
+ " 'type' = 'paimon',\n" | ||
+ " 'warehouse' = '%s',\n" | ||
+ " 'metastore' = 'hive',\n" | ||
+ " 'uri' = 'thrift://hive-metastore:9083'\n" | ||
+ ");", | ||
warehouse); | ||
String useCatalogCmd = "USE CATALOG ts_catalog;"; | ||
|
||
String testDataSourceDdl = | ||
String.format( | ||
"CREATE TEMPORARY TABLE test_source (\n" | ||
+ " dt STRING,\n" | ||
+ " k INT,\n" | ||
+ " v INT" | ||
+ ") WITH (\n" | ||
+ " 'connector' = 'kafka',\n" | ||
+ " 'properties.bootstrap.servers' = 'kafka:9092',\n" | ||
+ " 'properties.group.id' = 'testGroup',\n" | ||
+ " 'scan.startup.mode' = 'earliest-offset',\n" | ||
+ " 'topic' = '%s',\n" | ||
+ " 'format' = 'csv'\n" | ||
+ ");", | ||
topicName); | ||
|
||
String tableDdl = | ||
"CREATE TABLE IF NOT EXISTS ts_table (\n" | ||
+ " dt STRING,\n" | ||
+ " k INT,\n" | ||
+ " v INT,\n" | ||
+ " PRIMARY KEY (dt, k) NOT ENFORCED\n" | ||
+ ") PARTITIONED BY (dt) WITH (\n" | ||
+ " 'changelog-producer' = 'full-compaction',\n" | ||
+ " 'changelog-producer.compaction-interval' = '1s',\n" | ||
+ " 'write-only' = 'true'\n" | ||
+ ");"; | ||
|
||
// insert data into paimon | ||
runSql( | ||
"SET 'execution.checkpointing.interval' = '1s';\n" | ||
+ "INSERT INTO ts_table SELECT * FROM test_source;", | ||
catalogDdl, | ||
useCatalogCmd, | ||
tableDdl, | ||
testDataSourceDdl); | ||
|
||
// execute compact procedure | ||
runSql( | ||
"SET 'execution.checkpointing.interval' = '1s';\n" | ||
+ "CALL compact('default.ts_table', 'dt=20221205', 'dt=20221206');", | ||
catalogDdl, | ||
useCatalogCmd); | ||
|
||
// read all data from paimon | ||
runSql( | ||
"INSERT INTO result1 SELECT * FROM ts_table;", | ||
catalogDdl, | ||
useCatalogCmd, | ||
tableDdl, | ||
createResultSink("result1", "dt STRING, k INT, v INT")); | ||
|
||
// check that first part of test data are compacted | ||
checkResult("20221205, 1, 100", "20221206, 1, 100"); | ||
|
||
// prepare second part of test data | ||
sendKafkaMessage("2.csv", "20221205,1,101\n20221206,1,101\n20221207,1,101", topicName); | ||
|
||
// check that second part of test data are compacted | ||
checkResult("20221205, 1, 101", "20221206, 1, 101"); | ||
} | ||
|
||
private void runSql(String sql, String... ddls) throws Exception { | ||
runSql(String.join("\n", ddls) + "\n" + sql); | ||
} | ||
} |
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,85 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
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. | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.apache.paimon</groupId> | ||
<artifactId>paimon-flink</artifactId> | ||
<version>0.6-SNAPSHOT</version> | ||
</parent> | ||
|
||
<packaging>jar</packaging> | ||
|
||
<artifactId>paimon-flink-1.18</artifactId> | ||
<name>Paimon : Flink : 1.18</name> | ||
|
||
<properties> | ||
<flink.version>1.18-SNAPSHOT</flink.version> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.paimon</groupId> | ||
<artifactId>paimon-flink-common</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.paimon</groupId> | ||
<artifactId>paimon-flink-cdc</artifactId> | ||
<version>${project.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>*</groupId> | ||
<artifactId>*</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-shade-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>shade-paimon</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>shade</goal> | ||
</goals> | ||
<configuration> | ||
<artifactSet> | ||
<includes combine.children="append"> | ||
<include>org.apache.paimon:paimon-flink-common</include> | ||
<include>org.apache.paimon:paimon-flink-cdc</include> | ||
</includes> | ||
</artifactSet> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
Oops, something went wrong.