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

Check modifiability of config parameters

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Resolved
    • Minor
    • Resolution: Fixed
    • 2.3.1
    • 2.4.0
    • SQL
    • None

    Description

      Our customers and support team continuously face to the situation when setting a config parameter via spark.conf.set() does not may any effects. It is not clear from parameter's name is it static parameter or one of the parameter that can be set at runtime for current session state. It would be useful to have a method of RuntimeConfig which could tell to an user - does the given parameter may effect on the current behavior if he/she change it in the spark-shell or running notebook. The method can have the following signature:

      def isModifiable(key: String): Boolean
      

      Any config parameter can be checked by using the syntax like this:

      scala> spark.conf.isModifiable("spark.sql.sources.schemaStringLengthThreshold")
      res0: Boolean = false
      

      or for Spark Core parameter:

      scala> spark.conf.isModifiable("spark.task.cpus")
      res1: Boolean = false
      

      Attachments

        Issue Links

          Activity

            People

              maxgekk Max Gekk
              maxgekk Max Gekk
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: