aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/doc/redundancy.md
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2018-11-23 18:02:08 +0100
committerRigel Kent <sendmemail@rigelk.eu>2018-11-23 18:02:08 +0100
commit3f82804c6cc26a3a67e28d5404d5e5605a6fa4a6 (patch)
treee11927416b1dcc5472f2d5eb1b424ed3532f7197 /support/doc/redundancy.md
parent1b5e2d72900c8ceaf76940b72839d3c424ac96e8 (diff)
downloadPeerTube-3f82804c6cc26a3a67e28d5404d5e5605a6fa4a6.tar.gz
PeerTube-3f82804c6cc26a3a67e28d5404d5e5605a6fa4a6.tar.zst
PeerTube-3f82804c6cc26a3a67e28d5404d5e5605a6fa4a6.zip
add donate link, move redundancy doc and images to docs.joinpeertube.org
Diffstat (limited to 'support/doc/redundancy.md')
-rw-r--r--support/doc/redundancy.md52
1 files changed, 0 insertions, 52 deletions
diff --git a/support/doc/redundancy.md b/support/doc/redundancy.md
deleted file mode 100644
index 00442fd85..000000000
--- a/support/doc/redundancy.md
+++ /dev/null
@@ -1,52 +0,0 @@
1# Redundancy
2
3A PeerTube instance can cache other PeerTube videos to improve bandwidth of popular videos or small instances.
4
5## How it works
6
7The instance administrator can choose between multiple redundancy strategies (cache trending videos or recently uploaded videos etc), set their maximum size and the minimum duplication lifetime.
8Then, they choose the instances they want to cache in `Manage follows -> Following` admin table.
9
10<p align="center">
11
12<img src="user/redundancy.png" alt="Redundancy" />
13
14</p>
15
16Videos are kept in the cache for at least `min_lifetime`, and then evicted when the cache is full.
17
18When PeerTube chooses a video to duplicate, it imports all the resolution files (to avoid consistency issues) using their magnet URI and put them in the `storage.videos` directory.
19Then it sends a `Create -> CacheFile` ActivityPub message to other federated instances. This new instance is injected as [WebSeed](https://github.com/Chocobozzz/PeerTube/blob/develop/FAQ.md#what-is-webseed) in the magnet URI by instances that received this ActivityPub message.
20
21## Stats
22
23See the `/api/v1/server/stats` endpoint. For example:
24
25```
26{
27 ...
28 "videosRedundancy": [
29 {
30 "totalUsed": 0,
31 "totalVideos": 0,
32 "totalVideoFiles": 0,
33 "strategy": "most-views",
34 "totalSize": 104857600
35 },
36 {
37 "totalUsed": 0,
38 "totalVideos": 0,
39 "totalVideoFiles": 0,
40 "strategy": "trending",
41 "totalSize": 104857600
42 },
43 {
44 "totalUsed": 0,
45 "totalVideos": 0,
46 "totalVideoFiles": 0,
47 "strategy": "recently-added",
48 "totalSize": 104857600
49 }
50 ]
51}
52```