You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case OpenMessaging Benchmark would be executed with parameters provided above, the actual parallel read and write wouldn't be executed. Please, note that it doesn't apply to the case when eventsPerTransaction is set to 1.
...
20:01:45.434 [clientInternal-3-10] INFO io.pravega.client.stream.impl.Pinger - Start sending transaction pings.
20:01:54.921 [clientInternal-3-5] INFO io.pravega.client.stream.impl.Pinger - Start sending transaction pings.
20:02:04.408 [clientInternal-3-7] INFO io.pravega.client.stream.impl.Pinger - Start sending transaction pings.
20:02:06.430 [pool-3-thread-1] INFO io.pravega.client.stream.impl.EventStreamReaderImpl - EventStreamReaderImpl( id=ee2096f6-e635-4a32-aee3-fdf62f207d63) at checkpoint b37e3c89-02b2-4e93-987f-ebe12183a35b
20:02:06.431 [pool-3-thread-1] INFO io.pravega.client.stream.impl.EventStreamReaderImpl - Reader ee2096f6-e635-4a32-aee3-fdf62f207d63 completed checkpoint b37e3c89-02b2-4e93-987f-ebe12183a
The text was updated successfully, but these errors were encountered:
The issue is related to probeProducers() method that is executed prior to the actual load generation.
It expects to write 1 event from producer and read it back from the consumer. Since we commit transaction only once it's populated with the requested amount of events, the data is never sent to Pravega in case its size is higher than 1. Thus, reader (consumer) couldn't get the data from the system since it hadn't been written.
In case transactions are enabled and events per transaction is set to value higher than 1, load isn't getting generated.
Example
Pravega Driver manifest - standalone, enabled transactions, 3 events per transaction.
Load manifest - 1 topic, 1 producer (writer), 1 consumer (reader):
In case OpenMessaging Benchmark would be executed with parameters provided above, the actual parallel read and write wouldn't be executed. Please, note that it doesn't apply to the case when
eventsPerTransaction
is set to 1.The text was updated successfully, but these errors were encountered: