Skip to content

1.x: perf benchmark for the cost of subscribing #3478

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 28, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
182 changes: 182 additions & 0 deletions src/perf/java/rx/SubscribingPerf.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,182 @@
/**
* Copyright 2014 Netflix, Inc.
*
* 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 rx;

import java.util.concurrent.TimeUnit;

import org.openjdk.jmh.annotations.*;
import org.openjdk.jmh.infra.Blackhole;

/**
* Benchmark the cost of subscription and initial request management.
* <p>
* gradlew benchmarks "-Pjmh=-f 1 -tu s -bm thrpt -wi 5 -i 5 -r 1 .*SubscribingPerf.*"
* <p>
* gradlew benchmarks "-Pjmh=-f 1 -tu ns -bm avgt -wi 5 -i 5 -r 1 .*SubscribingPerf.*"
*/
@BenchmarkMode(Mode.Throughput)
@OutputTimeUnit(TimeUnit.SECONDS)
@State(Scope.Thread)
public class SubscribingPerf {

Observable<Integer> just = Observable.just(1);
Observable<Integer> range = Observable.range(1, 2);

@Benchmark
public void justDirect(Blackhole bh) {
just.subscribe(new DirectSubscriber<Integer>(Long.MAX_VALUE, bh));
}

@Benchmark
public void justStarted(Blackhole bh) {
just.subscribe(new StartedSubscriber<Integer>(Long.MAX_VALUE, bh));
}

@Benchmark
public void justUsual(Blackhole bh) {
just.subscribe(new UsualSubscriber<Integer>(Long.MAX_VALUE, bh));
}

@Benchmark
public void rangeDirect(Blackhole bh) {
range.subscribe(new DirectSubscriber<Integer>(Long.MAX_VALUE, bh));
}

@Benchmark
public void rangeStarted(Blackhole bh) {
range.subscribe(new DirectSubscriber<Integer>(Long.MAX_VALUE, bh));
}

@Benchmark
public void rangeUsual(Blackhole bh) {
range.subscribe(new UsualSubscriber<Integer>(Long.MAX_VALUE, bh));
}

@Benchmark
public void justDirectUnsafe(Blackhole bh) {
just.unsafeSubscribe(new DirectSubscriber<Integer>(Long.MAX_VALUE, bh));
}

@Benchmark
public void justStartedUnsafe(Blackhole bh) {
just.unsafeSubscribe(new StartedSubscriber<Integer>(Long.MAX_VALUE, bh));
}

@Benchmark
public void justUsualUnsafe(Blackhole bh) {
just.unsafeSubscribe(new UsualSubscriber<Integer>(Long.MAX_VALUE, bh));
}

@Benchmark
public void rangeDirectUnsafe(Blackhole bh) {
range.unsafeSubscribe(new DirectSubscriber<Integer>(Long.MAX_VALUE, bh));
}

@Benchmark
public void rangeStartedUnsafe(Blackhole bh) {
range.unsafeSubscribe(new DirectSubscriber<Integer>(Long.MAX_VALUE, bh));
}

@Benchmark
public void rangeUsualUnsafe(Blackhole bh) {
range.unsafeSubscribe(new UsualSubscriber<Integer>(Long.MAX_VALUE, bh));
}


static final class DirectSubscriber<T> extends Subscriber<T> {
final long r;
final Blackhole bh;
public DirectSubscriber(long r, Blackhole bh) {
this.r = r;
this.bh = bh;
}
@Override
public void onNext(T t) {
bh.consume(t);
}

@Override
public void onError(Throwable e) {
e.printStackTrace();
}

@Override
public void onCompleted() {
}

@Override
public void setProducer(Producer p) {
p.request(r);
}
}

static final class StartedSubscriber<T> extends Subscriber<T> {
final long r;
final Blackhole bh;
public StartedSubscriber(long r, Blackhole bh) {
this.r = r;
this.bh = bh;
}

@Override
public void onStart() {
request(r);
}

@Override
public void onNext(T t) {
bh.consume(t);
}

@Override
public void onError(Throwable e) {
e.printStackTrace();
}

@Override
public void onCompleted() {

}
}

/**
* This requests in the constructor.
* @param <T> the value type
*/
static final class UsualSubscriber<T> extends Subscriber<T> {
final Blackhole bh;
public UsualSubscriber(long r, Blackhole bh) {
this.bh = bh;
request(r);
}

@Override
public void onNext(T t) {
bh.consume(t);
}

@Override
public void onError(Throwable e) {
e.printStackTrace();
}

@Override
public void onCompleted() {

}
}
}