Uploaded image for project: 'Spark'
  1. Spark
  2. SPARK-32832

Use CaseInsensitiveMap for DataStreamReader/Writer options

Attach filesAttach ScreenshotVotersWatch issueWatchersCreate sub-taskLinkCloneUpdate Comment AuthorReplace String in CommentUpdate Comment VisibilityDelete Comments
    XMLWordPrintableJSON

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
    • 2.4.8, 3.0.2, 3.1.0
    • Structured Streaming
    • 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

        Activity

          This comment will be Viewable by All Users Viewable by All Users
          Cancel

          People

            dongjoon Dongjoon Hyun
            dongjoon Dongjoon Hyun
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Slack

                Issue deployment