Uploaded image for project: 'IMPALA'
  1. IMPALA
  2. IMPALA-5341

File size filter in planner tests also filters row-size

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • Impala 2.5.0, Impala 2.6.0, Impala 2.7.0, Impala 2.8.0
    • Impala 2.11.0
    • Infrastructure
    • ghx-label-4

    Description

      In our planner tests we want to ignore minor differences in reported file sizes to avoid flaky tests, see IMPALA-2565. However, the introduced filter also matches "row-size=" which we do not want to filter.

      Relevant code is in TestUtils.java:

        static class FileSizeFilter implements ResultFilter {
          private final static String BYTE_FILTER = "[KMGT]?B";
          private final static String NUMBER_FILTER = "\\d+(\\.\\d+)?";
          private final static String FILTER_KEY = "size="; <-- also matches "row-size="
      
          public boolean matches(String input) { return input.contains(FILTER_KEY); }
      
          public String transform(String input) {
            return input.replaceAll(FILTER_KEY + NUMBER_FILTER + BYTE_FILTER, FILTER_KEY);
          }
        }
      

      Attachments

        Activity

          People

            jinchul Jin Chul Kim
            alex.behm Alexander Behm
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: