[ 
https://issues.apache.org/jira/browse/STORM-1650?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15208545#comment-15208545
 ] 

ASF GitHub Bot commented on STORM-1650:
---------------------------------------

Github user revans2 commented on a diff in the pull request:

    https://github.com/apache/storm/pull/1250#discussion_r57174134
  
    --- Diff: storm-core/src/clj/org/apache/storm/config.clj ---
    @@ -53,7 +54,7 @@
       [freq]
       (let [freq (int freq)
             start (int 0)
    -        r (java.util.Random.)
    +        r (XORShiftRandom.)
    --- End diff --
    
    Here too the code can be called from multiple threads, but the worst that 
happens is we double up on sampling some items for metrics.  Ideally this would 
have a comment explaining this.


> improve performance by XORShiftRandom
> -------------------------------------
>
>                 Key: STORM-1650
>                 URL: https://issues.apache.org/jira/browse/STORM-1650
>             Project: Apache Storm
>          Issue Type: Improvement
>            Reporter: John Fang
>            Assignee: John Fang
>
> '''Implement a random number generator based on the XORShift algorithm 
> discovered by George Marsaglia. This RNG is observed 4.5 times faster than 
> {@link Random} in benchmark, with the cost that abandon thread-safety. So 
> it's recommended to create a new {@link XORShiftRandom} for each thread.'''



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to