Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

YARN Service Completion

avatar

I'm trying out a a YARN service application with Docker on HDP3.0.

I execute a script inside the Docker container, and it completes with status 0 after a while. I want the application to end when this happens.

But YARN keeps spawning a new container whenever a container completes. Is this the intended behavior?

I can see this log in serviceam.log

2018-08-26 04:29:30,193 [Component dispatcher] INFO component.Component - [COMPONENT mycomp] Transitioned from STABLE to FLEXING on CONTAINER_COMPLETED event.

How do I tell YARN that my application has successfully completed?

1 ACCEPTED SOLUTION

avatar
Expert Contributor

You can configure a restart policy for each component. Add a field like the following:

"restart_policy": "ON_FAILURE"

The available restart policies are ALWAYS, ON_FAILURE, and NEVER. The default policy is ALWAYS.

View solution in original post

1 REPLY 1

avatar
Expert Contributor

You can configure a restart policy for each component. Add a field like the following:

"restart_policy": "ON_FAILURE"

The available restart policies are ALWAYS, ON_FAILURE, and NEVER. The default policy is ALWAYS.