LuciferYang commented on code in PR #37610: URL: https://github.com/apache/spark/pull/37610#discussion_r955856104
########## docs/configuration.md: ########## @@ -1102,6 +1102,27 @@ Apart from these, the following properties are also available, and may be useful </td> <td>3.0.0</td> </tr> +<tr> + <td><code>spark.shuffle.service.db.enabled</code></td> + <td>true</td> + <td> + To determine whether external shuffle uses db to store shuffle state. + In standalone and Yarn modes, for more detail, see + <a href="spark-standalone.html#Cluster Launch Scripts">this description</a>. + </td> + <td>3.0.0</td> +</tr> +<tr> + <td><code>spark.shuffle.service.db.backend</code></td> + <td>LEVELDB</td> + <td> + To specify a disk-based store used in shuffle service local db when + <code>spark.shuffle.service.db.enabled</code> is true, LEVELDB or ROCKSDB. + In standalone and Yarn modes, for more detail, see + <a href="spark-standalone.html#Cluster Launch Scripts">this description</a>. Review Comment: Is it appropriate to add `spark.shuffle.service.db.backend` to `running-on-yarn.md`? The configurations listed in `running-on-yarn.md` are all in `spark.yarn.shuffle` namespace now. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
