我有一些 RESTful 服务,我想用 Reactor 和 Spring WebClient 准备简单的性能基准测试。Benchmark 简单地创建 N 个用户,然后为每个创建的用户发布 M 票。
不幸的是,以下代码超出了我的 linux 机器中的最大打开文件限制,即 1024 ( ulimit -n 1024
)。
RestService restService = ...
int N_ITERATIONS = 100;
int M_VOTES = 100;
Flux.range(0, N_ITERATIONS)
.parallel()
.runOn(Schedulers.parallel())
.flatMap(iteration -> restService.postUserRegistration(User.builder().build()))
.flatMap(user -> Flux.range(0, M_VOTES)
.flatMap(vote -> restService.postUserVote(Vote.builder().build()))
.collectList()
.map(votes -> Tuple.of(user, votes))
).doOnNext(userVotes -> log.info("User: {} voted: {}", userVotes._1(), userVotes._2()))
.sequential()
.toIterable();
RestService 使用 Spring Webflux 的标准 WebClient 实现。
有没有办法根据系统限制限制创建的套接字数量?
堆栈跟踪:
Caused by: io.netty.channel.unix.Errors$NativeIoException: newSocketStream(..) failed: Too many open files
at io.netty.channel.unix.Errors.newIOException(Errors.java:122) ~[netty-transport-native-unix-common-4.1.27.Final.jar:4.1.27.Final]
... 98 common frames omitted