Python wrapper for the Xenon API.
Project description
Python interface to the Xenon middleware library, v. 2.0. Xenon provides a simple programming interface to various pieces of software that can be used to access distributed compute and storage resources.
Underneath it uses GRPC, to connect to the Xenon-GRPC service. We’ve taken care to mirror the original Java API in this Python module as much as possible.
Installing
Clone this repository, and do:
pip install .
The code will appear on PyPI when it is ready for release.
Documentation
The compiled documentation is hosted on Read the Docs. This includes a quick-start guide.
Development
PyXenon ships with the Xenon-GRPC jar-file and command-line executable. If these need upgrading, build them manually, following instructions at Xenon-GRPC, and place the contents of the build/install/xenon-grpc-shadow folder (lib and bin) here.
To generate the GRPC code, run scripts/protoc.sh from the project root.
Testing
Unit tests all run against the local scheduler and the file adaptor for filesystems. To run them, just do:
$ pytest ./tests
For faster testing it may be useful to start the xenon-grpc daemon manually; start it in a separate terminal as it may give useful output for debugging.
For integration testing, run the following docker container to test against remote slurm
docker run --detach --publish 10022:22 nlesc/xenon-slurm:17
An example of some code running against this container is in examples/tutorial.py.
Example
import xenon
import os
xenon.init()
# create a new job scheduler, using SSH to localhost to submit new jobs.
with xenon.Scheduler.create(
adaptor='ssh', location='localhost') as scheduler:
# make a new job description. The executable must already be present on
# the target host.
target = xenon.Path('.') / 'stdout.txt'
desc = xenon.JobDescription(
executable='hostname',
stdout=str(target))
# submit a job
job = scheduler.submit_batch_job(desc)
status = scheduler.wait_until_done(job, 1000)
# read the standard output of the job. We can do this directly because
# we ran on localhost, otherwise, we need to transfer the file first.
with open(target) as f:
print(f.read())
Contributing
Contributions can be made using GitHub pull requests. To add a feature, first install the test requirements
pip install -U tox
and then run
tox
until all tests succeed. The command checks against flake8 code standards and syntax errors on Python 3.5 and 3.6. Then commit, to make sure the change didn’t break any code. The pull request will be evaluated in Travis.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pyxenon-2.2.1.tar.gz
.
File metadata
- Download URL: pyxenon-2.2.1.tar.gz
- Upload date:
- Size: 20.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb4d8d987cf2e54c7928b0929b301f3f22df5748108f13ba1509c075148035cc |
|
MD5 | aaea62b4e1299ac3f07d75233920b4d4 |
|
BLAKE2b-256 | 16c2cdf1bab02a57727d8af20f87eb85ae214d91b1e56ab4334224b6c50087a7 |