chavoosh / ndn-mongo-fileserver

An NDN fileserver based on MongoDB
GNU General Public License v3.0
5 stars 2 forks source link

NDN Serves Files From MongoDB

DOI

NDN-MONGO-FILESERVER tool-bundle is part of iViSA project, containing the following tools:

  1. ndn-mongo-fileserver
  2. chunker
  3. stats-collector

INSTALL

Take the following steps to install this tool-bundle.

Prerequisites

Install the latest versions of the following packages (to checkout to a specific release use $ git checkout <release-name>):

Install the following tools for video encoding and packaging:

Build Steps

To configure, compile, and install this tool-bundle, type the following commands in repository's root directory:

  $ ./waf configure
  $ ./waf
  $ sudo ./waf install

Quick test

Here is a quick test to make sure that the tool-bundle is installed properly:

  1. Run MongoDB service:

    $ sudo systemctl start mongod.service

  2. Chunk a content and populate the DB. The following command breaks the input file into 1kB chunks with version 1. Name of each chunk follows this pattern: /ndn/test/README.md/%FD%01/<segment-number>)

    $ chunker /ndn/test -i ~/ndn-mongo-fileserver/README.md -s 1000 -e 1

  3. Run NFD and then run fileserver to serve the available contents in the DB. The following command runs the fileserver, and asks it to answer all Interests whose name start with /ndn/test):

    $ ndn-mongo-fileserver /ndn/test
  4. Open segment-fetcher.html in browser and ask for /ndn/test/README.md.

If no error occurred during any step you can safely quit the fileserver and be sure that the tool-bundle works properly.

Frontend

To learn how to watch the published videos in a modern browser visit ndn-video-frontend.

Serve videos via NDN testbed

After setting up the NDN fileserver you might want to serve your videos via NDN testbed. To do this, take the following steps:

  1. Get a valid certificate from the NDN testbed and set it up on your server. Given your certificate name is /ndn/my/cert.

  2. Encode, package, and chunk your video(s). To do this, first update base in driver.sh file to your cert (e.g., /ndn/my/cert/video), and then run the following command:

    $ (cd ~/ndn-mongo-fileserver/scripts/video && bash driver.sh )

    This command populates the MongoDB with video chunks and at the end generate an HTML page for the video that will be used in step 4.

  3. Connect the NFD on your server to one of the testbed hubs (you might want to choose the closest hub to your server). To do this you can run the following command:

    $ bash ~/ndn-mongo-fileserver/scripts/main/run.sh /ndn/my/cert udp hobo.cs.arizona.edu with-stats

    This command connects the the NFD instance on your server to hobo.cs.arizona.edu hub via UDP tunnel and collects the statistical information of the video streaming service whenever anyone watches your videos. You can find the stats under ~/.chunks-log directory.

  4. Set up a webserver and use ndn-video-frontend as your website resources with the following modifications:

    • Update BASEPREFIX in app.js to your cert name (e.g., /ndn/my/cert).

    • Then simply copy the generated HTML file (from step 2) under your webserver directory (e.g., /var/www/html/my-website) and add a link to this HTML file in index.html (look at ndn-video-frontend to see a template).

Reporting Bugs

To report any bugs or features use the project's issue tracker.

License

ndn-mongo-fileserver is an open source project licensed under the GPL version 3. See COPYING.md for more information.

Citation

You can cite this project in your publications if it helps your research. Here is an example BibTeX entry:

@misc{chavoosh'18ndn-mongo,
  title={NDN Serves Files From MongoDB},
  author={Ghasemi, Chavoosh and others},
  year={2020},
  howpublished={\url{https://github.com/chavoosh/ndn-mongo-fileserver}}
}