Commit Graph

9313 Commits (5a0d1ab7c1d308a0a1b5c2fd0a724a28190eee51)

Author SHA1 Message Date
Jack Zampolin 26a878ff56 Fix [[graphite]] config section 2016-02-05 13:44:11 -08:00
Jason Wilder 6b3e18badf Merge pull request #5489 from runner-mei/cmd_influxd
fix unit test of influxd in the windows
2016-02-05 13:40:19 -07:00
Jason Wilder e391ea1ed9 Merge pull request #5488 from runner-mei/patch-10
fix rename file fail on the windows
2016-02-05 13:39:21 -07:00
runner.mei 7c58bf1970 don't panic while addr is invalid 2016-02-05 11:44:16 +08:00
runner.mei 978305a6dd fix unit test of influxd in the windows
fix unit test of influxd in the windows
2016-02-05 11:44:14 +08:00
runner 9134d43ba6 fix rename file fail on the windows
fix rename file fail on the windows
2016-02-05 10:27:19 +08:00
Jason Wilder 28ae8b6fe0 Merge pull request #5434 from runner-mei/tsm_tombstone_windows
fix TSMReader.Delete() and all unit tests is pass in the windows
2016-02-04 16:27:26 -07:00
Jason Wilder b635e516e5 Merge pull request #5485 from runner-mei/patch-7
fix munmap bug in the windows
2016-02-04 13:47:51 -07:00
Jason Wilder 6ff0da39aa Merge pull request #5487 from runner-mei/patch-8
fix cross platform error
2016-02-04 13:46:58 -07:00
Cameron Sparr df1980ebe5 Support for adding custom TLS Config for HTTP client 2016-02-04 13:09:27 -07:00
Jason Wilder 5a124e0e0b Merge pull request #5431 from runner-mei/patch-5
fix determine the file size
2016-02-04 10:24:05 -07:00
Jason Wilder f6ebb0b242 Merge pull request #5522 from methane/tsm1-optimize
[tsm1] Change timestamp from time.Time to unixnano
2016-02-04 10:20:41 -07:00
Ross McDonald b8bb32ecad Merge pull request #5470 from influxdata/ross-packaging-updates
Packaging and Build Updates
2016-02-04 10:51:02 -06:00
Ross McDonald 11418fefba Added support for Amazon Linux to installation scripts. 2016-02-04 09:17:59 -06:00
Ross McDonald 144f3983c0 A few updates to build.py:
- Added package iteration to tar and zip builds in case of pre-release.
- Added ability to specify S3 bucket path (ex: bucket/influxdb) in case the user wants to upload to a folder hierarchy.
- Restructured build script for easier diffing between other TICK-stack build scripts.
- Cleaned up build script output to not use tabs.
- Added a top-level directory for tar.
- Removed zip as a supported package output due to fpm zip output including the entire directory structure.
2016-02-04 09:16:32 -06:00
Michael Mattioli 658ffc9084 Updated docs link in .service
The link to the InfluxDB docs was stale,
simply updates it pointing to the current
URL which contains the docs for InfluxDB
2016-02-03 21:35:55 -05:00
Michael Mattioli 28f80a79e7 Removed unused code from balancer.go
Removed a block of code that was commented out
without explanation and provides no benefit
whatsoever
2016-02-03 21:33:28 -05:00
Michael Mattioli e2a24c26fd Renamed InfluxQL markdown file
Renamed markdown file explaining InfluxQL
both for uniformity as well as for easy
access from github.com
2016-02-03 21:30:14 -05:00
Michael Mattioli 6845546957 Modify shebang for Docker build script
Change shell from sh to bash as is used in
all other scripts
2016-02-03 21:26:43 -05:00
Paul Dix 706a23fe79 Update CHANGELOG.md 2016-02-03 10:28:58 -08:00
INADA Naoki 3ce1c66f7a Update CHANGELOG 2016-02-03 11:07:32 +09:00
INADA Naoki 80a637904d tsm1: Use unixnano instead of time.Time 2016-02-03 10:05:40 +09:00
INADA Naoki 771253256b FloatValue uses unixnano instead of time.Time 2016-02-03 09:57:00 +09:00
David Norton 0fd8392853 Merge pull request #5520 from influxdata/dgn-fix-5505
fix #5505: clear authCache when pwd changes
2016-02-02 18:19:55 -05:00
Nathaniel Cook cfe87e5f22 Merge pull request #5517 from influxdata/nc-supress-circle-ci-fp
add docker rm flag so circleci can disable deletion of containers
2016-02-02 15:58:39 -07:00
David Norton efbac5fce2 fix #5505: clear authCache when pwd changes 2016-02-02 17:51:21 -05:00
Nathaniel Cook df6d97a6a5 add docker rm flag so circleci can disable deletion of containers 2016-02-02 15:18:58 -07:00
Jason Wilder 1c19320e79 Merge pull request #5515 from influxdata/jw-config
Remove top-level dir config option
2016-02-02 13:26:11 -07:00
Cory LaNou 69ab61db03 Merge pull request #5513 from seiflotfy/fix5504
Return error if database is not found when calling (c *Client) Database
2016-02-02 14:16:29 -06:00
Jason Wilder 51da6e3d56 Remove top-level dir config option
This breaks backup/restore if it's not "meta" as well as breaks
upgrades from prior releases for some users.
2016-02-02 13:03:44 -07:00
Seif Lotfy 0864816c8b Add unit tests to ensure retention policy for non existing db is not created 2016-02-02 21:03:16 +01:00
Seif Lotfy 052f8d2a63 Return error if database is not found for setting the retention policy
Instead of returning nil, nil in case of no DB being found return
ErrDatabaseNotExists.
Fixes #5504
2016-02-02 21:02:40 +01:00
Seif Lotfy 343749e02d Add new ErrDatabaseNotExists error 2016-02-02 21:02:40 +01:00
INADA Naoki 898babf616 add float bench 2016-02-03 03:12:16 +09:00
David Norton 5a9953eec1 Merge pull request #5511 from seiflotfy/master
Initialize MetaClient before setting it up as a data and/or meta node
2016-02-02 12:00:49 -05:00
Seif Lotfy c3fb710871 Initialize MetaClient before setting it up as a data and/or meta node
Take out MetaClient initialization from initializeDataNode and invoke it
in (server.)Open after MetaService is opened.
Fixes #5479
2016-02-02 17:39:29 +01:00
Edd Robinson 71ccbe5712 Merge pull request #5495 from influxdata/er-exit-code
Ensure non-interactive mode returns appropriate exit code
2016-02-02 15:35:37 +00:00
Edward Robinson b8e42cdd3a Ensure non-interactive mode returns appropriate exit code
Fixes #5475.
2016-02-02 15:23:16 +00:00
Prayag Verma f0b63ac94d Fixes typo in CODING_GUIDELINES.md
I spotted a spelling mistake - `libaries` > `libraries`
2016-02-02 17:20:13 +05:30
Cory LaNou fd85ae5b7f Merge pull request #5498 from influxdata/fix-vet
Fix vet error
2016-02-01 15:45:19 -06:00
Cory LaNou a171089fce fix vet error 2016-02-01 15:33:54 -06:00
joelegasse 07d51c8c88 Merge pull request #5493 from influxdata/jl-issue-5478
Update first() and last() to handle varying types
2016-02-01 15:46:24 -05:00
Joe LeGasse 4b642fb365 Added tests for tsdb.greaterThan()
Also updated style to match "Effective Go" recommendations.
2016-02-01 15:11:17 -05:00
Cory LaNou 953584aa31 Merge pull request #5494 from influxdata/ignore-join-urls
Ignore join arguments on restart
2016-02-01 12:28:44 -06:00
Cory LaNou f8b1aa69a1 ignore join arguments on restart 2016-02-01 12:47:15 -05:00
Joe LeGasse 2bd85b3c9e Update first() and last() to handle varying types 2016-02-01 11:38:08 -05:00
Alex Russell-Saw 5bde459f01 client: reject uint64 Client.Point.Field values 2016-02-01 16:17:47 +00:00
runner.mei 4ca47103b1 fix TSMReader.Delete() and all unit tests is pass in the windows 2016-01-31 11:32:08 +08:00
runner 217095ad08 fix cross platform error
fix cross platform error
2016-01-31 11:02:49 +08:00
runner bc992fea5e fix munmap bug in the windows
fix munmap bug in the windows

fix munmap bug in the windows

fix munmap bug in the windows

fix munmap bug in the windows
2016-01-31 10:46:46 +08:00