forked from apache/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[improve][fn] Improve closing of producers in Pulsar Functions Produc…
…erCache invalidation (apache#23734) (cherry picked from commit 9f046a5) (cherry picked from commit 6b9e9ac)
- Loading branch information
1 parent
2646ae5
commit 62c5e4f
Showing
2 changed files
with
92 additions
and
10 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
64 changes: 64 additions & 0 deletions
64
...ctions/instance/src/test/java/org/apache/pulsar/functions/instance/ProducerCacheTest.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,64 @@ | ||
/* | ||
* 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.pulsar.functions.instance; | ||
|
||
import static org.mockito.Mockito.mock; | ||
import static org.mockito.Mockito.when; | ||
import java.util.concurrent.CompletableFuture; | ||
import org.apache.pulsar.client.api.Producer; | ||
import org.apache.pulsar.client.api.PulsarClientException; | ||
import org.testng.annotations.Test; | ||
|
||
public class ProducerCacheTest { | ||
|
||
@Test | ||
public void shouldTolerateAlreadyClosedExceptionInClose() { | ||
ProducerCache cache = new ProducerCache(); | ||
Producer producer = mock(Producer.class); | ||
when(producer.flushAsync()).thenReturn(CompletableFuture.completedFuture(null)); | ||
when(producer.closeAsync()).thenReturn( | ||
CompletableFuture.failedFuture(new PulsarClientException.AlreadyClosedException("Already closed"))); | ||
cache.getOrCreateProducer(ProducerCache.CacheArea.CONTEXT_CACHE, "topic", "key", | ||
() -> (Producer<Object>) producer); | ||
cache.close(); | ||
} | ||
|
||
@Test | ||
public void shouldTolerateRuntimeExceptionInClose() { | ||
ProducerCache cache = new ProducerCache(); | ||
Producer producer = mock(Producer.class); | ||
when(producer.flushAsync()).thenReturn(CompletableFuture.completedFuture(null)); | ||
when(producer.closeAsync()).thenThrow(new RuntimeException("Some exception")); | ||
cache.getOrCreateProducer(ProducerCache.CacheArea.CONTEXT_CACHE, "topic", "key", | ||
() -> (Producer<Object>) producer); | ||
cache.close(); | ||
} | ||
|
||
@Test | ||
public void shouldTolerateRuntimeExceptionInFlush() { | ||
ProducerCache cache = new ProducerCache(); | ||
Producer producer = mock(Producer.class); | ||
when(producer.flushAsync()).thenThrow(new RuntimeException("Some exception")); | ||
when(producer.closeAsync()).thenReturn(CompletableFuture.completedFuture(null)); | ||
cache.getOrCreateProducer(ProducerCache.CacheArea.CONTEXT_CACHE, "topic", "key", | ||
() -> (Producer<Object>) producer); | ||
cache.close(); | ||
} | ||
|
||
} |