Remove synchronization points from random number generation. This mostly...
Remove synchronization points from random number generation. This mostly consisted switching from per-class instances of Random() that are shared amongst threads to thread-local instances shared across classes. Also, CounterGenerator.nextInt() was synchronized. Changed it to use an AtomicInteger. Finally, removed lastString() from Generator, as it was only called in places where lastInt() was more appropriate; switched the calls to lastInt().
Showing
- src/com/yahoo/ycsb/BasicDB.java 1 addition, 4 deletionssrc/com/yahoo/ycsb/BasicDB.java
- src/com/yahoo/ycsb/Client.java 1 addition, 3 deletionssrc/com/yahoo/ycsb/Client.java
- src/com/yahoo/ycsb/RandomByteIterator.java 1 addition, 4 deletionssrc/com/yahoo/ycsb/RandomByteIterator.java
- src/com/yahoo/ycsb/Utils.java 12 additions, 3 deletionssrc/com/yahoo/ycsb/Utils.java
- src/com/yahoo/ycsb/generator/CounterGenerator.java 14 additions, 9 deletionssrc/com/yahoo/ycsb/generator/CounterGenerator.java
- src/com/yahoo/ycsb/generator/DiscreteGenerator.java 2 additions, 3 deletionssrc/com/yahoo/ycsb/generator/DiscreteGenerator.java
- src/com/yahoo/ycsb/generator/ExponentialGenerator.java 3 additions, 5 deletionssrc/com/yahoo/ycsb/generator/ExponentialGenerator.java
- src/com/yahoo/ycsb/generator/HistogramGenerator.java 3 additions, 2 deletionssrc/com/yahoo/ycsb/generator/HistogramGenerator.java
- src/com/yahoo/ycsb/generator/HotspotIntegerGenerator.java 3 additions, 2 deletionssrc/com/yahoo/ycsb/generator/HotspotIntegerGenerator.java
- src/com/yahoo/ycsb/generator/IntegerGenerator.java 3 additions, 2 deletionssrc/com/yahoo/ycsb/generator/IntegerGenerator.java
- src/com/yahoo/ycsb/generator/SkewedLatestGenerator.java 2 additions, 2 deletionssrc/com/yahoo/ycsb/generator/SkewedLatestGenerator.java
- src/com/yahoo/ycsb/generator/UniformIntegerGenerator.java 3 additions, 3 deletionssrc/com/yahoo/ycsb/generator/UniformIntegerGenerator.java
- src/com/yahoo/ycsb/generator/ZipfianGenerator.java 3 additions, 5 deletionssrc/com/yahoo/ycsb/generator/ZipfianGenerator.java
Loading
Please register or sign in to comment