Reputation: 737
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
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
andTimeoutLifecycleManager
which is default.
See Interpreter Lifecycle Management
Upvotes: 0
Reputation: 11
There's no current solution for stopping interpreter automatically.
Upvotes: 1