项目作者: andromeda

项目描述 :
PaSh: Light-touch Data-Parallel Shell Processing
高级语言: Python
项目地址: git://github.com/andromeda/pash.git
创建时间: 2019-06-30T04:12:11Z
项目社区:https://github.com/andromeda/pash

开源协议:MIT License

下载


PaSh: Light-touch Data-Parallel Shell Processing

A system for parallelizing POSIX shell scripts.
Hosted by the Linux Foundation.

Service Main Develop
Tests Tests Tests
Build Build Build
Pages DeployPublish DeployPublish

Quick Jump: Running PaSh | Installation | Testing | Repo Structure | Community & More | Citing

Running PaSh

To parallelize, say, ./evaluation/intro/hello-world.sh with parallelization degree of 2× run:

  1. ./pa.sh ./evaluation/intro/hello-world.sh

Run ./pa.sh --help to get more information about the available commands.
Jump to docs/tutorial for a longer tutorial.

Installation

On Ubuntu, Fedora, and Debian run the following to set up PaSh.

  1. wget https://raw.githubusercontent.com/binpash/pash/main/scripts/up.sh
  2. sh up.sh
  3. export PASH_TOP="$PWD/pash/"
  4. ## Run PaSh with echo hi
  5. "$PASH_TOP/pa.sh" -c "echo hi"

For more details, manual installation, or other platforms see installation instructions.

Repo Structure

This repo hosts the core pash development. The structure is as follows:

  • compiler: Shell-dataflow translations and associated parallelization transformations.
  • docs: Design documents, tutorials, installation instructions, etc.
  • evaluation: Shell pipelines and example scripts used for the evaluation.
  • runtime: Runtime component — e.g., eager, split, and associated combiners.
  • scripts: Scripts related to continuous integration, deployment, and testing.

Community & More

Chat:

Mailing Lists:

  • pash-devs: Join this mailing list for discussing all things pash
  • pash-commits: Join this mailing list for commit notifications

Development/contributions:

Citing

If you used PaSh, consider citing the following paper:

  1. @inproceedings{pash2021eurosys,
  2. author = {Vasilakis, Nikos and Kallas, Konstantinos and Mamouras, Konstantinos and Benetopoulos, Achilles and Cvetkovi\'{c}, Lazar},
  3. title = {PaSh: Light-Touch Data-Parallel Shell Processing},
  4. year = {2021},
  5. isbn = {9781450383349},
  6. publisher = {Association for Computing Machinery},
  7. address = {New York, NY, USA},
  8. url = {https://doi.org/10.1145/3447786.3456228},
  9. doi = {10.1145/3447786.3456228},
  10. pages = {4966},
  11. numpages = {18},
  12. keywords = {POSIX, Unix, pipelines, automatic parallelization, source-to-source compiler, shell},
  13. location = {Online Event, United Kingdom},
  14. series = {EuroSys '21}
  15. }