I am running Apache pulsar in a Docker container in standalone
mode.
I am publishing log file lines into the pulsar topic. The total logs are about 60G in size.
The pulsar container keeps running out of disk space on the /
disk and has to terminate.
It is a default configuration. The docker-compose file looks as follows
pulsar:
image: apachepulsar/pulsar
container_name: pulsar
command: bin/pulsar standalone
ports:
- 6650:6650
- 8080:8080
Is there a way to limit pulsar disk usage so that it does not run out of all the space ?