Github user revans2 commented on a diff in the pull request: https://github.com/apache/storm/pull/442#discussion_r25346357 --- Diff: storm-core/src/clj/backtype/storm/daemon/executor.clj --- @@ -410,7 +410,11 @@ (disruptor/clojure-handler (fn [tuple-batch sequence-id end-of-batch?] (fast-list-iter [[task-id msg] tuple-batch] - (let [^TupleImpl tuple (if (instance? Tuple msg) msg (.deserialize deserializer msg))] + (let [[deserialize-time ^TupleImpl tuple] (if (instance? Tuple msg) [0.0 msg] (with-time (.deserialize deserializer msg)))] --- End diff -- In all other cases the timings were sampled (we didn't measure everything). Not totally sure if we can do the same thing here or not.
--- 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. ---