AggregatePublishingConfig
Configures the publishing of aggregates downstream for uploading to the destination.
By extension this controls memory usage in the destination for storing customer data. Note: the defaults presume we are storing the aggregates in memory, but if we are storing them on disk, we can handle a larger quantity of larger aggregates.
Per aggregate configuration:
Constructors
Properties
configures the number of published aggregates we buffer before backpressuring preventing further aggregate publishes.
if the total accumulated estimated bytes for all open aggregates is greater than this value, we will publish the largest aggregate.
configures the size of each aggregate based on our estimated byte counts. Once an aggregate reaches this size, we publish it.
configures the max number of records in an aggregate. Once an aggregate has accumulated this many records, we publish it.
is how long we will wait to flush an aggregate after it stops receiving data.