You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by "sivabalan narayanan (Jira)" <ji...@apache.org> on 2021/11/30 16:16:00 UTC

[jira] [Created] (HUDI-2893) Metadata table not found warn logs repeated

sivabalan narayanan created HUDI-2893:
-----------------------------------------

             Summary: Metadata table not found warn logs repeated 
                 Key: HUDI-2893
                 URL: https://issues.apache.org/jira/browse/HUDI-2893
             Project: Apache Hudi
          Issue Type: Bug
            Reporter: sivabalan narayanan


When a new table is created for first time, we see repeated warn log statments that metadata table is not found. We need to trim this down to just once.

// steps to reproduce: just run our quick start guide inserts. 
{code:java}
scala> df.write.format("hudi").
     |   options(getQuickstartWriteConfigs).
     |   option(PRECOMBINE_FIELD.key(), "ts").
     |   option(PARTITIONPATH_FIELD.key(), "partitionpath").
     |   option(TBL_NAME.key(), tableName).
     |   mode(Overwrite).
     |   save(basePath)
21/11/30 11:12:20 WARN DFSPropertiesConfiguration: Cannot find HUDI_CONF_DIR, please set it as the dir of hudi-defaults.conf
21/11/30 11:12:20 WARN HoodieSparkSqlWriter$: hoodie table at file:/tmp/hudi_trips_cow already exists. Deleting existing data & overwriting with new data.
21/11/30 11:12:21 WARN HoodieBackedTableMetadata: Metadata table was not found at path file:///tmp/hudi_trips_cow/.hoodie/metadata
21/11/30 11:12:21 WARN HoodieBackedTableMetadata: Metadata table was not found at path file:///tmp/hudi_trips_cow/.hoodie/metadata
21/11/30 11:12:26 WARN HoodieBackedTableMetadata: Metadata table was not found at path file:///tmp/hudi_trips_cow/.hoodie/metadata
21/11/30 11:12:26 WARN HoodieBackedTableMetadata: Metadata table was not found at path file:///tmp/hudi_trips_cow/.hoodie/metadata {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)