doc: updated GX service name config (#14361)

This commit is contained in:
Teddy 2023-12-13 01:44:07 +01:00 committed by GitHub
parent f53fcf9168
commit 55e91587b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,7 @@ action:
module_name: metadata.great_expectations.action
class_name: OpenMetadataValidationAction
config_file_path: path/to/ometa/config/file/
ometa_service_name: my_service_name
database_service_name: my_service_name
[...]
```
@ -43,7 +43,7 @@ In your checkpoint yaml file, you will need to add the above code block in `acti
- `module_name`: this is OpenMetadata submodule name
- `class_name`: this is the name of the class that will be used to execute the custom action
- `config_file_path`: this is the path to your `config.yaml` file that holds the configuration of your OpenMetadata server
- `ometa_service_name`: [Optional] this is an optional parameter. If not specified and 2 tables have the same name in 2 different OpenMetadata services, the custom action will fail
- `database_service_name`: [Optional] this is an optional parameter. If not specified and 2 tables have the same name in 2 different OpenMetadata services, the custom action will fail
{% image
src={"/images/v1.2/features/integrations/ge-checkpoint-file.gif"}
@ -66,7 +66,7 @@ data_context.run_checkpoint(
"module_name": "metadata.great_expectations.action",
"class_name": "OpenMetadataValidationAction",
"config_file_path": "path/to/ometa/config/file/",
"ometa_service_name": "my_service_name",
"database_service_name": "my_service_name",
},
,}
)