Switch to Flux.flatMapSequential(…) to prevent backpressure shaping.

We now use Flux.flatMapSequential(…) instead of concatMap as concatMap reduces the request size to 1. The change in backpressure/request size reduces parallelism and impacts the batch size by fetching 2 documents instead of considering the actual backpressure.

flatMapSequential doesn't tamper the requested amount while retaining the sequence order.

Closes: #4543
Original Pull Request: #4550
This commit is contained in:
Mark Paluch
2023-11-06 14:57:19 +01:00
committed by Christoph Strobl
parent a429ff853c
commit 8eda292af9
3 changed files with 52 additions and 13 deletions

View File

@@ -952,7 +952,7 @@ public class ReactiveMongoTemplate implements ReactiveMongoOperations, Applicati
return (isOutOrMerge ? Flux.from(cursor.toCollection()) : Flux.from(cursor.first())).thenMany(Mono.empty());
}
return Flux.from(cursor).concatMap(readCallback::doWith);
return Flux.from(cursor).flatMapSequential(readCallback::doWith);
}
@Override
@@ -988,7 +988,7 @@ public class ReactiveMongoTemplate implements ReactiveMongoOperations, Applicati
.withOptions(AggregationOptions.builder().collation(near.getCollation()).build());
return aggregate($geoNear, collection, Document.class) //
.concatMap(callback::doWith);
.flatMapSequential(callback::doWith);
}
@Override
@@ -1212,7 +1212,7 @@ public class ReactiveMongoTemplate implements ReactiveMongoOperations, Applicati
Assert.notNull(batchToSave, "Batch to insert must not be null");
return Flux.from(batchToSave).flatMap(collection -> insert(collection, collectionName));
return Flux.from(batchToSave).flatMapSequential(collection -> insert(collection, collectionName));
}
@Override
@@ -1280,7 +1280,7 @@ public class ReactiveMongoTemplate implements ReactiveMongoOperations, Applicati
@Override
public <T> Flux<T> insertAll(Mono<? extends Collection<? extends T>> objectsToSave) {
return Flux.from(objectsToSave).flatMap(this::insertAll);
return Flux.from(objectsToSave).flatMapSequential(this::insertAll);
}
protected <T> Flux<T> doInsertAll(Collection<? extends T> listToSave, MongoWriter<Object> writer) {
@@ -1331,7 +1331,7 @@ public class ReactiveMongoTemplate implements ReactiveMongoOperations, Applicati
return insertDocumentList(collectionName, documents).thenMany(Flux.fromIterable(tuples));
});
return insertDocuments.flatMap(tuple -> {
return insertDocuments.flatMapSequential(tuple -> {
Document document = tuple.getT2();
Object id = MappedDocument.of(document).getId();
@@ -1488,7 +1488,7 @@ public class ReactiveMongoTemplate implements ReactiveMongoOperations, Applicati
return collectionToUse.insertMany(documents);
}).flatMap(s -> {
}).flatMapSequential(s -> {
return Flux.fromStream(documents.stream() //
.map(MappedDocument::of) //
@@ -2038,7 +2038,7 @@ public class ReactiveMongoTemplate implements ReactiveMongoOperations, Applicati
publisher = collation.map(Collation::toMongoCollation).map(publisher::collation).orElse(publisher);
return Flux.from(publisher)
.concatMap(new ReadDocumentCallback<>(mongoConverter, resultType, inputCollectionName)::doWith);
.flatMapSequential(new ReadDocumentCallback<>(mongoConverter, resultType, inputCollectionName)::doWith);
});
}
@@ -2106,7 +2106,7 @@ public class ReactiveMongoTemplate implements ReactiveMongoOperations, Applicati
return Flux.from(flux).collectList().filter(it -> !it.isEmpty())
.flatMapMany(list -> Flux.from(remove(operations.getByIdInQuery(list), entityClass, collectionName))
.flatMap(deleteResult -> Flux.fromIterable(list)));
.flatMapSequential(deleteResult -> Flux.fromIterable(list)));
}
/**
@@ -2545,7 +2545,7 @@ public class ReactiveMongoTemplate implements ReactiveMongoOperations, Applicati
return createFlux(collectionName, collection -> {
return Flux.from(preparer.initiateFind(collection, collectionCallback::doInCollection))
.concatMap(objectCallback::doWith);
.flatMapSequential(objectCallback::doWith);
});
}

View File

@@ -107,7 +107,7 @@ public class SimpleReactiveMongoRepository<T, ID extends Serializable> implement
Assert.notNull(entityStream, "The given Publisher of entities must not be null");
return Flux.from(entityStream).flatMap(entity -> entityInformation.isNew(entity) ? //
return Flux.from(entityStream).flatMapSequential(entity -> entityInformation.isNew(entity) ? //
mongoOperations.insert(entity, entityInformation.getCollectionName()) : //
mongoOperations.save(entity, entityInformation.getCollectionName()));
}
@@ -165,7 +165,7 @@ public class SimpleReactiveMongoRepository<T, ID extends Serializable> implement
Assert.notNull(ids, "The given Publisher of Id's must not be null");
return Flux.from(ids).buffer().flatMap(this::findAllById);
return Flux.from(ids).buffer().flatMapSequential(this::findAllById);
}
@Override
@@ -295,7 +295,8 @@ public class SimpleReactiveMongoRepository<T, ID extends Serializable> implement
Assert.notNull(entities, "The given Publisher of entities must not be null");
return Flux.from(entities).flatMap(entity -> mongoOperations.insert(entity, entityInformation.getCollectionName()));
return Flux.from(entities)
.flatMapSequential(entity -> mongoOperations.insert(entity, entityInformation.getCollectionName()));
}
// -------------------------------------------------------------------------

View File

@@ -36,6 +36,7 @@ import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicLong;
import java.util.stream.Collectors;
import org.assertj.core.api.Assertions;
@@ -632,6 +633,28 @@ public class ReactiveMongoTemplateUnitTests {
verify(aggregatePublisher).collation(eq(com.mongodb.client.model.Collation.builder().locale("de_AT").build()));
}
@Test // GH-4543
void aggregateDoesNotLimitBackpressure() {
reset(collection);
AtomicLong request = new AtomicLong();
Publisher<Document> realPublisher = Flux.just(new Document()).doOnRequest(request::addAndGet);
doAnswer(invocation -> {
Subscriber<Document> subscriber = invocation.getArgument(0);
realPublisher.subscribe(subscriber);
return null;
}).when(aggregatePublisher).subscribe(any());
when(collection.aggregate(anyList())).thenReturn(aggregatePublisher);
when(collection.aggregate(anyList(), any(Class.class))).thenReturn(aggregatePublisher);
template.aggregate(newAggregation(Sith.class, project("id")), AutogenerateableId.class, Document.class).subscribe();
assertThat(request).hasValueGreaterThan(128);
}
@Test // DATAMONGO-1854
void aggreateShouldUseCollationFromOptionsEvenIfDefaultCollationIsPresent() {
@@ -1185,6 +1208,17 @@ public class ReactiveMongoTemplateUnitTests {
assertThat(results.get(0).id).isEqualTo("after-convert");
}
@Test // GH-4543
void findShouldNotLimitBackpressure() {
AtomicLong request = new AtomicLong();
stubFindSubscribe(new Document(), request);
template.find(new Query(), Person.class).subscribe();
assertThat(request).hasValueGreaterThan(128);
}
@Test // DATAMONGO-2479
void findByIdShouldInvokeAfterConvertCallbacks() {
@@ -1549,8 +1583,12 @@ public class ReactiveMongoTemplateUnitTests {
}
private void stubFindSubscribe(Document document) {
stubFindSubscribe(document, new AtomicLong());
}
Publisher<Document> realPublisher = Flux.just(document);
private void stubFindSubscribe(Document document, AtomicLong request) {
Publisher<Document> realPublisher = Flux.just(document).doOnRequest(request::addAndGet);
doAnswer(invocation -> {
Subscriber<Document> subscriber = invocation.getArgument(0);