data factory pipeline visual

arkiboys 9,641 Reputation points
2022-01-31T07:21:37.613+00:00

Hi,
If I do not have the azure account, is there a way to see the visuals of the pipeline if I only have received the .json file of it?
Thanks

Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
9,605 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. MartinJaffer-MSFT 26,031 Reputation points
    2022-01-31T17:54:04.257+00:00

    Hi @arkiboys . The visual is created by the authoring tool in the browser. As far as I am aware, there is not a Microsoft-supported offline version to make the visual.

    I specified Microsoft-supported because theoretically, you could make your own. All the information needed to structure the picture is in the JSON. Graphical assets (image for each activity type) are not part of the pipeline JSON. In each activity object, the dependsOn property gives the ancestor activities, and the name and type properties are self-descriptive. This allows the order and structure to be inferred. I'm tempted to say a non-interactive version would be 2 weeks work of Javascript.

    If you choose to try an Azure Guest account, be careful with the permissions / roles.

    0 comments No comments