Index handler class in Hive

Viewing 1 reply thread
  • Author
    Posts
    • #6643
      DataFlair TeamDataFlair Team
      Spectator

      Why do we need to specify index handler class while creating index in Hive?

    • #6644
      DataFlair TeamDataFlair Team
      Spectator

      There are some main responsibilities of index handler, they are:

      – At the time of CREATE INDEX, it validates the format of the base table and also generates the structure of the index table (if any). Moreover, it fills any additional information into the index’s storage descriptor as well.

      – Further, it produces a plan for reading the base table’s data and writing to the index storage and/or index table, at the time of REBUILD.

      – Moreover, it deletes any index-specific storage, during DROP.

      Note: index tables are dropped automatically by Hive

      – Also, at the time of queries, index handler participates in optimization, to convert operators like filters into index access plans.

      Learn more about creating an index in Hive, follow the link:Apache Hive View and Hive Index

Viewing 1 reply thread
  • You must be logged in to reply to this topic.