YARN-7140. CollectorInfo should have Public visibility. Contributed by Varun Saxena.

This commit is contained in:
Rohith Sharma K S 2017-09-08 20:23:16 +05:30
parent 0bfb3a2566
commit 4a83170be4

View File

@ -18,16 +18,16 @@
package org.apache.hadoop.yarn.api.records;
import org.apache.hadoop.classification.InterfaceStability;
import org.apache.hadoop.classification.InterfaceAudience.Private;
import org.apache.hadoop.classification.InterfaceStability.Evolving;
import org.apache.hadoop.classification.InterfaceAudience.Public;
import org.apache.hadoop.yarn.util.Records;
/**
* Collector info containing collector address and collector token passed from
* RM to AM in Allocate Response.
*/
@Private
@InterfaceStability.Unstable
@Public
@Evolving
public abstract class CollectorInfo {
protected static final long DEFAULT_TIMESTAMP_VALUE = -1;