You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@oozie.apache.org by "huang (JIRA)" <ji...@apache.org> on 2015/08/19 15:51:46 UTC

[jira] [Commented] (OOZIE-1183) Update WebServices API documentation

    [ https://issues.apache.org/jira/browse/OOZIE-1183?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14703041#comment-14703041 ] 

huang commented on OOZIE-1183:
------------------------------

I have some question about oozie REST API. 
What’s the admin webservice API use for?
Who does the admin webservice API supper to?
If I close the admin webservice API, what will it be?


Hopefull  for your response.

> Update WebServices API documentation
> ------------------------------------
>
>                 Key: OOZIE-1183
>                 URL: https://issues.apache.org/jira/browse/OOZIE-1183
>             Project: Oozie
>          Issue Type: Bug
>          Components: docs
>    Affects Versions: trunk
>            Reporter: Robert Kanter
>            Assignee: Robert Kanter
>             Fix For: 4.0.0
>
>         Attachments: OOZIE-1183.patch, OOZIE-1183.patch
>
>
> We recently had some trouble trying to [rerun a coordinator job using the WebServices API|http://oozie.apache.org/docs/3.3.0/WebServicesAPI.html#Re-Runing_a_coordinator_job].  According to the documentation, we were trying to POST a URL like this:
> {noformat}PUT http://localhost:11000/oozie/v1/job/0000024-130108101138395-oozie-oozi-C?action=rerun&type=exact&end-action=1&start-action=1{noformat}
> but this gave an error.  
> After looking through the client and server code, I figured out that there's a huge discrepancy between it and the documentation.  The parameters its using in the PUT request for a coordinator job are:
> - action=coord-rerun
> - type=[date|action]
> - scope=a comma-separated list of date ranges. Each date range element is specified with two dates separated by '::' (if type=date)
> - scope=a comma-separated list of action ranges. The action range is specified with two action numbers separated by '-' (if type=action)
> - refresh=[true|false] used to indicate if user wants to refresh an action's input and output events.
> - nocleanup=[true|false] used to indicate if user wants to cleanup output events for given rerun actions
> Based on that, the correct URL to PUT is:
> {noformat}http://localhost:11000/oozie/v1/job/0000024-130108101138395-oozie-oozi-C?action=coord-rerun&type=action&scope=1-1&refresh=false&nocleanup=false{noformat}
> We should update the documentation with the correct information above.  We should also go through the rest of the WebServices API documentation and make sure its accurate (this isn't the first time I've had to go through the code when using the WebServices API).  



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)