forked from opensearch-project/data-prepper
-
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.
Merge branch 'opensearch-project:main' into main
- Loading branch information
Showing
51 changed files
with
717 additions
and
212 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
130 changes: 130 additions & 0 deletions
130
...egrationTest/java/org/opensearch/dataprepper/integration/Router_ThreeRoutesDefaultIT.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,130 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package org.opensearch.dataprepper.integration; | ||
|
||
import org.junit.jupiter.api.AfterEach; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
import org.opensearch.dataprepper.model.event.Event; | ||
import org.opensearch.dataprepper.model.event.JacksonEvent; | ||
import org.opensearch.dataprepper.model.record.Record; | ||
import org.opensearch.dataprepper.plugins.InMemorySinkAccessor; | ||
import org.opensearch.dataprepper.plugins.InMemorySourceAccessor; | ||
import org.opensearch.dataprepper.test.framework.DataPrepperTestRunner; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collections; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.UUID; | ||
import java.util.concurrent.TimeUnit; | ||
import java.util.stream.Collectors; | ||
import java.util.stream.IntStream; | ||
|
||
import static org.awaitility.Awaitility.await; | ||
import static org.hamcrest.CoreMatchers.equalTo; | ||
import static org.hamcrest.CoreMatchers.not; | ||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.hamcrest.Matchers.containsInAnyOrder; | ||
import static org.hamcrest.Matchers.empty; | ||
|
||
class Router_ThreeRoutesDefaultIT { | ||
private static final String TESTING_KEY = "ConditionalRoutingIT"; | ||
private static final String ALL_SOURCE_KEY = TESTING_KEY + "_all"; | ||
private static final String ALPHA_SOURCE_KEY = TESTING_KEY + "_alpha"; | ||
private static final String BETA_SOURCE_KEY = TESTING_KEY + "_beta"; | ||
private static final String ALPHA_DEFAULT_SOURCE_KEY = TESTING_KEY + "_alpha_default"; | ||
private static final String ALPHA_BETA_GAMMA_SOURCE_KEY = TESTING_KEY + "_alpha_beta_gamma"; | ||
private static final String DEFAULT_SOURCE_KEY = TESTING_KEY + "_default"; | ||
private static final String KNOWN_CONDITIONAL_KEY = "value"; | ||
private static final String ALPHA_VALUE = "a"; | ||
private static final String BETA_VALUE = "b"; | ||
private static final String GAMMA_VALUE = "g"; | ||
private static final String DEFAULT_VALUE = "z"; | ||
private DataPrepperTestRunner dataPrepperTestRunner; | ||
private InMemorySourceAccessor inMemorySourceAccessor; | ||
private InMemorySinkAccessor inMemorySinkAccessor; | ||
|
||
@BeforeEach | ||
void setUp() { | ||
dataPrepperTestRunner = DataPrepperTestRunner.builder() | ||
.withPipelinesDirectoryOrFile("route/three-route-with-default-route.yaml") | ||
.build(); | ||
|
||
dataPrepperTestRunner.start(); | ||
inMemorySourceAccessor = dataPrepperTestRunner.getInMemorySourceAccessor(); | ||
inMemorySinkAccessor = dataPrepperTestRunner.getInMemorySinkAccessor(); | ||
} | ||
|
||
@AfterEach | ||
void tearDown() { | ||
dataPrepperTestRunner.stop(); | ||
} | ||
|
||
@Test | ||
void test_default_route() { | ||
final List<Record<Event>> alphaEvents = createEvents(ALPHA_VALUE, 10); | ||
final List<Record<Event>> betaEvents = createEvents(BETA_VALUE, 20); | ||
final List<Record<Event>> gammaEvents = createEvents(GAMMA_VALUE, 20); | ||
final List<Record<Event>> defaultEvents = createEvents(DEFAULT_VALUE, 20); | ||
|
||
final List<Record<Event>> allEvents = new ArrayList<>(alphaEvents); | ||
allEvents.addAll(betaEvents); | ||
allEvents.addAll(gammaEvents); | ||
allEvents.addAll(defaultEvents); | ||
Collections.shuffle(allEvents); | ||
|
||
inMemorySourceAccessor.submit(TESTING_KEY, allEvents); | ||
|
||
await().atMost(2, TimeUnit.SECONDS) | ||
.untilAsserted(() -> { | ||
assertThat(inMemorySinkAccessor.get(ALPHA_SOURCE_KEY), not(empty())); | ||
assertThat(inMemorySinkAccessor.get(BETA_SOURCE_KEY), not(empty())); | ||
assertThat(inMemorySinkAccessor.get(ALL_SOURCE_KEY), not(empty())); | ||
assertThat(inMemorySinkAccessor.get(ALPHA_DEFAULT_SOURCE_KEY), not(empty())); | ||
assertThat(inMemorySinkAccessor.get(ALPHA_BETA_GAMMA_SOURCE_KEY), not(empty())); | ||
assertThat(inMemorySinkAccessor.get(DEFAULT_SOURCE_KEY), not(empty())); | ||
}); | ||
|
||
final List<Record<Event>> actualAlphaRecords = inMemorySinkAccessor.get(ALPHA_SOURCE_KEY); | ||
|
||
assertThat(actualAlphaRecords.size(), equalTo(alphaEvents.size())); | ||
|
||
assertThat(actualAlphaRecords, containsInAnyOrder(allEvents.stream() | ||
.filter(alphaEvents::contains).toArray())); | ||
|
||
final List<Record<Event>> actualBetaRecords = inMemorySinkAccessor.get(BETA_SOURCE_KEY); | ||
|
||
assertThat(actualBetaRecords.size(), equalTo(betaEvents.size())); | ||
|
||
assertThat(actualBetaRecords, containsInAnyOrder(allEvents.stream() | ||
.filter(betaEvents::contains).toArray())); | ||
|
||
final List<Record<Event>> actualDefaultRecords = inMemorySinkAccessor.get(DEFAULT_SOURCE_KEY); | ||
|
||
assertThat(actualDefaultRecords.size(), equalTo(defaultEvents.size())); | ||
assertThat(actualDefaultRecords, containsInAnyOrder(allEvents.stream() | ||
.filter(defaultEvents::contains).toArray())); | ||
|
||
final List<Record<Event>> actualAlphaDefaultRecords = new ArrayList<>(); | ||
actualAlphaDefaultRecords.addAll(actualAlphaRecords); | ||
actualAlphaDefaultRecords.addAll(actualDefaultRecords); | ||
assertThat(actualAlphaDefaultRecords.size(), equalTo(defaultEvents.size()+alphaEvents.size())); | ||
assertThat(actualAlphaDefaultRecords, containsInAnyOrder(allEvents.stream() | ||
.filter(event -> defaultEvents.contains(event) || alphaEvents.contains(event)).toArray())); | ||
|
||
} | ||
|
||
private List<Record<Event>> createEvents(final String value, final int numberToCreate) { | ||
return IntStream.range(0, numberToCreate) | ||
.mapToObj(i -> Map.of(KNOWN_CONDITIONAL_KEY, value, "arbitrary_field", UUID.randomUUID().toString())) | ||
.map(map -> JacksonEvent.builder().withData(map).withEventType("TEST").build()) | ||
.map(jacksonEvent -> (Event) jacksonEvent) | ||
.map(Record::new) | ||
.collect(Collectors.toList()); | ||
} | ||
} | ||
|
41 changes: 41 additions & 0 deletions
41
...t/resources/org/opensearch/dataprepper/pipeline/route/three-route-with-default-route.yaml
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,41 @@ | ||
routing-pipeline: | ||
workers: 4 | ||
delay: 10 | ||
source: | ||
in_memory: | ||
testing_key: ConditionalRoutingIT | ||
buffer: | ||
bounded_blocking: | ||
# Use a small batch size to help ensure that multiple threads | ||
# are picking up the different routes. | ||
batch_size: 10 | ||
route: | ||
- alpha: '/value == "a"' | ||
- beta: '/value == "b"' | ||
- gamma: '/value == "g"' | ||
sink: | ||
- in_memory: | ||
testing_key: ConditionalRoutingIT_alpha | ||
routes: | ||
- alpha | ||
- in_memory: | ||
testing_key: ConditionalRoutingIT_beta | ||
routes: | ||
- beta | ||
- in_memory: | ||
testing_key: ConditionalRoutingIT_alpha_default | ||
routes: | ||
- alpha | ||
- _default | ||
- in_memory: | ||
testing_key: ConditionalRoutingIT_alpha_beta_gamma | ||
routes: | ||
- alpha | ||
- beta | ||
- gamma | ||
- in_memory: | ||
testing_key: ConditionalRoutingIT_default | ||
routes: | ||
- _default | ||
- in_memory: | ||
testing_key: ConditionalRoutingIT_all |
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
Oops, something went wrong.