PartiallyApplied
A call that the client had to send as several requests failed after some of them were applied.
The client splits a large upsert to stay under Qdrant's payload cap, so one upsert can be several writes. When a later one fails, the earlier ones are already in the collection, and before this existed the caller was told only that the call failed — leaving them to choose between re-sending everything and losing the rest, with nothing to base the choice on.
Upsert is idempotent per point id, so re-sending the whole call is safe and costs the writes that already landed. applied is what makes the cheaper choice possible.
There is no total here, deliberately. The count of points a call was given is known for a list and unknowable for a Flow, which is drained as it is sent, and a number that means one thing on one overload and something else on the other is worse than the number the caller already has.