A Beginner’s Guide to Deploying a Lagom Service Without ConductR

Knoldus Inc.
Knoldus - Technical Insights
3 min readApr 8, 2018

[caption id=”attachment_48429" align=”alignleft” width=”500"]

lagom-Knoldus

Lagom[/caption]

How to deploy a Lagom Service without ConductR? This question has been asked and answered by many, on different forums. For example, take a look at this question on StackOverflow — Lagom without ConductR? Here the user is trying to know whether it is possible to use Lagom in production without ConductR or not. To which the best answer that came up was — “Yes, it is possible!”. Similarly, there are other forums too where we can find an answer to this question.

However, most of them just give us a hint about it or redirect us to Lagom’s documentation, i.e., Lagom’s Production Overview. But none of them provide a one-stop solution to it which is easy to use and is as simple as running a java program from a command line interface.

So, we decided to find a solution for it and share it. In this blog post, we will guide you towards deploying a Lagom Microservice in production without using ConductR with a simple java -cp command. Now, let's take a look at the steps.

Step One — Configuring Cassandra Contact Points

If you are planning to use dynamic service location for your service but need to statically locate Cassandra, which is obvious in Production, then modify the application.conf of your service. Also, disable Lagom’s ConfigSessionProvider and fall back to the one provided in akka-persistence-cassandra, which uses the list of endpoints listed in contact-points. Your Cassandra configuration should look something like this-

[gist https://gist.github.com/gupta-himanshu/745d32838c57909cda7dae22abea8b79]

Step Two — Providing Kafka Broker settings

Next step is to provide Kafka broker settings if you plan to use Lagom’s streaming service. For this, you need to modify the application.conf of your service, if Kafka service is to be statically located, which is the case when your service acts only like a consumer, otherwise, you do not need to give following configurations.

[gist https://gist.github.com/gupta-himanshu/c56e250541f78b9b8777694adfb0204f]

Step Three — Creating Akka Cluster

At last, we need to create an Akka cluster on our own. Since we are not using ConductR, we need to implement the joining yourself. This can be done by adding following lines in application.conf.

[gist https://gist.github.com/gupta-himanshu/554ddb6382ef3445c6108e15b431b4ec]

Now, we know what configurations we need to provide to our service, let’s take a look at the steps of deployment. Since we are using just java -cp command, we need to package our service and run it. To simplify the process, we have created a shell script for it.

[gist https://gist.github.com/gupta-himanshu/628fb98c68b0fabc1fd64dacc66a3f93]

For a complete example, you can refer to our GitHub repo — Lagom Scala SBT Standalone project.

I hope you found this blog helpful. If you have any suggestion or question, then please comment below.

[caption id=”attachment_38019" align=”aligncenter” width=”595"]

knoldus-scala-spark-services

Knoldus-Blogs[/caption]

--

--

Knoldus Inc.
Knoldus - Technical Insights

Group of smart Engineers with a Product mindset who partner with your business to drive competitive advantage | www.knoldus.com