123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- Command Line Reference
- ======================
- Lakesuperior comes with some command-line tools aimed at several purposes.
- If Lakesuperior is installed via ``pip``, all tools can be invoked as normal
- commands (i.e. they are in the virtualenv ``PATH``).
- The tools are currently not directly available on Docker instances (*TODO add
- instructions and/or code changes to access them*).
- ``lsup-server``
- ---------------
- Single-threaded server. Use this for testing, debugging, or to multiplex via
- WSGI in a Windows environment. For non-Windows production environments, use
- ``fcrepo``.
- ``fcrepo``
- ----------
- This is the main server command. It has no parameters. The command spawns
- Gunicorn workers (as many as set up in the configuration) and can be sent in
- the background, or started via init script.
- The tool must be run in the same virtual environment Lakesuperior
- was installed in (if it was)—i.e.::
- source <virtualenv root>/bin/activate
- must be run before running the server.
- In the case an init script is used, ``coilmq`` (belonging to a 3rd party
- package) needs to be launched as well; unless a message broker is already set
- up, or if messaging is disabled in the configuration.
- **Note:** This command is not available in Windows because GUnicorn is not
- available in Windows. Windows users should look for alternative WSGI servers
- to run the single-threaded service (``lsup-server``) over multiple processes
- and/or threads.
- **Note:** This is the only command line tool that is not added to the ``PATH``
- environment variable in Unix systems (beecause it is not cross-platform). It
- must be invoked by using its full path.
- ``lsup-admin``
- --------------
- ``lsup-admin`` is the principal repository management tool. It is
- self-documented, so this is just a redundant overview::
- $ lsup-admin
- Usage: lsup-admin [OPTIONS] COMMAND [ARGS]...
- Options:
- --help Show this message and exit.
- Commands:
- bootstrap Bootstrap binary and graph stores.
- check_fixity [STUB] Check fixity of a resource.
- check_refint Check referential integrity.
- cleanup [STUB] Clean up orphan database items.
- migrate Migrate an LDP repository to Lakesuperior.
- stats Print repository statistics.
- All entries marked ``[STUB]`` are not yet implemented, however the
- ``lsup_admin <command> --help`` command will issue a description of what
- the command is meant to do. Check the
- `issues page <https://github.com/scossu/lakesuperior/issues>`__ for what's on
- the radar.
- All of the above commands are also available via, and based upon, the
- native Python API.
- ``lsup-benchmark``
- ------------------
- This command is used to run performance tests in a predictable way.
- The command line options can be queried with the ``--help`` option::
- Usage: lsup-benchmark [OPTIONS]
- Options:
- -e, --endpoint TEXT LDP endpoint. Default: http://localhost:8000/ldp
- -c, --count INTEGER Number of resources to ingest. Default: {def_ct}
- -p, --parent TEXT Path to the container resource under which the new
- resources will be created. It must begin with a
- slash (`/`) character. Default: /pomegranate
- -d, --delete-container Delete container resource and its children if
- already existing. By default, the container is not
- deleted and new resources are added to it.
- -m, --method TEXT HTTP method to use. Case insensitive. Either PUT
- or POST. Default: PUT
- -s, --graph-size INTEGER Number of triples in each graph. Default: 200
- -t, --resource-type TEXT Type of resources to ingest. One of `r` (only LDP-
- RS, i.e. RDF), `n` (only LDP-NR, i.e. binaries),
- or `b` (50/50% of both). Default: r
- -p, --plot Plot a graph of ingest timings. The graph figure
- is displayed on screen with basic manipulation and
- save options.
- --help Show this message and exit.
- The benchmark tool is able to create RDF sources, or non-RDF, or an equal mix
- of them, via POST or PUT, in a given lDP endpoint. It runs single threaded.
- The RDF sources are randomly generated graphs of consistent size and
- complexity. They include a mix of in-repository references, literals, and
- external URIs. Each graph has 200 triples by default.
- The non-RDF sources are randomly generated 1024x1024 pixel PNG images.
- You are warmly encouraged to run the script and share the performance results (
- *TODO add template for posting results*).
- ``profiler``
- ------------
- This command launches a single-threaded HTTP server (Flask) on port 5000 that
- logs profiling information. This is useful for analyzing application
- performance.
- For more information, consult the `Python profilers guide
- <https://docs.python.org/3/library/profile.html>`__.
- Do not launch this while a WSGI server (``fcrepo``) is already running, because
- that also launches a Flask server on port 5000.
|