go_pbspro

module
v0.0.0-...-01893dd Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 29, 2021 License: GPL-3.0

README

Golang library of PBSPro

This is not an official Paratera product

This is a thin Go wrapper around the C library (libpbs) for the [PBSPro resource manager]

1.Requirements

1.1.OS

You must install some requirements on CentOS 7.

# yum groupinstall "Development Tools" -y
# yum install -y sudo tar wget openssh-server openssh-clients openssl openssl-devel
# yum install -y gcc make rpm-build libtool hwloc-devel libX11-devel libXt-devel libedit-devel libical-devel ncurses-devel perl postgresql-devel python-devel tcl-devel tk-devel swig expat-devel libXext libXft autoconf automake
# yum install -y expat libedit postgresql-server python sendmail tcl tk libical

1.2.Download && Build PBSpro

Download PBSpro

# git clone https://github.com/PBSPro/pbspro.git
# ./autogen.sh
# ./configure --prefix=/opt/pbspro
# make -j4
# make install

1.3.Environment

# export LD_LIBRARY_PATH=/opt/pbspro/lib
# export PBS_EXEC=/opt/pbspro
# export PBS_SERVER=pm01
# export PBS_HOME=/opt/pbspro

1.4.PBSpro Cluster

A PBSpro Cluster to test.

2.Install

# go get github.com/taylor840326/go_pbspro

3. Usage

    package main

    import (
        "github.com/taylor840326/go_pbspro"
        "log"
    )

    func main() {
            qstat, err := NewQstat("172.18.7.10")
        	if err != nil {
        		t.Error(err)
        	}
        
        	qstat.SetAttribs(nil)
        	qstat.SetExtend("")
        
        	err = qstat.ConnectPBS()
        	if err != nil {
        		fmt.Println("ConnectPBS Error")
        		t.Error(err)
        	}
        
        	err = qstat.PbsServerState()
        	if err != nil {
        		fmt.Println(err.Error())
        	}
        	//Print Server State Informations.
        	fmt.Println(qstat.ServerState)
        
        	err = qstat.DisconnectPBS()
        	if err != nil {
        		fmt.Println("DisconnectPBS Error")
        		t.Error(err)
            }
        // ...
    }
4. Donate

If you like the project and want to buy me a cola, you can through:

PayPal 微信

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL