Philip O'Toole
f8040269d9
Update CHANGELOG for latest bug fixes
...
[ci skip]
2015-11-30 08:11:47 -08:00
Ben Johnson
41459cf687
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.
2015-11-25 15:00:06 -07:00
Philip O'Toole
45502d288f
Update CHANGELOG for PR 4833
...
[ci skip]
2015-11-25 10:51:02 -08:00
Philip O'Toole
f9475e3e3f
Merge pull request #4902 from EricSmekens/patch-1
...
Update changelog.md. Removed double change.
2015-11-25 09:03:57 -08:00
Eric Smekens
3fac74bebb
Update changelog.md. Removed double change.
...
#4659 was double in the changelog.
2015-11-25 13:39:45 +01:00
Cory LaNou
be488b7d12
implement close notifier and timeout on executors
2015-11-24 21:07:18 -06:00
Mark Rushakoff
94e47093b6
Update CHANGELOG
2015-11-23 14:51:57 -08:00
Philip O'Toole
46988d22c7
Update CHANGELOG for PR 4790
...
[ci skip]
2015-11-23 07:45:19 -08:00
mengjinglei
580f71ffc8
updated CHANGELOG.md
2015-11-21 09:47:41 +08:00
Philip O'Toole
b1c5a36b0d
Merge pull request #4846 from jsternberg/feature/allow-nan-in-graphite-service
...
Allow NaN as a valid value on the graphite service
2015-11-20 08:09:51 -08:00
Jonathan A. Sternberg
5fa36639db
Allow NaN as a valid value on the graphite service
...
The canonical graphite implementation will read and discard NaN values
instead of throwing an error when reading on the line receiver protocol.
Since this is the default behavior for graphite, InfluxDB should have
the same behavior for compatibility.
Previously, a NaN value would result in an error printed to the console.
When you have a large number of NaN values being sent every minute, this
results in the log file filling with useless messages.
2015-11-20 11:07:25 -05:00
Jason Wilder
6df6abea0e
Update changelog
2015-11-20 09:05:07 -07:00
Jason Wilder
d2c94fce16
Merge pull request #4841 from e-dard/points-refactor
...
Fix parsing issues in models.scanKey
2015-11-20 09:03:05 -07:00
Philip O'Toole
ca8530d5d9
0.9.5. is out
...
[ci skip]
2015-11-20 07:31:05 -08:00
Philip O'Toole
8ef5a056ba
Merge pull request #4815 from li-ang/fix_4801
...
Fix aggregate output across the cluster
2015-11-20 06:40:18 -08:00
Edd Robinson
9e506a2fe1
Update CHANGELOG
2015-11-20 14:30:33 +00:00
Edd Robinson
e995fba9b1
Update CHANGELOG
2015-11-20 01:26:22 +00:00
Philip O'Toole
68408a73f4
Merge pull request #4792 from mateuszdyminski/show_shard_groups
...
SHOW SHARD GROUPS
2015-11-18 16:52:04 -08:00
Philip O'Toole
7e8def590e
Update CHANGELOG for PR 4411
...
[ci skip]
2015-11-18 16:13:34 -08:00
liang@qiniu.com
a712a1c2b6
updated CHANGELOG.md
2015-11-18 01:28:09 +08:00
Cory LaNou
c12881ff10
Merge pull request #4822 from influxdb/fix-4193
...
Fix time inclusive comparison
2015-11-17 10:50:51 -06:00
Cory LaNou
6309ec9a68
fix time inclusive comparison
2015-11-17 10:43:27 -06:00
CrazyJvm
6e60e3226a
check point without fields when NewPoint
2015-11-17 13:21:52 +08:00
Cory LaNou
824d7a1d9b
Add interface for heap to support Reverse for `order by desc`
2015-11-16 15:10:55 -06:00
John Nguyen
cfbfbc2361
corrected URL
2015-11-16 17:37:01 +08:00
John Nguyen
90ea3fc4ad
updated CHANGELOG.md
2015-11-16 17:36:21 +08:00
Mateusz Dymiński
8090ba6830
SHOW SHARD GROUPS
2015-11-14 22:27:24 +01:00
Cory LaNou
43a4201a33
update changelog for 4768
2015-11-14 07:27:41 -06:00
Philip O'Toole
5333437d5b
Correct CHANGELOG re PR4778
...
[ci skip]
2015-11-13 17:57:07 -08:00
Philip O'Toole
1228431d85
Merge pull request #4789 from influxdb/multi_field_agg
...
WHERE fields must be decoded during aggregates
2015-11-13 17:30:32 -08:00
Philip O'Toole
912684b8d6
WHERE fields must be decoded during aggregates
...
This change ensures that if there are any fields in the WHERE clause of
an aggregate that are different from the fields in the SELECT clause,
that the cursors also decode those fields. Otherwise WHERE clauses of
the form 'SELECT f(w) FROM x WHERE y=z' will return incorrect results
Fixes issue #4701 .
2015-11-13 15:18:54 -08:00
Philip O'Toole
7ea9b3e49e
Allow openTSDB point errors logging to be disabled
2015-11-13 14:54:54 -08:00
Philip O'Toole
7d506c1e64
Update CHANGELOG for PR 4766
...
[ci skip]
2015-11-13 11:18:58 -08:00
Philip O'Toole
664b20e5fd
CHANGELOG typo
...
[ci skip]
2015-11-12 19:42:24 -08:00
Philip O'Toole
df6e76d357
Update CHANGELOG for 0.9.6
...
[ci skip]
2015-11-12 19:18:34 -08:00
Philip O'Toole
a8fa58b8e9
Update CHANGELOG
2015-11-12 19:08:47 -08:00
Ross McDonald
bd186195db
Restructured filesystem hierarchy, and updated pre/post installation scripts to ease upgrade progress. Also adding first iteration of new build script (build.py).
...
New package filesystem hierarchy:
- /var/lib/influxdb => Data directories
- /usr/lib/influxdb => Scripts and other miscellaneous files
- /etc/influxdb => Configuration
- /usr/bin/ => Where InfluxDB binaries will live
2015-11-12 10:42:41 -06:00
Philip O'Toole
3cab8fac02
Revert to Go 1.4.2
...
This is not passing 'go vet' under 1.4.2.
2015-11-11 15:48:37 -08:00
Cory LaNou
8ec4d04c71
Merge pull request #4685 from influxdb/heal-raft-cluster
...
Heal raft cluster
2015-11-11 11:44:12 -06:00
Philip O'Toole
615f47bbcd
Update CHANGELOG for reverted PR
2015-11-11 09:30:40 -08:00
Cory LaNou
4187fbba02
better changelog description
2015-11-11 10:05:25 -06:00
Cory LaNou
7fb0f90911
update changelog
2015-11-11 10:04:26 -06:00
Cory LaNou
1f4c442a3c
Update Changelog for #4703
2015-11-11 08:50:14 -06:00
Cory LaNou
6ecb62e4d2
Merge pull request #4737 from ch33hau/4283-hh-throws-error-even-if-disabled
...
Disable HintedHandoff if configuration is not set. #4283
2015-11-10 19:07:27 -06:00
Cameron Sparr
9625953d3e
Add UDP OS buffer size recommendations
2015-11-10 11:00:11 -07:00
ch33hau
8bfdfbda0b
Disable HintedHandoff if configuration is not set. #4283
2015-11-11 01:12:34 +08:00
Philip O'Toole
bbe9058041
Don't SHOW SHARDS for deleted shard groups
...
Fixes issue #4709 .
2015-11-09 17:02:34 -08:00
Philip O'Toole
98ef90094d
Update CHANGELOG for PR 4704
...
[ci skip]
2015-11-09 16:09:31 -08:00
Nathaniel Cook
fb07f2fc83
Merge pull request #4721 from influxdb/nc-export-interfaceValues
...
export interfaceValues since it is returned from DisticntReduce
2015-11-09 17:03:29 -07:00
Philip O'Toole
d34a0baadb
Update CHANGELOG for PR 4715
...
[ci skip]
2015-11-09 15:45:13 -08:00