Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B4A19200CB1 for ; Sat, 24 Jun 2017 14:59:04 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B31F2160BDA; Sat, 24 Jun 2017 12:59:04 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 07009160BE6 for ; Sat, 24 Jun 2017 14:59:03 +0200 (CEST) Received: (qmail 94535 invoked by uid 500); 24 Jun 2017 12:59:02 -0000 Mailing-List: contact common-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list common-dev@hadoop.apache.org Received: (qmail 94520 invoked by uid 99); 24 Jun 2017 12:59:02 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 24 Jun 2017 12:59:02 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 3EECAC00A6 for ; Sat, 24 Jun 2017 12:59:02 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -100.002 X-Spam-Level: X-Spam-Status: No, score=-100.002 tagged_above=-999 required=6.31 tests=[RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id d-K9kmG98Fvl for ; Sat, 24 Jun 2017 12:59:01 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 098605FC3D for ; Sat, 24 Jun 2017 12:59:01 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 4A279E0069 for ; Sat, 24 Jun 2017 12:59:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 082CD21941 for ; Sat, 24 Jun 2017 12:59:00 +0000 (UTC) Date: Sat, 24 Jun 2017 12:59:00 +0000 (UTC) From: "Uwe Schindler (JIRA)" To: common-dev@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (HADOOP-14586) org.apache.hadoop.util.Shell causes failure in leading to almost all of Hadoop failing (next one StringUtils) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Sat, 24 Jun 2017 12:59:04 -0000 Uwe Schindler created HADOOP-14586: -------------------------------------- Summary: org.apache.hadoop.util.Shell causes failure in leading to almost all of Hadoop failing (next one StringUtils) Key: HADOOP-14586 URL: https://issues.apache.org/jira/browse/HADOOP-14586 Project: Hadoop Common Issue Type: Bug Components: common Environment: Java 9, build 175 (Java 9 relaese candidate as of June 25th, 2017) Reporter: Uwe Schindler Priority: Critical You cannot use any Hadoop component anymore with the latest release candidate build of Java 9, because it fails with an StringIndexOutOfBoundsException in {{org.apache.hadoop.util.Shell#}}. This leads to a whole cascade of failing classes (next in chain is StringUtils). The reason is that the release candidate build of Java 9 no longer has "-ea" in the version string and the system property "java.version" is now simply "9". This causes the following line to fail fatally: {code:java} private static boolean IS_JAVA7_OR_ABOVE = System.getProperty("java.version").substring(0, 3).compareTo("1.7") >= 0; {code} Analysis: - This code looks wrong, as comparing a version this way is incorrect. - The {{substring(0, 3)}} is completely useless, {{compareTo}} also works without it, although it is still an invalid way to compare a version. Maybe look at Lucene's source code (Constants.java) to have a better way in doing this! Sorry this is incredible to me! Hardcoding string bounds into a static initializer that are applied on a string that you have no control of... This issue breaks Apache Solr from working with Java 9, so I set it to "critical". We have to disable the whole Hadoop integration once Java 9 is detected. -- This message was sent by Atlassian JIRA (v6.4.14#64029) --------------------------------------------------------------------- To unsubscribe, e-mail: common-dev-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-dev-help@hadoop.apache.org