Uploaded image for project: 'Hive'
  1. Hive
  2. HIVE-4160 Vectorized Query Execution in Hive
  3. HIVE-4548

Speed up vectorized LIKE filter for special cases abc%, %abc and %abc%

    XMLWordPrintableJSON

Details

    • Sub-task
    • Status: Resolved
    • Minor
    • Resolution: Fixed
    • vectorization-branch
    • vectorization-branch, 0.13.0
    • None
    • None

    Description

      Speed up vectorized LIKE filter evaluation for abc%, %abc, and %abc% pattern special cases (here, abc is just a place holder for some fixed string).

      Problem: The current vectorized LIKE implementation always calls the standard LIKE function code in UDFLike.java. But this is pretty expensive. It calls multiple functions and allocates at least one new object per call. Probably 80% of uses of LIKE are for the simple patterns abc%, %abc, and %abc%. These can be implemented much more efficiently.

      Start by speeding up the case for

      Column LIKE "abc%"

      The goal would be to minimize expense in the inner loop. Don't use new() in the inner loop, and write a static function that checks the prefix of the string matches the like pattern as efficiently as possible, operating directly on the byte array holding UTF-8-encoded string data, and avoiding unnecessary additional function calls and if/else logic. Call that in the inner loop.

      If feasible, consider using a template-driven approach, with an instance of the template expanded for each of the three cases. Start doing the abc% (prefix match) by hand, then consider templatizing for the other two cases.

      The code is in the "vectorization" branch of the main hive repo.

      Start by checking in the constructor for FilterStringColLikeStringScalar.java if the pattern is one of the simple special cases. If so, record that, and have the evaluate() method call a special-case function for each case, i.e. the general case, and each of the 3 special cases. All the dynamic decision-making would be done once per vector, not once per element.

      Attachments

        1. HIVE-4548.1-with-benchmark.patch.txt
          27 kB
          Teddy Choi
        2. HIVE-4548.1-without-benchmark.patch.txt
          15 kB
          Teddy Choi
        3. HIVE-4548.2-with-benchmark.patch.txt
          29 kB
          Teddy Choi
        4. HIVE-4548.2-without-benchmark.patch.txt
          18 kB
          Teddy Choi
        5. HIVE-4548.3.with-benchmark.patch.txt
          29 kB
          Teddy Choi
        6. HIVE-4548.3.without-benchmark.patch.txt
          19 kB
          Teddy Choi

        Activity

          People

            teddy.choi Teddy Choi
            ehans Eric N. Hanson
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: