Anthony Hsu
Anthony Hsu
Currently, we don't calculate delay for TonY jobs (neither does the SparkMetricsAggregator). It may be useful to calculate the delay for Tony jobs. (However, container delay metrics can probably be...
Currently, Dr. Elephant creates a `Configuration` object that's initialized using the Hadoop conf on the classpath. That means Dr. Elephant only talks to one RM and one NN. Many companies...
With the latest TonY code, I've noticed that the TonY Portal shows applications as RUNNING even after they have finished. Consequently, when I click on the "" link, it returns...
This helps make it clear exactly what classes and methods are being imported and used.
Currently, TonY Portal logs files to `nohup.out` and `application.log`. Neither of these files is rolled, nor is a max size enforced. Eventually, we will run out of disk space. TonY...
In `HadoopSecurityManager_H_2_0`, the only place where the TGT is checked and a relogin from keytab happens if necessary is in the constructor, and that is only called a single time...
Sometimes after firing off a run, I realize there is a bug in my code. I would like to kill the running report to avoid wasting resources. Currently, there is...
In [log-data.js](https://github.com/azkaban/azkaban-plugins/blob/master/plugins/jobsummary/src/web/js/azkaban/model/log-data.js), the job_id regexes expect `job__`. However, on Hadoop 2, instead of of the form YYYYMMDDHHMM, the job_id appears appears to contain the milliseconds since epoch, which is variable...
When a report (flow) is in the PREPARING state, the startTime is -1, and the Reportal UI renders this as "1969-12-31 15:59:59", which confuses and alarms users. Instead, we should...
There is no need to add -Dreportal.execid=${azkaban.flow.execid} here - https://github.com/azkaban/azkaban-plugins/blob/master/plugins/reportal/src/azkaban/viewer/reportal/ReportalTypeManager.java#L59 - because Azkaban's JobRunner already inserts it here - https://github.com/azkaban/azkaban/blob/master/azkaban-execserver/src/main/java/azkaban/execapp/JobRunner.java#L536-539