1
2.4kviews
Give Map reduce algorithms to perform Grouping and Aggregation by Map Reduce.
1 Answer
written 2.6 years ago by |
Group rows based on some set of columns and apply some aggregation (sum, count, max, min, etc.) on some column of the small groups that are formed. This corresponds to GROUP BY in SQL.