Merge pull request #3853 from benbjohnson/4k

Use 4KB default block size for bz1
pull/3858/head
Paul Dix 2015-08-26 13:22:33 -04:00
commit 0a51b1f584
2 changed files with 2 additions and 1 deletions

View File

@ -88,6 +88,7 @@ Please see the *Features* section below for full details.
- [#3778](https://github.com/influxdb/influxdb/pull/3778): Don't panic if SELECT on time.
- [#3824](https://github.com/influxdb/influxdb/issues/3824): tsdb.Point.MarshalBinary needs to support all number types
- [#3828](https://github.com/influxdb/influxdb/pull/3828): Support all number types when decoding a point
- [#3853](https://github.com/influxdb/influxdb/pull/3853): Use 4KB default block size for bz1
## v0.9.2 [2015-07-24]

View File

@ -35,7 +35,7 @@ func init() {
const (
// DefaultBlockSize is the default size of uncompressed points blocks.
DefaultBlockSize = 64 * 1024 // 64KB
DefaultBlockSize = 4 * 1024 // 4KB
)
// Ensure Engine implements the interface.