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 b62fac4a4c Include exception when metadata manager cannot be created
(#9532)
b62fac4a4c is described below
commit b62fac4a4c0e1f4f3e4f649e1a4cf31ff3053a84
Author: Xiaotian (Jackie) Jiang <[email protected]>
AuthorDate: Tue Oct 4 14:40:32 2022 -0700
Include exception when metadata manager cannot be created (#9532)
---
.../pinot/segment/local/upsert/TableUpsertMetadataManagerFactory.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/upsert/TableUpsertMetadataManagerFactory.java
b/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/upsert/TableUpsertMetadataManagerFactory.java
index 989f5a1e2c..307128ff63 100644
---
a/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/upsert/TableUpsertMetadataManagerFactory.java
+++
b/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/upsert/TableUpsertMetadataManagerFactory.java
@@ -51,8 +51,8 @@ public class TableUpsertMetadataManagerFactory {
(TableUpsertMetadataManager)
Class.forName(metadataManagerClass).getConstructor().newInstance();
} catch (Exception e) {
throw new RuntimeException(
- String.format("Caught exception constructing
TableUpsertMetadataManager with class: %s for table: %s",
- metadataManagerClass, tableNameWithType));
+ String.format("Caught exception while constructing
TableUpsertMetadataManager with class: %s for table: %s",
+ metadataManagerClass, tableNameWithType), e);
}
} else {
LOGGER.info("Creating ConcurrentMapTableUpsertMetadataManager for table:
{}", tableNameWithType);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]