mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-01 19:18:05 +00:00
* Fix #15 * Pylint Relative Imports handled * Final Newline lint error resolved * Pylint Unused Imports handled * Pylint command modified * AllowDenyPattern error resolved * EntityReference changes for common to entityReference * vscode settings removed * Resolved reoccuring function * pylintrc file implemented * Fix pylintrc file * Pylint Errors resolved + import errors resolved and includepattern included Co-authored-by: Suresh Srinivas <srini3005@gmail.com>
40 lines
782 B
JSON
40 lines
782 B
JSON
{
|
|
"source": {
|
|
"type": "mysql",
|
|
"config": {
|
|
"username": "openmetadata_user",
|
|
"password": "openmetadata_password",
|
|
"service_name": "local_mysql",
|
|
"service_type": "MySQL",
|
|
"include_pattern": {
|
|
"filter": ["mysql.*", "information_schema.*"]
|
|
}
|
|
}
|
|
},
|
|
"processor": {
|
|
"type": "pii-tags",
|
|
"config": {
|
|
"api_endpoint": "http://localhost:8585/api"
|
|
}
|
|
},
|
|
"sink": {
|
|
"type": "metadata-rest-tables",
|
|
"config": {
|
|
}
|
|
},
|
|
"metadata_server": {
|
|
"type": "metadata-server",
|
|
"config": {
|
|
"api_endpoint": "http://localhost:8585/api",
|
|
"auth_provider_type": "no-auth"
|
|
}
|
|
},
|
|
"cron": {
|
|
"minute": "*/5",
|
|
"hour": null,
|
|
"day": null,
|
|
"month": null,
|
|
"day_of_week": null
|
|
}
|
|
}
|