Skip to content

Commit

Permalink
doc gridHA
Browse files Browse the repository at this point in the history
  • Loading branch information
tomweber-sas committed Jul 21, 2017
1 parent 50abd7f commit 4bfc1e1
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions saspy/doc/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ encoding -

.. code-block:: ipython3
default = {'saspath': '/opt/sasinside/SASHome/SASFoundation/9.4/bin/sas_u8'
'options' : ["-fullstimer"]
default = {'saspath': '/opt/sasinside/SASHome/SASFoundation/9.4/bin/sas_u8',
'options' : ["-fullstimer", "-autoexec", "/user/tom/autoexec"]
}
.. note:: The trigger to use the STDIO connection method is the absence of any
Expand Down Expand Up @@ -311,9 +311,11 @@ java -
path. On Windows, you might be able to simply enter ``java``. If that is not successful,
enter the fully qualified path.
iomhost -
(Required) The resolvable host name, or IP address to the IOM server.
(Required) The resolvable host name, or IP address to the IOM object spawner.
New in 2.1.6; this can be a list of all the object spawners hosts if you have load balanced object spawners.
This provides Grid HA (High Availability)
iomport -
(Required) The port that IOM server is listening on for workspace connections.
(Required) The port that object spawner is listening on for workspace server connections (workspace server port - not object spawner port!).
classpath -
(Required) The CLASSPATH to the IOM client JAR files and saspyiom.jar.
authkey -
Expand Down Expand Up @@ -354,9 +356,9 @@ appserver -
cpW += ";C:\\Program Files\\SASHome\\SASDeploymentManager\\9.4\\products\\deploywiz__94472__prt__xx__sp0__1\\deploywiz\\sas.core.jar"
cpW += ";C:\\ProgramData\\Anaconda3\\Lib\\site-packages\\saspy\\java\\saspyiom.jar"
# Unix client and Unix IOM server
# Unix client and Unix IOM server NEW 2.1.6 - with load balanced object spawners
iomlinux = {'java' : '/usr/bin/java',
'iomhost' : 'linux.iom.host',
'iomhost' : ['linux.grid1.iom.host','linux.grid2.iom.host','linux.grid3.iom.host','linux.grid4.iom.host'],
'iomport' : 8591,
'encoding' : 'latin1',
'classpath' : cpL,
Expand Down

0 comments on commit 4bfc1e1

Please sign in to comment.