Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Welcome to Great Expectations! Always know what to expect from your data.
- #
- # Here you can define datasources, batch kwargs generators, integrations and
- # more. This file is intended to be committed to your repo. For help with
- # configuration please:
- # - Read our docs: https://docs.greatexpectations.io/en/latest/reference/spare_parts/data_context_reference.html#configuration
- # - Join our slack channel: http://greatexpectations.io/slack
- # config_version refers to the syntactic version of this config file, and is used in maintaining backwards compatibility
- # It is auto-generated and usually does not need to be changed.
- config_version: 3.0
- # Datasources tell Great Expectations where your data lives and how to get it.
- # You can use the CLI command `great_expectations datasource new` to help you
- # add a new datasource. Read more at https://docs.greatexpectations.io/en/latest/reference/core_concepts/datasource.html
- datasources:
- ch:
- data_connectors:
- default_runtime_data_connector_name:
- class_name: RuntimeDataConnector
- module_name: great_expectations.datasource.data_connector
- batch_identifiers:
- - default_identifier_name
- default_inferred_data_connector_name:
- class_name: InferredAssetSqlDataConnector
- module_name: great_expectations.datasource.data_connector
- module_name: great_expectations.datasource
- execution_engine:
- connection_string: clickhouse+native://USER:PASSWORD@HOST:9000/?session_id='qwer123'
- module_name: great_expectations.execution_engine
- class_name: SqlAlchemyExecutionEngine
- class_name: Datasource
- # This config file supports variable substitution which enables: 1) keeping
- # secrets out of source control & 2) environment-based configuration changes
- # such as staging vs prod.
- #
- # When GE encounters substitution syntax (like `my_key: ${my_value}` or
- # `my_key: $my_value`) in the great_expectations.yml file, it will attempt
- # to replace the value of `my_key` with the value from an environment
- # variable `my_value` or a corresponding key read from this config file,
- # which is defined through the `config_variables_file_path`.
- # Environment variables take precedence over variables defined here.
- #
- # Substitution values defined here can be a simple (non-nested) value,
- # nested value such as a dictionary, or an environment variable (i.e. ${ENV_VAR})
- #
- #
- # https://docs.greatexpectations.io/en/latest/guides/how_to_guides/configuring_data_contexts/how_to_use_a_yaml_file_or_environment_variables_to_populate_credentials.html
- config_variables_file_path: uncommitted/config_variables.yml
- # The plugins_directory will be added to your python path for custom modules
- # used to override and extend Great Expectations.
- plugins_directory: plugins/
- stores:
- # Stores are configurable places to store things like Expectations, Validations
- # Data Docs, and more. These are for advanced users only - most users can simply
- # leave this section alone.
- #
- # Three stores are required: expectations, validations, and
- # evaluation_parameters, and must exist with a valid store entry. Additional
- # stores can be configured for uses such as data_docs, etc.
- expectations_store:
- class_name: ExpectationsStore
- store_backend:
- class_name: TupleFilesystemStoreBackend
- base_directory: expectations/
- validations_store:
- class_name: ValidationsStore
- store_backend:
- class_name: TupleFilesystemStoreBackend
- base_directory: uncommitted/validations/
- evaluation_parameter_store:
- # Evaluation Parameters enable dynamic expectations. Read more here:
- # https://docs.greatexpectations.io/en/latest/reference/core_concepts/evaluation_parameters.html
- class_name: EvaluationParameterStore
- checkpoint_store:
- class_name: CheckpointStore
- store_backend:
- class_name: TupleFilesystemStoreBackend
- suppress_store_backend_id: true
- base_directory: checkpoints/
- expectations_store_name: expectations_store
- validations_store_name: validations_store
- evaluation_parameter_store_name: evaluation_parameter_store
- checkpoint_store_name: checkpoint_store
- data_docs_sites:
- # Data Docs make it simple to visualize data quality in your project. These
- # include Expectations, Validations & Profiles. The are built for all
- # Datasources from JSON artifacts in the local repo including validations &
- # profiles from the uncommitted directory. Read more at https://docs.greatexpectations.io/en/latest/reference/core_concepts/data_docs.html
- local_site:
- class_name: SiteBuilder
- # set to false to hide how-to buttons in Data Docs
- show_how_to_buttons: true
- store_backend:
- class_name: TupleFilesystemStoreBackend
- base_directory: uncommitted/data_docs/local_site/
- site_index_builder:
- class_name: DefaultSiteIndexBuilder
- anonymous_usage_statistics:
- enabled: true
- data_context_id: 0b57a1d9-03e4-47e2-90fc-d2bd4e07d341
- concurrency:
- enabled: false
- notebooks:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement