Github user arunmahadevan commented on a diff in the pull request: https://github.com/apache/storm/pull/894#discussion_r45434875 --- Diff: storm-core/src/jvm/backtype/storm/spout/RawScheme.java --- @@ -18,11 +18,13 @@ package backtype.storm.spout; import backtype.storm.tuple.Fields; + +import java.nio.ByteBuffer; import java.util.List; import static backtype.storm.utils.Utils.tuple; public class RawScheme implements Scheme { - public List<Object> deserialize(byte[] ser) { + public List<Object> deserialize(ByteBuffer ser) { --- End diff -- Will this break the compatibility at the receiver ?. Earlier the tuple contained a `byte[]` and with the change it would contain a `ByteBuffer`.
--- 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 infrastruct...@apache.org or file a JIRA ticket with INFRA. ---