The filter and jobType parameters are different; I think what you want is this: http://uat-oozie.lol.ru:11000/oozie/v1/jobs?jobtype=coord&filter=status=RUNNING
As per the documentation I linked to, you can have multiple filters: > [NAME=VALUE][;NAME=VALUE]* > The query will do an AND among all the filter names. > The query will do an OR among all the filter values for the same name. > Multiple values must be specified as different name value pairs. - Robert On Tue, Sep 10, 2013 at 12:19 AM, Serega Sheypak <[email protected]>wrote: > Thanks for the reply. I don't want to use CLI, I want to query plain old > REST. In worst case I would use Java API. > Is composite filter is supported? Looks like I can't fitler by: > ***PSEUDO REST request goes here*** > ' > > http://uat-oozie.lol.ru:11000/oozie/v1/jobs?filter=jobType=coordinator+status=RUNNING > ' > > > 2013/9/9 Robert Kanter <[email protected]> > > > Hi, > > > > You can get a list of all coordinators, their configuration, their > > definition, etc from various commands either via the CLI or REST > > interfaces. I suggest you checkout these two pages in the documentation: > > CLI: http://oozie.apache.org/docs/4.0.0/DG_CommandLineTool.html > > REST: http://oozie.apache.org/docs/4.0.0/WebServicesAPI.html > > > > e.g. This will return all coordinators: > > $ oozie jobs -jobtype coordinator > > > > - Robert > > > > > > On Mon, Sep 9, 2013 at 11:28 AM, Serega Sheypak < > [email protected] > > >wrote: > > > > > 1. Is there any possibility to list all submitted coordinators? > > > 2. Is there any possibility to get coordinator definition for oozie? > > > 3. Is there any possiblity to get oozie coordinator configuration? > > > 4. Is there any possibility to get oozie coordinator action > > materialization > > > configuration? > > > > > >
