MCPcopy Create free account
hub / github.com/apache/mesos / request

Method request

src/master/master.cpp:3538–3551  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3536
3537
3538void Master::request(
3539 Framework* framework,
3540 const scheduler::Call::Request& request)
3541{
3542 CHECK_NOTNULL(framework);
3543
3544 LOG(INFO) << "Processing REQUEST call for framework " << *framework;
3545
3546 ++metrics->messages_resource_request;
3547
3548 allocator->requestResources(
3549 framework->id(),
3550 google::protobuf::convert(request.requests()));
3551}
3552
3553
3554void Master::suppress(

Callers 2

schedulerMethod · 0.45
receiveMethod · 0.45

Calls 3

requestResourcesMethod · 0.65
convertFunction · 0.50
idMethod · 0.45

Tested by

no test coverage detected