Thrift API change. Removing table from the bulk mutate apis.
Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/24d88568 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/24d88568 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/24d88568 Branch: refs/heads/master Commit: 24d88568eef23561db3219180d2af6c1f08f4cee Parents: eb02314 Author: Aaron McCurry <[email protected]> Authored: Mon Jan 19 20:42:24 2015 -0500 Committer: Aaron McCurry <[email protected]> Committed: Mon Jan 19 20:42:24 2015 -0500 ---------------------------------------------------------------------- .../src/main/scripts/interface/Blur.thrift | 24 +++++++------------- 1 file changed, 8 insertions(+), 16 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/24d88568/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 04e047b..9379858 100644 --- a/distribution/src/main/scripts/interface/Blur.thrift +++ b/distribution/src/main/scripts/interface/Blur.thrift @@ -1178,48 +1178,40 @@ service Blur { * Starts a transaction for update (e.g. Mutate). Returns a transaction id. */ void bulkMutateStart( - /** The table name. */ - 1:string table, /** The bulk id. */ - 2:string bulkId + 1:string bulkId ) throws (1:BlurException ex) /** * Adds to the specified transaction. */ void bulkMutateAdd( - /** The table name. */ - 1:string table, /** The bulk id. */ - 2:string bulkId, + 1:string bulkId, /** The row mutation. */ - 3:RowMutation rowMutation + 2:RowMutation rowMutation ) throws (1:BlurException ex) /** * Adds to the specified transaction. */ void bulkMutateAddMultiple( - /** The table name. */ - 1:string table, /** The bulk id. */ - 2:string bulkId, + 1:string bulkId, /** The row mutation. */ - 3:list<RowMutation> rowMutations + 2: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( - /** The table name. */ - 1:string table, /** The bulk id. */ - 2:string bulkId, + 1:string bulkId, /** Apply the bulk mutate flag. */ - 3:bool apply, + 2:bool apply, /** If true this call will not block on bulk completion. This may be required for loader bulk loads. */ - 4:bool blockUntilComplete + 3:bool blockUntilComplete ) throws (1:BlurException ex) /**
