Skip to content

Commit 8e459b4

Browse files
committed
Provide composite class #10
1 parent 5c97153 commit 8e459b4

File tree

5 files changed

+1325
-9
lines changed

5 files changed

+1325
-9
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,13 @@ For a quick test:
117117
cd package
118118
python3 -u -m unittest streamsx.hbase.tests.test_hbase.TestDistributedPut
119119
```
120+
### Test with local Streams instance and composite classes
121+
This test requires STREAMS_INSTALL set and a running Streams instance.
122+
123+
Required envionment variable for the `com.ibm.streamsx.hbase` toolkit location: `STREAMS_HBASE_TOOLKIT`
124+
and HADOOP_HOST_PORT environment variable (hostname:port) to create a hbase-site.xml file.
120125

126+
```
127+
cd package
128+
python3 -u -m unittest streamsx.hbase.tests.test_hbase.TestCompositeClass
129+
```

package/docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@
6565
# built documents.
6666
#
6767
# The short X.Y version.
68-
version = '1.4'
68+
version = '1.5'
6969
# The full version, including alpha/beta/rc tags.
70-
release = '1.4.0'
70+
release = '1.5.0'
7171

7272
# The language for content autogenerated by Sphinx. Refer to documentation
7373
# for a list of supported languages.

package/streamsx/hbase/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
5959
"""
6060

61-
__version__='1.4.0'
61+
__version__='1.5.0'
6262

6363
__all__ = ['download_toolkit', 'scan', 'get', 'put', 'delete']
64-
from streamsx.hbase._hbase import download_toolkit, scan, get, put, delete
64+
from streamsx.hbase._hbase import download_toolkit, scan, get, put, delete, HBaseGet, HBasePut, HBaseScan

0 commit comments

Comments
 (0)