Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
2.0.2, 2.1.3, 2.2.3, 2.3.4, 2.4.6, 3.0.1
-
None
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.
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;
Attachments
Attachments
Issue Links
- relates to
-
SPARK-32364 Use CaseInsensitiveMap for DataFrameReader/Writer options
- Resolved
- links to