- Dec 01, 2011
-
-
Michi Mutsuzaki authored
-
- Nov 21, 2011
-
-
Michi Mutsuzaki authored
-
Michi Mutsuzaki authored
gh-51 Improved Random Number Generation Performance and add Exponential distribution support (sears)
-
Michi Mutsuzaki authored
-
Michi Mutsuzaki authored
-
- Nov 20, 2011
-
-
Russell Sears authored
-
- Nov 19, 2011
-
-
Russell Sears authored
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().
-
Russell Sears authored
-
Russell Sears authored
-
Russell Sears authored
-
Russell Sears authored
-
- Nov 18, 2011
-
-
Russell Sears authored
-
Russell Sears authored
We use FNV hash functions to generate a large indexable sequence of non-colliding keys. Unforunately, for reasonably sized workloads, this leads to key collisions, which throws off experiments. The implementations of the FNV32 and FNV64 hash functions we use manipulate signed integers instead of unsigned integers, so it is unclear if this is a limitation of the FNV algorithms or of our implementations. As a workaround, this patch switches from FNV32 to FNV64, reducing the chances of such bad behavior (and eliminating it in our experiments to date).
-
Russell Sears authored
-
Russell Sears authored
-
Russell Sears authored
-
- Nov 16, 2011
-
-
Michi Mutsuzaki authored
-
Michi Mutsuzaki authored
gh-44 Constant occupancy workload (sears) gh-45 Modify DB API for efficient large object support (sears)
-
Zlender authored
-
- Nov 15, 2011
-
-
Michi Mutsuzaki authored
gh-45 Modify DB API for efficient large object support (sears)
-
- Nov 13, 2011
-
-
Russell Sears authored
1) Add Makefile.download-db-libs, which downloads + unpacks all of the dependencies. 2) Fix build.xml so that downloaded libraries don't break ant doc 3) Add dbcompile-all target that builds all of the client libraries at once.
-
Russell Sears authored
change DB API to use ByteIterator for fields instead of String. This fixes a number of scalability problems.
-
- Nov 12, 2011
-
-
Russell Sears authored
-
Russell Sears authored
-
Russell Sears authored
-
Russell Sears authored
-
Russell Sears authored
-
- Oct 17, 2011
-
-
Michi Mutsuzaki authored
-
Mike Wiederhold authored
NoSQL databases are capable on sub-millisecond latencies and YCSB was only measuring times with millisecond granularity. This caused transactions that took place in less than a second to be recorded as taking 0 time to complete and as a result had the potential to skew test results. This fix changes the timing granularity to microseconds.
-
- Sep 14, 2011
-
-
Michi Mutsuzaki authored
-
Robert Lehmann authored
-
Robert Lehmann authored
-
Robert Lehmann authored
-
Robert Lehmann authored
-
Robert Lehmann authored
-
Robert Lehmann authored
-