rakeshramakrishnan edited a comment on issue #2439:
URL: https://github.com/apache/hudi/issues/2439#issuecomment-785795722


   @nsivabalan : There are no errors, however through hudi, the connection is 
made to the local hive metastore (from spark). It doesn't connect to the 
external hive metastore. 
   
   But, without hudi, the spark catalog fetches tables hive tables from the 
external metastore
   ```
   spark = SparkSession.builder \
       .appName("test-hudi-hive-sync") \
       .enableHiveSupport() \
       .config("hive.metastore.uris", metastore_uri) \
       .getOrCreate()
   
   print("Before {}".format(spark.catalog.listTables())) ------> returns tables 
from `metastore_uri`
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to