pull/10/head
Chocobozzz 2016-07-22 11:53:55 +02:00
parent 6dde6a31e3
commit f018f38e0d
4 changed files with 10 additions and 10 deletions

View File

@ -5,7 +5,7 @@ Interesting in contributing? Awesome :)
**Quick Links:**
* [Give your feedback](#give-your-feedback)
* [Develop on the Server side}(#develop-on-the-server-side)
* [Develop on the Server side](#develop-on-the-server-side)
* [Develop on the Client side](#develop-on-the-client-side)
* [Write documentation](#write-documentation)

View File

@ -42,9 +42,9 @@
* All the requests are retried if they failed
* The requests are made at regular intervals to all pods of the network with a limit of parallel requests: if there are 1000 pods in the networks, the server won't make more than 10 requests in parallel
* If there are no informations to send (no video addition/removal), no requests are made
* The requests are grouped: for example if the interval is 1 hour and an user upload 2 videos there will be only 1 request that contains the 2 videos informations
* The requests in the group are ordered: if an user add a video and remove it, we need to transmit these informations to the other pods in the same order
* The requests are grouped with a limit: if an user uploads 100 videos at a time, the information could be propagated in a few hours to do not make too big requests
* The requests are grouped: for example if the interval is 1 hour and a user$ upload 2 videos there will be only 1 request that contains the 2 videos informations
* The requests in the group are ordered: if a user add a video and remove it, we need to transmit these informations to the other pods in the same order
* The requests are grouped with a limit: if a user uploads 100 videos at a time, the information could be propagated in a few hours to do not make too big requests
* If a grouped request fails the score is decreased by x points
* If a grouped request is a success the score is increased by x points
* The maximum of points would be defined
@ -56,8 +56,8 @@
* A pod has different user accounts that can upload videos
* All pods have an index of all videos of the network (name, origin pod url, small description, uploader username, magnet Uri, thumbnail name, created date and the thumbnail file). For example, a test with 1000000 videos with alphanum characters and the following lengths: name = 50, author = 50, url = 25, description = 250, magnerUri = 200, thumbnail name = 50 has a mongodb size of ~ 4GB. To this, we add 1 000 000 thumbnails of 5-15 KB so 15GB maximum
* After having uploaded a video, the server seeds it, adds the meta data in its database and makes a secure request to all of its friends
* If an user wants to watch a video, he asks its pod the magnetUri and the frontend adds the torrent (with WebTorrent), creates the HTML5 video tag and streams the file into it
* An user watching a video seeds it too (bittorent) so another user who is watching the same video can get the data from the origin server and the user 1 (etc)
* If a user wants to watch a video, he asks its pod the magnetUri and the frontend adds the torrent (with WebTorrent), creates the HTML5 video tag and streams the file into it
* A user watching a video seeds it too (bittorent) so another user who is watching the same video can get the data from the origin server and the user 1 (etc)
## Ideas

View File

@ -189,7 +189,7 @@ See [ARCHITECTURE.md](https://github.com/Chocobozzz/PeerTube/blob/master/ARCHITE
* Each server of a network has a list of all other servers of this network
* When a new installed server wants to join a network, it just has to get the servers list through a server that is already in the network and tell "Hi I'm new in the network, communicate with me and share me your servers list please". Then the server will "make friend" with each server of this list
* Each server has its own users who query it (search videos, where the torrent URI of this specific video is...)
* If an user upload a video, the server seeds it and sends the video informations (name, short description, torrent URI...) to each server of the network
* If a user upload a video, the server seeds it and sends the video informations (name, short description, torrent URI...) to each server of the network
* Each server has a RSA key to encrypt and sign communications with other servers
* A server is a tracker responsible for all the videos uploaded in it
* Even if nobody watches a video, it is seeded by the server where the video was uploaded

View File

@ -49,7 +49,7 @@ The `NODE_ENV=test` is set to speed up communications between pods (see [constan
`npm run help` give you all available commands.
If you want to test the decentralization feature, you can easily run 3 pods by runnin `npm run play`. The pods password are `test1`, `test2` and `test3`.
If you want to test the decentralization feature, you can easily run 3 pods by running `npm run play`. The pods password are `test1`, `test2` and `test3`.
## Architecture
@ -64,9 +64,9 @@ The seperate Electron process has the goal to seed videos through WebRTC because
![Architecture scheme](https://github.com/Chocobozzz/PeerTube/blob/master/support/doc/server/upload-video.png)
When an user upload a video, the rest API asks the Electron process to seed it (communicate with IPC) and then adds it to its Mongo database.
When a user upload a video, the rest API asks the Electron process to seed it (communicate with IPC) and then adds it to its Mongo database.
If an user wants to watch the video, the tracker will indicate all other users that are watching the video + the Electron process.
If a user wants to watch the video, the tracker will indicate all other users that are watching the video + the Electron process.
## Newcomers