I am running a hive query where distinct is applied on all the selected columns, and I noticed that there are a couple of reducers being initiated for running the same query. can anyone explain me the reason behind it?
Example query:
> SELECT distinct
seg.col1,
seg.col2,
seg.col3
FROM user.ag_user seg
Where ‘2018-05-06’ between start_date and end_date limit 5;