High-Performance Reservoir Risk Assessment (Jacta Cluster) : SKUA® and GOCAD® 2011.2 Patch 2 - Paradigm™ 2011.2

Download as pdf or txt
Download as pdf or txt
You are on page 1of 18

High-Performance Reservoir Risk Assessment

(Jacta

Cluster)
SKUA and GOCAD 2011.2 Patch 2 Paradigm 2011.2
With Epos

4.1 Data Management


Configuration Guide
Published October 10, 2012
20082012 Paradigm Ltd. or its affiliates and subsidiaries. All rights reserved.
The information in this document is subject to change without notice and should not be construed as a commitment by
Paradigm Ltd. or its affiliates and subsidiaries (collectively, "Paradigm"). Paradigm assumes no responsibility for any
errors that mayappear in this document.
The Copyright Act of the United States, Title 17 of the United States Code, Section 501 prohibits the reproduction or
transmission of Paradigms copyrighted material in any form or by any means, electronic or mechanical, including
photocopying and recording, or by any information storage and retrieval system without permission in writing from
Paradigm. Violators of this statute will be subject to civil and possible criminal liability. The infringing activity will be
enjoined and the infringing articles will be impounded. Violators will be personally liable for Paradigms actual damages
and any additional profits of the infringer, or statutory damages in the amount of up to $150,000 per infringement.
Paradigm will also seek all costs and attorney fees. In addition, any person who infringes this copyright willfully and for
the purpose of commercial advantage or private financial gain, or by the reproduction or distribution of one or more
copies of a copyrighted work with a total retail value of over $1,000 shall be punished under the criminal laws of the
United States of America, including fines and possible imprisonment.
The following are trademarks or registered trademarks of Paradigm Ltd. or its affiliates and subsidiaries
(collectively,"Paradigm") in the United States or in other countries: Paradigm, Paradigm logo, and/or other Paradigm
products referenced herein. For a complete list of Paradigm trademarks, visit our Web site at www.pdgm.com. All other
company or product names are the trademarks or registered trademarks of their respective holders.
Alea and Jacta software under license from TOTAL. All rights reserved.
Some components or processes may be licensed under one or more of U.S. Patent Numbers 5,570,106; 5,615,171;
6,765,570; and 6,690,820.
Some components or processes are patented by Paradigm and/or one or more of its affiliates under U.S. Patent
Numbers 5,563,949; 5,629,904; 5,838,564; 5,892,732; 5,930,730; 6,055,482; 6,092,026; 6,430,508; 6,819,628;
6,820,043; 6,859,734; 6,873,913; 7,095,677; 7,123,258; 7,295,929; 7,295,930; 7,328,139; 7,561,922; 7,584,056;
7,711,532; and 7,844,402. In addition, there may be patent protection in other foreign jurisdictions for these and other
Paradigm products.
All rights not expressly granted are reserved.
Third-party software notices are located at www.pdgm.com/thirdparty/.
iii
Before You Begin
About This Guide
With High-Performance Reservoir Risk Assessment (Jacta

Cluster), you can use a cluster
of computers to carry out Reservoir Risk Assessment (Jacta) calculations. One Linux
workstation controls this cluster by using a batch management system.
This configuration guide explains how to:
Install and configure a batch management system
Configure Jacta to submit jobs
Submit jobs by using Jacta Cluster
Prerequisites
To complete the process described in this guide, SKUA

and GOCAD

should already be
installed on the computer that will submit batch jobs to the computer cluster. Jacta
Cluster is installed automatically when you install SKUA or GOCAD. If SKUA or GOCAD is
not already installed, install it now. For information, see the Installation Guide.
This guide is intended for experienced Linux system administrators. Instructions in this
guide assume a familiarity with the Linux operating system, Transmission Control Protocol/
Internet Protocol (TCP/IP) networking, and intermediate shell programming.
Before You Begin iv High-Performance Reservoir Risk Assessment
(Jacta

Cluster) Configuration Guide


v Contents
Contents
Before You Begin ........................................................................................ iii
About This Guide ....................................................................................................... iii
Prerequisites ............................................................................................................... iii
Configuring Jacta Cluster ............................................................................ 1
Overview..................................................................................................................... 1
Installing a Batch Management System......................................................................... 1
About Batch Management Systems ................................................................... 1
Supported Batch Management Systems ............................................................. 2
Installing the Batch Server ................................................................................. 2
Installing the Batch Management System on Clients ........................................... 2
Configuring the Batch Manager ................................................................................... 3
Configuring Job Submission Options in Jacta ................................................................ 6
Submitting Jobs from Jacta .......................................................................................... 7
Jacta Cluster Cookbook ............................................................................................... 9
Contents vi High-Performance Reservoir Risk Assessment
(Jacta

Cluster) Configuration Guide


Overview 1 SKUA

and GOCAD

Paradigm2011
With Epos

4.1 Data Management


Configuring Jacta Cluster
Overview
To use Jacta

Cluster with SKUA

and GOCAD

, you must install and configure a batch


management system to work with Jacta on a Linux workstation. Then you configure Jacta
and submit the jobs. For more information, see:
"Installing a Batch Management System," page 1
"Configuring the Batch Manager," page 3
"Configuring Job Submission Options in Jacta," page 6
"Submitting Jobs from Jacta," page 7
"Jacta Cluster Cookbook," page 9
Installing a Batch Management System
You must install a batch management system to run jobs on a Jacta Cluster. For more
information, see:
"About Batch Management Systems," page 1
"Supported Batch Management Systems," page 2
"Installing the Batch Server," page 2
"Installing the Batch Management System on Clients," page 2
About Batch Management Systems
Batch management systems consist of a head node, which divides submitted instructions
into subsets and distributes them among compute nodes.
The compute nodes finish their calculations and return that information to the head node.
That output can then be viewed from the workstation that submitted the job. The
workstation is the computer with the program that sends the batch job (in this case,
Jacta). The workstation may be the same physical computer as a head or compute node.
Instructions in this guide use the Torque Resource Manager (a batch management system)
as an example of how to install a batch management system. Torque refers to the head
node as the server computer and the compute nodes as client computers, so this guide
uses that terminology.
2 High-Performance Reservoir Risk Assessment
(Jacta

Cluster) Configuration Guide


Supported Batch Management Systems
Jacta Cluster supports a type of batch management system called Portable Batch System
(PBS).
The following versions of the PBS can be used:
PBS Gridworks (www.pbsgridworks.com/)
Torque Resource Manager (www.clusterresources.com/pages/products/torque-
resource-manager.php), commonly referred to as "Torque"
OpenPBS (www.openpbs.org/)
Installing the Batch Server
The first task is to download the Torque source files and compile them on the server
computer.
Note This installation requires root privileges.
To install the batch
management system
on the server
computer
1 Download the Torque source files (www.clusterresources.com/downloads/torque),
and then uncompress them.
tar -xzvf torque-x.x.x.tar.gz
2 Run the configuration utility.
cd torque-x.x.x
./configure
3 Compile the sources into a program.
make
4 Build the program on the server computer.
make install
The default installation directory is /usr/local/bin or /usr/local/sbin.
The configuration file is: /var/spool/torque.
Installing the Batch Management System on Clients
The next task is to generate software for the client computers and then install the client
software on each computer that will receive commands from the batch management
server. The Torque software on each client computer downloads and parses instructions
from the batch management server.
Note This installation requires root privileges.
To install the batch
management system
on each client
1 On the server computer, continuing from the previous procedure, create the client
package.
make packages
The make script generates sh scripts named torque-package-server-operating system-
architecture.sh and torque-package-client-operating system-architecture.sh, such as
torque-package-server-linux-i686.sh
Configuring the Batch Manager 3 SKUA

and GOCAD

Paradigm2011
With Epos

4.1 Data Management


2 On each client, copy the client package to a temporary folder.
3 On each client, run the client package. For example:
./torque-package-client-linux-i686
Repeat this procedure for each client.
Configuring the Batch Manager
After you install the batch management system, the next task is to configure the various
parts of the system to communicate with each other. You must also configure a Jacta
submission template for the type of job you will generally submit.
For instructions, see:
"To configure the server computer," page 3
"To configure the client computers," page 4
"To configure SSH," page 4
"To configure the submission template," page 5
"To verify the configuration," page 6
To configure the
server computer
1 Specify your client configuration by creating or editing the node file /var/spool/
torque/server_priv/node to add an entry for each trusted node.
node1 np=2
node2 np=2
node3
node4
The node names correspond to the name of each computer node computer. Each
client is assumed to have a single processor unless you use the argument np to specify
a number of processors. In this example, node1 and node2 have two processors,
whereas node3 and node4 have one.
2 Run the configuration script, where username designates the user who will
administer this server.
./torque.setup username
3 Add additional users as needed with the qmgr command.
qmgr
Qmgr: set server Group += User
Group is either manager (can configure) or operator (can submit jobs).
User is the Linux account you want to grant rights to.
4 Do the following:
a Start the server that receives batch jobs.
pbs_server
b Start the scheduler that prioritize tasks and manages queues.
pbs_sched
4 High-Performance Reservoir Risk Assessment
(Jacta

Cluster) Configuration Guide


To configure the
client computers
On each client, do the following:
1 Edit the server name. The following file must contain the name of the server.
/var/spool/torque/server_name
Note If you used the generated packages to set up your clients, this information should already
be present.
2 Edit the server location in the following file.
/var/spool/torque/mom_priv/config
The file must contain the following line:
pbsserver ip-address
Where ip-address is a dot-delimited IP address in the form 10.10.10.1.
3 Run the command daemon.
pbs_mon
This daemon waits for commands.
To configure SSH Torque uses the secure copy protocol (SCP) to copy files between server and clients. For
scp to work correctly, you must configure the underlying transfer system, secure shell
(SSH), to work automatically.
The SSH system uses cryptographic keys to authenticate users. You must generate a key
pair for a user account that can log on to both server and client computers. After you
generate these keys, you can then copy them from the server to the clients so the two can
communicate without your intervention.
1 On the server, make sure you are logged on as the user account that will run batch
jobs and then do the following:
a If ~/.ssh/id_rsa and ~/.ssh/id_rsa.pub do not exist, generate a key.
ssh-keygen -t rsa
b Copy the user key to ~/.ssh/authorized_keys.
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
c Test the connection to each client.
ssh username
Where username includes node information, such as user@node1. Reply yes if
the server asks if you want to accept this key.
2 On each client, make sure you are logged on as the user account that will run batch
jobs and then do the following:
a Copy the SSH keys to each client.
scp -r .ssh username
Where username includes node information, such as user@node1.
b Test the connection to the server.
ssh username
Where username includes node information, such as user@server1. Reply yes if
the server asks if you want to accept this key, but do not enter any password.
Configuring the Batch Manager 5 SKUA

and GOCAD

Paradigm2011
With Epos

4.1 Data Management


Note Do not enter a password. If you are prompted to do so, your SSH is not configured
correctly. Start the procedure over.
To configure the
submission template
The submission template defines options that are consistent across batch jobs. Some can
be changed later when a job is submitted to the Jacta Cluster. For more information, see
"Submitting Jobs from Jacta" on page 7.
You can modify the standard Jacta submission template (see Figure 1) to fit your needs by
using the keywords defined in Table 1.
Figure 1 Standard Jacta submission template
Table 1 Submission batch file keywords
Keyword Type
1
1. Global variables are consistent across all nodes. Local variables are defined only on one node.
Changeable
in submission
interface?
Description
%LICENSE_SERVER% Global Yes Host name of license server to be used for Jacta.
%SIM_RUN% Global Yes Name of the output of this version of the simulation.
%PROJECT_PATH% Global No Absolute path to the current project. The default is the location of the current
Jacta project.
%OUTPUT_PATH% Global Yes Absolute path to where simulation results will be stored.
%SUBMISSION_QUEUE% Global No Name of queue where the job will be submitted.
%JACTABATCH% Global No Absolute path to the JactaBatch executable. Default is defined by Jacta Cluster.
%TEMP% Global No Absolute path to the temporary folder. Default is defined in the Preferences
dialog box in SKUA or GOCAD. For more information, see "Configuring Job
Submission Options in Jacta" on page 1-6.
%FIRST_ITERATION% Local No Number of the first realization computed by the node.
%LAST_ITERATION% Local No Number of the last realization computed by the node, plus one.
%JOB_NAME% Local No Job name. Default is automatically defined by Jacta Cluster based on the run
name and job number.
%SSID% Local No Session ID. Default is defined by Jacta Cluster.
%CRC% Local No Cyclic redundancy check. Default is defined by Jacta Cluster.
#!/bin/sh
# **************************************************************
# * Jacta for Clusters - job submission template
# **************************************************************
#PBS -o %OUTPUT_PATH%/%SIM_RUN%.%JOB_NAME%.out
#PBS -e %OUTPUT_PATH%/%SIM_RUN%.%JOB_NAME%.err
#PBS -q %SUBMISSION_QUEUE%
#PBS -m n
#PBS -N %JOB_NAME%
#PBS -l nodes=1
GOCADLMD_LICENSE_FILE=%LICENSE_SERVER%
GOCAD_LICENSE=jcrtl
GOCADPATH=%GOCADPATH%
GOCADHOME=%GOCADHOME%
LD_LIBRARY_PATH=%LD_LIBRARY_PATH%
export LD_LIBRARY_PATH GOCADLMD_LICENSE_FILE GOCAD_LICENSE GOCADPATH
GOCADHOME
%JACTABATCH% "%PROJECT_PATH%" --test-mode -out-runs "%OUTPUT_FILE%" -
iteration-start %FIRST_ITERATION% -iteration-end %LAST_ITERATION% -
simulation-run %SIM_RUN% -ssid %SSID% -crc %CRC%
6 High-Performance Reservoir Risk Assessment
(Jacta

Cluster) Configuration Guide


To verify the
configuration
After you install the Torque batch management system, you may want to verify your
configuration. For more information, see "To test your Torque configuration" on page 9.
The next task is to configure Jacta to work with your batch management system. For more
information, see "Configuring Job Submission Options in Jacta" on page 6.
Configuring Job Submission Options in Jacta
Once the batch management system is working, the next task is to tell Jacta Cluster what
commands it must use to communicate with your batch processing system. The
information you enter into Jacta will reflect what you set up with your batch management
system in "Configuring the Batch Manager" on page 3.
To configure job
submission options
1 On the batch management server, start SKUA or GOCAD and load your project. For
more information, see the User Guide, Part I: Getting Started.
2 In the SKUA or GOCAD window, select Edit > Preferences to open Preferences. For
more information, see the User Guide, Part I: Getting Started.
Note You must have write permissions to the default working folder in order to save changes
to your preferences.
3 In the Default working folder for finding and saving objects and projects box,
enter the folder where you want to store the temporary files from cluster processing.
Note One temporary file will be created per job, and it can be safely removed after the job is
processed.
4 In Jacta, ensure all simulation parameters in the Parameter Browser are correct. For
more information, see the User Guide, Part IX: Reservoir Modeling.
5 Open the Uncertainty Viewer. For more information, see the User Guide, Part IX:
Reservoir Modeling.
6 Select Cluster Tools > Edit Sub. Template File to open the Edit Submission
Template File dialog box.
7 Click the Queues tab, type the names of your queues as defined in your batch
management system, and then click Save.
Submitting Jobs from Jacta 7 SKUA

and GOCAD

Paradigm2011
With Epos

4.1 Data Management


8 Do the following to define the license server for each client computer:
a Click the License Servers tab.
b Add the license server the clients should use. Specify one license server per line in
the form port@license server name. For example:
27000@examplelicenseserver
c Click Save.
9 Click the Submission Command tab, enter the appropriate command for the type of
batch management system you have installed, and then click Save.
If your batch system installation folder is not in your system path, you can enter an
absolute path. For example:
/usr/sbin/qsub
10 When you finish, click Close.
The next task is to submit jobs to your Jacta Cluster. For more information, see
"Submitting Jobs from Jacta" on page 7.
Submitting Jobs from Jacta
Each time you submit a job to Jacta Cluster, you must ensure that the submission options
match your configuration. The following first-time configuration shows what options
must be configured for Jacta Cluster jobs.
To submit jobs 1 In the Uncertainty Viewer, select Execution Mode > Cluster to switch to cluster
mode.
Batch system Submission command
PBS qsub
8 High-Performance Reservoir Risk Assessment
(Jacta

Cluster) Configuration Guide


2 Click the Submit Jobs button to open the Submit Jobs to Cluster dialog box, and
then do the following:
a In the License Server box, select a license server. Available license servers are
defined in your Jacta Cluster configuration. For more information, see "To
configure job submission options" on page 6.
b In the Queue Name box, select a queue. Available queues are defined in your
batch management system and in your Jacta Cluster configuration. For more
information, see "To configure job submission options" on page 6.
c In the Saving Location box, type the path to the folder where you want to store
the results of the simulation.
d In the Number of jobs to submit box, type a number that is at least one, and
less than or equal to the total number of simulations you want to run. For
example, if you have a license for four clients and want to run at least four
simulations, setting four jobs makes sense.
3 Click Submit Jobs to run your simulations.
When your simulations finish, you can click the Get Results button in the Uncertainty
Viewer to load the simulation results as a project.
Jacta Cluster Cookbook 9 SKUA

and GOCAD

Paradigm2011
With Epos

4.1 Data Management


Jacta Cluster Cookbook
The following "recipes" are both standard and troubleshooting procedures for common
tasks and errors. For more information, see:
"To test your Torque configuration," page 9
"To track errors using logs," page 9
To test your Torque
configuration
On the server, do the following:
1 Enter test commands.
a Shut down the server.
qterm -t quick
b Start the server.
pbs_server
c Verify queue configuration.
qstat -q
d View additional configuration data.
qmgr -c p s
e Submit a test job.
echo "sleep 30" | qsub
f Check jobs display.
qstat
2 Start the scheduler.
pbs_sched
3 Run your test job.
qrun job-id
Where job-id is the number of the jobs revealed by the qstat command in step f.
To track errors using
logs
Table 2 lists the location where Torque stores logs.
Table 2 Location of
Torque logs
Use date to specify the day whose logs you want to see.
Type of node Log location
Server /var/spool/torque/server_log/date
Client /var/spool/torque/mom_log/date
10 High-Performance Reservoir Risk Assessment
(Jacta

Cluster) Configuration Guide


A
l
l

m
a
r
k
s
,

t
r
a
d
e
m
a
r
k
s
,

a
n
d

r
e
g
i
s
t
e
r
e
d

t
r
a
d
e
m
a
r
k
s

a
c
k
n
o
w
l
e
d
g
e
d
.
www.pdgm.com

You might also like