Custom Amundsen Atlas data types definition
Project description
Amundsen Atlas Types
Kickstart your Apache Atlas to support Amundsen using the prebuilt functions and required entity definitions.
Installation:
The package is available on PyPi, which you can install using below.
pip install amundsenatlastypes
Usage:
Connecting to Apache Atlas:
amundsenatlastypes
uses environment variables to connect to Apache Atlas.
Following are the environment variables need to be set in order to connect to Apache Atlas.
- ATLAS_HOST [default = localhost]
- ATLAS_PORT [default = 21000]
- ATLAS_USERNAME [default = admin]
- ATLAS_PASSWORD [default = admin]
Kickstart Apache Atlas
A single python function is available that you can use to apply all required entity definitions. You can run this function as many times as you want, and it will not break any existing functionality, that means that it can also be implemented in your pipelines.
from amundsenatlastypes import Initializer
init = Initializer()
init.create_required_entities()
There also is a functionality to initiate your existing data to work accordingly with Amundsen.
To create required relations you need to set fix_existing_data=True
while calling the create_required_entities()
.
from amundsenatlastypes import Initializer
init = Initializer()
init.create_required_entities(fix_existing_data=True)
Sample Data
amundsenatlastypes
provides sample data so you can populate your Atlas not only with entity definitions but also
concrete entities.
Prerequisites
pip install amundsenatlastypes[samples]
Table Sample Data
from amundsenatlastypes.schema.table.sample_data import SampleTableData
table_loader = SampleTableData()
table_loader.create()
Dashboard Sample Data
from amundsenatlastypes.schema.dashboard.sample_data import SampleDashboardData
# Fill below variables with appropriate values
table_guid = ''
user_guid = ''
loader = SampleDashboardData(table_guid, user_guid)
loader.create()
Functionality:
amundsenatlastypes
provides a number of functions that can be used separately to
implement/apply entity definitions of Apache Atlas, which are available here.
You can also simply access the individual entity definitions in JSON format by importing them from here.
Sample Data
amundsenatlastypes
provides sample data so you can populate your Atlas not only with entity definitions but also
concrete entities.
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 amundsenatlastypes-1.2.2.tar.gz
.
File metadata
- Download URL: amundsenatlastypes-1.2.2.tar.gz
- Upload date:
- Size: 15.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75990167c281351c00ccfa67d46c09017f9e6dfd69a33539517299818974f161 |
|
MD5 | 4daf8e9e8fad61040b9b1b4cebeac815 |
|
BLAKE2b-256 | 665d7a6ac87b81c330802220f06f9a9a23ef1d92c96eff9118619d969ff96db9 |
File details
Details for the file amundsenatlastypes-1.2.2-py3-none-any.whl
.
File metadata
- Download URL: amundsenatlastypes-1.2.2-py3-none-any.whl
- Upload date:
- Size: 23.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2a7be886b7bd663426d5f741b69b031e46b2fca1886b804017e6e96acbcc88d |
|
MD5 | 1d9b9dd19440060dd90b52b778e5ed75 |
|
BLAKE2b-256 | 8f46c25e233a78321e21f5ddef9d9077be1be3e283f98667e621f72ddbbd87ff |