webvac 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README +1 -1
- data/doc/TODO +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f072042f502ff2163b2a85bc05e4871530932f80
|
4
|
+
data.tar.gz: 23ce8395c5c38e94aaf0064bedc438457327c3b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4ad9e21b79a3b41ce27869940fedce93706f54caba471003c78d1c63db881a643353e568038e1a7bf81ffecc006e55c92a6c93a7d14a159ea15f094da62aebb
|
7
|
+
data.tar.gz: 0c994733991c2e50c4d5e1d88c022b0714a228a5cff063a4b68145446735335319c6853d07f4a15af1c946ff06f1f1cf91205ee537e7dadda64c89cf57c41c04
|
data/README
CHANGED
@@ -52,7 +52,7 @@ For about 100GB of files, venti takes 86GB of disk (no surprise, since
|
|
52
52
|
it's mostly JPGs and MP4s, so it's already compressed; the savings are
|
53
53
|
probably from dedup), and Redis takes about 60MB of RAM for this. All
|
54
54
|
of the files were put into venti as part of the backup solution, but the
|
55
|
-
originals weren't removed if they were bigger than
|
55
|
+
originals weren't removed if they were bigger than 4MB (see doc/TODO).
|
56
56
|
The workers take some RAM to run. CPU overhead is negligible.
|
57
57
|
|
58
58
|
= Installation
|
data/doc/TODO
CHANGED
@@ -3,7 +3,7 @@ Unordered:
|
|
3
3
|
· The closure abuse in Serv precludes using the URL to generate the routes.
|
4
4
|
This needs a fix in order to generalize beyond Pleroma.
|
5
5
|
· Should be easy to stream rather than loading everything into memory,
|
6
|
-
but until then, big-ish files (≈
|
6
|
+
but until then, big-ish files (≈4MB) take a second to get out of venti.
|
7
7
|
Obviously, it'll be faster and more reliable to implement the venti protocol.
|
8
8
|
· Stats and webvac-unsweep. This will allow hot objects to be swapped out of
|
9
9
|
venti.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: webvac
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pete
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: magic
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
69
83
|
description:
|
70
84
|
email: pete@debu.gs
|
71
85
|
executables:
|