Data lineage API for Python scripts
Project description
aiSSEMBLE™ Foundation Data Lineage Python
This module serves as a generic wrapper for data lineage types, objects, and functions. While it is designed to be leveraged through the aiSSEMBLE™ ecosystem, it is not dependent on aiSSEMBLE for execution. It is intentionally designed for portability.
This Readme is intended to provide technical insight into the implementation of this package. For consumption guidance, please refer to the aiSSEMBLE Github Pages
Core Functionality
This module presently provides three main capabilities:
- Generic types to represent Data Lineage metadata
- Convenience methods for emitting Data Lineage through various mediums
- Conversion functions to transform the generic types to and from popular Data Lineage formats.
Through these capabilities, this module fulfills the need for an easy-to-use, implementation-agnostic Data Lineage interface.
Developer Guidance
- This module should display little to no dependence on any other aiSSEMBLE module. It is intentionally generic.
- Any changes to method or function signatures must be reflected in any relevant template code within
foundation-mda
. - Any change or addition in functionality must be accompanied by associated automated tests.
- As we are serving as an interface to third party libraries and services, any input parameters must be exhaustively validated.
Use Custom Microprofile config properties
By default, foundation-data-lineage uses the below microprofile-config.properties for the messaging service configurations
kafka.bootstrap.servers=kafka-cluster:9093
mp.messaging.outgoing.lineage-event-out.cloud-events=false
mp.messaging.outgoing.lineage-event-out.connector=smallrye-kafka
mp.messaging.outgoing.lineage-event-out.topic=lineage-event-out
mp.messaging.outgoing.lineage-event-out.key.serializer=org.apache.kafka.common.serialization.StringSerializer
mp.messaging.outgoing.lineage-event-out.value.serializer=org.apache.kafka.common.serialization.StringSerializer
You can also use your own microprofile-config.properties file. To do that, you must provide your own property path to the code:
- Set the path of the microprofile-config.properties on your file system
# specify the new microprofile-config properties path
self.emitter.set_messaging_properties_path(string_path_to_the_property_file)
- Set the new emitter topic
add below property to the data-lineage.properties file of the appropriate docker image (e.g. spark-worker)
data.lineage.emission.topic=replace-with-your-topic
- (Optional) If you are using the v1 kafka-cluster helm chart, add the new topic to kafka-cluster values.yaml file; e.g.: add
replace-with-your-topic:1:1
to the KAFKA_CREATE_TOPICS environment variable in the-deploy/src/main/resources/apps/kafka-cluster/values.yaml
NOTE:
There is a known issue with the confluent-kafka dependency that is brought in by the openlineage-client library that prevents it from installing this requirement on some arm64 environments. The problem is that librdkafka does not provide a wheel for all operating systems in the arm64 architecture, requiring that it be built from source in order for confluent-kafka to be installed. If you run into this problem, you can install it from source using the below commands:
- apt-get update
- apt install -y python3-dev git
- git clone https://github.com/confluentinc/librdkafka.git
- cd librdkafka
- ./configure --arch=aarch64
- make
- make install
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file aissemble_foundation_data_lineage_python-1.10.0.tar.gz
.
File metadata
- Download URL: aissemble_foundation_data_lineage_python-1.10.0.tar.gz
- Upload date:
- Size: 13.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.11.4 Linux/5.10.220-209.869.amzn2.x86_64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4530fcf9a1fe8e96c8f3b2199e969185daf5bf8e5494e9492c39e740c5b45f8b |
|
MD5 | 5ce87a9f0c178ecb5b9a8076ca34c384 |
|
BLAKE2b-256 | 64997794f327254e97550e7a0f63581dc419474159e003ed8deb91821356a120 |
File details
Details for the file aissemble_foundation_data_lineage_python-1.10.0-py3-none-any.whl
.
File metadata
- Download URL: aissemble_foundation_data_lineage_python-1.10.0-py3-none-any.whl
- Upload date:
- Size: 18.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.11.4 Linux/5.10.220-209.869.amzn2.x86_64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 077d839c9661791141f716a80a4f9ce7d0918ae8235fd2f86a317b31106c0ab9 |
|
MD5 | 5252eae7f0628db342432fce055667cd |
|
BLAKE2b-256 | 374bdbf635fd43c2d2fa7419abf70e57efdfd00d382535fe663d048324529f18 |