From issues-return-259243-archive-asf-public=cust-asf.ponee.io@spark.apache.org Mon Jul 20 06:17:05 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mailroute1-lw-us.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id 02F5B180647 for ; Mon, 20 Jul 2020 08:17:05 +0200 (CEST) Received: from mail.apache.org (localhost [127.0.0.1]) by mailroute1-lw-us.apache.org (ASF Mail Server at mailroute1-lw-us.apache.org) with SMTP id 02FEB123F6A for ; Mon, 20 Jul 2020 06:17:03 +0000 (UTC) Received: (qmail 97963 invoked by uid 500); 20 Jul 2020 06:17:01 -0000 Mailing-List: contact issues-help@spark.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@spark.apache.org Received: (qmail 97944 invoked by uid 99); 20 Jul 2020 06:17:01 -0000 Received: from mailrelay1-us-west.apache.org (HELO mailrelay1-us-west.apache.org) (209.188.14.139) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Jul 2020 06:17:01 +0000 Received: from jira-he-de.apache.org (static.172.67.40.188.clients.your-server.de [188.40.67.172]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 8FF19427AA for ; Mon, 20 Jul 2020 06:17:00 +0000 (UTC) Received: from jira-he-de.apache.org (localhost.localdomain [127.0.0.1]) by jira-he-de.apache.org (ASF Mail Server at jira-he-de.apache.org) with ESMTP id 15BA17803F7 for ; Mon, 20 Jul 2020 06:17:00 +0000 (UTC) Date: Mon, 20 Jul 2020 06:17:00 +0000 (UTC) From: "Dongjoon Hyun (Jira)" To: issues@spark.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (SPARK-32364) `path` argument of DataFrame.load/save should override the existing options MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/SPARK-32364?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Dongjoon Hyun updated SPARK-32364: ---------------------------------- Description: {code} spark.read .option("paTh", "1") .option("PATH", "2") .option("Path", "3") .option("patH", "4") .parquet("5") ... org.apache.spark.sql.AnalysisException: Path does not exist: file:/.../1; {code} {code} spark.read .option("PATH", "2") .option("Path", "3") .option("patH", "4") .parquet("5") ... org.apache.spark.sql.AnalysisException: Path does not exist: file:/.../4; {code} was: {code} spark.read .option("paTh", "1") .option("PATH", "2") .option("Path", "3") .option("patH", "4") .parquet("5") {code} {code} org.apache.spark.sql.AnalysisException: Path does not exist: file:/Users/dongjoon/APACHE/spark-release/spark-3.0.0-bin-hadoop3.2/1; {code} > `path` argument of DataFrame.load/save should override the existing options > --------------------------------------------------------------------------- > > Key: SPARK-32364 > URL: https://issues.apache.org/jira/browse/SPARK-32364 > Project: Spark > Issue Type: Bug > Components: SQL > Affects Versions: 2.0.2, 2.1.3, 2.2.3, 2.3.4, 2.4.6, 3.0.0 > Reporter: Dongjoon Hyun > Priority: Major > > {code} > spark.read > .option("paTh", "1") > .option("PATH", "2") > .option("Path", "3") > .option("patH", "4") > .parquet("5") > ... > org.apache.spark.sql.AnalysisException: > Path does not exist: file:/.../1; > {code} > {code} > spark.read > .option("PATH", "2") > .option("Path", "3") > .option("patH", "4") > .parquet("5") > ... > org.apache.spark.sql.AnalysisException: > Path does not exist: file:/.../4; > {code} -- This message was sent by Atlassian Jira (v8.3.4#803005) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org For additional commands, e-mail: issues-help@spark.apache.org