Skip to main content

DataHub

Testing

CLI based Ingestion

Install the Plugin

pip install 'acryl-datahub[datahub]'

Config Details

Note that a . is used to denote nested fields in the YAML recipe.

FieldDescription
commit_state_interval
integer
Number of records to process before committing state
Default: 1000
include_all_versions
boolean
If enabled, include all versions of each aspect. Otherwise, only include the latest version of each aspect.
Default: False
kafka_topic_name
string
Name of kafka topic containing timeseries MCLs
Default: MetadataChangeLog_Timeseries_v1
mysql_table_name
string
Name of MySQL table containing all versioned aspects
Default: metadata_aspect_v2
kafka_connection
KafkaConsumerConnectionConfig
Kafka connection config
Default: {'bootstrap': 'localhost:9092', 'schema_registry_u...
kafka_connection.bootstrap
string
Default: localhost:9092
kafka_connection.client_timeout_seconds
integer
The request timeout used when interacting with the Kafka APIs.
Default: 60
kafka_connection.consumer_config
object
Extra consumer config serialized as JSON. These options will be passed into Kafka's DeserializingConsumer. See https://docs.confluent.io/platform/current/clients/confluent-kafka-python/html/index.html#deserializingconsumer and https://github.com/edenhill/librdkafka/blob/master/CONFIGURATION.md .
kafka_connection.schema_registry_config
object
Extra schema registry config serialized as JSON. These options will be passed into Kafka's SchemaRegistryClient. https://docs.confluent.io/platform/current/clients/confluent-kafka-python/html/index.html?#schemaregistryclient
kafka_connection.schema_registry_url
string
Default: http://localhost:8080/schema-registry/api/
mysql_connection
MySQLConfig
MySQL connection config
Default: {'env': 'PROD', 'platform_instance': None, 'statef...
mysql_connection.database
string
database (catalog)
mysql_connection.database_alias
string
[Deprecated] Alias to apply to database when ingesting.
mysql_connection.host_port
string
MySQL host URL.
Default: localhost:3306
mysql_connection.include_table_location_lineage
boolean
If the source supports it, include table lineage to the underlying storage location.
Default: True
mysql_connection.include_tables
boolean
Whether tables should be ingested.
Default: True
mysql_connection.include_views
boolean
Whether views should be ingested.
Default: True
mysql_connection.options
object
Any options specified here will be passed to SQLAlchemy.create_engine as kwargs.
mysql_connection.password
string(password)
password
mysql_connection.platform_instance
string
The instance of the platform that all assets produced by this recipe belong to
mysql_connection.scheme
string
Default: mysql+pymysql
mysql_connection.sqlalchemy_uri
string
URI of database to connect to. See https://docs.sqlalchemy.org/en/14/core/engines.html#database-urls. Takes precedence over other connection parameters.
mysql_connection.username
string
username
mysql_connection.env
string
The environment that all assets produced by this connector belong to
Default: PROD
mysql_connection.database_pattern
AllowDenyPattern
Regex patterns for databases to filter in ingestion.
Default: {'allow': ['.*'], 'deny': [], 'ignoreCase': True}
mysql_connection.database_pattern.allow
array(string)
mysql_connection.database_pattern.deny
array(string)
mysql_connection.database_pattern.ignoreCase
boolean
Whether to ignore case sensitivity during pattern matching.
Default: True
mysql_connection.domain
map(str,AllowDenyPattern)
A class to store allow deny regexes
mysql_connection.domain.key.allow
array(string)
mysql_connection.domain.key.deny
array(string)
mysql_connection.domain.key.ignoreCase
boolean
Whether to ignore case sensitivity during pattern matching.
Default: True
mysql_connection.profile_pattern
AllowDenyPattern
Regex patterns to filter tables (or specific columns) for profiling during ingestion. Note that only tables allowed by the table_pattern will be considered.
Default: {'allow': ['.*'], 'deny': [], 'ignoreCase': True}
mysql_connection.profile_pattern.allow
array(string)
mysql_connection.profile_pattern.deny
array(string)
mysql_connection.profile_pattern.ignoreCase
boolean
Whether to ignore case sensitivity during pattern matching.
Default: True
mysql_connection.schema_pattern
AllowDenyPattern
Deprecated in favour of database_pattern.
Default: {'allow': ['.*'], 'deny': [], 'ignoreCase': True}
mysql_connection.schema_pattern.allow
array(string)
mysql_connection.schema_pattern.deny
array(string)
mysql_connection.schema_pattern.ignoreCase
boolean
Whether to ignore case sensitivity during pattern matching.
Default: True
mysql_connection.table_pattern
AllowDenyPattern
Regex patterns for tables to filter in ingestion. Specify regex to match the entire table name in database.schema.table format. e.g. to match all tables starting with customer in Customer database and public schema, use the regex 'Customer.public.customer.*'
Default: {'allow': ['.*'], 'deny': [], 'ignoreCase': True}
mysql_connection.table_pattern.allow
array(string)
mysql_connection.table_pattern.deny
array(string)
mysql_connection.table_pattern.ignoreCase
boolean
Whether to ignore case sensitivity during pattern matching.
Default: True
mysql_connection.view_pattern
AllowDenyPattern
Regex patterns for views to filter in ingestion. Note: Defaults to table_pattern if not specified. Specify regex to match the entire view name in database.schema.view format. e.g. to match all views starting with customer in Customer database and public schema, use the regex 'Customer.public.customer.*'
Default: {'allow': ['.*'], 'deny': [], 'ignoreCase': True}
mysql_connection.view_pattern.allow
array(string)
mysql_connection.view_pattern.deny
array(string)
mysql_connection.view_pattern.ignoreCase
boolean
Whether to ignore case sensitivity during pattern matching.
Default: True
mysql_connection.profiling
GEProfilingConfig
Default: {'enabled': False, 'limit': None, 'offset': None, ...
mysql_connection.profiling.catch_exceptions
boolean
Default: True
mysql_connection.profiling.enabled
boolean
Whether profiling should be done.
Default: False
mysql_connection.profiling.field_sample_values_limit
integer
Upper limit for number of sample values to collect for all columns.
Default: 20
mysql_connection.profiling.include_field_distinct_count
boolean
Whether to profile for the number of distinct values for each column.
Default: True
mysql_connection.profiling.include_field_distinct_value_frequencies
boolean
Whether to profile for distinct value frequencies.
Default: False
mysql_connection.profiling.include_field_histogram
boolean
Whether to profile for the histogram for numeric fields.
Default: False
mysql_connection.profiling.include_field_max_value
boolean
Whether to profile for the max value of numeric columns.
Default: True
mysql_connection.profiling.include_field_mean_value
boolean
Whether to profile for the mean value of numeric columns.
Default: True
mysql_connection.profiling.include_field_median_value
boolean
Whether to profile for the median value of numeric columns.
Default: True
mysql_connection.profiling.include_field_min_value
boolean
Whether to profile for the min value of numeric columns.
Default: True
mysql_connection.profiling.include_field_null_count
boolean
Whether to profile for the number of nulls for each column.
Default: True
mysql_connection.profiling.include_field_quantiles
boolean
Whether to profile for the quantiles of numeric columns.
Default: False
mysql_connection.profiling.include_field_sample_values
boolean
Whether to profile for the sample values for all columns.
Default: True
mysql_connection.profiling.include_field_stddev_value
boolean
Whether to profile for the standard deviation of numeric columns.
Default: True
mysql_connection.profiling.limit
integer
Max number of documents to profile. By default, profiles all documents.
mysql_connection.profiling.max_number_of_fields_to_profile
integer
A positive integer that specifies the maximum number of columns to profile for any table. None implies all columns. The cost of profiling goes up significantly as the number of columns to profile goes up.
mysql_connection.profiling.max_workers
integer
Number of worker threads to use for profiling. Set to 1 to disable.
Default: 20
mysql_connection.profiling.offset
integer
Offset in documents to profile. By default, uses no offset.
mysql_connection.profiling.partition_datetime
string(date-time)
For partitioned datasets profile only the partition which matches the datetime or profile the latest one if not set. Only Bigquery supports this.
mysql_connection.profiling.partition_profiling_enabled
boolean
Default: True
mysql_connection.profiling.profile_if_updated_since_days
number
Profile table only if it has been updated since these many number of days. If set to null, no constraint of last modified time for tables to profile. Supported only in snowflake and BigQuery.
mysql_connection.profiling.profile_table_level_only
boolean
Whether to perform profiling at table-level only, or include column-level profiling as well.
Default: False
mysql_connection.profiling.profile_table_row_count_estimate_only
boolean
Use an approximate query for row count. This will be much faster but slightly less accurate. Only supported for Postgres and MySQL.
Default: False
mysql_connection.profiling.profile_table_row_limit
integer
Profile tables only if their row count is less then specified count. If set to null, no limit on the row count of tables to profile. Supported only in snowflake and BigQuery
Default: 5000000
mysql_connection.profiling.profile_table_size_limit
integer
Profile tables only if their size is less then specified GBs. If set to null, no limit on the size of tables to profile. Supported only in snowflake and BigQuery
Default: 5
mysql_connection.profiling.query_combiner_enabled
boolean
This feature is still experimental and can be disabled if it causes issues. Reduces the total number of queries issued and speeds up profiling by dynamically combining SQL queries where possible.
Default: True
mysql_connection.profiling.report_dropped_profiles
boolean
Whether to report datasets or dataset columns which were not profiled. Set to True for debugging purposes.
Default: False
mysql_connection.profiling.turn_off_expensive_profiling_metrics
boolean
Whether to turn off expensive profiling or not. This turns off profiling for quantiles, distinct_value_frequencies, histogram & sample_values. This also limits maximum number of fields being profiled to 10.
Default: False
mysql_connection.stateful_ingestion
StatefulStaleMetadataRemovalConfig
Base specialized config for Stateful Ingestion with stale metadata removal capability.
mysql_connection.stateful_ingestion.enabled
boolean
The type of the ingestion state provider registered with datahub.
Default: False
mysql_connection.stateful_ingestion.remove_stale_metadata
boolean
Soft-deletes the entities present in the last successful run but missing in the current run with stateful_ingestion enabled.
Default: True
stateful_ingestion
StatefulIngestionConfig
Stateful Ingestion Config
Default: {'enabled': True, 'max_checkpoint_state_size': 167...
stateful_ingestion.enabled
boolean
The type of the ingestion state provider registered with datahub.
Default: False

Code Coordinates

  • Class Name: datahub.ingestion.source.datahub.datahub_source.DataHubSource
  • Browse on GitHub

Questions

If you've got any questions on configuring ingestion for DataHub, feel free to ping us on our Slack.