Skip to main content

Packages and workflows introduction

In Atlan, packages define the workflows you can run to retrieve metadata from various sources.

Workflows run asynchronously

This means the helper method to run a workflow will return immediately, before the workflow itself has finished running. If you want to wait until the workflow is finished you'll need to use other helper methods to check the status and wait accordingly.

Supported packages

Explore the list of individual packages currently supported through our SDKs. Each package section includes examples demonstrating how to build a workflow from scratch and execute it on Atlan.

Block until workflow completion

To block until the workflow has completed running:

Block until workflow has completed
...
WorkflowResponse response = workflow.run(client); // (1)
AtlanWorkflowPhase state = response.monitorStatus(log); // (2)
  1. Every package returns a Workflow object, from which you can run() the workflow. This call will return almost immediately with some metadata about the workflow run—it will not wait until the workflow has completed running. Because this operation will execute work in Atlan, you must provide it an AtlanClient through which to connect to the tenant.

  2. There is a monitorStatus() method on the response of a workflow run that you can use to wait until the workflow has completed. When this method finally returns, it will give the state of the workflow when it completed (for example, success or failure).

    The method comes in two variations:

    • one that takes an slf4j logger (in this example) and will log its status periodically
    • and another that takes no arguments and doesn't do any logging
Was this page helpful?