+1 vote
in DevOps by
What is the importance of Vectorization in Hive?

1 Answer

0 votes
by

It’s a query optimization technique. Instead of processing multiple rows, Vectorization allows to process process a batch of rows as a unit. Consequently it can optimize query performance. The file must be stored in ORC format to enable this Vectorization. It’s disabled by default, but enable this property by run this command.

set hive.vectorized.execution.enabled=true;?

Related questions

0 votes
asked May 29, 2020 in DevOps by sharadyadav1986
+1 vote
asked May 29, 2020 in DevOps by sharadyadav1986
...