Github user kayousterhout commented on a diff in the pull request:
https://github.com/apache/spark/pull/17140#discussion_r104018967
--- Diff:
core/src/main/scala/org/apache/spark/scheduler/TaskDescription.scala ---
@@ -86,7 +86,10 @@ private[spark] object TaskDescription {
dataOut.writeInt(taskDescription.properties.size())
taskDescription.properties.asScala.foreach { case (key, value) =>
dataOut.writeUTF(key)
- dataOut.writeUTF(value)
+ // SPARK-19796 -- writeUTF doesn't work for long strings, which can
happen for property values
+ val bytes = value.getBytes("utf-8")
+ dataOut.writeInt(bytes.length)
+ dataOut.write(bytes)
--- End diff --
Also if you do think it makes sense to use writeObject, would you mind
quickly checking the size of the serialized task in this test with your
original version and with writeObject just to make sure the size is comparable?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]