forked from apache/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ability for BatchPushSource to notify errors asynchronously (apac…
…he#7865) Co-authored-by: Jerry Peng <jerryp@splunk.com>
- Loading branch information
1 parent
ee87813
commit da8d308
Showing
3 changed files
with
164 additions
and
0 deletions.
There are no files selected for viewing
81 changes: 81 additions & 0 deletions
81
...r/src/main/java/org/apache/pulsar/io/batchdatagenerator/BatchDataGeneratorPushSource.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,81 @@ | ||
/** | ||
* 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.io.batchdatagenerator; | ||
|
||
import io.codearte.jfairy.Fairy; | ||
import lombok.extern.slf4j.Slf4j; | ||
import org.apache.pulsar.functions.api.Record; | ||
import org.apache.pulsar.io.core.BatchPushSource; | ||
import org.apache.pulsar.io.core.SourceContext; | ||
|
||
import java.util.Map; | ||
import java.util.concurrent.ExecutorService; | ||
import java.util.concurrent.Executors; | ||
import java.util.function.Consumer; | ||
|
||
@Slf4j | ||
public class BatchDataGeneratorPushSource extends BatchPushSource<Person> implements Runnable { | ||
|
||
private Fairy fairy; | ||
private SourceContext sourceContext; | ||
private int maxRecordsPerCycle = 10; | ||
|
||
private ExecutorService executor = Executors.newSingleThreadExecutor(); | ||
|
||
@Override | ||
public void close() { | ||
executor.shutdownNow(); | ||
} | ||
|
||
@Override | ||
public void open(Map config, SourceContext context) throws Exception { | ||
this.fairy = Fairy.create(); | ||
this.sourceContext = context; | ||
} | ||
|
||
@Override | ||
public void discover(Consumer taskEater) throws Exception { | ||
log.info("Generating one task for each instance"); | ||
for (int i = 0; i < sourceContext.getNumInstances(); ++i) { | ||
taskEater.accept(String.format("something-%d", System.currentTimeMillis()).getBytes()); | ||
} | ||
} | ||
|
||
@Override | ||
public void prepare(byte[] instanceSplit) throws Exception { | ||
log.info("Instance " + sourceContext.getInstanceId() + " got a new discovered task {}", new String(instanceSplit)); | ||
executor.submit(this); | ||
} | ||
|
||
@Override | ||
public void run() { | ||
try { | ||
for (int i = 0; i < maxRecordsPerCycle; i++) { | ||
Thread.sleep(50); | ||
Record<Person> record = () -> new Person(fairy.person()); | ||
consume(record); | ||
} | ||
// this task is completed | ||
consume(null); | ||
} catch (Exception e) { | ||
notifyError(e); | ||
} | ||
} | ||
} |
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
57 changes: 57 additions & 0 deletions
57
pulsar-io/core/src/test/java/org/apache/pulsar/io/core/BatchPushSourceTest.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,57 @@ | ||
/** | ||
* 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.io.core; | ||
|
||
import org.apache.pulsar.io.core.BatchPushSource; | ||
import org.apache.pulsar.io.core.SourceContext; | ||
import org.testng.annotations.Test; | ||
|
||
import java.util.Map; | ||
import java.util.function.Consumer; | ||
|
||
public class BatchPushSourceTest { | ||
|
||
BatchPushSource testBatchSource = new BatchPushSource() { | ||
@Override | ||
public void open(Map config, SourceContext context) throws Exception { | ||
|
||
} | ||
|
||
@Override | ||
public void discover(Consumer taskEater) throws Exception { | ||
|
||
} | ||
|
||
@Override | ||
public void prepare(byte[] task) throws Exception { | ||
|
||
} | ||
|
||
@Override | ||
public void close() throws Exception { | ||
|
||
} | ||
}; | ||
|
||
@Test(expectedExceptions = RuntimeException.class, expectedExceptionsMessageRegExp = "test exception") | ||
public void testNotifyErrors() throws Exception { | ||
testBatchSource.notifyError(new RuntimeException("test exception")); | ||
testBatchSource.readNext(); | ||
} | ||
} |