November 2018
Beginner to intermediate
260 pages
6h 12m
English
We implemented the map, reduce, and result methods of the ComputeTask interface; unless we need a special failover logic, we can reuse the result logic. The ComputeTaskAdapter class provides the default implementation of the result() method for reuse. In this section, we are going to re-implement our MapReduce job with the help of ComputeTaskAdapter.
The following are the steps:
public class ClubExpenseTaskAdapter extends ComputeTaskAdapter<String[], ...
Read now
Unlock full access