Meet Your AI Copilot fot Data Learn More

How to Register Kyligence’s Big Data Analytics Platform as a System Service by Systemd

Author
Kyligence
Jun. 28, 2017

Introduction

To run a process on a system, the old way is to run the command directly on command prompt. After system restart or process crashes, rerunning it requires user to get the original command and execute again. To cater this, we have init.d service. But human are greedy, what if we want the process to auto start even when it crashes, limiting the restart in certain times only? Logging the output? Automatically provide start/stop/restart/reload function? Here we have systemd.

Systemd is an init system and system manager that is widely becoming the new standard for Linux machines. In the old days if we want to configure a service that able to be start/stop, we need to custom made all parameters that to be taken and also action to be taken too while each of the parameters are passed.

In this blog post we are using Kyligence Analytics Platform (KAP) process as an example, we run KAP on the edge node of HDInsight in Azure to conduct enterprise version of Apache Kylin service. By running it by systemd, we do not need to handle process termination and restart by scripting

Be aware of that there are always two ways to run a process, foreground and background. What amazing about systemd is it will handle it automatically but we need to know how to configure it.

Lets see what we eventually get!

Here is the result when we kill the process on system by kill -9 , systemd will start it according to the configuration(restart on-failure after 60s)

Process on System by Kill -9 Result

Screen cap explaination:
1. ps -ef | grep kap` to show the process is running
2. kill -9 ` to kill it
3. and, show the systemd status
Eventually we see systemd has detected the process is failed.

Then checking the service by “systemctl status kap”

Checking Systemctl Status Kap

The screen cap shows the process has started automatically.

Ps –ef shows following:

Ps –Ef Displayed

How do we get this?

Lets walk through the whole procedure of configuring a systemd service. To build a new service, we will need two things to be readied, #1. The running script and #2. The service file. For #1 it could be any execution command and it not even required to be long running, we are not covering everything here but just what we normally use. To know more about oneshot service, please checkout :https://gist.github.com/drmalex07/d006f12914b21198ee43.
First we need to know the behavior of the execution we are going to handle:

How The Process Will Return After Execution

Screen cap here show the process will return after execution. So this is a background process to be handled. If it is a foreground process, it doesn’t return and will hold the command prompt.

After learning the behavior of the execution command, we move to #2 the service to be configured.
Kap service file

Kap Service File

here are detailed explaination

1. unit

Services Involved With Early Boot or Late System Shutdown

services involved with early boot or late system shutdown should disable “DefaultDependencies” in [Unit] section. Otherwise just “Description” is good enough.

2. Service

Service Interface Displayed

Type: as mentioned before, our process will return and so we use “fork” as “Type”, if it is a long running process, we use “simple”
Restart: “on-failure” covers all cases that suit our requirements to trigger a restart, here is the list of parameters could be used

List of Parameters for Triggered Restart

RestartSec: Timewait to restart, this value cannot be too short otherwise the time to execute the command is not enough to change the state of service
User: Specifying which user to execute the command
ExecStart, ExecStartPre, ExecStartPost, ExecReload, ExecStop, ExecStopPost:
– ExecStart is the command to be ran when service is started
– ExecStartPre is the command to be ran BEFORE the ExecStart command is ran
– ExecStartPost is the command to be ran AFTER the ExecStart command is ran
– ExecReload is the command that being triggered when “systemctl reload ”, this is used when process should not be start and stop when configuration is updated
– ExecStop is the command to be ran to stop the process

The execution command is a bit complicated than normal one as in order to start kylin we need to export SPARK_HOME and KYLIN_HOME. For constant value we can use “Environment” in [Service] section but it doesn’t support online variable. So the whole ExecStart is divided into:
a. Exporting KYLIN_HOME by listing directory name under /usr/local/kap/kap* which is the kap installation path with version number on the directory name
b. Putting KYLIN_HOME into SPARK_HOME
c. Run kylin start by KYLIN_HOME env variable

The same case applys to ExecStop

3. Install

Install Interface

defining the run level of the service, setting WantedBy=multi-user.target means run level = 2,3,4 corresponding to /etc/init.d in the old days.
About Run level:
https://www.tldp.org/LDP/sag/html/run-levels-intro.html
To know more about systemd target:
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/System_Administrators_Guide/sect-Managing_Services_with_systemd-Targets.html