-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pig Job Auto Tuning Integration #290
Open
mkumar1984
wants to merge
5
commits into
azkaban:master
Choose a base branch
from
mkumar1984:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
a534689
Pig Job Auto Tuning Integration
mkumar1984 f2fdb88
Addressing Review comment - 1
mkumar1984 fb689f1
Addressing review comments - 2
mkumar1984 ec7ce85
Add Test cases for mocking getCurrentRunParameter API and updating pa…
mkumar1984 29e81d8
Adding more test cases and addressing review comments
mkumar1984 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
pig.listener.visualizer=false | ||
|
||
jobtype.classpath=${pig.home}/lib/*,${pig.home}/* | ||
pig.home= | ||
pig.home= | ||
pig.enable.tuning=false | ||
#tuning.api.end.point=http://hostname:8080/rest/getCurrentRunParameters | ||
auto.tuning.job.type=PIG |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
plugins/jobtype/src/azkaban/jobtype/HadoopTuningConfigurationInjector.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* Copyright 2018 LinkedIn Corp. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not | ||
* use this file except in compliance with the License. You may obtain a copy of | ||
* the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
package azkaban.jobtype; | ||
|
||
import org.apache.hadoop.conf.Configuration; | ||
|
||
import azkaban.utils.Props; | ||
|
||
|
||
/** | ||
* HadoopTuningConfigurationInjector is responsible for inserting links back to the | ||
* Azkaban UI in configurations and for automatically injecting designated job | ||
* properties into the Hadoop configuration. | ||
* <p> | ||
* It is assumed that the necessary links have already been loaded into the | ||
* properties. After writing the necessary links as a xml file as required by | ||
* Hadoop's configuration, clients may add the links as a default resource | ||
* using injectResources() so that they are included in any Configuration | ||
* constructed. | ||
*/ | ||
public class HadoopTuningConfigurationInjector { | ||
|
||
// File to which the Hadoop configuration to inject will be written. | ||
public static final String INJECT_TUNING_FILE = "hadoop-tuning-inject.xml"; | ||
|
||
/* | ||
* To be called by the forked process to load the generated links and Hadoop | ||
* configuration properties to automatically inject. | ||
* | ||
* @param props The Azkaban properties | ||
*/ | ||
public static void injectResources(Props props) { | ||
HadoopConfigurationInjector.injectResources(props); | ||
Configuration.addDefaultResource(INJECT_TUNING_FILE); | ||
} | ||
|
||
/** | ||
* Writes out the XML configuration file that will be injected by the client | ||
* as a configuration resource. | ||
* <p> | ||
* This file will include a series of links injected by Azkaban as well as | ||
* any job properties that begin with the designated injection prefix. | ||
* | ||
* @param props The Azkaban properties | ||
* @param workingDir The Azkaban job working directory | ||
*/ | ||
public static void prepareResourcesToInject(Props props, String workingDir) { | ||
HadoopConfigurationInjector.prepareResourcesToInject(props, workingDir, INJECT_TUNING_FILE); | ||
} | ||
|
||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This class needs to leverage
HadoopConfigurationInjector
. There is a huge amount of code duplication here. Through refactoring if necessary, this class should only be adding logic for the tuning injections, not anything else.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
It seems like almost all of the code is duplicated apart from a few lines.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reused HadoopConfigurationInjector and refactored some methods.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! Looks great