Skip to content

Commit

Permalink
version 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
lomik committed Feb 2, 2016
1 parent 5fe8e76 commit 79b1ddc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Golang implementation of Graphite/Carbon server with classic architecture: Agent
* Logging with rotation (reopen log by HUP signal or inotify event)
* Many persister workers (using many cpu cores)
* Run as daemon
* Grace stop on `USR2` signal: close all socket listeners, flush cache to disk and stop carbon
* Reload persister config (whisper section of main config, storage-schemas.conf and storage-aggregation.conf) on HUP signal

## Performance

Expand Down Expand Up @@ -124,15 +126,15 @@ enabled = false

## Changelog
##### master
* Improved throttling (max-updates-per-second) performance #32

##### 0.7-beta4
##### version 0.7
* Grace stop on `USR2` signal: close all socket listeners, flush cache to disk and stop carbon
* Reload persister config (`whisper` section of main config, `storage-schemas.conf` and `storage-aggregation.conf`) on `HUP` signal
* Fix bug: Cache may start save points only after first checkpoint
* Decimal numbers in log files instead of hexademical #22
* Fix bug: NaN values being saved in Whisper datafiles #17 (thanks [Andrew Hayworth](https://github.com/ahayworth))
* Fix bug: may crash on bad pickle message with big message size in header #30. Added option `pickle.max-message-size` with 64 MB default value
* Improved throttling (max-updates-per-second) performance #32

##### version 0.6
* `metric-interval` option
Expand Down
2 changes: 1 addition & 1 deletion carbon-agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
import _ "net/http/pprof"

// Version of go-carbon
const Version = "0.7-beta4"
const Version = "0.7"

func httpServe(addr string) (func(), error) {
tcpAddr, err := net.ResolveTCPAddr("tcp", addr)
Expand Down
5 changes: 5 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
go-carbon (0.7) stable; urgency=low
* Improved throttling (max-updates-per-second) performance #32

-- Roman Lomonosov <[email protected]> Wed, 3 Feb 2016 00:50:00 +0300

go-carbon (0.7-beta4) unstable; urgency=low
* Fix bug: may crash on bad pickle message with big message size in header
#30. Added option `pickle.max-message-size` with 64 MB default value
Expand Down

0 comments on commit 79b1ddc

Please sign in to comment.