• Stars
    star
    26
  • Rank 892,477 (Top 19 %)
  • Language
    Scala
  • License
    GNU Affero Genera...
  • Created over 11 years ago
  • Updated 22 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Scala library for accessing various file, batch systems, job schedulers and grid middlewares.

GridScale

GridScale is a scala library for accessing various file and batch systems. For the time being it supports:

  • Remote SSH servers,
  • PBS clusters,
  • SLURM clusters,
  • SGE clusters,
  • OAR clusters,
  • Condor flocks
  • HTTP file lists,
  • IPFS nodes,
  • EGI computing grid via DIRAC pilot jobs system.

Licence

GridScale is licensed under the GNU Affero GPLv3 software license.

Build

GridScale builds with sbt.
Use the compile and/or package task to build all the modules.

Imports

In order to use gridscale you should import the namespace corresponding to the job system you want to use:

import gridscale.pbs._

SBT

GridScale is cross compiled against serveral versions of scala. To use on of its modules add a dependency like:

libraryDependencies += "fr.iscpif.gridscale" %% "pbs" % version

Examples

Up to date examples are available in the example directory.

Development

GridScale can be generated locally using: sbt publish-local

To release in one step, use: sbt 'release with-defaults'