Skip to content

Tags: mvadu/influxdb

Tags

v0.13.0

Toggle v0.13.0's commit message
Merge pull request #7 from mvadu/Add_Windows_build_script

Add a windows powershell script to create builds on windows

v0.11.0-rc1

Toggle v0.11.0-rc1's commit message
Add hostname to meta link

Windows does not like URL's without host names,getSnapshot (Get https://:8091?index=0) results in error ( ConnectEx tcp: The requested address is not valid in its context.). The fix is to add hostname to the URL.

v0.10.1

Toggle v0.10.1's commit message
Merge pull request influxdata#5710 from influxdata/ga-admin

Move admin UI assets to the admin service directory

v0.9.5.1

Toggle v0.9.5.1's commit message
fix flush deadlock

This commit fixes a deadlock that occurs during b1 flushes. It's
caused by taking locks in a different order. In the flush, b1
locks the engine and then bolt. However, in the query cursor, a
lock is obtained on bolt first (via `DB.Begin()`) and then the
engine is locked while reading from the engine's cache.

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
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