Jonathan A. Sternberg
b70d83af6a
Merge pull request #5633 from seiflotfy/fix5630
...
Make sure parenthesized SELECT arguments are evaluated properly without panic
2016-02-11 18:57:34 -05:00
Seif Lotfy
18f22a22fb
Make sure parenthesized SELECT arguemnts are evaluated properly without panic
...
Fixes #5630
2016-02-11 17:41:33 -06:00
Jonathan A. Sternberg
5ead47527c
Merge pull request #5643 from influxdata/js-5571-math-on-derivative
...
Clear the start and end times for derivative calls
2016-02-11 17:06:26 -05:00
Jonathan A. Sternberg
f5d8a4a6c0
Clear the start and end times for derivative calls
...
Derivatives rely on the underlying iterator to handle start and end
times. They do not perform them or organize points into groups. In
certain circumstances, the start time or end time that got implicitly
passed could be on an uneven interval with the first point returned by
the aggregate, which caused the entire iterator not to be read.
This fixes #5571 .
2016-02-11 16:17:15 -05:00
Jason Wilder
4da50df1c1
Merge pull request #5642 from influxdata/jw-cleanup
...
Remove printlns in tests
2016-02-11 14:03:10 -07:00
Jonathan A. Sternberg
846ab5da8a
Merge pull request #5639 from influxdata/js-fix-fill-casting
...
Cast number fill values for the fill iterator
2016-02-11 15:59:05 -05:00
Jason Wilder
948ccfc7b1
Remove printlns in tests
2016-02-11 13:34:33 -07:00
Jason Wilder
692ff5b2d9
Merge pull request #5170 from influxdata/tsdb-misc-cleanup
...
Miscellaneous cleanup in tsdb package
2016-02-11 13:28:54 -07:00
Jonathan A. Sternberg
73ee204fbc
Cast number fill values for the fill iterator
...
Querying an integer field with a fill value will cause a cast error
because the underlying type is a float64 rather than an int64. Add a
function that will coerce the value to the correct type.
It may be more appropriate in the future to have the fill iterator read
the underlying iterator and cast to the appropriate type rather than
coerce the fill value to the correct type, but this solution works for
our current scenario well.
2016-02-11 15:21:50 -05:00
Ross McDonald
66672e787f
Merge pull request #5615 from influxdata/ross-statik-documentation-link-fix
...
Fixed incorrect documentation link in admin UI
2016-02-11 13:08:14 -06:00
Jason Wilder
c8b41d1b56
Update changelog
...
[ci skip]
2016-02-11 11:45:39 -07:00
Jason Wilder
db9a14b65e
Merge pull request #5510 from bsideup/reduce_percentile_optimizations
...
Optimize ReducePercentile method
2016-02-11 11:43:52 -07:00
Sergei Egorov
eef0e41a7e
Optimize ReducePercentile method: do not call len() twice + move sorting after index check
2016-02-11 20:05:34 +02:00
Ross McDonald
51758cff25
Switched 0.9 references to 0.10.
2016-02-11 08:44:45 -06:00
Todd Persen
8d7a4a9acc
Update CHANGELOG.md
2016-02-10 22:38:17 -08:00
Todd Persen
d5761d833f
Merge branch 'alexiri-version'
2016-02-10 22:30:32 -08:00
Todd Persen
cb1b1859fe
Fix conflicts and split out client/server version.
2016-02-10 22:30:19 -08:00
Mark Rushakoff
fc9ab7a46f
Miscellaneous cleanup in tsdb package
...
* When possible, initialize maps/slices to exact length/capacity
* See slice benchmarks at
https://gist.github.com/mark-rushakoff/b5650bd8f06bece0b9fd
* Fixed some typos
* Removed an unnecessary loop in stringset.intersect
2016-02-10 18:00:47 -08:00
Ross McDonald
b5247cd1d4
Merge pull request #5595 from influxdata/ross-config-update
...
Updated sample configuration for new meta service options
2016-02-10 17:38:59 -06:00
Edd Robinson
7ff67db776
Merge pull request #5613 from influxdata/er-cq-typo
...
Tidy up README
2016-02-10 23:38:48 +00:00
Jason Wilder
8ce831eba4
Update changelog
...
[ci skip]
2016-02-10 15:58:20 -07:00
Jason Wilder
2e829cb356
Merge pull request #5624 from PSUdaemon/client_lint_fixes
...
Fix golint warnings.
2016-02-10 15:56:06 -07:00
Phil Sorber
a23f727d3c
Fix golint warnings.
2016-02-10 15:00:25 -07:00
Ben Johnson
0b3d367e5c
Merge pull request #5623 from influxdata/jw-query-panic
...
Fix panic: runtime error: index out of range
2016-02-10 14:59:04 -07:00
Ben Johnson
f27cef7b71
Merge pull request #5621 from benbjohnson/influxdata
...
Fix additional influxdata renames
2016-02-10 14:57:32 -07:00
Jonathan A. Sternberg
31cbc3eef8
Merge pull request #5622 from li-ang/rm_empty_file
...
Remove empty test file
2016-02-10 16:38:00 -05:00
Jason Wilder
26dafa68ac
Update changelog
...
[ci skip]
2016-02-10 14:34:20 -07:00
Jason Wilder
8ebcfd9459
Merge pull request #5375 from nuss-justin/golint/tsdb
...
Lint tsdb and tsdb/engine package
2016-02-10 14:32:50 -07:00
Jason Wilder
2498dd20cc
Merge pull request #5340 from farshidtz/patch-1
...
Updated queryDB func
2016-02-10 14:27:56 -07:00
Ben Johnson
50616f0a47
fix additional influxdata renames
2016-02-10 14:19:42 -07:00
Jason Wilder
0ce6dd1304
Fix panic: runtime error: index out of range
...
There was a fix in 5b1791, but is not present in the current branch likely due to a rebase issue.
The current code panics with a query like:
select value from cpu group by host order by time desc limit 1
This fixes the panic as well as prevents #5193 from re-occurring. The issue is that agressively
closing the cursors clears out the seeks slice so re-seeking will fail.
2016-02-10 14:00:58 -07:00
liang@qiniu.com
47fa63073a
Remove empty test file
2016-02-11 04:56:27 +08:00
Justin Nuß
82c276756a
Lint tsdb and tsdb/engine package
2016-02-10 21:33:46 +01:00
Ben Johnson
2f1e83427b
Merge pull request #5617 from benbjohnson/influxdata
...
Rename influxdb/influxdb to influxdata/influxdb
2016-02-10 13:29:46 -07:00
Jason Wilder
045fdaa4c7
Remove incorrect changlog entry
...
#4299 will be in 0.11. Not in 0.10.
Fixes #5611
[ci skip]
2016-02-10 13:07:44 -07:00
Jason Wilder
8a39123ed2
Update changelog
...
[ci skip]
2016-02-10 12:13:46 -07:00
Jason Wilder
a51af5c112
Merge pull request #5598 from PSUdaemon/client_ping
...
Add Ping() to v2 client.
2016-02-10 12:11:42 -07:00
Ben Johnson
d9a6a7340f
add canonical paths
2016-02-10 11:30:52 -07:00
Jason Wilder
2212c32108
Merge pull request #5604 from jonseymour/typo
...
typo: databse -> database
2016-02-10 11:04:39 -07:00
Ben Johnson
5a0d1ab7c1
rename influxdb/influxdb to influxdata/influxdb
...
This commit changes all the import and URL references from:
github.com/influxdb/influxdb
to:
github.com/influxdata/influxdb
2016-02-10 10:26:18 -07:00
Ben Johnson
29c2dbc623
Merge pull request #5196 from benbjohnson/query-engine
...
Query Engine
2016-02-10 09:54:26 -07:00
Jonathan A. Sternberg
d79eb29a23
Add documentation comments to influxql.Series and influxql.SeriesList
2016-02-10 09:40:31 -07:00
Jonathan A. Sternberg
98810a363a
Correct the AuxIterator test and adding some additional locks
...
The additional locks shouldn't be necessary due to how the code is used,
but should prevent any potential data races in case we accidentally do
something bad.
2016-02-10 09:40:31 -07:00
Jonathan A. Sternberg
ed151598ff
Modify the AuxIterator to include a Start method
...
The AuxIterator streams points to the underlying iterators. When it
started automatically, race conditions occurred between the stream
closing the iterators and creating iterators from the AuxIterator.
2016-02-10 09:40:30 -07:00
Ben Johnson
b3d5aa82b7
improve performance of LIMIT with no dimensions
2016-02-10 09:40:30 -07:00
Jonathan A. Sternberg
2e7cf5328c
Fix go vet issues on 1.4
...
go 1.5 was being used to develop the query engine branch, but we aren't
using 1.5 for master at the moment. This fixes issues that go vet brings
up in 1.4 that don't exist in 1.5.
2016-02-10 09:40:30 -07:00
Jonathan A. Sternberg
ae2d894671
Improved influxql package code coverage to 70%
2016-02-10 09:40:30 -07:00
Ben Johnson
5c33b9d786
remove Mapper test references
2016-02-10 09:40:30 -07:00
Ben Johnson
d1b9e7048f
InfluxQL README
2016-02-10 09:40:30 -07:00
Jonathan A. Sternberg
dd3c75ef1c
Remove a bad query test from the integration tests
...
We no longer throw this error and an empty result is appropriate since
there are no values in that interval.
2016-02-10 09:40:30 -07:00