Today I want to show you how to combine an old friend like JMX with and application done with Akka. Scala runs on the JVM so you have all the tools available in the Java platform. To follow this tutorial, it is necessary to have an idea about what does it means the Actor Model
Also you need to have installed Scala. Please follow this instructions if you don't have any installation. I recommend to you IntelliJ as a development environment, it provides a cool support to work with Scala.
Cool! We are ready to start. Our application is very simple, we are going to create an Actor called Pong, and this actor will be waiting a message from a JMX client. This client will be able to send messages to our actor Pong. If the message sent is "end", Pong will be terminated. Otherwise the message will be stored in memory. From our JMX client, we can ask for the last message received by the actor Pong. Let's see some code.
First of all , our support to code actors with JMX support. Extending this trait the actor will be registered in our MBeanServer automatically using the methods preStart and postStop. Note that method getMXTypeName is an abstract method and is implemented by the child class.
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
trait ActorWithJMXSupport extends Actor { | |
val mBeanServer = ManagementFactory.getPlatformMBeanServer(); | |
val objName = new ObjectName("hdbandit", { | |
import scala.collection.JavaConverters._ | |
new java.util.Hashtable( | |
Map( | |
"name" -> self.path.toStringWithoutAddress, | |
"type" -> getMXTypeName | |
).asJava | |
) | |
}) | |
def getMXTypeName : String | |
override def preStart() = mBeanServer.registerMBean(this, objName) | |
override def postStop() = mBeanServer.unregisterMBean(objName) | |
} |
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
trait PongMBean { | |
def lastReceivedMessage(): String | |
def sendMessage(p1: String): Unit | |
} |
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
class Pong extends ActorWithJMXSupport with ActorLogging with PongMBean{ | |
import Pong._ | |
var lastReceivedMessage = "UNKNOWN" | |
def receive = { | |
case PongMessage(text) => | |
log.info("In PongActor - received message: {}", text) | |
lastReceivedMessage = text | |
} | |
override def getMXTypeName: String = "InstrumentedPongActor" | |
override def sendMessage(p1: String): Unit = { | |
if (p1.equals("end")) { | |
self ! PoisonPill | |
} else { | |
self ! PongMessage(p1) | |
} | |
} | |
} | |
object Pong { | |
val props = Props[Pong] | |
case class PongMessage(text: String) | |
} |
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
object ApplicationMain extends App { | |
val system = ActorSystem("MyActorSystem") | |
val pongActor = system.actorOf(Pong.props, "pongActor") | |
pongActor ! PongMessage("Initial message") | |
// waiting for JMX "end" message to terminate | |
system.awaitTermination() | |
} |
-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port=1617
-Dcom.sun.management.jmxremote.authenticate=false
-Dcom.sun.management.jmxremote.ssl=false
At this point, you have the application running with the actor Pong waiting for requests. As you can see the MBean server is listening in port 1617.
Finally executing jmc in a console, the JMX client provided by the jdk, will be opened. Then you can browse in the MBean browser to find our MBean registered. In the tab operations, you can execute the operations defined by the PongMBean. In the next video, you can see this last part clearly.
No comments:
Post a Comment