为什么订阅者在不同情况下请求不同数量的元素?

问题描述 投票:2回答:1

我正在学习反应流和发布 - 订阅实用程序,我使用的是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)“?

请建议。

publish-subscribe spring-webflux publisher reactive-streams
1个回答
2
投票

首先,您应该知道这是预期的行为。

根据您使用的运算符,Reactor将应用不同的预取策略:

  • 一些运算符将使用32256等默认值
  • 如果添加了具有特定值的缓冲运算符,某些排列将使用您提供的值
  • Reactor可以猜测值流是有限的,并且将请求无限值

如果使用带有int prefetch方法参数的运算符变体,或者使用Subscriber(它提供了几种有用的方法)实现自己的BaseSubscriber,则可以随时更改此行为。

最重要的是,您通常不需要关注该特定值;它只有在您希望优化特定数据源的预取策略时才有用。

© www.soinside.com 2019 - 2024. All rights reserved.