Skip to content

Commit

Permalink
formatting change in HBASEDelete, acouple wording changes in HBASEScan
Browse files Browse the repository at this point in the history
  • Loading branch information
KIRSTEN W. HILDRUM committed Feb 11, 2015
1 parent 4c1be87 commit c594162
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,12 @@
@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."
+ HBASEOperator.DOC_BLANKLINE
+ "The behavior of the operator depends on its parameters:"
+HBASEOperator.DOC_BLANKLINE
+ "* To delete an entire row, specify only the row."
+ HBASEOperator.DOC_BLANKLINE
+ "* To delete a columnFamily, specify the row and the columnFamily. "
+ " You can specify the columnFamily by using the **staticColumnFamily** or **columnFamilyAttrName** parameters."
+ HBASEOperator.DOC_BLANKLINE
+ "* To delete just a single entry, specify the row, columnFamily, and columnQualifier."
+ "You can specify the columnQualifier by using the **staticColumnQualifer** or **columnQualiferAttrName** parameters."
+ HBASEOperator.DOC_BLANKLINE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ public class HBASEScan extends HBASEOperator implements StateHandler {
+ " 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 "
+ "periodic."
+ HBASEOperator.DOC_BLANKLINE
+ "When in a trigger-based consistent region, the "
+ "When in a operator-based consistent region, the "
+ TRIGGER_PARAM
+ " 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."
+ " and maxThreads must be one";
+ " 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.";

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"
+ " specifed, then the operator scans the table according to the parameters that you specify, and sends the final punctuation. If you specify an input "
+ " port, the operator does not start a scan until it receives a tuple. After the operator receives a tuple, it"
Expand Down

0 comments on commit c594162

Please sign in to comment.