hadoop/hadoop-tools/hadoop-resourceestimator
Sunil G 58fa96b697 Changed version in trunk to 3.3.0-SNAPSHOT. 2018-10-02 22:41:41 +05:30
..
src HADOOP-15495. Upgrade commons-lang version to 3.7 in hadoop-common-project and hadoop-tools. Contributed by Takanobu Asanuma. 2018-06-28 14:37:22 +09:00
README.md HADOOP-14840. Tool to estimate resource requirements of an application pipeline based on prior executions. (Rui Li via Subru). 2017-10-25 15:51:27 -07:00
pom.xml Changed version in trunk to 3.3.0-SNAPSHOT. 2018-10-02 22:41:41 +05:30

README.md

Resource Estimator Service

Resource Estimator Service can parse the history logs of production jobs, extract their resource consumption skylines in the past runs and predict their resource requirements for the new run.

Current Status

  • Support Hadoop YARN ResourceManager logs.
  • In-memory store for parsed history resource skyline and estimation.
  • A Linear Programming based estimator.
  • Provides REST interface to parse logs, query history store and estimations.

Upcoming features

  • UI to query history and edit and save estimations.
  • Persisent store implementation for store (either DB based or distributed key-value like HBase).
  • Integrate directly with the Hadoop YARN Reservation System to make a recurring reservation based on the estimated resources.

Refer to the design document for more details.