[ 
https://issues.apache.org/jira/browse/SPARK-32832?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dongjoon Hyun updated SPARK-32832:
----------------------------------
    Description: 
When a user have multiple options like path, paTH, and PATH for the same key 
path, option/options is non-deterministic because extraOptions is HashMap. This 
issue aims to use *CaseInsensitiveMap* instead of *HashMap* to fix this bug 
fundamentally.

{code}
spark.readStream
  .option("paTh", "1")
  .option("PATH", "2")
  .option("Path", "3")
  .option("patH", "4")
  .option("path", "5")
  .load()
...
org.apache.spark.sql.AnalysisException:
Path does not exist: file:/.../1;
{code}

> Use CaseInsensitiveMap for DataStreamReader/Writer options
> ----------------------------------------------------------
>
>                 Key: SPARK-32832
>                 URL: https://issues.apache.org/jira/browse/SPARK-32832
>             Project: Spark
>          Issue Type: Bug
>          Components: Structured Streaming
>    Affects Versions: 2.0.2, 2.1.3, 2.2.3, 2.3.4, 2.4.6, 3.0.1
>            Reporter: Dongjoon Hyun
>            Assignee: Dongjoon Hyun
>            Priority: Major
>             Fix For: 2.4.8, 3.1.0, 3.0.2
>
>
> When a user have multiple options like path, paTH, and PATH for the same key 
> path, option/options is non-deterministic because extraOptions is HashMap. 
> This issue aims to use *CaseInsensitiveMap* instead of *HashMap* to fix this 
> bug fundamentally.
> {code}
> spark.readStream
>   .option("paTh", "1")
>   .option("PATH", "2")
>   .option("Path", "3")
>   .option("patH", "4")
>   .option("path", "5")
>   .load()
> ...
> org.apache.spark.sql.AnalysisException:
> Path does not exist: file:/.../1;
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to