Parallel Subscription Limits

Check out the limits for parallel subscriptions. These limits are enforced when you save the parallel subscription configurations using PlatformEventSubscriberConfig in Tooling API or Metadata API.
Limit Value
Maximum number of parallel subscriptions (partitions) that you can configure for one Apex trigger 10
Maximum number of Apex triggers that you can configure for parallel subscriptions 5

You can monitor how many Apex triggers are configured for parallel subscriptions by using the REST limits resources and checking for the PlatformEventTriggersWithParallelProcessing value.

This example shows a portion of the output of the REST limits resource that lists the maximum value and usage for the maximum number of Apex triggers that can be configured for parallel subscriptions.

"PlatformEventTriggersWithParallelProcessing": {
        "Max": 5,
        "Remaining": 2
}