-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Close producer without state check while the topic does not exists. (#…
…7120) Fixes #6838 related to #6879 ### Motivation Close producer without state check while the topic does not exists. The problem is the `State` of the producer failed to pass the check condition so that the producer can't be closed. If TopicDoesNotExsitsException happens on a producer, we can directly close this producer without state checking for the producer.
- Loading branch information
1 parent
c74414c
commit 842996e
Showing
4 changed files
with
151 additions
and
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
# | ||
# 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: CI - Unit - Brokers - Others | ||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
|
||
unit-tests: | ||
name: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 120 | ||
|
||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- name: Check if this pull request only changes documentation | ||
id: docs | ||
uses: apache/pulsar-test-infra/diff-only@master | ||
with: | ||
args: site2 .github deployment .asf.yaml .ci ct.yaml | ||
|
||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
if: steps.docs.outputs.changed_only == 'no' | ||
with: | ||
java-version: 1.8 | ||
|
||
- name: Set up Maven | ||
uses: apache/pulsar-test-infra/setup-maven@master | ||
if: steps.docs.outputs.changed_only == 'no' | ||
with: | ||
maven-version: 3.6.1 | ||
|
||
- name: clean disk | ||
if: steps.docs.outputs.changed_only == 'no' | ||
run: | | ||
sudo swapoff /swapfile | ||
sudo rm -rf /swapfile /usr/share/dotnet /usr/local/lib/android /opt/ghc | ||
sudo apt clean | ||
docker rmi $(docker images -q) -f | ||
df -h | ||
- name: run unit tests install by skip tests | ||
if: steps.docs.outputs.changed_only == 'no' | ||
run: mvn clean install -DskipTests | ||
|
||
- name: run unit tests pulsar broker reader test | ||
if: steps.docs.outputs.changed_only == 'no' | ||
run: mvn test -DfailIfNoTests=false '-Dtest=ReaderTest' -pl pulsar-broker | ||
|
||
- name: run unit tests pulsar broker rack aware test | ||
if: steps.docs.outputs.changed_only == 'no' | ||
run: mvn test -DfailIfNoTests=false '-Dtest=RackAwareTest' -pl pulsar-broker | ||
|
||
- name: run unit tests pulsar broker simple producer consumer test | ||
if: steps.docs.outputs.changed_only == 'no' | ||
run: mvn test -DfailIfNoTests=false '-Dtest=SimpleProducerConsumerTest' -pl pulsar-broker | ||
|
||
- name: run unit tests pulsar broker V1 producer consumer test | ||
if: steps.docs.outputs.changed_only == 'no' | ||
run: mvn test -DfailIfNoTests=false '-Dtest=V1_ProducerConsumerTest' -pl pulsar-broker | ||
|
||
- name: run unit tests pulsar broker persistent failover end to end test | ||
if: steps.docs.outputs.changed_only == 'no' | ||
run: mvn test -DfailIfNoTests=false '-Dtest=PersistentFailoverE2ETest' -pl pulsar-broker | ||
|
||
- name: run unit tests pulsar broker client integration test | ||
if: steps.docs.outputs.changed_only == 'no' | ||
run: mvn test -DfailIfNoTests=false '-Dtest=BrokerClientIntegrationTest' -pl pulsar-broker | ||
|
||
- name: run unit tests pulsar broker replicatior rate limiter test | ||
if: steps.docs.outputs.changed_only == 'no' | ||
run: mvn test -DfailIfNoTests=false '-Dtest=ReplicatorRateLimiterTest' -pl pulsar-broker | ||
|
||
- name: run unit tests pulsar broker persistent dispatcher failover consumer test | ||
if: steps.docs.outputs.changed_only == 'no' | ||
run: mvn test -DfailIfNoTests=false '-Dtest=PersistentDispatcherFailoverConsumerTest' -pl pulsar-broker | ||
|
||
- name: run unit tests pulsar broker admin api test | ||
if: steps.docs.outputs.changed_only == 'no' | ||
run: mvn test -DfailIfNoTests=false '-Dtest=AdminApiTest' -pl pulsar-broker | ||
|
||
- name: run unit tests pulsar broker v1 admin api test | ||
if: steps.docs.outputs.changed_only == 'no' | ||
run: mvn test -DfailIfNoTests=false '-Dtest=V1_AdminApiTest' -pl pulsar-broker | ||
|
||
- name: run unit tests pulsar broker compaction test | ||
if: steps.docs.outputs.changed_only == 'no' | ||
run: mvn test -DfailIfNoTests=false '-Dtest=CompactionTest' -pl pulsar-broker | ||
|
||
- name: run unit tests pulsar broker batch message test | ||
if: steps.docs.outputs.changed_only == 'no' | ||
run: mvn test -DfailIfNoTests=false '-Dtest=BatchMessageTest' -pl pulsar-broker | ||
|
||
- name: run unit tests pulsar broker partitioned topics schema test | ||
if: steps.docs.outputs.changed_only == 'no' | ||
run: mvn test -DfailIfNoTests=false '-Dtest=PartitionedTopicsSchemaTest' -pl pulsar-broker | ||
|
||
- name: package surefire artifacts | ||
if: failure() | ||
run: | | ||
df -h | ||
free -h | ||
rm -rf artifacts | ||
mkdir artifacts | ||
find . -type d -name "*surefire*" -exec cp --parents -R {} artifacts/ \; | ||
zip -r artifacts.zip artifacts | ||
- uses: actions/upload-artifact@master | ||
name: upload surefire-artifacts | ||
if: failure() | ||
with: | ||
name: surefire-artifacts | ||
path: artifacts.zip |
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