- Column<T extends BaseTable<T>> - Interface in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
A Column represents the way to store a fully qualified column in a specific
table.
- ColumnFamily<T extends BaseTable<T>> - Interface in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Type safe column family.
- ColumnHelper - Class in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
This class is meant to be used only by explicit Columns, and not directly to
write by clients.
- ColumnPrefix<T extends BaseTable<T>> - Interface in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Used to represent a partially qualified column, where the actual column name
will be composed of a prefix and the remainder of the column qualifier.
- combineAttributes(Attribute[], AggregationOperation) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.HBaseTimelineSchemaUtils
-
Combines the input array of attributes and the input aggregation operation
into a new array of attributes.
- compare(Number, Number) - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.LongConverter
-
Compares two numbers as longs.
- CONFIG - org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
Config column stores configuration with config key as the column name.
- CONFIG - org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
Config column stores configuration with config key as the column name.
- CONFIG - org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
Config column stores configuration with config key as the column name.
- CONFIGS - org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnFamily
-
Configurations are in a separate column family for two reasons: a) the size
of the config values can be very large and b) we expect that config values
are often separately accessed from other metrics and info columns.
- CONFIGS - org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnFamily
-
Configurations are in a separate column family for two reasons: a) the size
of the config values can be very large and b) we expect that config values
are often separately accessed from other metrics and info columns.
- CONFIGS - org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnFamily
-
Configurations are in a separate column family for two reasons:
a) the size of the config values can be very large and
b) we expect that config values
are often separately accessed from other metrics and info columns.
- convertApplicationIdToString(ApplicationId) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.HBaseTimelineSchemaUtils
-
A utility method that converts ApplicationId to string without using
FastNumberFormat in order to avoid the incompatibility issue caused
by mixing hadoop-common 2.5.1 and hadoop-yarn-api 3.0 in this module.
- CREATED_TIME - org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
-
When the application was created.
- CREATED_TIME - org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
-
The created time.
- CREATED_TIME - org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
-
When the entity was created.
- CREATED_TIME - org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
-
When the sub application was created.
- currentTime() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.TimestampGenerator
-
Returns the current wall clock time in milliseconds, multiplied by the
required precision.
- EMPTY_BYTES - Static variable in enum org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
empty bytes.
- EMPTY_STRING - Static variable in enum org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
empty string.
- encode(Long) - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.LongKeyConverter
-
- encode(String) - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.AppIdKeyConverter
-
- encode(String) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
Used to make token safe to be used with this separator without collisions.
- encode(String) - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.StringKeyConverter
-
- encode(String, Separator...) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
Encode the given separators in the token with their encoding equivalents.
- encode(EventColumnName) - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.EventColumnNameConverter
-
- encode(T) - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.KeyConverter
-
Encodes a key as a byte array.
- encodeAsString(T) - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.KeyConverterToString
-
Encode key as string.
- encodeValue(Object) - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.GenericConverter
-
- encodeValue(Object) - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.LongConverter
-
- encodeValue(Object) - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.ValueConverter
-
Encode an object as a byte array depending on the converter implementation.
- end() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.Range
-
- EntityColumn - Enum in org.apache.hadoop.yarn.server.timelineservice.storage.entity
-
Identifies fully qualified columns for the
EntityTable.
- EntityColumnFamily - Enum in org.apache.hadoop.yarn.server.timelineservice.storage.entity
-
Represents the entity table column families.
- EntityColumnPrefix - Enum in org.apache.hadoop.yarn.server.timelineservice.storage.entity
-
Identifies partially qualified columns for the entity table.
- EntityRowKey - Class in org.apache.hadoop.yarn.server.timelineservice.storage.entity
-
Represents a rowkey for the entity table.
- EntityRowKey(String, String, String, Long, String, String, Long, String) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityRowKey
-
- EntityRowKeyPrefix - Class in org.apache.hadoop.yarn.server.timelineservice.storage.entity
-
Represents a partial rowkey without the entityId or without entityType and
entityId for the entity table.
- EntityRowKeyPrefix(String, String, String, Long, String) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityRowKeyPrefix
-
Creates a prefix which generates the following rowKeyPrefixes for the
entity table:
userName!clusterId!flowName!flowRunId!AppId!entityType!entityId.
- EntityRowKeyPrefix(String, String, String, Long, String, String, Long, String) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityRowKeyPrefix
-
Creates a prefix which generates the following rowKeyPrefixes for the
entity table:
userName!clusterId!flowName!flowRunId!AppId!entityType!.
- EntityTable - Class in org.apache.hadoop.yarn.server.timelineservice.storage.entity
-
The entity table as column families info, config and metrics.
- EntityTable() - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityTable
-
- EVENT - org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
Lifecycle events for an application.
- EVENT - org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
Lifecycle events for an entity.
- EVENT - org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
Lifecycle events for an entity.
- EventColumnName - Class in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Encapsulates information about Event column names for application and entity
tables.
- EventColumnName(String, Long, String) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.common.EventColumnName
-
- EventColumnNameConverter - Class in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Encodes and decodes event column names for application and entity tables.
- EventColumnNameConverter() - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.common.EventColumnNameConverter
-
- GenericConverter - Class in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Uses GenericObjectMapper to encode objects as bytes and decode bytes as
objects.
- getAggregationCompactionDimension(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationCompactionDimension
-
- getAggregationOperation() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
-
- getAggregationOperation(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
returns the AggregationOperation enum that represents that string.
- getAppId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationRowKey
-
- getAppId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowRowKey
-
- getAppId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityRowKey
-
- getAttribute() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
- getAttribute() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
-
- getAttribute() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
-
- getAttribute(String) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationCompactionDimension
-
- getBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnFamily
-
- getBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnFamily
-
- getBytes() - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.ColumnFamily
-
Keep a local copy if you need to avoid overhead of repeated cloning.
- getBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumnFamily
-
- getBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnFamily
-
- getBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnFamily
-
- getBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnFamily
-
- getBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnFamily
-
- getClusterId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationRowKey
-
- getClusterId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainRowKey
-
- getClusterId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityRowKey
-
- getClusterId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityRowKey
-
- getClusterId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunRowKey
-
- getClusterId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationRowKey
-
- getColumnFamilyBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
-
- getColumnFamilyBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
- getColumnFamilyBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumn
-
- getColumnFamilyBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnPrefix
-
- getColumnFamilyBytes() - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.Column
-
Returns column family name(as bytes) associated with this column.
- getColumnFamilyBytes() - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.ColumnPrefix
-
Returns column family name(as bytes) associated with this column prefix.
- getColumnFamilyBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
-
- getColumnFamilyBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
-
- getColumnFamilyBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
- getColumnFamilyBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
-
- getColumnFamilyBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
-
- getColumnFamilyBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
-
- getColumnFamilyBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
-
- getColumnFamilyBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
- getColumnPrefix() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
- getColumnPrefix() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
-
- getColumnPrefix() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
-
- getColumnPrefix() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
- getColumnPrefixBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
-
- getColumnPrefixBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
-
- getColumnPrefixBytes(byte[]) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
- getColumnPrefixBytes(byte[]) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnPrefix
-
- getColumnPrefixBytes(byte[]) - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.ColumnPrefix
-
- getColumnPrefixBytes(byte[]) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
- getColumnPrefixBytes(byte[]) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
-
- getColumnPrefixBytes(byte[]) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
-
- getColumnPrefixBytes(byte[]) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
- getColumnPrefixBytes(String) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
- getColumnPrefixBytes(String) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnPrefix
-
- getColumnPrefixBytes(String) - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.ColumnPrefix
-
- getColumnPrefixBytes(String) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
- getColumnPrefixBytes(String) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
-
- getColumnPrefixBytes(String) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
-
- getColumnPrefixBytes(String) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
- getColumnPrefixInBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
- getColumnPrefixInBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnPrefix
-
- getColumnPrefixInBytes() - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.ColumnPrefix
-
Get the column prefix in bytes.
- getColumnPrefixInBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
- getColumnPrefixInBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
-
- getColumnPrefixInBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
-
- getColumnPrefixInBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
- getColumnQualifier() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.EventColumnName
-
- getColumnQualifier(byte[], byte[]) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.ColumnHelper
-
- getColumnQualifier(byte[], long) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.ColumnHelper
-
- getColumnQualifier(byte[], String) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.ColumnHelper
-
- getColumnQualifierBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
-
- getColumnQualifierBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumn
-
- getColumnQualifierBytes() - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.Column
-
Get byte representation for this column qualifier.
- getColumnQualifierBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
-
- getColumnQualifierBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
-
- getColumnQualifierBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
-
- getColumnQualifierBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
-
- getCombinedAttrsWithAggr(Attribute...) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
-
- getCombinedAttrsWithAggr(Attribute...) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
- getCombinedAttrsWithAggr(Attribute...) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumn
-
- getCombinedAttrsWithAggr(Attribute...) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnPrefix
-
- getCombinedAttrsWithAggr(Attribute...) - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.Column
-
Return attributed combined with aggregations, if any.
- getCombinedAttrsWithAggr(Attribute...) - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.ColumnPrefix
-
Return attributed combined with aggregations, if any.
- getCombinedAttrsWithAggr(Attribute...) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
-
- getCombinedAttrsWithAggr(Attribute...) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
-
- getCombinedAttrsWithAggr(Attribute...) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
- getCombinedAttrsWithAggr(Attribute...) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
-
- getCombinedAttrsWithAggr(Attribute...) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
-
- getCombinedAttrsWithAggr(Attribute...) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
-
- getCombinedAttrsWithAggr(Attribute...) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
-
- getCombinedAttrsWithAggr(Attribute...) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
- getDayTimestamp() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityRowKey
-
- getDomainId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainRowKey
-
- getEntityId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityRowKey
-
- getEntityId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationRowKey
-
- getEntityIdPrefix() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityRowKey
-
- getEntityIdPrefix() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationRowKey
-
- getEntityType() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityRowKey
-
- getEntityType() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationRowKey
-
- getFlowName() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationRowKey
-
- getFlowName() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityRowKey
-
- getFlowName() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityRowKey
-
- getFlowName() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunRowKey
-
- getFlowRunId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationRowKey
-
- getFlowRunId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityRowKey
-
- getFlowRunId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunRowKey
-
- getId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.EventColumnName
-
- getInBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationCompactionDimension
-
- getInBytes() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
- getInfoKey() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.EventColumnName
-
- getInstance() - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.GenericConverter
-
- getKeySize() - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.AppIdKeyConverter
-
Returns the size of app id after encoding.
- getName() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.Attribute
-
- getRowKey() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationRowKey
-
Constructs a row key for the application table as follows:
clusterId!userName!flowName!flowRunId!AppId.
- getRowKey() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowRowKey
-
Constructs a row key prefix for the app_flow table.
- getRowKey() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainRowKey
-
Constructs a row key prefix for the domain table.
- getRowKey() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityRowKey
-
Constructs a row key for the entity table as follows:
userName!clusterId!flowName!flowRunId!AppId!entityType!entityId.
- getRowKey() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityRowKey
-
Constructs a row key for the flow activity table as follows:
clusterId!dayTimestamp!user!flowName.
- getRowKey() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunRowKey
-
Constructs a row key for the entity table as follows: {
clusterId!userId!flowName!Inverted Flow Run Id}.
- getRowKey() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationRowKey
-
Constructs a row key for the sub app table as follows:
subAppUserId!clusterId!entityType
!entityPrefix!entityId!userId.
- getRowKeyAsString() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationRowKey
-
Constructs a row key for the application table as follows:
clusterId!userName!flowName!flowRunId!AppId.
- getRowKeyAsString() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainRowKey
-
Constructs a row key for the domain table as follows:
- getRowKeyAsString() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityRowKey
-
Constructs a row key for the entity table as follows:
- getRowKeyAsString() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityRowKey
-
Constructs a row key for the flow activity table as follows:
clusterId!dayTimestamp!user!flowName.
- getRowKeyAsString() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunRowKey
-
Constructs a row key for the flow run table as follows:
clusterId!userId!flowName!Flow Run Id.
- getRowKeyAsString() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationRowKey
-
Constructs a row key for the sub app table as follows:
- getRowKeyPrefix() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationRowKeyPrefix
-
- getRowKeyPrefix() - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.RowKeyPrefix
-
Create a row key prefix, meaning a partial rowkey that can be used in range
scans.
- getRowKeyPrefix() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityRowKeyPrefix
-
- getRowKeyPrefix() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityRowKeyPrefix
-
- getRowKeyPrefix() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunRowKeyPrefix
-
- getRowKeyPrefix() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationRowKeyPrefix
-
- getSubAppUserId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationRowKey
-
- getSupplementedTimestamp(long, String) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.TimestampGenerator
-
Returns a timestamp multiplied with TS_MULTIPLIER and last few digits of
application id.
- getTagType() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationCompactionDimension
-
- getTagType() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
- getTimestamp() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.EventColumnName
-
- getTopOfTheDayTimestamp(long) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.HBaseTimelineSchemaUtils
-
returns the timestamp of that day's start (which is midnight 00:00:00 AM)
for a given input timestamp.
- getTruncatedTimestamp(long) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.TimestampGenerator
-
truncates the last few digits of the timestamp which were supplemented by
the TimestampGenerator#getSupplementedTimestamp function.
- getUniqueTimestamp() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.TimestampGenerator
-
Returns a timestamp value unique within the scope of this
TimestampGenerator instance.
- getUserId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationRowKey
-
- getUserId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityRowKey
-
- getUserId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityRowKey
-
- getUserId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunRowKey
-
- getUserId() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationRowKey
-
- getValue() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
- getValue() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.Attribute
-
- getValueConverter() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
-
- getValueConverter() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
- getValueConverter() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumn
-
- getValueConverter() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnPrefix
-
- getValueConverter() - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.Column
-
Returns value converter implementation associated with this column.
- getValueConverter() - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.ColumnPrefix
-
Returns value converter implementation associated with this column prefix.
- getValueConverter() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
-
- getValueConverter() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
-
- getValueConverter() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
- getValueConverter() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
-
- getValueConverter() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
-
- getValueConverter() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
-
- getValueConverter() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
-
- getValueConverter() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
- GLOBAL_MAX - org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
When it ended.
- GLOBAL_MIN - org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
When the flow was started.
- ID - org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
-
App id.
- ID - org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
-
Identifier for the entity.
- ID - org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
-
Identifier for the sub application.
- INFO - org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnFamily
-
Info column family houses known columns, specifically ones included in
columnfamily filters.
- INFO - org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
To store TimelineEntity info values.
- INFO - org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumnFamily
-
Info column family houses known columns such as created_time, owners,
readers.
- INFO - org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnFamily
-
Info column family houses known columns, specifically ones included in
columnfamily filters.
- INFO - org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
To store TimelineEntity info values.
- INFO - org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnFamily
-
Info column family houses known columns, specifically ones included in
columnfamily filters.
- INFO - org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnFamily
-
Info column family houses known columns, specifically ones included in
columnfamily filters.
- INFO - org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnFamily
-
Info column family houses known columns, specifically ones included in
columnfamily filters.
- INFO - org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
To store TimelineEntity info values.
- invertInt(int) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.HBaseTimelineSchemaUtils
-
Converts an int into it's inverse int to be used in (row) keys
where we want to have the largest int value in the top of the table
(scans start at the largest int first).
- invertLong(long) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.LongConverter
-
Converts a timestamp into it's inverse timestamp to be used in (row) keys
where we want to have the most recent timestamp in the top of the table
(scans start at the most recent timestamp first).
- IS_RELATED_TO - org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
To store TimelineEntity getIsRelatedToEntities values.
- IS_RELATED_TO - org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
To store TimelineEntity getIsRelatedToEntities values.
- IS_RELATED_TO - org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
To store TimelineEntity getIsRelatedToEntities values.
- isIntegralValue(Object) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.HBaseTimelineSchemaUtils
-
Checks if passed object is of integral type(Short/Integer/Long).
- parseRowKey(byte[]) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationRowKey
-
Given the raw row key as bytes, returns the row key as an object.
- parseRowKey(byte[]) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowRowKey
-
Given the raw row key as bytes, returns the row key as an object.
- parseRowKey(byte[]) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainRowKey
-
Given the raw row key as bytes, returns the row key as an object.
- parseRowKey(byte[]) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityRowKey
-
Given the raw row key as bytes, returns the row key as an object.
- parseRowKey(byte[]) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityRowKey
-
Given the raw row key as bytes, returns the row key as an object.
- parseRowKey(byte[]) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunRowKey
-
Given the raw row key as bytes, returns the row key as an object.
- parseRowKey(byte[]) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationRowKey
-
Given the raw row key as bytes, returns the row key as an object.
- parseRowKeyFromString(String) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationRowKey
-
Given the encoded row key as string, returns the row key as an object.
- parseRowKeyFromString(String) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainRowKey
-
Given the encoded row key as string, returns the row key as an object.
- parseRowKeyFromString(String) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityRowKey
-
Given the encoded row key as string, returns the row key as an object.
- parseRowKeyFromString(String) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityRowKey
-
Given the raw row key as string, returns the row key as an object.
- parseRowKeyFromString(String) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunRowKey
-
Given the encoded row key as string, returns the row key as an object.
- parseRowKeyFromString(String) - Static method in class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationRowKey
-
Given the encoded row key as string, returns the row key as an object.
- Separator - Enum in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Used to separate row qualifiers, column qualifiers and compound fields.
- SPACE - org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
separator in values, often used to avoid having these in qualifiers and
names.
- split(byte[]) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
Splits the source array into multiple array segments using this separator,
as many times as splits are found.
- split(byte[], int) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
Splits the source array into multiple array segments using this separator,
up to a maximum of count items.
- split(byte[], int[]) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
Splits the source array into multiple array segments using this separator.
- splitEncoded(String) - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
- start() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.Range
-
- StringKeyConverter - Class in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Encodes and decodes column names / row keys which are merely strings.
- StringKeyConverter() - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.common.StringKeyConverter
-
- SubApplicationColumn - Enum in org.apache.hadoop.yarn.server.timelineservice.storage.subapplication
-
- SubApplicationColumnFamily - Enum in org.apache.hadoop.yarn.server.timelineservice.storage.subapplication
-
Represents the sub application table column families.
- SubApplicationColumnPrefix - Enum in org.apache.hadoop.yarn.server.timelineservice.storage.subapplication
-
Identifies partially qualified columns for the sub app table.
- SubApplicationRowKey - Class in org.apache.hadoop.yarn.server.timelineservice.storage.subapplication
-
Represents a rowkey for the sub app table.
- SubApplicationRowKey(String, String, String, Long, String, String) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationRowKey
-
- SubApplicationRowKeyPrefix - Class in org.apache.hadoop.yarn.server.timelineservice.storage.subapplication
-
Represents a partial rowkey without the entityId or without entityType and
entityId for the sub application table.
- SubApplicationRowKeyPrefix(String, String, String, Long, String, String) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationRowKeyPrefix
-
Creates a prefix which generates the following rowKeyPrefixes for the sub
application table:
subAppUserId!clusterId!entityType!entityPrefix!userId.
- SubApplicationTable - Class in org.apache.hadoop.yarn.server.timelineservice.storage.subapplication
-
The sub application table has column families:
info, config and metrics.
- SubApplicationTable() - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationTable
-
- SUM - org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
The metrics of the flow.
- SUM_FINAL - org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
application running.
- supplementCellTimestamp() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
-
- supplementCellTimestamp() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumn
-
- supplementCellTimestamp() - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.Column
-
Return true if the cell timestamp needs to be supplemented.
- supplementCellTimestamp() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
-
- supplementCellTimestamp() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
-
- supplementCellTimestamp() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
-
- supplementCellTimestamp() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
-
- supplementCellTimeStamp() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
- supplementCellTimeStamp() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnPrefix
-
- supplementCellTimeStamp() - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.ColumnPrefix
-
Return true if the cell timestamp needs to be supplemented.
- supplementCellTimeStamp() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
- supplementCellTimeStamp() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
-
- supplementCellTimeStamp() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
-
- supplementCellTimeStamp() - Method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
- ValueConverter - Interface in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Converter used to encode/decode value associated with a column prefix or a
column.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnFamily
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumn
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnFamily
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnPrefix
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumnFamily
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnFamily
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationCompactionDimension
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnFamily
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnFamily
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnFamily
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnFamily
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumn
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnFamily
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnPrefix
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumnFamily
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnFamily
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationCompactionDimension
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnFamily
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnFamily
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnFamily
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- VALUES - org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
separator in values, and/or compound key/column qualifier fields.
- VARIABLE_SIZE - Static variable in enum org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
Indicator for variable size of an individual segment in a split.