Cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
Cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
I've been working with Kafka for over 7 years. I inevitably find myself doing the same set of activities while I'm developing or working with someone else's system. Here's a set of Kafka productivity hacks for doing a few things way faster than you're probably doing them now. 🔥
| /* | |
| * This query will run across an entire organization looking at tables across every project | |
| * and shows how they will compare on compressed and uncompressed storage. | |
| * | |
| * Region Notes: | |
| * This query will only read from a single region or multi-region at a time. It's | |
| * currently not possible to read this data from across all | |
| * | |
| * By default this reads from the US multi-region, so this might need to be changed if | |
| * your data lives elsewhere. |