-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added benchmarks for the all filter, mirroring those in eventing core
Signed-off-by: Calum Murray <cmurray@redhat.com>
- Loading branch information
Showing
4 changed files
with
237 additions
and
70 deletions.
There are no files selected for viewing
126 changes: 126 additions & 0 deletions
126
...ain/java/dev/knative/eventing/kafka/broker/dispatcher/impl/filter/AllFilterBenchmark.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,126 @@ | ||
/* | ||
* Copyright © 2018 Knative Authors (knative-dev@googlegroups.com) | ||
* | ||
* Licensed 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 dev.knative.eventing.kafka.broker.dispatcher.impl.filter; | ||
|
||
import dev.knative.eventing.kafka.broker.dispatcher.Filter; | ||
import dev.knative.eventing.kafka.broker.dispatcher.impl.filter.subscriptionsapi.AllFilter; | ||
import dev.knative.eventing.kafka.broker.dispatcher.impl.filter.subscriptionsapi.ExactFilter; | ||
import dev.knative.eventing.kafka.broker.dispatcher.impl.filter.subscriptionsapi.PrefixFilter; | ||
import dev.knative.eventing.kafka.broker.dispatcher.impl.filter.subscriptionsapi.SuffixFilter; | ||
import io.cloudevents.CloudEvent; | ||
import java.util.Map; | ||
import java.util.Set; | ||
|
||
public class AllFilterBenchmark { | ||
public static ExactFilter makeExactFilter() { | ||
return new ExactFilter(Map.of("id", "com.github.pull.create")); | ||
} | ||
|
||
public static PrefixFilter makePrefixFilter() { | ||
return new PrefixFilter(Map.of("type", "com.g")); | ||
} | ||
|
||
public static SuffixFilter makeSuffixFilter() { | ||
return new SuffixFilter(Map.of("source", "lhost")); | ||
} | ||
|
||
public static PrefixFilter makePrefixFilterNoMatch() { | ||
return new PrefixFilter(Map.of("type", "other.event")); | ||
} | ||
|
||
public static SuffixFilter makeSuffixFilterNoMatch() { | ||
return new SuffixFilter(Map.of("source", "qwertyuiop")); | ||
} | ||
|
||
public static class AllFilterWithExactFilter extends FilterBenchmark { | ||
|
||
@Override | ||
protected Filter createFilter() { | ||
return new AllFilter(Set.of(makeExactFilter())); | ||
} | ||
|
||
@Override | ||
protected CloudEvent createEvent() { | ||
return SampleEvent.event(); | ||
} | ||
} | ||
|
||
public static class AllFilterMatchAllSubfilters extends FilterBenchmark { | ||
|
||
@Override | ||
protected Filter createFilter() { | ||
return new AllFilter(Set.of(makeExactFilter(), makePrefixFilter(), makeSuffixFilter())); | ||
} | ||
|
||
@Override | ||
protected CloudEvent createEvent() { | ||
return SampleEvent.event(); | ||
} | ||
} | ||
|
||
public static class AllFilterFirstMatchEndOfArray extends FilterBenchmark { | ||
|
||
@Override | ||
protected Filter createFilter() { | ||
return new AllFilter(Set.of(makePrefixFilterNoMatch(), makeSuffixFilterNoMatch(), makeExactFilter())); | ||
} | ||
|
||
@Override | ||
protected CloudEvent createEvent() { | ||
return SampleEvent.event(); | ||
} | ||
} | ||
|
||
public static class AllFilterFirstMatchStartOfArray extends FilterBenchmark { | ||
|
||
@Override | ||
protected Filter createFilter() { | ||
return new AllFilter(Set.of(makeExactFilter(), makePrefixFilterNoMatch(), makeSuffixFilterNoMatch())); | ||
} | ||
|
||
@Override | ||
protected CloudEvent createEvent() { | ||
return SampleEvent.event(); | ||
} | ||
} | ||
|
||
public static class AllFilterOneNonMatchingFilterInMiddle extends FilterBenchmark { | ||
|
||
@Override | ||
protected Filter createFilter() { | ||
return new AllFilter(Set.of(makeExactFilter(), makePrefixFilterNoMatch(), makePrefixFilter())); | ||
} | ||
|
||
@Override | ||
protected CloudEvent createEvent() { | ||
return SampleEvent.event(); | ||
} | ||
} | ||
|
||
public static class AllFilterNoMatchingFilters extends FilterBenchmark { | ||
|
||
@Override | ||
protected Filter createFilter() { | ||
return new AllFilter(Set.of(makePrefixFilterNoMatch(), makeSuffixFilterNoMatch())); | ||
} | ||
|
||
@Override | ||
protected CloudEvent createEvent() { | ||
return SampleEvent.event(); | ||
} | ||
} | ||
} |
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
45 changes: 45 additions & 0 deletions
45
...s/src/main/java/dev/knative/eventing/kafka/broker/dispatcher/impl/filter/SampleEvent.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,45 @@ | ||
/* | ||
* Copyright © 2018 Knative Authors (knative-dev@googlegroups.com) | ||
* | ||
* Licensed 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 dev.knative.eventing.kafka.broker.dispatcher.impl.filter; | ||
|
||
import io.cloudevents.CloudEvent; | ||
import io.cloudevents.core.builder.CloudEventBuilder; | ||
import java.net.URI; | ||
|
||
public class SampleEvent { | ||
public static CloudEvent event() { | ||
return CloudEventBuilder.v1() | ||
.withId("abcdefghijklmnop") | ||
.withSource(URI.create("http://localhost")) | ||
.withType("com.github.pull.create") | ||
.withDataSchema(URI.create("/api/schema")) | ||
.withDataContentType("testContentType") | ||
.withSubject("testSubject") | ||
.build(); | ||
} | ||
|
||
public static CloudEvent otherEvent() { | ||
return CloudEventBuilder.v1() | ||
.withId("abcdefghijklmnop") | ||
.withSource(URI.create("http://localhost")) | ||
.withType("other.event.type") | ||
.withDataSchema(URI.create("/api/schema")) | ||
.withDataContentType("testContentType") | ||
.withSubject("testSubject") | ||
.build(); | ||
} | ||
} |