Commit Graph

49558 Commits (docker_plugin_improvements)

Author SHA1 Message Date
Xiang Li d2d1e26bb7 fix(join safty) only allow commit to the most recent join command if there is one 2014-04-14 17:05:47 -04:00
John Shahid 75a81e0743 fix another bug with initial recovery 2014-04-14 15:35:59 -04:00
John Shahid 673e66d5bd use shard ids not server ids 2014-04-14 15:06:22 -04:00
Paul Dix 7978283c4a Add log output on error with openeing shard 2014-04-14 15:05:10 -04:00
Paul Dix cba20324c0 Remove unused import. /me shakes fist @toddpersen 2014-04-14 14:54:16 -04:00
Todd Persen 3408c32d08 Merge pull request #427 from lucapette/fix_typo
Fix typo
2014-04-13 21:24:25 -04:00
Todd Persen f6fc73d06b Fix #433. Remove custom interfaces endpoint. 2014-04-13 21:19:46 -04:00
Todd Persen 46a874dffc Merge pull request #435 from mitbra/make-clean-typo
typo in Makefile.in 'clean' target
2014-04-13 21:17:28 -04:00
Mitchell Bradd c25e8165fd typo in Makefile.in 'clean' target 2014-04-14 10:53:50 +10:00
Mitchell Bradd 6a7839c7de fix #423. rename config sample config.{toml.sample => sample.toml} 2014-04-14 10:41:51 +10:00
Paul Dix 56afa387b2 Add output on heartbeat error 2014-04-11 13:02:16 -04:00
Paul Dix 45029616b4 Add the request to the running request object in protobuf client so we can output it if it times out for more debug info. 2014-04-11 12:11:04 -04:00
Paul Dix ffaf0891da Change log output for buffer size on query to debug. Too noisy on Info. 2014-04-11 12:08:46 -04:00
Xiang Li 047192edb1 Merge pull request #217 from xiangli-cmu/fix_data_race
fix(server.go) fix data race between func LogEntries and func appendEntry
2014-04-10 14:35:02 -04:00
Xiang Li bf84fb1292 fix(server.go) fix data race between func LogEntries and func appendEntry
The append function in appendEntry might change the value of the slice pointer when it wants to grow the capacity of the slice. We are not protecting the content of the slice, since the LogEntries func is just used for internal testing. The main reason of this pull request is to make the race detector happy during the testing.
2014-04-10 13:39:10 -04:00
Xiang Li 3b1dea1e07 Merge pull request #215 from xiangli-cmu/fix_channel_race
fix(server.go) check server state before send event to channel
2014-04-10 13:10:12 -04:00
Xiang Li 72bb1cd4f7 Merge pull request #216 from xiangli-cmu/init_comment
chore(server.go) add comment for init
2014-04-10 13:02:52 -04:00
Xiang Li 563a597d30 chore(server.go) add comment for init 2014-04-10 13:01:32 -04:00
lucapette 8ee3131766 Fix typo 2014-04-10 15:05:31 +02:00
Xiang Li b6b4e5775a fix(server.go) check server state before send event to channel
This commit fixs a data race between server.Start() and server.send(). Before this commit, server send might receive on a uninitialized stopped channel. To fix this, we initialize the channle before we change the server state to a running state. Then we check the state before receive on the stopped channel.
2014-04-09 23:17:11 -04:00
Paul Dix 9086c99747 Fix config parsing so we actually get the per server write buffer size 2014-04-09 16:31:00 -04:00
John Shahid 5371dc9280 fix #328. Join queries with math expressions don't work 2014-04-09 14:18:07 -04:00
Xiang Li cfa43a1151 Merge pull request #213 from xiangli-cmu/fix_update_state
fix(server.go) fix incorrect stateChangeEvent dispatching
2014-04-09 11:55:45 -04:00
John Shahid 8756940fd4 bump the version in the changelog 2014-04-08 20:09:02 -04:00
John Shahid c163db89ba update the changelog 2014-04-08 20:02:31 -04:00
John Shahid 08ab09a4dc Merge pull request #392 from influxdb/fix-392-different-columns-across-shards
Points with different number of columns from multiple shards return incorrect result
2014-04-08 20:01:59 -04:00
John Shahid 2785782e17 fix #392. Different columns in different shards returns invalid results 2014-04-08 19:54:48 -04:00
John Shahid 0748eda4ed wip: add tests to illustrate #392 2014-04-08 19:54:19 -04:00
John Shahid 998bf827fb Merge pull request #424 from influxdb/fix-421-api-read-timeout
Fix #421. Add read timeout to API to make sure we don't keep thousands o...
2014-04-08 19:53:59 -04:00
Paul Dix caf3b45979 Fix #421. Add read timeout to API to make sure we don't keep thousands of connections open needlessly. 2014-04-08 19:48:16 -04:00
John Shahid dbbea8d05f fix #415. Include the database when sending an auth error 2014-04-08 17:04:19 -04:00
John Shahid 3973b5fb41 update the changelog 2014-04-08 16:46:28 -04:00
John Shahid a04aed4f71 Merge pull request #413 from influxdb/fix-413-small-group-by-time
runtime error: integer divide by zero.
2014-04-08 16:45:17 -04:00
John Shahid 683a2344ea fix #413. Don't assume the group by interval is > second 2014-04-08 16:37:15 -04:00
John Shahid 03decd47e9 no need to copy to a buffer then reset it 2014-04-08 15:22:24 -04:00
John Shahid b303a1d1cb fix #416. Improve the time it takes to drop an entire database 2014-04-07 19:02:09 -04:00
John Shahid 9dce95e7d0 update the changelog 2014-04-07 18:13:33 -04:00
John Shahid 4d18a66519 Merge pull request #310 from influxdb/fix-310-request-multiple-series
Request should support multiple time series
2014-04-07 18:12:44 -04:00
John Shahid 4acdc7bf34 fix #310. Request should support multiple timeseries 2014-04-07 18:12:01 -04:00
John Shahid c116f13aae fix some tests that were broken from earlier changes 2014-04-07 16:45:26 -04:00
John Shahid fa9361f5d6 add some packages to the makefile 2014-04-07 16:45:26 -04:00
Xiang Li 0ccec83e6f fix(server.go) remove extra calls of setState
Fix a bug introduced the by race fix. The setState function should not be called if there is no state change.
2014-04-06 11:17:22 -04:00
Xiang Li 585c58026c Merge pull request #211 from unihorn/55
fix: wait for all goroutines to finish before Stop
2014-04-04 19:58:22 -04:00
Yicheng Qin 1961d0a126 chore(server): improve comment 2014-04-04 16:36:55 -07:00
Yicheng Qin 4b45c1f98c chore(server): avoid blocking on event send 2014-04-04 14:56:33 -07:00
Yicheng Qin 5f87be1f0e Merge branch 'master' of github.com:goraft/raft
Conflicts:
	server.go
2014-04-04 14:43:02 -07:00
John Shahid f26ba5fd8a update the changelog 2014-04-04 17:42:30 -04:00
John Shahid 800ecf03c3 oops move StartProcessingContinuousQueries few lines up 2014-04-04 17:38:47 -04:00
John Shahid 8ca9836973 fix #407. Start processing continuous queries after initializing the WAL 2014-04-04 17:31:18 -04:00
John Shahid 5a230b9a8c Revert "fix #405. Start processing continuous queries after initializing the WAL"
This reverts commit c49f11031d.
2014-04-04 17:30:50 -04:00