diff --git a/CHANGELOG.md b/CHANGELOG.md index 1641797bb5..31779a9b8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - [#1971](https://github.com/influxdb/influxdb/pull/1971): Fix leader id initialization. - [#1975](https://github.com/influxdb/influxdb/pull/1975): Require `q` parameter for query endpoint. - [#1969](https://github.com/influxdb/influxdb/pull/1969): Print loaded config. +- [#1987](https://github.com/influxdb/influxdb/pull/1987): Fix config print startup statement for when no config is provided. ## v0.9.0-rc12 [2015-03-15] diff --git a/cmd/influxd/main.go b/cmd/influxd/main.go index 7acc1b9476..d67cb9568c 100644 --- a/cmd/influxd/main.go +++ b/cmd/influxd/main.go @@ -104,7 +104,7 @@ func execRun(args []string) { log.SetFlags(log.LstdFlags) writePIDFile(*pidPath) - if configPath != nil { + if *configPath == "" { log.Println("No config provided, using default settings") } config := parseConfig(*configPath, *hostname) diff --git a/docs/STANDARD_RESPONSES.md b/docs/STANDARD_RESPONSES.md deleted file mode 100644 index c89f938d4d..0000000000 --- a/docs/STANDARD_RESPONSES.md +++ /dev/null @@ -1,6 +0,0 @@ -# Questions on Github issues - -Hi, github issues are reserved for bugs and/or features -discussions. Please email your questions to the mailing list or hit us -up on the irc channel. You can find more info on the -[community page](http://influxdb.com/community/) diff --git a/docs/cluster_notes.txt b/docs/cluster_notes.txt deleted file mode 100644 index 7adca28e57..0000000000 --- a/docs/cluster_notes.txt +++ /dev/null @@ -1,86 +0,0 @@ -make integration_test verbose=on only=TestRestartServers - -parts to create: - -protobuf server -protobuf client - -Coordinator has Datastore and ConcensusEngine -ConsensusEngine has a collection of ClusterServers (one is the localhost) and the ProtobufServer - -ClusterServer has protobuf client (automatically tries to connect unless it's localhost) -ProtobufServer has a datastore to answer queries - - -ringLocations: [{servers: []}, {servers: []}] - -startup: -create db -start protobuf server -start clusterConsensus - for each server, createClient and connect - -write comes in: -split it into discreet ring locations (time series objects with points all on the same ring loc) - ring location is figured by hashing db, series, and time (rounded to 5 min interval) -proxy to one of the servers that have the ring location - -On the server we proxied to... -log the write... - assign the operation a sequence number (should be an operation sequence number, have one per ring location) - assign points sequence numbers (can have one global incrementer) - log it - - - serialized operation - - attempt to write to other servers in ring - receiving server tracks for a given server id and ring location, what the last sequence was - for receiving server, if it's not the next in the sequence, set aside and request missing ops - - write the value to key: - - -point sequence numbers: - first two bytes is the server id. Guaranteed unique in a cluster - the other six bytes are the sequence number. - -every 5 minutes create a marker -