Black_Rider
Black_Rider

Reputation: 1575

How to explicitly specify map node or reduce node in Hadoop

is there any .xml file or something similar which explicitly specify that are nodes where I want to run Map task or Reduce Task. if this is hadoop architecture dependent then how can specify nodes.

Upvotes: 1

Views: 334

Answers (2)

Niels Basjes
Niels Basjes

Reputation: 10642

No, there is no such feature.

I doubt if such a feature will ever be created because this would break the scalability and fault tolerance properties.

Upvotes: 1

Amnesiac
Amnesiac

Reputation: 669

you need not specify the node on which you want to run the tasks. Hadoop map-reduce does it by itself.

Upvotes: 0

Related Questions