You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use fully random input (minio#167)
Instead of using a 10MiB circular buffer with random data,
use an infinite stream that is encrypted continuously.
We use a smaller circular buffer as input, but repeats should not be present.
Provides good solid speed, per thread:
```
BenchmarkWithRandomData/64KB-32 83332 14328 ns/op 4573.91 MB/s 72 B/op 4 allocs/op
BenchmarkWithRandomData/1MB-32 5216 222968 ns/op 4702.82 MB/s 72 B/op 4 allocs/op
BenchmarkWithRandomData/10MB-32 542 2223248 ns/op 4716.42 MB/s 72 B/op 4 a
6472
llocs/op
BenchmarkWithRandomData/1GB-32 1 2272999700 ns/op 4723.90 MB/s 80 B/op 4 allocs/op
```
Fix LIST benchmark (minio#160)
After SDK update recursive setting was missing. This would cause all operations to fail.
* Use correct options for listing.
* Fix object creation progress.
* Fix missing error printing when skipped.
Fixesminio#157