juliuszsompolski commented on code in PR #42212:
URL: https://github.com/apache/spark/pull/42212#discussion_r1277746582
##########
connector/connect/server/src/main/scala/org/apache/spark/sql/connect/config/Connect.scala:
##########
@@ -121,4 +121,14 @@ object Connect {
.version("3.5.0")
.booleanConf
.createWithDefault(false)
+
+ val CONNECT_GRPC_MARSHALLER_RECURSION_LIMIT =
+ ConfigBuilder("spark.connect.grpc.marshallerRecursionLimit")
+ .doc(
+ """
+ |Sets the recursion limit to grpc protobuf messages.
+ |""".stripMargin)
+ .version("3.5.0")
+ .intConf
+ .createWithDefault(1024)
Review Comment:
should this config be `.internal()`?
(though that question could be ask of multiple other configs in this file -
should they be internal; currently none are internal?)
(Edit: actually CONNECT_COPY_FROM_LOCAL_TO_FS_ALLOW_DEST_LOCAL is internal,
but none of the others...)
--
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]