All Questions
Tagged with diskusage or disk-access
50 questions
1
vote
0
answers
414
views
Git Bash/SCM issue with 100% disk usage
After using VS Code and running the bash terminal with some simple npm commands, I quickly see that my disk drive usage jumps from the typical 2%-5% up to 100% and it holds it there constantly.
Even ...
0
votes
1
answer
7k
views
Meaning of the statement - du -sk * |sort -rn|head
I am facing trouble understanding the meaning of the Linux command du -sk * |sort -rn|head. I understand that du is used to display the disk usage but I'm facing trouble understanding the rest of the ...
0
votes
1
answer
2k
views
Calculating the total disk usage for a set of subdirectories across a directory tree?
Here is the scenario.
Imagine we have this style of directory stucture -
/snapshots/201801/users/tom/
/snapshots/201802/users/harry/
/snapshots/201803/users/chris/
and so on.
What I'm trying to get ...
0
votes
2
answers
377
views
docker clean up container overhead
I have two docker containers running, where the diskspace is as follows:
user$ sudo docker system df
TYPE TOTAL ACTIVE SIZE RECLAIMABLE
...
0
votes
2
answers
2k
views
Android Studio using 100% of disk
I have just installed Android Studio to follow a react native project and everytime I try to use the program the disk usage goes to 100%.
I've chosen Pixel 2 as the phone and android Q and R as the ...
0
votes
0
answers
134
views
Difference in actual usage and disk utilized for Microsoft SQL Server 2012
I am trying to monitor database utilization for one of our applications. Issues observed are that actual utilized disk space by the database is more than the result we got by checking the utilization ...
0
votes
1
answer
358
views
False excessive disk usage, how to explain DF-system and DF-docker contradiction?
At Linux server I checked disk usage by df command and obtained big /var/lib/docker usage
Filesystem 1K-blocks Used Available Use% Mounted on
udev 4078144 0 4078144 0%...
1
vote
1
answer
1k
views
Bytes returned by "disk_usage" from the shutil library doesn't match the directory file size
I was reading the official documentation of shutil from the Python website, then I ran a disk_usage test, but it isn't returning what I was expecting, Inside that directory (folder) there's a single ...
46
votes
2
answers
67k
views
How can I determine the current ephemeral-storage usage of a running Kubernetes pod?
How can I tell with kubectl how much ephemeral storage a pod is currently using?
In a Kubernetes pod spec, I can specify resource requests and limits for CPU, memory, and ephemeral storage:
...
0
votes
1
answer
147
views
Python - high disk usage in SumTree
I've encountered some weird behaviour of my python program. Basically when I tried to create adn fill a SumTree of length larger than 1000, my disk usage increases a lot to ~300MB/s then the programme ...
3
votes
1
answer
5k
views
Apache Kafka: reduce kafka disk usage
I have a question about Kafka's disk.
Kafka will fail when its disk become full.
So I want to reduce the disk usage to less than x% by discarding the old data stored on the Kafka disk (or discarding a ...
0
votes
1
answer
50
views
Tablesize and array text[] in postgresql
Ok, here is the question.
I have some table which I create like
create table maths(
id1 bytea
, id2 bytea
, comment text[]
)
there's more columns but that's insignificant. After creation ...
2
votes
1
answer
896
views
SQLite: will it write to disk when updating same data?
A client application receives a table from server and stores it in local SQLite database. The table is sent frequently but changes rarely, so most updates insert into local database data that is ...
0
votes
0
answers
85
views
WinSock2.2 stops responding when i do disk operations
i've write a socket class in C++, the design is event-based, that means, every 64 players it will create a new thread to handle these sockets. My problem is, when i start reading a file, or write, or ...
0
votes
1
answer
97
views
Store images economically in android app
My app uses images from a URL and I want to reduce resources usage for both server and client.
I wonder if the Android SDK already offers something for this (if there's some standard way to do it) or ...