Skip to content

Commit

Permalink
[FLINK-6379] [mesos] Add Mesos ResourceManager (FLIP-6)
Browse files Browse the repository at this point in the history
- Make the RPC gateway of the ResourceManager extensible to allow for framework-specific RPC methods
- Introduce FLIP-6 MesosResourceManager w/ tests
- Introduce a Mesos-specific RPC gateway for callbacks from child actors and from the Mesos scheduler client
- Enhance the persistent Mesos worker store to track the resource profile associated with a worker
- Convert RegisteredMesosWorkerNode to Java
- Decline TE registration if framework doesn’t recognize the worker

This closes apache#3942.
  • Loading branch information
Wright, Eron authored and tillrohrmann committed Jun 29, 2017
1 parent b59148c commit 3fe27ac
Show file tree
Hide file tree
Showing 17 changed files with 1,777 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ protected void releasePendingWorker(ResourceID id) {
*/
@Override
protected void releaseStartedWorker(RegisteredMesosWorkerNode worker) {
releaseWorker(worker.task());
releaseWorker(worker.getWorker());
}

/**
Expand Down
Loading

0 comments on commit 3fe27ac

Please sign in to comment.