Uploaded image for project: 'Chukwa (retired)'
  1. Chukwa (retired)
  2. CHUKWA-641

PatternSyntaxException Crash from Unvalidated Regular Expression Usage

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 0.5.0
    • None
    • None
    • None

    Description

      Chukwa sometimes crashes with an unhelpful stack trace. In particular, a PatternSyntaxException is thrown when an invalid regular expression is passed to the dumpChunk command. This exception isn't useful to users to diagnose the error. I think it would be better to report a detailed error message. The attached patch makes this change.

      Steps to reproduce:

      1. Run 'bin/chukwa dumpChunk "tags.=(" file'
      2. dumpChunk command fails to start
      3. See exception:
      Exception in thread "main" java.util.regex.PatternSyntaxException:
      Unclosed group near index 1
      (
       ^
             at java.util.regex.Pattern.error(Pattern.java:1713)
             at java.util.regex.Pattern.accept(Pattern.java:1571)
             at java.util.regex.Pattern.group0(Pattern.java:2533)
             at java.util.regex.Pattern.sequence(Pattern.java:1806)
             at java.util.regex.Pattern.expr(Pattern.java:1752)
             at java.util.regex.Pattern.compile(Pattern.java:1460)
             at java.util.regex.Pattern.<init>(Pattern.java:1133)
             at java.util.regex.Pattern.compile(Pattern.java:847)
             at org.apache.hadoop.chukwa.util.Filter.<init>(Filter.java:94)
             at org.apache.hadoop.chukwa.util.DumpChunks.dump(DumpChunks.java:88)
             at org.apache.hadoop.chukwa.util.DumpChunks.main(DumpChunks.java:53)
      

      After applying the supplied patch the output is:

      Error parsing "tags" regular expression: Unclosed group near index 1
      (
       ^
      

      Attachments

        1. CHUKWA-641.patch
          0.9 kB
          Eric Spishak

        Activity

          People

            espishak Eric Spishak
            espishak Eric Spishak
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: