MCPcopy Create free account
hub / github.com/apache/impala / StartStatestoreSubscriberService

Method StartStatestoreSubscriberService

be/src/runtime/exec-env.cc:577–591  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

575}
576
577Status ExecEnv::StartStatestoreSubscriberService() {
578 LOG(INFO) << "Starting statestore subscriber service";
579
580 // Must happen after all topic registrations / callbacks are done
581 if (statestore_subscriber_.get() != nullptr) {
582 Status status = statestore_subscriber_->Start();
583 if (!status.ok()) {
584 status.AddDetail("Statestore subscriber did not start up.");
585 return status;
586 }
587 if (statestore_subscriber_->IsRegistered()) SetStatestoreRegistrationCompleted();
588 }
589
590 return Status::OK();
591}
592
593Status ExecEnv::StartKrpcService() {
594 LOG(INFO) << "Starting KRPC service";

Callers 1

StartMethod · 0.80

Calls 6

OKFunction · 0.85
IsRegisteredMethod · 0.80
getMethod · 0.65
StartMethod · 0.45
okMethod · 0.45
AddDetailMethod · 0.45

Tested by

no test coverage detected