Skip to content

jbarber/pbs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pbs - Go interface to the Torque resource manager library

This is a thin Go wrapper around the C library (libtorque) for the Torque resource manager.

Documentation about the functions can be found in the man pages of the Torque library.

Install

go get github.com/jbarber/pbs

Documentation

go doc github.com/jbarber/pbs

Usage

package main

import (
    "pbs"
    "log"
)

func main() {
    handle, err := pbs.Pbs_connect("torque.example.com")
    if err != nil {
        log.Fatal("Couldn't connect to server: %s", err)
    }

    defer func() {
        err = Pbs_disconnect(handle)
        if err != nil {
            log.Fatal("Disconnect failed: %s\n", err)
        }
    }()

    jobid, err := pbs.Pbs_submit(handle, nil, "test.sh", "")
    if err != nil {
        log.Fatal("Job submission failed: %s\n", err)
    }

    // ...
}

More examples can be found in the EXAMPLE.md

Testing

A test suite is present, it requires a running Torque server which accepts jobs from the user running the tests. If you have this, just run:

go test github.com/jbarber/pbs

The test suite also provides examples of how to use the functions.

Author

Jonathan Barber

About

Go package for the Torque resource manager library (libtorque)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages