Index
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
A
- add(Number, Number, Number...) - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.LongConverter
- add(Number, Number, Number...) - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.NumericValueConverter
-
Adds two or more numbers.
- AggregationCompactionDimension - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.flow
-
Identifies the compaction dimensions for the data in the
FlowRunTable. - AggregationOperation - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.flow
-
Identifies the attributes to be set for puts into the
FlowRunTable. - AppIdKeyConverter - Class in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Encodes and decodes
ApplicationIdfor row keys. - AppIdKeyConverter() - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.common.AppIdKeyConverter
- APPLICATION_ID - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationCompactionDimension
-
the application id.
- ApplicationColumn - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.application
-
Identifies fully qualified columns for the
ApplicationTable. - ApplicationColumnFamily - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.application
-
Represents the application table column families.
- ApplicationColumnPrefix - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.application
-
Identifies partially qualified columns for the application table.
- ApplicationRowKey - Class in org.apache.hadoop.yarn.server.timelineservice.storage.application
-
Represents a rowkey for the application table.
- ApplicationRowKey(String, String, String, Long, String) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationRowKey
- ApplicationRowKeyPrefix - Class in org.apache.hadoop.yarn.server.timelineservice.storage.application
-
Represents a partial rowkey (without flowName or without flowName and flowRunId) for the application table.
- ApplicationRowKeyPrefix(String, String, String) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationRowKeyPrefix
-
Creates a prefix which generates the following rowKeyPrefixes for the application table:
clusterId!userName!flowName!. - ApplicationRowKeyPrefix(String, String, String, Long) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationRowKeyPrefix
-
Creates a prefix which generates the following rowKeyPrefixes for the application table:
clusterId!userName!flowName!flowRunId!. - ApplicationTable - Class in org.apache.hadoop.yarn.server.timelineservice.storage.application
-
The application table as column families info, config and metrics.
- ApplicationTable() - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationTable
- AppToFlowColumn - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow
-
Identifies fully qualified columns for the
AppToFlowTable. - AppToFlowColumnFamily - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow
-
Represents the app_flow table column families.
- AppToFlowColumnPrefix - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow
-
Identifies partially qualified columns for the app-to-flow table.
- AppToFlowRowKey - Class in org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow
-
Represents a row key for the app_flow table, which is the app id.
- AppToFlowRowKey(String) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowRowKey
- AppToFlowTable - Class in org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow
-
The app_flow table as column families mapping.
- AppToFlowTable() - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowTable
- Attribute - Class in org.apache.hadoop.yarn.server.timelineservice.storage.flow
-
Defines the attribute tuple to be set for puts into the
FlowRunTable. - Attribute(String, byte[]) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.flow.Attribute
B
- BaseTable<T> - Class in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
The base type of tables.
- BaseTable() - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.common.BaseTable
C
- 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 - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
Config column stores configuration with config key as the column name.
- CONFIG - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
Config column stores configuration with config key as the column name.
- CONFIG - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
Config column stores configuration with config key as the column name.
- CONFIGS - Enum constant in enum class 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 - Enum constant in enum class 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 - Enum constant in enum class 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 - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
-
When the application was created.
- CREATED_TIME - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
-
The created time.
- CREATED_TIME - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
-
When the entity was created.
- CREATED_TIME - Enum constant in enum class 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.
D
- decode(byte[]) - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.AppIdKeyConverter
- decode(byte[]) - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.EventColumnNameConverter
- decode(byte[]) - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.KeyConverter
-
Decodes a byte array and returns a key of type T.
- decode(byte[]) - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.LongKeyConverter
- decode(byte[]) - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.StringKeyConverter
- decode(byte[], Separator...) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
Decode the given separators in the token with their decoding equivalents.
- decode(String) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
Decode the token encoded using
Separator.encode(String). - decode(String, Separator...) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
Decode the given separators in the token with their decoding equivalents.
- decodeFromString(String) - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.KeyConverterToString
-
Decode row key from string to a key of type T.
- decodeValue(byte[]) - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.GenericConverter
- decodeValue(byte[]) - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.LongConverter
- decodeValue(byte[]) - Method in interface org.apache.hadoop.yarn.server.timelineservice.storage.common.ValueConverter
-
Decode a byte array and convert it into an object depending on the converter implementation.
- DESCRIPTION - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
-
The description of the domain.
- DomainColumn - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.domain
-
Identifies fully qualified columns for the
DomainTable. - DomainColumnFamily - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.domain
-
Represents the domain table column families.
- DomainRowKey - Class in org.apache.hadoop.yarn.server.timelineservice.storage.domain
-
Represents a row key for the domain table, which is the cluster !
- DomainRowKey(String, String) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainRowKey
- DomainTable - Class in org.apache.hadoop.yarn.server.timelineservice.storage.domain
-
The domain table has column family info.
- DomainTable() - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainTable
E
- EMPTY_BYTES - Static variable in enum class org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
empty bytes.
- EMPTY_STRING - Static variable in enum class 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 class 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 class 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 Class in org.apache.hadoop.yarn.server.timelineservice.storage.entity
-
Identifies fully qualified columns for the
EntityTable. - EntityColumnFamily - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.entity
-
Represents the entity table column families.
- EntityColumnPrefix - Enum Class 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 - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
Lifecycle events for an application.
- EVENT - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
Lifecycle events for an entity.
- EVENT - Enum constant in enum class 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
F
- FLOW_ID - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumn
-
The flow ID.
- FLOW_NAME - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnPrefix
-
The flow name.
- FLOW_RUN_ID - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumn
-
The flow run ID.
- FLOW_RUN_ID - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnPrefix
-
The flow run ID.
- FLOW_VERSION - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
-
The version of the flow that this app belongs to.
- FLOW_VERSION - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
-
The version of the flow that this entity belongs to.
- FLOW_VERSION - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
-
The version of the flow that this flow belongs to.
- FLOW_VERSION - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
-
The version of the flow that this sub application belongs to.
- FlowActivityColumnFamily - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.flow
-
Represents the flow run table column families.
- FlowActivityColumnPrefix - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.flow
-
Identifies partially qualified columns for the
FlowActivityTable. - FlowActivityRowKey - Class in org.apache.hadoop.yarn.server.timelineservice.storage.flow
-
Represents a rowkey for the flow activity table.
- FlowActivityRowKey(String, Long, String, String) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityRowKey
- FlowActivityRowKey(String, Long, String, String, boolean) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityRowKey
- FlowActivityRowKeyPrefix - Class in org.apache.hadoop.yarn.server.timelineservice.storage.flow
-
A prefix partial rowkey for flow activities.
- FlowActivityRowKeyPrefix(String) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityRowKeyPrefix
-
Constructs a row key prefix for the flow activity table as follows:
clusterId!. - FlowActivityRowKeyPrefix(String, Long) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityRowKeyPrefix
-
Constructs a row key prefix for the flow activity table as follows:
clusterId!dayTimestamp!. - FlowActivityTable - Class in org.apache.hadoop.yarn.server.timelineservice.storage.flow
-
The flow activity table has column family info Stores the daily activity record for flows Useful as a quick lookup of what flows were running on a given day Example flow activity table record:
- FlowActivityTable() - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityTable
- FlowRunColumn - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.flow
-
Identifies fully qualified columns for the
FlowRunTable. - FlowRunColumnFamily - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.flow
-
Represents the flow run table column families.
- FlowRunColumnPrefix - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.flow
-
Identifies partially qualified columns for the
FlowRunTable. - FlowRunRowKey - Class in org.apache.hadoop.yarn.server.timelineservice.storage.flow
-
Represents a rowkey for the flow run table.
- FlowRunRowKey(String, String, String, Long) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunRowKey
- FlowRunRowKeyPrefix - Class in org.apache.hadoop.yarn.server.timelineservice.storage.flow
-
Represents a partial rowkey (without the flowRunId) for the flow run table.
- FlowRunRowKeyPrefix(String, String, String) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunRowKeyPrefix
-
Constructs a row key prefix for the flow run table as follows:
clusterId!userI!flowName!. - FlowRunTable - Class in org.apache.hadoop.yarn.server.timelineservice.storage.flow
-
The flow run table has column family info Stores per flow run information aggregated across applications.
- FlowRunTable() - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunTable
G
- 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 class org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationCompactionDimension
- getAggregationOperation() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
- getAggregationOperation(String) - Static method in enum class 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 class org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
- getAttribute() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
- getAttribute() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
- getAttribute(String) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationCompactionDimension
- getBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnFamily
- getBytes() - Method in enum class 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 class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumnFamily
- getBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnFamily
- getBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnFamily
- getBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnFamily
- getBytes() - Method in enum class 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 class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
- getColumnFamilyBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
- getColumnFamilyBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumn
- getColumnFamilyBytes() - Method in enum class 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 class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
- getColumnFamilyBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
- getColumnFamilyBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
- getColumnFamilyBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
- getColumnFamilyBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
- getColumnFamilyBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
- getColumnFamilyBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
- getColumnFamilyBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
- getColumnPrefix() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
- getColumnPrefix() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
- getColumnPrefix() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
- getColumnPrefix() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
- getColumnPrefixBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
- getColumnPrefixBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
- getColumnPrefixBytes(byte[]) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
- getColumnPrefixBytes(byte[]) - Method in enum class 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 class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
- getColumnPrefixBytes(byte[]) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
- getColumnPrefixBytes(byte[]) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
- getColumnPrefixBytes(byte[]) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
- getColumnPrefixBytes(String) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
- getColumnPrefixBytes(String) - Method in enum class 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 class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
- getColumnPrefixBytes(String) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
- getColumnPrefixBytes(String) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
- getColumnPrefixBytes(String) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
- getColumnPrefixInBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
- getColumnPrefixInBytes() - Method in enum class 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 class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
- getColumnPrefixInBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
- getColumnPrefixInBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
- getColumnPrefixInBytes() - Method in enum class 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 class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
- getColumnQualifierBytes() - Method in enum class 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 class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
- getColumnQualifierBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
- getColumnQualifierBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
- getColumnQualifierBytes() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
- getCombinedAttrsWithAggr(Attribute...) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
- getCombinedAttrsWithAggr(Attribute...) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
- getCombinedAttrsWithAggr(Attribute...) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumn
- getCombinedAttrsWithAggr(Attribute...) - Method in enum class 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 class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
- getCombinedAttrsWithAggr(Attribute...) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
- getCombinedAttrsWithAggr(Attribute...) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
- getCombinedAttrsWithAggr(Attribute...) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
- getCombinedAttrsWithAggr(Attribute...) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
- getCombinedAttrsWithAggr(Attribute...) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
- getCombinedAttrsWithAggr(Attribute...) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
- getCombinedAttrsWithAggr(Attribute...) - Method in enum class 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 class org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationCompactionDimension
- getInBytes() - Method in enum class 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!
- 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 class org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationCompactionDimension
- getTagType() - Method in enum class 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
TimestampGeneratorinstance. - 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 class 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 class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
- getValueConverter() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
- getValueConverter() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumn
- getValueConverter() - Method in enum class 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 class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
- getValueConverter() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
- getValueConverter() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
- getValueConverter() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
- getValueConverter() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
- getValueConverter() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
- getValueConverter() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
- getValueConverter() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
- GLOBAL_MAX - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
When it ended.
- GLOBAL_MIN - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
When the flow was started.
H
- HBaseTimelineSchemaUtils - Class in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
A bunch of utility functions used in HBase TimelineService common module.
I
- ID - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
-
App id.
- ID - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
-
Identifier for the entity.
- ID - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
-
Identifier for the sub application.
- INFO - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnFamily
-
Info column family houses known columns, specifically ones included in columnfamily filters.
- INFO - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
To store TimelineEntity info values.
- INFO - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumnFamily
-
Info column family houses known columns such as created_time, owners, readers.
- INFO - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnFamily
-
Info column family houses known columns, specifically ones included in columnfamily filters.
- INFO - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
To store TimelineEntity info values.
- INFO - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnFamily
-
Info column family houses known columns, specifically ones included in columnfamily filters.
- INFO - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnFamily
-
Info column family houses known columns, specifically ones included in columnfamily filters.
- INFO - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnFamily
-
Info column family houses known columns, specifically ones included in columnfamily filters.
- INFO - Enum constant in enum class 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 - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
To store TimelineEntity getIsRelatedToEntities values.
- IS_RELATED_TO - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
To store TimelineEntity getIsRelatedToEntities values.
- IS_RELATED_TO - Enum constant in enum class 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).
J
- join(byte[]...) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
Returns a single byte array containing all of the individual arrays components separated by this separator.
- joinEncoded(Iterable<?>) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
Concatenates items (as String), using this separator.
- joinEncoded(String...) - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
Concatenates items (as String), using this separator.
K
- KeyConverter<T> - Interface in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Interface which has to be implemented for encoding and decoding row keys and columns.
- KeyConverterToString<T> - Interface in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Interface which has to be implemented for encoding and decoding row keys or column qualifiers as string.
L
- LATEST_MAX - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
Max value as per the latest timestamp seen for a given app.
- LATEST_MIN - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
Min value as per the latest timestamp seen for a given app.
- length() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.common.Range
- LongConverter - Class in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Encodes a value by interpreting it as a Long and converting it to bytes and decodes a set of bytes as a Long.
- LongConverter() - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.common.LongConverter
- LongKeyConverter - Class in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Encodes and decodes column names / row keys which are long.
- LongKeyConverter() - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.common.LongKeyConverter
M
- MAPPING - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnFamily
-
Mapping column family houses known columns such as flowName and flowRunId.
- MAX_END_TIME - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
-
When the flow ended.
- METRIC - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
Metrics are stored with the metric name as the column name.
- METRIC - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
Metrics are stored with the metric name as the column name.
- METRIC - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
-
To store flow run info values.
- METRIC - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
Metrics are stored with the metric name as the column name.
- METRICS - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnFamily
-
Metrics have a separate column family, because they have a separate TTL.
- METRICS - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnFamily
-
Metrics have a separate column family, because they have a separate TTL.
- METRICS - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnFamily
-
Metrics have a separate column family, because they have a separate TTL.
- MILLIS_ONE_DAY - Static variable in class org.apache.hadoop.yarn.server.timelineservice.storage.common.HBaseTimelineSchemaUtils
-
milliseconds in one day.
- MIN_START_TIME - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
-
When the flow was started.
- MODIFICATION_TIME - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
-
The modification time.
N
- NumericValueConverter - Interface in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Extends ValueConverter interface for numeric converters to support numerical operations such as comparison, addition, etc.
O
- org.apache.hadoop.yarn.server.timelineservice.storage - package org.apache.hadoop.yarn.server.timelineservice.storage
-
Package org.apache.hadoop.yarn.server.timelineservice.storage contains classes which define and implement reading and writing to backend storage.
- org.apache.hadoop.yarn.server.timelineservice.storage.application - package org.apache.hadoop.yarn.server.timelineservice.storage.application
-
Package org.apache.hadoop.yarn.server.timelineservice.storage.application contains classes related to implementation for application table.
- org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow - package org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow
-
Package org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow contains classes related to implementation for app to flow table.
- org.apache.hadoop.yarn.server.timelineservice.storage.common - package org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Package org.apache.hadoop.yarn.server.timelineservice.storage.common contains a set of utility classes used across backend storage reader and writer.
- org.apache.hadoop.yarn.server.timelineservice.storage.domain - package org.apache.hadoop.yarn.server.timelineservice.storage.domain
-
Package org.apache.hadoop.yarn.server.timelineservice.storage.domain contains classes related to implementation for domain table.
- org.apache.hadoop.yarn.server.timelineservice.storage.entity - package org.apache.hadoop.yarn.server.timelineservice.storage.entity
-
Package org.apache.hadoop.yarn.server.timelineservice.storage.entity contains classes related to implementation for entity table.
- org.apache.hadoop.yarn.server.timelineservice.storage.flow - package org.apache.hadoop.yarn.server.timelineservice.storage.flow
-
Package org.apache.hadoop.yarn.server.timelineservice.storage.flow contains classes related to implementation for flow related tables, viz. flow run table and flow activity table.
- org.apache.hadoop.yarn.server.timelineservice.storage.subapplication - package org.apache.hadoop.yarn.server.timelineservice.storage.subapplication
-
Package org.apache.hadoop.yarn.server.timelineservice.storage.subapplication contains classes related to implementation for subapplication table.
- OWNER - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
-
The owner.
P
- 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.
Q
- QUALIFIERS - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
separator in key or column qualifier fields.
R
- Range - Class in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Encapsulates a range with start and end indices.
- Range(int, int) - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.common.Range
-
Defines a range from start index (inclusive) to end index (exclusive).
- READERS - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
-
The readers.
- RELATES_TO - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
To store TimelineEntity getRelatesToEntities values.
- RELATES_TO - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
To store TimelineEntity getRelatesToEntities values.
- RELATES_TO - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
To store TimelineEntity getRelatesToEntities values.
- RowKeyPrefix<R> - Interface in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
In queries where a single result is needed, an exact rowkey can be used through the corresponding rowkey#getRowKey() method.
- RUN_ID - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
-
To store run ids of the flows.
S
- Separator - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Used to separate row qualifiers, column qualifiers and compound fields.
- SPACE - Enum constant in enum class 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 class 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 class 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 class 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 class 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 Class in org.apache.hadoop.yarn.server.timelineservice.storage.subapplication
-
Identifies fully qualified columns for the
SubApplicationTable. - SubApplicationColumnFamily - Enum Class in org.apache.hadoop.yarn.server.timelineservice.storage.subapplication
-
Represents the sub application table column families.
- SubApplicationColumnPrefix - Enum Class 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 - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
The metrics of the flow.
- SUM_FINAL - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
application running.
- supplementCellTimestamp() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
- supplementCellTimestamp() - Method in enum class 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 class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
- supplementCellTimestamp() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
- supplementCellTimestamp() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
- supplementCellTimestamp() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
- supplementCellTimeStamp() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
- supplementCellTimeStamp() - Method in enum class 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 class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
- supplementCellTimeStamp() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
- supplementCellTimeStamp() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
- supplementCellTimeStamp() - Method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
T
- TAB - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
separator in values, often used to avoid having these in qualifiers and names.
- TimestampGenerator - Class in org.apache.hadoop.yarn.server.timelineservice.storage.common
-
Utility class that allows HBase coprocessors to interact with unique timestamps.
- TimestampGenerator() - Constructor for class org.apache.hadoop.yarn.server.timelineservice.storage.common.TimestampGenerator
- toString() - Method in class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunRowKey
-
returns the Flow Key as a verbose String output.
- TS_MULTIPLIER - Static variable in class org.apache.hadoop.yarn.server.timelineservice.storage.common.TimestampGenerator
- TYPE - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
-
The type of entity.
- TYPE - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
-
The type of sub application.
U
- USER_ID - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumn
-
The user.
- USER_ID - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnPrefix
-
The user.
V
- 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 class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnFamily
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumn
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnFamily
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnPrefix
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumnFamily
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnFamily
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationCompactionDimension
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnFamily
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnFamily
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnFamily
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
Returns the enum constant of this class with the specified name.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumn
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnFamily
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.application.ApplicationColumnPrefix
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumn
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnFamily
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.apptoflow.AppToFlowColumnPrefix
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumnFamily
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumn
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnFamily
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.entity.EntityColumnPrefix
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationCompactionDimension
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.AggregationOperation
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnFamily
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowActivityColumnPrefix
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumn
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnFamily
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.flow.FlowRunColumnPrefix
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumn
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnFamily
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class org.apache.hadoop.yarn.server.timelineservice.storage.subapplication.SubApplicationColumnPrefix
-
Returns an array containing the constants of this enum class, in the order they are declared.
- VALUES - Enum constant in enum class 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 class org.apache.hadoop.yarn.server.timelineservice.storage.common.Separator
-
Indicator for variable size of an individual segment in a split.
W
- WRITERS - Enum constant in enum class org.apache.hadoop.yarn.server.timelineservice.storage.domain.DomainColumn
-
The Writers.
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form