Skip to content
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

[test](e2ecase) Optimize doris container log print #277

Merged
merged 5 commits into from
Dec 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .github/workflows/run-e2ecase-12.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# 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: Run E2ECases 1.2
on:
pull_request:
push:

jobs:
build-extension:
name: "Run E2ECases 1.2"
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@master

- name: Setup java
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: '8'

- name: Run E2ECases
run: |
cd flink-doris-connector && mvn test -Dtest="*E2ECase" -Dimage="adamlee489/doris:1.2.7.1_x86"

Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
# under the License.
#
---
name: Run E2ECases
name: Run E2ECases 2.0
on:
pull_request:
push:

jobs:
build-extension:
name: "Run E2ECases"
name: "Run E2ECases 2.0"
runs-on: ubuntu-latest
defaults:
run:
Expand All @@ -40,5 +40,5 @@ jobs:

- name: Run E2ECases
run: |
cd flink-doris-connector && mvn test -Dtest="*E2ECase"
cd flink-doris-connector && mvn test -Dtest="*E2ECase" -Dimage="adamlee489/doris:2.0.3"

44 changes: 44 additions & 0 deletions .github/workflows/run-itcase-12.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# 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: Run ITCases 1.2
on:
pull_request:
push:

jobs:
build-extension:
name: "Run ITCases 1.2"
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@master

- name: Setup java
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: '8'

- name: Run ITCases
run: |
cd flink-doris-connector && mvn test -Dtest="*ITCase" -Dimage="adamlee489/doris:1.2.7.1_x86"

Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
# under the License.
#
---
name: Run ITCases
name: Run ITCases 2.0
on:
pull_request:
push:

jobs:
build-extension:
name: "Run ITCases"
name: "Run ITCases 2.0"
runs-on: ubuntu-latest
defaults:
run:
Expand All @@ -40,5 +40,5 @@ jobs:

- name: Run ITCases
run: |
cd flink-doris-connector && mvn test -Dtest="*ITCase"
cd flink-doris-connector && mvn test -Dtest="*ITCase" -Dimage="adamlee489/doris:2.0.3"

Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@
import java.util.stream.Stream;

import static org.awaitility.Awaitility.given;
import static org.awaitility.Durations.ONE_SECOND;

public abstract class DorisTestBase {
protected static final Logger LOG = LoggerFactory.getLogger(DorisTestBase.class);
// protected static final String DORIS_12_DOCKER_IMAGE = "adamlee489/doris:1.2.7.1_arm";
protected static final String DORIS_12_DOCKER_IMAGE = "adamlee489/doris:1.2.7.1_x86";
protected static final String DORIS_DOCKER_IMAGE = System.getProperty("image");
private static final String DRIVER_JAR =
"https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.16/mysql-connector-java-8.0.16.jar";
protected static final String DRIVER_CLASS = "com.mysql.cj.jdbc.Driver";
Expand All @@ -67,7 +67,8 @@ public static void startContainers() {
Startables.deepStart(Stream.of(DORIS_CONTAINER)).join();
given().ignoreExceptions()
.await()
.atMost(120, TimeUnit.SECONDS)
.atMost(300, TimeUnit.SECONDS)
.pollInterval(ONE_SECOND)
.untilAsserted(DorisTestBase::initializeJdbcConnection);
LOG.info("Containers are started.");
}
Expand All @@ -81,7 +82,7 @@ public static void stopContainers() {

public static GenericContainer createDorisContainer() {
GenericContainer container =
new GenericContainer<>(DORIS_12_DOCKER_IMAGE)
new GenericContainer<>(DORIS_DOCKER_IMAGE)
.withNetwork(Network.newNetwork())
.withNetworkAliases("DorisContainer")
.withEnv("FE_SERVERS", "fe1:127.0.0.1:9010")
Expand All @@ -94,7 +95,7 @@ public static GenericContainer createDorisContainer() {
.withPrivilegedMode(true)
.withLogConsumer(
new Slf4jLogConsumer(
DockerLoggerFactory.getLogger(DORIS_12_DOCKER_IMAGE)));
DockerLoggerFactory.getLogger(DORIS_DOCKER_IMAGE)));

container.setPortBindings(
Lists.newArrayList(
Expand Down Expand Up @@ -126,10 +127,10 @@ protected static void initializeJdbcConnection() throws SQLException, MalformedU
}

private static boolean isBeReady(ResultSet rs, Duration duration) throws SQLException {
LockSupport.parkNanos(duration.toNanos());
if (rs.next()) {
String isAlive = rs.getString(10).trim();
String totalCap = rs.getString(16).trim();
LockSupport.parkNanos(duration.toNanos());
String isAlive = rs.getString("Alive").trim();
String totalCap = rs.getString("TotalCapacity").trim();
return "true".equalsIgnoreCase(isAlive) && !"0.000".equalsIgnoreCase(totalCap);
}
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public void testMySQL2Doris() throws Exception {
Arrays.asList("doris_3", 3))
.collect(Collectors.toSet());
String sql =
"select * from %s.%s union all select * from %s.%s union all select * from %s.%s order by 1";
"select * from ( select * from %s.%s union all select * from %s.%s union all select * from %s.%s ) res order by 1";
checkResult(expected, sql, 2);

// add incremental data
Expand Down Expand Up @@ -135,7 +135,7 @@ public void testMySQL2Doris() throws Exception {
Arrays.asList("doris_3_1", 12))
.collect(Collectors.toSet());
sql =
"select * from %s.%s union all select * from %s.%s union all select * from %s.%s order by 1";
"select * from ( select * from %s.%s union all select * from %s.%s union all select * from %s.%s ) res order by 1";
checkResult(expected2, sql, 2);

// mock schema change
Expand Down
Loading