Skip to content

Commit c594162

Browse files
author
KIRSTEN W. HILDRUM
committed
formatting change in HBASEDelete, acouple wording changes in HBASEScan
1 parent 4c1be87 commit c594162

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

com.ibm.streamsx.hbase/impl/java/src/com/ibm/streamsx/hbase/HBASEDelete.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,12 @@
3737
@PrimitiveOperator(name = "HBASEDelete", namespace = "com.ibm.streamsx.hbase", description = "The `HBASEDelete` operator deletes an entry, an entire row, a columnFamily in a row, or a columnFamily, columnQualifier pair in a row from HBASE. It can also optionally do a checkAndDelete operation."
3838
+ HBASEOperator.DOC_BLANKLINE
3939
+ "The behavior of the operator depends on its parameters:"
40+
+HBASEOperator.DOC_BLANKLINE
4041
+ "* To delete an entire row, specify only the row."
42+
+ HBASEOperator.DOC_BLANKLINE
4143
+ "* To delete a columnFamily, specify the row and the columnFamily. "
4244
+ " You can specify the columnFamily by using the **staticColumnFamily** or **columnFamilyAttrName** parameters."
45+
+ HBASEOperator.DOC_BLANKLINE
4346
+ "* To delete just a single entry, specify the row, columnFamily, and columnQualifier."
4447
+ "You can specify the columnQualifier by using the **staticColumnQualifer** or **columnQualiferAttrName** parameters."
4548
+ HBASEOperator.DOC_BLANKLINE

com.ibm.streamsx.hbase/impl/java/src/com/ibm/streamsx/hbase/HBASEScan.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ public class HBASEScan extends HBASEOperator implements StateHandler {
7575
+ " If it does not have an input port, it can be the source of a region, and the region may either be operator-driven or "
7676
+ "periodic."
7777
+ HBASEOperator.DOC_BLANKLINE
78-
+ "When in a trigger-based consistent region, the "
78+
+ "When in a operator-based consistent region, the "
7979
+ TRIGGER_PARAM
80-
+ " must be set to the number of rows to process before triggering a drain. The operator will process approximately that many rows before starting a drain."
81-
+ " and maxThreads must be one";
80+
+ " must be set to the number of rows to process before triggering a drain. The operator will process approximately that many rows before starting a drain.";
81+
8282
static final String operatorDescription = "The `HBASEScan` operator scans an HBASE table. Like the `FileSource` operator, it has an optional input port. If no input port is"
8383
+ " specifed, then the operator scans the table according to the parameters that you specify, and sends the final punctuation. If you specify an input "
8484
+ " port, the operator does not start a scan until it receives a tuple. After the operator receives a tuple, it"

0 commit comments

Comments
 (0)