Skip to content

Commit

Permalink
removed debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Vexler committed Oct 27, 2022
1 parent 093498f commit 8b4fe71
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ public static void runHoodieMetaSync(String syncToolClassName,
String targetBasePath,
String baseFileFormat) {
try {
LOG.warn("VEXLER HERE58");
instantiateMetaSyncTool(syncToolClassName, props, hadoopConfig, fs, targetBasePath, baseFileFormat).syncHoodieTable();
} catch (Throwable e) {
throw new HoodieException("Could not sync using the meta sync class " + syncToolClassName, e);
Expand All @@ -73,8 +72,6 @@ static HoodieSyncTool instantiateMetaSyncTool(String syncToolClassName,
properties.put(HoodieSyncConfig.META_SYNC_BASE_PATH.key(), targetBasePath);
properties.put(HoodieSyncConfig.META_SYNC_BASE_FILE_FORMAT.key(), baseFileFormat);
String tableName = properties.getString(HoodieSyncConfig.META_SYNC_TABLE_NAME.key());
LOG.warn("VEXLER HERE75");
LOG.warn(("VEXLER TABLE NAME IS: " + tableName));
if (!tableName.equals(tableName.toLowerCase())) {
LOG.warn("Table name \"" + tableName + "\" contains capital letters. Your metastore may auto convert this to lowercase and cause table not found errors.");
}
Expand Down

0 comments on commit 8b4fe71

Please sign in to comment.