In case anyone comes across this, I managed to accomplish this using the Hive
Standalone Metastore, with help from an article [1]. Required
configurations:
spark.sql.warehouse.dir=s3a:///
spark.sql.catalogImplementation=hive
hive.metastore.uris=thrift://:9083
This enables me to run the example s
Hi all,
I'm trying to figure out how to persist a table definition in a catalog that
can be used from different sessions. Something along the lines
of
---
CREATE TABLE spark_catalog.default.test_table (
name string
)
USING jdbc
OPTIONS (
driver 'com.mysql.cj.jdbc.Driver'