dnishimura commented on a change in pull request #990: SAMZA-2161: Move
ChangelogPartitionManager and CoordinatorStream ConfigReader to MetadataStore.
URL: https://github.com/apache/samza/pull/990#discussion_r274033756
##########
File path:
samza-core/src/main/java/org/apache/samza/clustermanager/ClusterBasedJobCoordinator.java
##########
@@ -287,18 +281,18 @@ private void onShutDown() {
inputStreamRegexMonitor.ifPresent(StreamRegexMonitor::stop);
systemAdmins.stop();
containerProcessManager.stop();
- coordinatorStreamManager.stop();
+ coordinatorStreamStore.close();
} catch (Throwable e) {
- log.error("Exception while stopping cluster based job coordinator", e);
+ LOG.error("Exception while stopping task manager {}", e);
}
- log.info("Stopped cluster based job coordinator");
+ LOG.info("Stopped task manager");
Review comment:
Shouldn't this say _cluster based job coordinator_?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services