Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/19984#discussion_r157124263
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala ---
    @@ -1035,6 +1035,22 @@ object SQLConf {
         .booleanConf
         .createWithDefault(true)
     
    +  val CONTINUOUS_STREAMING_EXECUTOR_QUEUE_SIZE =
    +    buildConf("spark.sql.streaming.continuous.executorQueueSize")
    +    .internal()
    +    .doc("The size (measured in number of rows) of the queue used in 
continuous execution to" +
    +      " buffer the results of a ContinuousDataReader.")
    +    .intConf
    +    .createWithDefault(1024)
    +
    +  val CONTINUOUS_STREAMING_EXECUTOR_POLL_INTERVAL_MS =
    +    buildConf("spark.sql.streaming.continuous.executorPollIntervalMs")
    +      .internal()
    +      .doc("The interval at which continuous execution readers will poll 
to check whether" +
    +        " the epoch has advanced on the driver.")
    +      .intConf
    --- End diff --
    
    `timeConf`?


---

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

Reply via email to