github vmware/versatile-data-kit v0.5
Versatile Data Kit 0.5

latest releases: v1.4, v1.3, v1.2...
2 years ago

Summary

Major features include:

New managed db_connection_execute_operation hook

The hooks enable users to add behavior to existing SQL queries without modifying the code itself.
It is invoked for reach query before and after enabling to track its full execution. For example

@hookimpl(hookwrapper=True)
db_connection_execute_operation(execution_cursor: ExecutionCursor) -> Optional[int]: 
                start = time.time()
                outcome = yield # we yield the execution so that query is executed 
                end = time.time()
                log.info(f" duration: {end - start}. ")

Airflow Provider VDK release (beta)

Users can integrate with Apache Airflow to orchestrate in a DAG (workflow) Data Jobs.
Check out more at airflow-provider-vdk

What's Changed

  • airflow-provider-vdk: Adopt auth plugin by @doks5 in #856
  • airflow-provider-vdk: Example DAG by @gageorgiev in #847
  • airflow-provider-vdk: Fix VDKSensor templating issue, improve example DAG by @gageorgiev in #852
  • control-service: clear execution fail alert when failing with user error by @mrMoZ1 in #850
  • control-service: fix graphql team filter not retrieving special chars by @mrMoZ1 in #863
  • control-service: improve api message on oom job execution errors by @mrMoZ1 in #861
  • documentation improvements by @zverulacis in #853
  • vdk-control-cli: Adopt new auth exceptions by @doks5 in #846
  • vdk-core: Add unit test for destination_table in empty queue by @doks5 in #865
  • vdk-core: Fix destination_table referenced early by @doks5 in #864
  • vdk-core: Split execution summary into chunks by @doks5 in #867
  • vdk-core: add new managed db_connection_execute_operation hook by @tozka in #805
  • vdk-core: fix buggy (false positive) connection unit test by @tozka in #841
  • vdk-control-api-auth: New VDK Auth exceptions by @doks5 in #845
  • vdk-heartbeat: pipelines-control-service-integration-tests image rebuild by @ivakoleva in #848
  • vdk-plugins: Add Managed Database Connection cycle plugin by @tozka in #859
  • vdk-test-utils: enable back tests by @tozka in #855

New Contributors

Full Changelog: v0.4...v0.5

Don't miss a new versatile-data-kit release

NewReleases is sending notifications on new releases.