Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ingestion/examples/workflows/bigquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "bigquery",
"config": {
"project_id": "project_id",
"host_port": "https://bigquery.googleapis.com",
"host_port": "bigquery.googleapis.com",
"username": "gcpuser@project_id.iam.gserviceaccount.com",
"service_name": "gcp_bigquery",
"options": {
Expand All @@ -25,7 +25,7 @@
}
},
"sink": {
"type": "metadata-rest-tables",
"type": "metadata-rest",
"config": {
"api_endpoint": "http://localhost:8585/api"
}
Expand Down
2 changes: 1 addition & 1 deletion ingestion/examples/workflows/confluent_kafka.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
},
"sink": {
"type": "metadata-rest-topics",
"type": "metadata-rest",
"config": {
}
},
Expand Down
2 changes: 1 addition & 1 deletion ingestion/examples/workflows/hive.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"config": {}
},
"sink": {
"type": "metadata-rest-tables",
"type": "metadata-rest",
"config": {}
},
"metadata_server": {
Expand Down
2 changes: 1 addition & 1 deletion ingestion/examples/workflows/looker.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
},
"sink": {
"type": "metadata-rest-dashboards",
"type": "metadata-rest",
"config": {}
},
"metadata_server": {
Expand Down
13 changes: 6 additions & 7 deletions ingestion/examples/workflows/mssql.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,22 @@
"config": {
"host_port": "localhost:1433",
"service_name": "local_mssql",
"database":"catalog_test",
"database": "catalog_test",
"query": "select top 50 * from {}.{}",
"username": "sa",
"password": "test!Password`[",
"password": "test!Password",
"filter_pattern": {
"excludes": ["catalog_test.*"]
}
}
},
"processor": {
"type": "pii",
"config": {
}
"config": {}
},
"sink": {
"type": "metadata-rest-tables",
"config": {
}
"type": "metadata-rest",
"config": {}
},
"metadata_server": {
"type": "metadata-server",
Expand Down
2 changes: 1 addition & 1 deletion ingestion/examples/workflows/postgres.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"config": {}
},
"sink": {
"type": "metadata-rest-tables",
"type": "metadata-rest",
"config": {}
},
"metadata_server": {
Expand Down
2 changes: 1 addition & 1 deletion ingestion/examples/workflows/presto.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}
},
"sink": {
"type": "metadata-rest-tables",
"type": "metadata-rest",
"config": {
}
},
Expand Down
4 changes: 2 additions & 2 deletions ingestion/examples/workflows/redshift.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"database": "warehouse",
"service_name": "aws_redshift",
"filter_pattern": {
"excludes": ["information_schema.*","[\\w]*event_vw.*"]
"excludes": ["information_schema.*", "[\\w]*event_vw.*"]
}
}
},
Expand All @@ -17,7 +17,7 @@
"config": {}
},
"sink": {
"type": "metadata-rest-tables",
"type": "metadata-rest",
"config": {}
},
"metadata_server": {
Expand Down
3 changes: 2 additions & 1 deletion ingestion/examples/workflows/snowflake.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"source": {
"type": "snowflake",
"config": {

"host_port": "account.region.service.snowflakecomputing.com",
"username": "username",
"password": "strong_password",
Expand All @@ -20,7 +21,7 @@
"config": {}
},
"sink": {
"type": "metadata-rest-tables",
"type": "metadata-rest",
"config": {}
},
"metadata_server": {
Expand Down
2 changes: 1 addition & 1 deletion ingestion/examples/workflows/superset.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}
},
"sink": {
"type": "metadata-rest-dashboards",
"type": "metadata-rest",
"config": {
}
},
Expand Down
7 changes: 3 additions & 4 deletions ingestion/pipelines/mysql.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,14 @@
}
},
"sink": {
"type": "metadata-rest-tables",
"config": {
}
"type": "metadata-rest",
"config": {}
},
"metadata_server": {
"type": "metadata-server",
"config": {
"api_endpoint": "http://localhost:8585/api",
"auth_provider_type": "no-auth"
"auth_provider_type": "no-auth"
}
},
"cron": {
Expand Down
4 changes: 1 addition & 3 deletions ingestion/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,7 @@ def get_long_description():
"scheduler": scheduler_requirements,
"snowflake": {"snowflake-sqlalchemy<=1.2.4"},
"snowflake-usage": {"snowflake-sqlalchemy<=1.2.4"},
"sample-tables": {"faker~=8.1.1", },
"sample-topics": {},
"sample-data": {"faker~=8.1.1",},
"sample-data": {"faker~=8.1.1"},
"superset": {}
}

Expand Down
139 changes: 0 additions & 139 deletions ingestion/src/metadata/ingestion/sink/metadata_rest_dashboards.py

This file was deleted.

89 changes: 0 additions & 89 deletions ingestion/src/metadata/ingestion/sink/metadata_rest_tables.py

This file was deleted.

Loading