Configuring a SAS engine

To use SAS™ software as the Spotfire Statistics Services engine, you must perform additional configuration steps for each Spotfire Statistics Services installation.

Prerequisites

The SAS software must be installed on the same machine as the server. For cluster installations, SAS software must be installed on every machine where a server node is run. The only part of the SAS software that Spotfire Statistics Services requires is Base SAS. Other SAS software packages are not required, but they can be installed on the machine.

For more information about tested versions, see the Spotfire Statistics Services System Requirements section of the support web site at http://support.spotfire.com/sr.asp.

Note: On Microsoft Windows®, Spotfire Statistics Services normally would run as a Windows service. The properties window for a service contains a Log On tab, specifying how the service process should be executed; either Log in as:/Local System account, or Log in as:/This account. Use Log in as:/This account for the service if the time to start up a SAS software task needs to be minimized.

Procedure

  1. Edit the spserver.properties file to set engine.type=SAS.
    The properties file is located at SPSERVER_HOME/conf for a standalone installation or SPSERVER_SHARE/conf on a cluster. For more information, see engine.type.
  2. Set the following property to identify the path to the SAS software installation:
    Operating System Description
    Microsoft Windows® Add -Dspserver.sashome=/path/to/SAS to the Java options for the service. For more information, see Procrun .
    UNIX/Linux Edit SPSERVER_HOME/init.d/spserver to specify SPSERVER_SASHOME=/path/to/SAS.
    Note: SASHOME must be set not to the SAS installation, but to the location of the SAS executable (sas.exe).
  3. Restart Spotfire Statistics Services.
  4. Test Spotfire Statistics Services with SAS software operations by sending a simple SAS script to a Web browser. For example, use the following script (assuming the server is accessed via the URL http://myserver:8966/server_name).
    http://myserver:8966/server_name/api/v8/expression
    /eval?cmd=DATA out;DO x=1 to  3;y=x*100;rnum = 
    UNIFORM(-1);OUTPUT;END;RUN;
    If Spotfire Statistics Services is running correctly, it should return XML for a data frame with three rows and three columns.

    It should also return text giving the SAS software log for the script, listing the SAS code executed, execution time, and errors, as well as any text produced by the SAS PRINT procedure.