Uploaded image for project: 'Hive'
  1. Hive
  2. HIVE-20239

Do Not Print StackTraces to STDERR in MapJoinProcessor

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 3.0.0
    • 3.2.0, 4.0.0-alpha-1
    • None

    Description

      MapJoinProcessor.java
          } catch (Exception e) {
            e.printStackTrace();
            throw new SemanticException("Failed to generate new mapJoin operator " +
                "by exception : " + e.getMessage());
          }
      

      Please change to... something like...

          } catch (Exception e) {
            throw new SemanticException("Failed to generate new mapJoin operator", e);
          }
      

      Attachments

        1. HIVE-20239.1.patch
          0.7 kB
          Anurag Mantripragada
        2. HIVE-20239.2.patch
          0.7 kB
          Anurag Mantripragada
        3. HIVE-20239.3.patch
          0.7 kB
          Anurag Mantripragada

        Activity

          People

            anuragmantri Anurag Mantripragada
            belugabehr David Mollitor
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: