Skip to content

Tags: gunnaraasen/influxdb

Tags

v0.9.5

Toggle v0.9.5's commit message
Fixed issue where pre-install script would attempt to copy to a non-e…

…xistent directory.

v0.9.5-rc3

Toggle v0.9.5-rc3's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Add interface for heap to support Reverse for `order by desc`

v0.9.5-rc2

Toggle v0.9.5-rc2's commit message
Update CHANGELOG

v0.9.5-rc1

Toggle v0.9.5-rc1's commit message
Tweak Support sectioning

[ci skip]

v0.9.4.2

Toggle v0.9.4.2's commit message
Backport PR4179 to 0.9.4.

v0.9.4.1

Toggle v0.9.4.1's commit message
Fix race in cluster RPC serialization

Point was accessed from multiple goroutines and there was a race on the the internal
cachedFields and cachedName fields.  Accessing these fields is unnecessary work as it
requires the point to be unmarshal into Go types and then remarshaled back into protbuf
types.  Instead, just send the line protocol version already available on the point via
the protobuf.  This avoid accesssing these cached fields and eliminates some extra work.

Possible fix for influxdata#4069

v0.9.4

Toggle v0.9.4's commit message
0.9.4 is out

[ci skip]

v0.9.4-rc1

Toggle v0.9.4-rc1's commit message
Merge pull request influxdata#4072 from influxdb/wal_stats

Add stats for the WAL

v0.9.3

Toggle v0.9.3's commit message
Fix deadlock in metastore

The interaction of continuous query service, the meta-store loading
and initializing raft state, and syncing node info could cause a
deadlock in some instances.  There was an extra read-lock taken by isLeader()
when it already had a read-lock.  Removing this extra lock fixes the startup
deadlock.

Fixes influxdata#3607

v0.9.3-rc3

Toggle v0.9.3-rc3's commit message
Fix metafile so it doesn't get trampled by other goroutines.

Fixes influxdata#3832 and fixes influxdata#3833