forked from filodb/FiloDB
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(http): Add HTTP /api/v1/cluster cluster API; some memory logging…
…/multi-JVM fixes (filodb#103) Adds routes for getting cluster / shard health status and setting up a new streaming config, and docs to go along with it. * fix(bootstrapper): switch bootstrapper to use Circe and fix multi-JVM test compilation * misc(core): Add logging for shard memory allocation, lower default standalone memory per shard * fix(core): Release memory during orderly shutdown (except blockStore.shutdown not working) * Increase default timeouts; help multi-JVM tests to pass more often * Remove CleanShutdown() and rely on explicit memory free and shutdown logic * Even if MAYBE_MULTI_JVM is not enabled, multi-JVM sources should always compile * Remove Kafka multi-JVM tests. They have been superceded by standalone/multi-JVM
- Loading branch information
Evan Chan
authored and
Evan Chan
committed
Jan 4, 2018
1 parent
b40c1d3
commit c454aaf
Showing
39 changed files
with
576 additions
and
340 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...trapper/src/multi-jvm/scala/filodb/akkabootstrapper/multijvm/ConsulBootstrapperSpec.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
package filodb.akkabootstrapper.multijvm | ||
|
||
import akka.remote.testkit.MultiNodeSpec | ||
import com.typesafe.config.{Config, ConfigFactory} | ||
|
||
|
||
|
@@ -8,7 +9,7 @@ object WhitelistBootstrapperMultiNodeConfig extends AkkaBootstrapperMultiNodeCon | |
override def baseConfig: Config = ConfigFactory.parseString( | ||
s""" | ||
|akka-bootstrapper { | ||
| seed-discovery.class = "filodb.akkabootstrapper.WhitelistAkkaClusterSeedDiscovery" | ||
| seed-discovery.class = "filodb.akkabootstrapper.WhitelistClusterSeedDiscovery" | ||
| whitelist.seeds = [ | ||
| "akka.tcp://[email protected]:2552" | ||
| "akka.tcp://[email protected]:2562" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.