Repository: incubator-blur Updated Branches: refs/heads/master 19892af73 -> 491f89305
Thrift API change. Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/5764ef68 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/5764ef68 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/5764ef68 Branch: refs/heads/master Commit: 5764ef68f3d48f17088f95990577505596059547 Parents: 19892af Author: Aaron McCurry <[email protected]> Authored: Tue Dec 30 09:48:39 2014 -0500 Committer: Aaron McCurry <[email protected]> Committed: Tue Dec 30 09:48:39 2014 -0500 ---------------------------------------------------------------------- distribution/src/main/scripts/interface/Blur.thrift | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/5764ef68/distribution/src/main/scripts/interface/Blur.thrift ---------------------------------------------------------------------- diff --git a/distribution/src/main/scripts/interface/Blur.thrift b/distribution/src/main/scripts/interface/Blur.thrift index 6431d28..04e047b 100644 --- a/distribution/src/main/scripts/interface/Blur.thrift +++ b/distribution/src/main/scripts/interface/Blur.thrift @@ -1185,7 +1185,7 @@ service Blur { ) throws (1:BlurException ex) /** - * Adds to the specified transaction. The + * Adds to the specified transaction. */ void bulkMutateAdd( /** The table name. */ @@ -1197,6 +1197,18 @@ service Blur { ) throws (1:BlurException ex) /** + * Adds to the specified transaction. + */ + void bulkMutateAddMultiple( + /** The table name. */ + 1:string table, + /** The bulk id. */ + 2:string bulkId, + /** The row mutation. */ + 3:list<RowMutation> rowMutations + ) throws (1:BlurException ex) + + /** * Finishes the bulk mutate. If apply is true the mutations are applied and committed. If false the bulk mutate is deleted and not applied. */ void bulkMutateFinish(
