Hi I have a HashSet which needs to be utilized in each and every map task in hadoop. I dont want to initialize it multiple times. I heard that it is possible by setting the variable in configure function. Any suggestions are welcome.
|
feedback
|
|
Map tasks run on multiple nodes and each node has multiple JVMs in which the map tasks execute. So, as-is it's not possible to share a HashSet across map tasks. There are a couple of ways to alleviate the problem mentioned in the OP
| |||||
feedback
|
|
If you declare the HaseSet as static it will be initialized once per task If you need to to share it between tasks you need something shares such as distributed cache mentioned by Praveen | |||
|
feedback
|
|
It seems that you haven't really understand the execution strategy of Hadoop. If you are in distributed mode, you cannot share a collection (HashSet) throughout multiple map tasks. That is because Tasks are executed in their own JVM and it is not deterministic, even not with jvm reuse that your collection will still be there after the jvm has been resetted. What you can do is you can setup a Therefore you can override the However you need enough ram to store the If you don't have this capacity, you should take a distributed cache solution into account, but this will have overhead because each query must be serialized and deserialized. And it is not guranteed that the data is locally available, so this may take a lot longer than a collection within the task. | |||
|
feedback
|
|
The question is what you want to save? If it is time to initialize the set - then I would suggest using static variable which will be initialized if null and never cleaned. As a result each task, which happens to reuse the same JVM will use it. | |||
|
feedback
|