Class BaseTableUpsertMetadataManager
- java.lang.Object
-
- org.apache.pinot.segment.local.upsert.BaseTableUpsertMetadataManager
-
- All Implemented Interfaces:
Closeable,AutoCloseable,TableUpsertMetadataManager
- Direct Known Subclasses:
ConcurrentMapTableUpsertMetadataManager
@ThreadSafe public abstract class BaseTableUpsertMetadataManager extends Object implements TableUpsertMetadataManager
-
-
Field Summary
Fields Modifier and Type Field Description protected String_comparisonColumnprotected HashFunction_hashFunctionprotected PartialUpsertHandler_partialUpsertHandlerprotected List<String>_primaryKeyColumnsprotected ServerMetrics_serverMetricsprotected String_tableNameWithType
-
Constructor Summary
Constructors Constructor Description BaseTableUpsertMetadataManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UpsertConfig.ModegetUpsertMode()voidinit(TableConfig tableConfig, Schema schema, TableDataManager tableDataManager, ServerMetrics serverMetrics)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.pinot.segment.local.upsert.TableUpsertMetadataManager
getOrCreatePartitionManager
-
-
-
-
Field Detail
-
_tableNameWithType
protected String _tableNameWithType
-
_comparisonColumn
protected String _comparisonColumn
-
_hashFunction
protected HashFunction _hashFunction
-
_partialUpsertHandler
protected PartialUpsertHandler _partialUpsertHandler
-
_serverMetrics
protected ServerMetrics _serverMetrics
-
-
Method Detail
-
init
public void init(TableConfig tableConfig, Schema schema, TableDataManager tableDataManager, ServerMetrics serverMetrics)
- Specified by:
initin interfaceTableUpsertMetadataManager
-
getUpsertMode
public UpsertConfig.Mode getUpsertMode()
- Specified by:
getUpsertModein interfaceTableUpsertMetadataManager
-
-