我正在学习反应流和发布 - 订阅实用程序,我使用的是Publisher(我的情况下是Flux)和Subscriber的默认行为。
我有两个场景,都在Flux中具有相同数量的元素。但是当我分析日志时,onSubscribe方法正在请求不同数量的元素(例如,在一种情况下,它是对无界元素的请求,而在另一种情况下,它请求32个元素)。
以下是两种情况和日志:
System.out.println("*********Calling MapData************");
List<Integer> elements = new ArrayList<>();
Flux.just(1, 2, 3, 4)
.log()
.map(i -> i * 2)
.subscribe(elements::add);
//printElements(elements);
System.out.println("-------------------------------------");
System.out.println("Inside Combine Streams");
List<Integer> elems = new ArrayList<>();
Flux.just(10,20,30,40)
.log()
.map(x -> x * 2)
.zipWith(Flux.range(0, Integer.MAX_VALUE),
(two, one) -> String.format("First : %d, Second : %d \n", one, two))
.subscribe(new Consumer<String>() {
@Override
public void accept(String s) {
}
});
System.out.println("-------------------------------------");
这是日志:
*********Calling MapData************
[warn] LoggerFactory has not been explicitly initialized. Default system-logger will be used. Please invoke StaticLoggerBinder#setLog(org.apache.maven.plugin.logging.Log) with Mojo's Log instance at the early start of your Mojo
[info] | onSubscribe([Synchronous Fuseable] FluxArray.ArraySubscription)
[info] | request(unbounded)
[info] | onNext(1)
[info] | onNext(2)
[info] | onNext(3)
[info] | onNext(4)
[info] | onComplete()
-------------------------------------
Inside Combine Streams
[info] | onSubscribe([Synchronous Fuseable] FluxArray.ArraySubscription)
[info] | request(32)
[info] | onNext(10)
[info] | onNext(20)
[info] | onNext(30)
[info] | onNext(40)
[info] | onComplete()
[info] | cancel()
-------------------------------------
由于我没有使用任何自定义订阅者实现,那么为什么在“MapData”情况下,它记录“[info] | request(unbounded)”和“”Inside Combine Streams“”case is logging“[info] | request (32)“?
请建议。
首先,您应该知道这是预期的行为。
根据您使用的运算符,Reactor将应用不同的预取策略:
32
或256
等默认值如果使用带有int prefetch
方法参数的运算符变体,或者使用Subscriber
(它提供了几种有用的方法)实现自己的BaseSubscriber
,则可以随时更改此行为。
最重要的是,您通常不需要关注该特定值;它只有在您希望优化特定数据源的预取策略时才有用。