Home » Hive Sort By vs Order By

Hive Sort By vs Order By

by Online Tutorials Library

Hive Sort By vs Order By

Hive sort by and order by commands are used to fetch data in sorted order. The main differences between sort by and order by commands are given below.

Sort by

May use multiple reducers for final output.

Only guarantees ordering of rows within a reducer.

May give partially ordered result.

Order by

Uses single reducer to guarantee total order in output.

LIMIT can be used to minimize sort time.

Next TopicHive Join

You may also like