aboutsummaryrefslogtreecommitdiff
path: root/docs/note-2021-09-13.md
diff options
context:
space:
mode:
authorn-peugnet <n.peugnet@free.fr>2021-09-13 17:31:41 +0200
committern-peugnet <n.peugnet@free.fr>2021-09-13 17:31:41 +0200
commit3da2cd3fc7ca694a7b263c099be29c9c8b46af22 (patch)
tree095b960cba9e778f4afd934be29fbbab00aa0620 /docs/note-2021-09-13.md
parent3e0123b9d8a1097e74fcd500b72cbdaa00c7a49a (diff)
downloaddna-backup-3da2cd3fc7ca694a7b263c099be29c9c8b46af22.tar.gz
dna-backup-3da2cd3fc7ca694a7b263c099be29c9c8b46af22.zip
first tests on real data
Diffstat (limited to 'docs/note-2021-09-13.md')
-rw-r--r--docs/note-2021-09-13.md100
1 files changed, 100 insertions, 0 deletions
diff --git a/docs/note-2021-09-13.md b/docs/note-2021-09-13.md
new file mode 100644
index 0000000..230e6e3
--- /dev/null
+++ b/docs/note-2021-09-13.md
@@ -0,0 +1,100 @@
+First run on a big folder (1.1Go)
+==================================
+
+The program was for the first time run against a fairly big folder: my Desktop
+folder.
+
+It is a composite folder that contains a lot of different things, among which:
+
+- a lot of downloaded PDF files
+- a lot of downloaded image files
+- a massive (715,3Mio) package of binary updates
+- a TV show episode (85Mio)
+- some other fat binary executables (108Mio)
+- some compressed packages (53Mio)
+
+_I am started to understand the bad compression performances_
+
+## Resources
+
+- CPU: 90% 4 cores
+- RAM: 0.7% 16Go
+
+## Time
+
+`16:00:04` → `16:12:33` = `00:12:29`
+
+## Size
+
+### Original
+
+```
+1050129 kio
+```
+
+### Repo
+
+```
+ 18 kio test_1/00000/files
+1017586 kio test_1/00000/chunks
+ 5908 kio test_1/00000/recipe
+1023515 kio test_1/00000
+1023519 kio test_1
+```
+
+saved:
+
+```
+26610 kio
+```
+
+## Notes
+Not really impressed by the saving, even when there are a lot of deduplicated
+files.
+
+There are a lot of chunks larger than uncompressed ones
+(8208o instead of8192o).
+This is probably because of the added Zlib header and the fact that no
+compression was achieved.
+
+## Conclusions
+
+1. I should probably test with a folder that contains less binary and compressed
+ data.
+2. Maybe we can store the chunks uncompressed when we detect that it uses less
+ space than the compressed version.
+
+Second run on source code folder (1.0Go)
+=========================================
+
+## Resources
+
+Similar
+
+## Time
+
+`17:09:01` → `17:13:51` = `00:4:50`
+
+## Size
+
+### Original
+
+```
+925515 kio
+```
+
+### Repo
+
+```
+ 6433 kio test_2/00000/files
+272052 kio test_2/00000/chunks
+ 17468 kio test_2/00000/recipe
+295956 kio test_2/00000
+295960 kio test_2
+```
+
+saved:
+
+```
+629555 kio
+```