@@ -83,17 +83,17 @@ Alternatively, you can fully qualify the operators that are provided by toolkit
83
83
2. Configure the SPL compiler to find the toolkit root directory. Use one of the following methods:
84
84
* Set the **STREAMS_SPLPATH** environment variable to the root directory of a toolkit
85
85
or multiple toolkits (with : as a separator). For example:
86
- export STREAMS_SPLPATH=$STREAMS_INSTALL/toolkits/com.ibm.streamsx.hbase
86
+ export STREAMS_SPLPATH=$STREAMS_INSTALL/toolkits/com.ibm.streamsx.hbase
87
87
* Specify the **-t** or **--spl-path** command parameter when you run the **sc** command. For example:
88
- sc -t $STREAMS_INSTALL/toolkits/com.ibm.streamsx.hbase -M MyMain
88
+ sc -t $STREAMS_INSTALL/toolkits/com.ibm.streamsx.hbase -M MyMain
89
89
where MyMain is the name of the SPL main composite.
90
90
**Note**: These command parameters override the **STREAMS_SPLPATH** environment variable.
91
91
* Add the toolkit location in InfoSphere Streams Studio.
92
92
3. Develop your application. To avoid the need to fully qualify the operators, add a use directive in your application.
93
93
* For example, you can add the following clause in your SPL source file:
94
- use com.ibm.streamsx.hbase::*;
94
+ use com.ibm.streamsx.hbase::*;
95
95
You can also specify a use clause for individual operators by replacing the asterisk (\*) with the operator name. For example:
96
- use com.ibm.streamsx.hbase::HBASEDelete;
96
+ use com.ibm.streamsx.hbase::HBASEDelete;
97
97
4. Build your application. You can use the **sc** command or Streams Studio.
98
98
5. Start the InfoSphere Streams instance.
99
99
6. Run the application. You can submit the application as a job by using the **streamtool submitjob** command or by using Streams Studio.
0 commit comments