Skip to content

Instantly share code, notes, and snippets.

View helena's full-sized avatar
💭
Running with the wolves

Helena Edelson helena

💭
Running with the wolves
View GitHub Profile
class ClusterMetricsElasticScaleListener extends Actor with ActorLogging {
val selfAddress = Cluster(context.system).selfAddress
override def preStart(): Unit =
Cluster(context.system).subscribe(self, classOf[ClusterMetricsChanged])
override def postStop(): Unit =
Cluster(context.system).unsubscribe(self)
def receive = {
akka {
cluster {
metrics {
# Enable or disable metrics collector for load-balancing nodes.
enabled = on
# FQCN of the metrics collector implementation.
# It must implement akka.cluster.cluster.MetricsCollector and
# have public constructor with akka.actor.ActorSystem parameter.
# The default SigarMetricsCollector uses JMX and Hyperic SIGAR,
java -classpath sigar-1.6.5.132.jar
@helena
helena / add-sigar
Created February 18, 2013 13:40
How to add SIGAR to SBT build.
"org.hyperic" % "sigar" % "1.6.4"
@helena
helena / TrySamples.scala
Last active July 13, 2021 15:03
Try introduced in Scala 2.10.0
// Start by adding these
import scala.util.{ Try, Success, Failure }
/**
* Sample runs code that raises the exception:
* java.lang.ArithmeticException: / by zero
*/
object Sample {
def main(args: Array[String]): Unit = {
@helena
helena / SimpleDesign
Created November 29, 2012 14:10
Implement a simple Akka app in Scala, and implement 2 processor Actors, improve the design
package foo
import akka.actor.{Actor, ActorSystem}
/**
* Implement a simple application in Akka and Scala:
*
* Don't worry about spending too much time on it, or
* everything being perfect if you are not yet familiar...
* I just want to see how you think and what you might know,
@helena
helena / SimpleDesign
Created November 29, 2012 14:06
Implement a simple Akka app in Scala, and implement 2 processor Actors, improve the design
package foo
import akka.actor.{Actor, ActorSystem}
import akka.util.Timeout
/**
* Implement a simple application in Akka and Scala:
* Don't worry about spending too much time on it, or
* everything being perfect if you are not yet familiar...
* I just want to see how you think on something simple,
@helena
helena / lbr-metric-post
Created November 3, 2012 21:11
For pending lbr metric post
# Here are some of the more interesting configurable cluster properties
# that enable you to maintain health of your system
# Note: The provider to use
akka.actor.provider = akka.cluster.ClusterActorRefProvider
akka.cluster {
# how often metrics will be sampled on each node
metrics.metrics-interval = 3s
@helena
helena / akka-cluster-config
Created November 3, 2012 17:39
Here are some of the more interesting configurable cluster properties
# Here are some of the more interesting configurable cluster properties
# that enable you to maintain health of your system
# Note: The provider to use
akka.actor.provider = akka.cluster.ClusterActorRefProvider
akka.cluster {
# if after this duration no heartbeat has been received, you have a problem
failure-detector.acceptable-heartbeat-pause = 5s
@helena
helena / ClusteredApp.scala
Created November 3, 2012 00:30
Akka 2.1 Cluster API
val system = ActorSystem("ClusterSystem")
system.actorOf(Props(new Actor with ActorLogging {
val cluster = Cluster(context.system)
override def preStart(): Unit =
cluster.subscribe(self, classOf[ClusterDomainEvent])
def receive = {