Repository: incubator-blur Updated Branches: refs/heads/master 28bbf71b4 -> b41e3c6b8
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/357ad56e Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/357ad56e Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/357ad56e Branch: refs/heads/master Commit: 357ad56e51866aea7d8862a1a50a537dfd3b437f Parents: 28bbf71 Author: Aaron McCurry <amccu...@gmail.com> Authored: Mon Jan 11 10:33:09 2016 -0500 Committer: Aaron McCurry <amccu...@gmail.com> Committed: Mon Jan 11 10:33:09 2016 -0500 ---------------------------------------------------------------------- scripts/interface/Blur.thrift | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/357ad56e/scripts/interface/Blur.thrift ---------------------------------------------------------------------- diff --git a/scripts/interface/Blur.thrift b/scripts/interface/Blur.thrift index 4d70a65..761b3db 100644 --- a/scripts/interface/Blur.thrift +++ b/scripts/interface/Blur.thrift @@ -899,16 +899,15 @@ struct Arguments { enum CommandStatusState { RUNNING, INTERRUPTED, - COMPLETE, - BACK_PRESSURE_INTERRUPTED + COMPLETE } struct CommandStatus { 1:string executionId, - 2:string table, - 3:string commandName, - 4:Arguments arguments, - 5:CommandStatusState state + 2:string commandName, + 3:Arguments arguments, + 4:map<string,map<CommandStatusState,double>> serverStateMap, + 5:User user } struct ArgumentDescriptor { @@ -954,7 +953,7 @@ service Blur { /** * Fetches the command status ids in the order they were submitted. */ - list<string> commandStatusList(1:i32 startingAt, 2:i16 fetch, 3:CommandStatusState state) throws (1:BlurException ex) + list<string> commandStatusList(1:i32 startingAt, 2:i16 fetch) throws (1:BlurException ex) /** * Retrieves the command status by the given command execution id.