JoshRosen commented on code in PR #46697:
URL: https://github.com/apache/spark/pull/46697#discussion_r1613915291


##########
core/src/main/scala/org/apache/spark/api/python/SerDeUtil.scala:
##########
@@ -104,12 +104,40 @@ private[spark] object SerDeUtil extends Logging {
     }
   }
 
+  /**
+   * Use a fixed batch size
+   */
+  private[spark] class FixedBatchedPickler(iter: Iterator[Any], batch: Int) 
extends Iterator[Array[Byte]] {

Review Comment:
   Looks like Scalastyle is complaining about line length, so you might need to 
wrap this like
   
   ```suggestion
     private[spark] class FixedBatchedPickler(
         iter: Iterator[Any],
         batch: Int)
       extends Iterator[Array[Byte]] {
   ```



-- 
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]

Reply via email to