Re: how to list yarn applications by creation time and filter by username?

2019-11-27 Thread Prabhu Josephraj
The startTime field from ApplicationReport is the application creation time. The CLI yarn application -list does not print the application startTime. But we can use YARN REST Api "http://:/ws/v1/cluster/apps" which provides the startTime. On Thu, Nov 28, 2019 at 5:10 AM Manuel Sopena Ballesteros

RE: how to list yarn applications by creation time and filter by username?

2019-11-27 Thread Manuel Sopena Ballesteros
Thanks Prabhu, Do you know which yarn command can I use in order to get application creation time? Thank you Manuel From: Prabhu Josephraj [mailto:pjos...@cloudera.com] Sent: Wednesday, November 27, 2019 8:09 PM To: Manuel Sopena Ballesteros Cc: user@hadoop.apache.org Subject: Re: how to list

Re: how to list yarn applications by creation time and filter by username?

2019-11-27 Thread Prabhu Josephraj
Yarn CLI does not do that, i think u need to write a script which does that on top of the output provided by YARN CLI. On Wed, Nov 27, 2019 at 9:19 AM Manuel Sopena Ballesteros < manuel...@garvan.org.au> wrote: > Dear Hadoop community, > > > > I am learning yarn and would like to find an