mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-30 00:48:52 +00:00
* Fix #3654: fixed minor bugs * Fixed table ingestion issues * Added sample script for deltalake * Added Hive Metastore support * Added support for local metastore * removed code smell * Resolved review comments * fixed display data type logic * Fixed Code Smell and Resolved conflicts * Fixed Delta lake source * removed set spark * Updated prepare method * id fix * Metatore exception added
24 lines
561 B
JSON
24 lines
561 B
JSON
{
|
|
"source": {
|
|
"type": "deltalake",
|
|
"serviceName": "local_deltalake",
|
|
"serviceConnection": {
|
|
"config": {
|
|
"metastoreHostPort": "localhost:9083",
|
|
"metastoreFilePath":"<path_to_metastore>/metastore_db",
|
|
"appName": "MyApp"
|
|
}
|
|
},
|
|
"sourceConfig": {"config": {"enableDataProfiler": false}}
|
|
},
|
|
"sink": {
|
|
"type": "metadata-rest",
|
|
"config": {}
|
|
},
|
|
"workflowConfig": {
|
|
"openMetadataServerConfig": {
|
|
"hostPort": "http://localhost:8585/api",
|
|
"authProvider": "no-auth"
|
|
}
|
|
}
|
|
} |