Ingestion - fix pytest workflow errors and modify airflow pipeline (#4178)

This commit is contained in:
Ayush Shah 2022-04-18 11:36:21 +05:30 committed by GitHub
parent d179692ad3
commit 4f5c5a9e23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 12 deletions

View File

@ -35,12 +35,18 @@ config = """
{
"source": {
"type": "metadata",
"config": {
"include_tables": "true",
"include_topics": "true",
"include_dashboards": "true",
"limit_records": 10
}
"serviceName": "openMetadata",
"serviceConnection": {
"config":{
"type":"MetadataES",
"includeTables": "true",
"includeUsers": "true",
"includeTopics": "true",
"includeDashboards": "true",
"limitRecords": 10
}
},
"sourceConfig":{"config":{}}
},
"sink": {
"type": "elasticsearch",
@ -52,11 +58,10 @@ config = """
"es_port": 9200
}
},
"metadata_server": {
"type": "metadata-server",
"config": {
"api_endpoint": "http://localhost:8585/api",
"auth_provider_type": "no-auth"
"workflowConfig": {
"openMetadataServerConfig": {
"hostPort": "http://localhost:8585/api",
"authProvider": "no-auth"
}
}
}

View File

@ -46,7 +46,7 @@ base_requirements = {
"PyYAML",
"jsonschema",
"sqllineage==1.3.3",
"MarkupSafe>=2.0",
"MarkupSafe==2.0.1",
}
report_requirements = {