diff --git a/hbase-thrift/src/main/resources/org/apache/hadoop/hbase/thrift/Hbase.thrift b/hbase-thrift/src/main/resources/org/apache/hadoop/hbase/thrift/Hbase.thrift index 71f98996da..8f7d804d45 100644 --- a/hbase-thrift/src/main/resources/org/apache/hadoop/hbase/thrift/Hbase.thrift +++ b/hbase-thrift/src/main/resources/org/apache/hadoop/hbase/thrift/Hbase.thrift @@ -556,9 +556,9 @@ service Hbase { /** * Apply a series of batches (each a series of mutations on a single row) - * in a single transaction. If an exception is thrown, then the - * transaction is aborted. Default current timestamp is used, and - * all entries will have an identical timestamp. + * in a single attempt. If an exception is thrown, then + * the attempt is aborted (no transaction is guaranteed across rows). + * Default current timestamp is used, and all entries will have an identical timestamp. */ void mutateRows( /** name of table */ @@ -573,9 +573,9 @@ service Hbase { /** * Apply a series of batches (each a series of mutations on a single row) - * in a single transaction. If an exception is thrown, then the - * transaction is aborted. The specified timestamp is used, and - * all entries will have an identical timestamp. + * in a single attempt. If an exception is thrown, then + * the attempt is aborted (no transaction is guaranteed across rows). + * The specified timestamp is used, and all entries will have an identical timestamp. */ void mutateRowsTs( /** name of table */