[ https://issues.apache.org/jira/browse/STORM-1565?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15252687#comment-15252687 ]
ASF GitHub Bot commented on STORM-1565: --------------------------------------- Github user dan-blanchard commented on a diff in the pull request: https://github.com/apache/storm/pull/1136#discussion_r60652163 --- Diff: pom.xml --- @@ -202,6 +202,7 @@ <clj-time.version>0.8.0</clj-time.version> <curator.version>2.9.0</curator.version> <json-simple.version>1.1</json-simple.version> + <msgpack.version>0.6.12</msgpack.version> --- End diff -- This would be *much* more useful if it were implemented using a newer version of the `msgpack-core` library—they changed the name after 0.6.12—because 0.7 and above supports the `BINARY` format, which lets you send arbitrary bytes. Without that, you won't be able to send tuples containing arbitrary bytes with this serializer. This is also a problem with the JSON serializer (because JSON strings can't contain non-Unicode characters), but it would be great if we didn't have the problem here. > Multi-Lang Performance Improvements > ----------------------------------- > > Key: STORM-1565 > URL: https://issues.apache.org/jira/browse/STORM-1565 > Project: Apache Storm > Issue Type: Improvement > Components: storm-core > Reporter: Xin Wang > Assignee: Xin Wang > > 1. add _org.apache.storm.multilang.MessagePackSerializer_ > 2. change default "topology.multilang.serializer" to _MessagePackSerializer_ > According to http://msgpack.org/ : It's like JSON, but fast and small. > {quote} > MessagePack is an efficient binary serialization format. It lets you exchange > data among multiple languages like JSON. But it's faster and smaller. Small > integers are encoded into a single byte, and typical short strings require > only one extra byte in addition to the strings themselves. > {quote} -- This message was sent by Atlassian JIRA (v6.3.4#6332)