inteloid
inteloid

Reputation: 737

Kill idle spark-shells and Apache Zeppelins

I have a team of engineers and data analysts who extensively use Zeppelin and many times they forget to turn it off and release resources.

What's the best solution to automatically kill idle jobs without hurting long-running jobs?

Upvotes: 2

Views: 549

Answers (2)

blackbishop
blackbishop

Reputation: 32660

This is now possible using Zeppelin version >=0.8:

Before 0.8.0, Zeppelin don't have lifecycle management on interpreter. User have to shutdown interpreters explicitly via UI. Starting from 0.8.0, Zeppelin provides a new interface LifecycleManager to control the lifecycle of interpreters. For now, there're 2 implementations: NullLifecycleManager and TimeoutLifecycleManager which is default.

See Interpreter Lifecycle Management

Upvotes: 0

Jongyoul Lee
Jongyoul Lee

Reputation: 11

There's no current solution for stopping interpreter automatically.

Upvotes: 1

Related Questions