System services are admin configured services which are auto deployed during bootstrap of ResourceManager. This would work only when API-Server is started as part of ResourceManager. Refer Manage services on YARN. This document describes how to configure and deploy system services.
Name | Description |
---|---|
yarn.service.system-service.dir | FS directory path to load and deploy admin configured services. These service spec files should be kept with proper hierarchy. |
After configuring yarn.service.system-service.dir path, the spec files should be kept with below hierarchy.
$SYSTEM_SERVICE_DIR_PATH/<Launch-Mode>/<Users>/<Yarnfiles>.
Launch-Mode indicates that how the service should be deployed. Services can be auto deployed either synchronously or asynchronously.
Users are the owner of the system service who has full access to modify it. Each users can own multiple services. Note that service names are unique per user.
YarnFiles are the spec files to launch services. These files must have .yarnfile extension otherwise those files are ignored.
SYSTEM_SERVICE_DIR_PATH |---- sync | |--- user1 | | |---- service1.yarnfile | | |---- service2.yarnfile | |--- user2 | | |---- service3.yarnfile | | .... | | |---- async | |--- user3 | | |---- service1.yarnfile | | |---- service2.yarnfile | |--- user4 | | |---- service3.yarnfile | | .... | |