This is an automated email from the ASF dual-hosted git repository. jackie pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push: new d0426826ff Log upsert config when initializing the metadata manager (#11864) d0426826ff is described below commit d0426826ffa3e39ab098f7300f7840e645328462 Author: Xiaotian (Jackie) Jiang <17555551+jackie-ji...@users.noreply.github.com> AuthorDate: Mon Oct 23 18:12:00 2023 -0700 Log upsert config when initializing the metadata manager (#11864) --- .../pinot/segment/local/upsert/BaseTableUpsertMetadataManager.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/upsert/BaseTableUpsertMetadataManager.java b/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/upsert/BaseTableUpsertMetadataManager.java index 9de2349007..bc783480b9 100644 --- a/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/upsert/BaseTableUpsertMetadataManager.java +++ b/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/upsert/BaseTableUpsertMetadataManager.java @@ -118,6 +118,13 @@ public abstract class BaseTableUpsertMetadataManager implements TableUpsertMetad initCustomVariables(); + LOGGER.info( + "Initialized {} for table: {} with primary key columns: {}, comparison columns: {}, delete record column: {}," + + " hash function: {}, upsert mode: {}, enable snapshot: {}, enable preload: {}, metadata TTL: {}, table " + + "index dir: {}", getClass().getSimpleName(), _tableNameWithType, _primaryKeyColumns, _comparisonColumns, + _deleteRecordColumn, _hashFunction, upsertConfig.getMode(), _enableSnapshot, upsertConfig.isEnablePreload(), + _metadataTTL, _tableIndexDir); + if (_enableSnapshot && segmentPreloadExecutor != null && upsertConfig.isEnablePreload()) { // Preloading the segments with snapshots for fast upsert metadata recovery. // Note that there is an implicit waiting logic between the thread doing the segment preloading here and the --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org