-
Notifications
You must be signed in to change notification settings - Fork 9
ownCloud vs. wsgidav
This is a quick and dirty performance comparison between the ownCloud WebDav server and wsgidav.
A few tests are run:
- a recursive copy of a directory that mostly includes source files
- large file copies (256M, 1G)
- deletion of the directory in the first step
- recursive listing
- evaluation of a jupyter notebook
Both ownCloud and wsgidav are run on plain HTTP and locally. Data is stored on an SSD. ownCloud is configured with Redis caching, with Redis running locally and the connection being through a UNIX socket. Redis is also used for 'memcache.locking'. These are recommended performance settings for ownCloud (see https://doc.owncloud.org/server/10.0/admin_manual/configuration/server/caching_configuration.html). Wsgidav is run with its own HTTP server.
The "many files" used in the tests consist of a structure with 50 sub-directories. There are a total of 680 files adding up to 5.1MB.
The results:
cp -r ...
ls -lR
rm -rf ...
This is from local to webdav mount
jupyter nbconvert --to notebook --execute ...
The notebook has some code that loads a bunch of data files that are stored in the same directory as the notebook (so webdav). Jupyter's configuration directory is set to the webdav mount.