Acceldata Torch SDK.
Project description
Pipeline APIs
Acceldata Torch is a complete solution to observe the quality of the data present in your data lake and warehouse. Using Torch, you can ensure that high-quality data backs your business decisions. Torch provides you with tools to measure the quality of data in a data catalog and to never miss significant data sources. All users including analysts, data scientists, and developers, can rely on Torch to observe the data flowing in the warehouse or data lake and can rest assured that there is no loss of data.
Torch SDK is used to trigger torch catalog and pipeline APIs. By creating a Torch client, all the torch apis can be accessed.
Install torch-sdk
pypi package in a python environment.
pip install torch-sdk
Create Torch Client
Torch client is used to send data to the torch servers. It consists of various methods to communicate with the torch server. Torch client have access to catalog and pipeline APIs. To create a torch client, torch url and API keys are required. To create torch API keys, go to torch ui’s settings and generate keys for the client.
While creating a TorchClient connection to torch by default version compatibility checks between torch and sdk is enabled. If we want we can disable that check by passing do_version_check
as `False.
from torch_sdk.torch_client import TorchClient
torch_client = TorchClient(url='https://acceldata.host.dev:9999', access_key='******',
secret_key='*****************', do_version_check=True)
Pipeline API
There are various pipeline APIs are supported through torch sdk. Pipeline APIs like create pipeline, add jobs and spans, initiate pipeline run et cetera. Torch sdk is able to send various event during span life cycle. Hence, torch sdk has full control over the pipelines.
This changed in version 0.0.28
Create Pipeline And Job
Pipeline represents the ETL pipeline in its entirety and will contain Asset nodes and Jobs associated. The complete pipeline definition forms the Lineage graph for all the data assets.
Job Node or Process Node represents an entity that does some job in the ETL workflow. From this representation, Job’s input is some assets or some other Jobs, and output is few other assets or few other Jobs.
Torch will use the set of Jobs definition in the workflow to create the Lineage, and the will also track version changes for the Pipeline.
To create pipeline and jobs, first create creation object with required parameter. And with use of supported methods by sdk, can do corresponding operation on torch server side.
from torch_sdk.models.job import CreateJob, JobMetadata, Node
from torch_sdk.models.pipeline import CreatePipeline, PipelineMetadata, PipelineRunResult, PipelineRunStatus
# Create pipeline
pipeline = CreatePipeline(
uid='monthly_reporting_pipeline',
name='Monthly reporting Pipeline',
description='Pipeline to create monthly reporting tables',
meta=PipelineMetadata('Vaishvik', 'torch_sdk_code', '...'),
context={'key1': 'value1'}
)
pipeline_response = torch_client.create_pipeline(pipeline=pipeline)
pipeline_run = pipeline_response.get_latest_pipeline_run()
# Create Job
job = CreateJob(
uid='monthly_sales_aggregate',
name='Monthly Sales Aggregate',
version=pipeline_run.versionId,
description='Generates the monthly sales aggregate tables for the complete year',
inputs=[Node(asset_uid='datasource-name.database.schema.table_1')],
outputs=[Node(job_uid='job2_uid')],
meta=JobMetadata('vaishvik', 'backend', 'https://github.com/'),
context={'key21': 'value21'}
)
job_response = pipeline_response.create_job(job)
Create Pipeline Run And Generate Spans And Send Span Events
Pipeline run indicates the execution of the pipeline. The same pipeline can be executed multiple times and each execution (run) has new snapshot version. Each pipeline run has hierarchical span's group. A Span is a way to group a bunch of metrics, and they are hierarchical. It can be as granular as possible. The APIs will support creating a span object from a pipeline object, and then hierarchical spans are started from parent spans. A Span typically encompasses a process or a task and can be granular. This hierarchical system is powerful enough to model extremely complex pipeline observability flows. Optionally, a span can also be associated with a Job. This way, we can track starting and completion of Job, including the failure tracking. Start and stop are implicitly tracked for a span.
Torch sdk also has support for create new pipeline run, add spans in it. During the span life cycle, sdk is able to send some customs and standard span events to collect pipeline run metrics for observability.
from torch_sdk.events.generic_event import GenericEvent
from datetime import datetime
# create a pipeline run of the pipeline
pipeline_run = pipeline_response.create_pipeline_run()
# create span in the pipeline run
span_context = pipeline_run.create_span(uid='monthly.generate.data.span')
# check current span is root or not
span_context.is_root()
# end the span
span_context.end()
# check if the current span has children or not
span_context.has_children()
# create a child span
child_span_context = span_context.create_child_span('monthly.generate.customer.span')
# send custom event
child_span_context.send_event(
GenericEvent(context_data={'client_time': str(datetime.now()), 'row_count': 100},
event_uid="order.customer.join.result")
)
# abort span
child_span_context.abort()
# failed span
child_span_context.failed()
# update a pipeline run of the pipeline
updatePipelineRunRes = pipeline_run.update_pipeline_run(context_data={'key1': 'value2', 'name': 'backend'},
result=PipelineRunResult.SUCCESS,
status=PipelineRunStatus.COMPLETED)
Get Latest Pipeline Run
Torch sdk can get the latest pipeline run of the pipeline. with use of the latest pipeline run instance, user can continue ETL pipeline and add spans, jobs, events too. Hence, torch sdk has complete access on the torch pipeline service.
Params for get_pipeline
:
pipeline_identity
: String parameter used to filter pipeline. It can be either id or uid of the pipeline.
pipeline = torch_client.get_pipeline('monthly.reporting.pipeline')
pipeline_run = pipeline.get_latest_pipeline_run()
This changed in version 0.0.27
Get Pipeline Run with a particular pipeline run id
Torch sdk can get a pipeline run of the pipeline with a particular pipeline run id. With use of the pipeline run instance, user can continue ETL pipeline and add spans, jobs, events too. Hence, torch sdk has complete access on the torch pipeline service.
Params for get_pipeline_run
:
pipeline_run_id
: continuation id or run id of the pipeline run
pipeline_run = torch_client.get_pipeline_run(pipeline_run_id)
This changed in version 0.0.38
Get Pipeline details for a particular pipeline run id
Torch sdk can get Pipeline details for a particular pipeline run.
pipeline_details = pipeline_run.get_details()
Get all spans for a particular pipeline run id
Torch sdk can get all spans for a particular pipeline run id.
pipeline_run_spans = pipeline_run.get_spans()
Get Pipeline Runs for a pipeline
Torch sdk can get all pipeline runs.
Params for get_pipeline_runs
:
pipeline_id
: id of the pipeline
runs = torch_client.get_pipeline_runs(pipeline_id)
runs = pipeline.get_runs()
Get all Pipelines
Torch sdk can get all pipelines.
pipelines = torch_client.get_pipelines()
Delete a Pipeline
Torch sdk can delete a pipeline.
delete_response = pipeline.delete()
This changed in version 0.0.27
Execute policy synchronously and asynchronously
Torch sdk provides utility function execute_policy
to execute policies synchronously and asynchronously. This will return an object on which get_result
and get_status
can be called to get result and status of the execution respectively.
Params for execute_policy
:
sync
: Boolean parameter used to decide if the policy should be executed synchronously or asynchronously. It is a mandatory parameter. If its is set to True
it will return only after the execution ends. If it is set to False
it will return immediately after starting the execution.
policy_type
: Enum parameter used to specify the policy type. It is a mandatory parameter. It is a enum which will take values from constants as PolicyType.DATA_QUALITY or PolicyType.RECONCILIATION.
policy_id
: String parameter used to specify the policy id to be executed. It is a mandatory parameter.
incremental
: Boolean parameter used to specify if the policy execution should be incremental or full. Default value is False.
failure_strategy
: Enum parameter used to decide the behaviour in case of failure. Default value is DoNotFail.
-
failure_strategy
takes enum of typeFailureStrategy
which can have 3 values DoNotFail, FailOnError and FailOnWarning. -
DoNotFail will never throw. In case of failure it will log the error.
-
FailOnError will Throw exception only if it's an error. In case of warning it return without any errors.
-
FailOnWarning will Throw exception on warning as well as error.
To get the execution result we can call get_policy_execution_result
on torch_client or call get_result
on execution object which will return a result object.
Params for get_policy_execution_result
:
policy_type
: Enum parameter used to specify the policy type. It is a mandatory parameter. It is a enum which will take values from constants as PolicyType.DATA_QUALITY or PolicyType.RECONCILIATION.
execution_id
: String parameter used to specify the execution id to be queried for rsult. It is a mandatory parameter.
failure_strategy
: Enum parameter used to decide the behaviour in case of failure. Default value is DoNotFail.
Params for get_result
:
failure_strategy
: Enum parameter used to decide the behaviour in case of failure. Default value is DoNotFail.
To get the current status we can call get_policy_status
on torch_client or call get_status
on execution object which will get the current resultStatus
of the execution.
params for get_policy_status
:
policy_type
: Enum parameter used to specify the policy type. It is a mandatory parameter. It is a enum which will take values from constants as PolicyType.DATA_QUALITY or PolicyType.RECONCILIATION.
execution_id
: String parameter used to specify the execution id to be queried for rsult. It is a mandatory parameter.
get_status
does not take any parameter.
Asynchronous execution example
from torch_sdk.torch_client import TorchClient
from torch_airflow_sdk.initialiser import torch_credentials
import torch_sdk.constants as const
from torch_sdk.constants import FailureStrategy
torch_client = TorchClient(**torch_credentials)
async_executor = torch_client.execute_policy(const.PolicyType.DATA_QUALITY, 46, sync=False, failure_strategy=FailureStrategy.DoNotFail)
# Wait for execution to get final result
execution_result = async_executor.get_result(failure_strategy=FailureStrategy.DoNotFail)
# Get the current status
execution_status = async_executor.get_status()
Synchronous execution example.
from torch_sdk.torch_client import TorchClient
from torch_airflow_sdk.initialiser import torch_credentials
import torch_sdk.constants as const
from torch_sdk.constants import FailureStrategy
torch_client = TorchClient(**torch_credentials)
# This will wait for execution to get final result
sync_executor = torch_client.execute_policy(const.PolicyType.DATA_QUALITY, 46, sync=True, failure_strategy=FailureStrategy.DoNotFail)
# Wait for execution to get final result
execution_result = sync_executor.get_result(FailureStrategy = const.FailureStrategy.DoNotFail)
# Get the current status
execution_status = sync_executor.get_status()
Cancel execution example.
execution_result = sync_executor.cancel()
Datasource APIs
Torch SDK has full access on catalog APIs as well.
Datasource API
Torch has support for more 15+ datasource crawling support.
# Get datasource
ds_res = torch_client.get_datasource('snowflake_ds_local')
ds_res = torch_client.get_datasource(5, properties=True)
# Get datasources based on type
datasources = torch_client.get_datasources(const.AssetSourceType.SNOWFLAKE)
Assets APIs
Torch sdk has methods to get assets in the given datasource.
from torch_sdk.models.create_asset import AssetMetadata
# Get asset by id/uid
asset = torchclient.get_asset(1)
asset = torch_client.get_asset('Feature_bag_datasource.feature_1')
Asset's tags, labels, metadata and sample data
User can add tags, labels custom metadata and also get sample data of the asset using sdk. Tags and labels can be used to filter out asset easily.
# asset metadata
from modules.torch.torch_sdk.models.tags import AssetLabel, CustomAssetMetadata
asset = torch_client.get_asset(asset_id)
# Get metadata of an asset
asset.get_metadata()
# Get all tags
tags = asset.get_tags()
# Add tag asset
tag_add = asset.add_tag(tag='asset_tag')
# Add asset labels
labels = asset.add_labels(labels=[AssetLabel('test1', 'demo1'), AssetLabel('test2', 'demo2')])
# Get asset labels
labels = asset.get_labels()
# Add custom metadata
asset.add_custom_metadata(custom_metadata=[CustomAssetMetadata('testcm1', 'democm1'), CustomAssetMetadata('testcm2', 'democm2')])
Crawler Operations
User can start crawler as well as check for running crawler status.
# Start a crawler
datasource.start_crawler()
torch_client.start_crawler('datasource_name')
# Get running crawler status
datasource.get_crawler_status()
torch_client.get_crawler_status('datasource_name')
Trigger policies, Profiling and sampling of an asset
Crawled assets can be profiled and sampled with use of spark jobs running on the livy. Furthermore, Created policies (Recon + DQ) can be triggered too.
import torch_sdk.constants as const
# profile an asset, get profile req details, cancel profile
profile_res = asset.start_profile(profiling_type=ProfilingType.FULL)
profile_req_details = profile_res.get_status()
cancel_profile_res = profile_res.cancel()
profile_res = asset.get_latest_profile_status()
profile_req_details_by_req_id = torch_client.get_profile_status(asset_id=profile_req_details.assetId,
req_id=profile_req_details.id)
# sample data
sample_data = asset.sample_data()
# Rule execution and status
# Execute polic
execute_dq_rule = torch_client.execute_policy(const.PolicyType.DATA_QUALITY, 1114, incremental=False)
failure_strategy = const.FailureStrategy.DoNotFail
# Get policy execution result
result = torch_client.get_policy_execution_result(
policy_type=const.PolicyType.DATA_QUALITY,
execution_id=execute_dq_rule.id,
failure_strategy=failure_strategy
)
# Get policy and execute
from torch_sdk.models.ruleExecutionResult import RuleType, PolicyFilter
rule = torch_client.get_policy(const.PolicyType.RECONCILIATION, "auth001_reconciliation")
# Execute policy
async_execution = rule.execute(sync=False)
# Get execution result
async_execution_result = async_execution.get_result()
# Get current execution status
async_execution_status = async_execution.get_status()
# Cancel policy execution job
cancel_rule = async_execution.cancel()
# List all executions
# List executions by id
dq_rule_executions = torch_client.policy_executions(1114, RuleType.DATA_QUALITY)
# List executions by name
dq_rule_executions = torch_client.policy_executions('dq-scala', RuleType.DATA_QUALITY)
# List executions by rule
recon_rule_executions = rule.get_executions()
filter = PolicyFilter(policyType=RuleType.RECONCILIATION, enable=True)
# List all rules
recon_rules = torch_client.list_all_policies(filter=filter)
Version Log
0.1.0 (14/06/2021)
- Torch python sdk
- Support for flow APIs and catalog APIs of the torch
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
File details
Details for the file torch_sdk-0.0.33.tar.gz
.
File metadata
- Download URL: torch_sdk-0.0.33.tar.gz
- Upload date:
- Size: 73.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5133737125b665deaebe3eb42783b51b4ebe604777b67a5d3d80b37d7e7aa3c2 |
|
MD5 | b224a2c1967bb11a34da04e5e04c17cc |
|
BLAKE2b-256 | 4ca7a97169cf69919d9be710cb5e27231a951b51d65a53e015863c1356dd3cba |