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
I searched in the issues and found nothing similar.
Read release policy
I understand that unsupported versions don't get bug fixes. I will attempt to reproduce the issue on a supported version of Pulsar client and Pulsar broker.
Version
use the apachepulsar/pulsar:4.0.0 image, image index digest is: sha256:51e92bc45ba495b9753585b12625579ddaeea8e02d08aecd336ceff26e1099f1
Minimal reproduce step
deploy pulsar using docker-compose, below is the compose yaml:
Search before asking
Read release policy
Version
use the apachepulsar/pulsar:4.0.0 image, image index digest is: sha256:51e92bc45ba495b9753585b12625579ddaeea8e02d08aecd336ceff26e1099f1
Minimal reproduce step
What did you expect to see?
What did you see instead?
Anything else?
The reason is that the
DLOutputStream
will read 8192 bytes each time, and write them to bk, so for a 500 MB file, it will write:500 * 1024 * 1024 / 8192.0 = 64000.0 times
which leads to timeout
This error also happened in branch-3.0 and 3.3
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: