Our system has a cluster of 5 hosts (e.g., data node or computer slaves…). Now, I want allocate different number of reducers of these hosts because 1 host is slow. . We are using Hadoop Yarn. The resource manager (so called Job tracker in MapReduce1) always allocate evenly number of reducers of to 5 hosts. Is there anyway that I can limit number of reducers of a specific host? For example, what I want is that a job with 40 reducers, 4 fast computers have 36 reducers (e.g., 9 reducers each host), the slow computer has only 4 reducers.
How do we allocate different number of reducers of heterogeneous clusters?
124 Views Asked by Nguyen Vo At
1
There are 1 best solutions below
Related Questions in HADOOP
- pcap to Avro on Hadoop
- schedule and automate sqoop import/export tasks
- How to diagnose Kafka topics failing globally to be found
- Only 32 bit available in Oracle VM - Hadoop Installation
- Using HDFS with Apache Spark on Amazon EC2
- How to get raw hadoop metrics
- How to output multiple values with the same key in reducer?
- Loading chararray from embedded JSON using Pig
- Oozie Pig action stuck in PREP state and job is in RUNNING state
- InstanceProfile is required for creating cluster - create python function to install module
- mapreduce job not setting compression codec correctly
- What does namespace and block pool mean in MapReduce 2.0 YARN?
- Hadoop distributed mode
- Building apache hadoop 2.6.0 throwing maven error
- I am using Hbase 1.0.0 and Apache phoenix 4.3.0 on CDH5.4. When I restart Hbase regionserver is down
Related Questions in LOAD-BALANCING
- AWS ELB Load Balancer: is it possible to set multiple session cookies?
- How to load balancing multiple Netty TCP socket server with nginx stream module?
- Can you control a number of Amazon Elastic Load Balancer instances?
- Sticky Session for Rest API Calls
- Proxypac - Loadbalancing with "if(Math.random() < 0.5)"
- Relationship between HTTPS Healthchecks and an HTTPS connection to a GCE Instance
- How to measure the load balancing in OpenMP of GCC
- Usefulness of Amazon ELB (Elastic Load Balancing
- PHP load balancer for data processing application
- Apache tomcat deployment with load balancer
- Where does Jetty store information about authenticated user?
- Should I use Oort or write my own forwarding using CometD, when nodes don't need to know about each other?
- NGINX showing blank page on http to https redirect
- Google HTTP load balancing enforce HTTPS
- ZeroMQ Job Distribution
Related Questions in HADOOP-YARN
- Impala Resource Estimation for queries with Group by
- mapreduce job not setting compression codec correctly
- What does namespace and block pool mean in MapReduce 2.0 YARN?
- nmap does not show all open ports
- Spark resources not fully allocated on Amazon EMR
- Not able to format namenode in hadoop-2.6.0 multi node installation
- MapReduce job fails with ExitCodeException exitCode=255
- Spark GraphX memory out of error SparkListenerBus (java.lang.OutOfMemoryError: Java heap space)
- Yarn autodetect slaves failure
- how to ignore key-value pair in Map-Reduce if values are blank?
- What happens to orphaned Yarn Child processes?
- Setting mapreduce.job.jar with a jar in path containing space
- Hive index mapreduce memory errors
- YARN log aggregation on a per job basis
- Importtsv command gives : Container exited with a non-zero exit code 1 error
Related Questions in REDUCERS
- How could I set the number or size of output files in an "insert" script?
- How do we allocate different number of reducers of heterogeneous clusters?
- Storing and instance instead of an array in rxjs5 Store
- React Reducer function to return array of objects
- Handling many entities on Redux without repetition
- dynamic redux app loading vs store composition and combineReducers
- Redux: Colocating Selectors with Reducers
- How to update two values in two different reducers at the same time in Redux / Atomic operations
- Multiple actions in React reducer
- Redux: few lists with separate data managed by the same reducer
- unable to pass props to components in react-redux
- react native get async initial state in reducer
- props not being passed to components after implementing combineReducers in react-redux
- Unable to create Redux store in angular2
- Implement callbacks between two actions in redux
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It is entirely possible and a common phenomenon to have heterogenous systems in a hadoop cluster. Typically, as the cluster keeps becoming larger and hence is scaling horizontally, new nodes of different configurations get added to the cluster.
In such scenarios, in order to have configurations applicable to a specific node or to a group of nodes, we need to modify the configurations accordingly on those hosts.
For example, in case of Hortonworks Data Platform where the cluster is managed through Ambari, the concept of host config groups can be leveraged for this purpose.
Please see the below link for further information:
https://docs.hortonworks.com/HDPDocuments/Ambari-2.1.1.0/bk_Ambari_Users_Guide/content/_using_host_config_groups.html
Also see the below link, where the discussion is about increasing the number of YARN containers at a node level. It remains the same in your case as well, which is the opposite of the use case discussed there:
How to increase the number of containers in nodemanager in YARN
Another useful link:
http://hortonworks.com/blog/how-to-plan-and-configure-yarn-in-hdp-2-0/