Extensions to basic disk tools like du, df, etc, but written in python
Project description
# disktools Extensions to basic disk tools like du, df, etc, but written in python.
## Installation
> pip install disktools
## Disk Usage (Cached)
duc is a python-based rewrite of du. It is relatively fast compared to its naive LLVM (numba optimized version). The main performance gain comes from using cache. Here is an example:
The output of
`bash duc /foo/bar `
is equivalent to the output of
`bash du -sb /foo/bar `
The difference would be, that duc creates cache stock called .duc in each folder as it traverses over the file system tree, hosting all previous results for all the subfolders if there are any.
The minor caveat of such approach is that creating the .duc entry screws the last modification timestamp of the containing folder. But over time this is not important, since it happens only once. Newly cache updates do not affect the containing folder anymore.
The idea of such caching design vs. global filesystem entry is to enable long term monitoring of any chosen sub path of your data. It has been tested to perform on XFS filesystems with volumes over 100TB and over 10 millions of files.
Any improvements and issue reports are welcomed.
—
You might also want to check out [findtools](https://github.com/ewiger/findtools)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file disktools-0.0.3.tar.gz
.
File metadata
- Download URL: disktools-0.0.3.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae7cb497d9e07258783707f27f3f828b6a3127c1c0c81f09b98bf7ad5d84915c |
|
MD5 | 2b61ae1c2be69c7e0d4d9d037323ff90 |
|
BLAKE2b-256 | af937f24f5b8ead1a52637df98d3cbf29965320dc3819201647eabcfb9727cf6 |