blob: a38a163ab05aff2b9ed5d5e9a44208a1e809680f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.twill.internal.appmaster;
import org.apache.twill.api.LocalFile;
import java.util.List;
import javax.annotation.Nullable;
/**
* Represents data being stored in the live node of the application master.
*/
public final class ApplicationMasterLiveNodeData {
private final int appId;
private final long appIdClusterTime;
private final String containerId;
private final List<LocalFile> localFiles;
private final String kafkaZKConnect;
public ApplicationMasterLiveNodeData(int appId, long appIdClusterTime,
String containerId, List<LocalFile> localFiles,
@Nullable String kafkaZKConnect) {
this.appId = appId;
this.appIdClusterTime = appIdClusterTime;
this.containerId = containerId;
this.localFiles = localFiles;
this.kafkaZKConnect = kafkaZKConnect;
}
public int getAppId() {
return appId;
}
public long getAppIdClusterTime() {
return appIdClusterTime;
}
public String getContainerId() {
return containerId;
}
public List<LocalFile> getLocalFiles() {
return localFiles;
}
/**
* @return the Kafka ZK connection string for the Kafka used for log collection;
* if log collection is turned off, a {@code null} value will be returned.
*/
@Nullable
public String getKafkaZKConnect() {
return kafkaZKConnect;
}
@Override
public String toString() {
return "ApplicationMasterLiveNodeData{" +
"appId=" + appId +
", appIdClusterTime=" + appIdClusterTime +
", containerId='" + containerId + '\'' +
", localFiles=" + localFiles +
'}';
}
}