Forum Discussion
Designer has a compare pipeline function that will show you the differences between two pipes.
If you expand the toolbar, there is an icon
if you are on the tab for one of the pipes you want to compare and click the compare icon, you will see a dialog that allows you to choose the target project and pipe.
it will open a new tab with a small context menu under the tab. You can display the source and target pipes, and show the snaps that are the identical, similar and different between the two pipes.
If you are viewing similar snaps and open an infobox, you will see a two column display and the changed attributes are highlighted
Thanks! As far as automating moving pipelines across environments, is the only thing we can do is using the Management API?
@mtran21 If you are moving one folder to another in same server can use File Operation snap. Else you can create 2 pipeline (recommending to track the processed file name and parallel processing ) -
- Directory Browser to poll list of File available, then pass file path details to child pipeline. Use file name in pipeline execution level, so you can track the processed filename from dash board and make no of execution count at least 10.
- In child pipeline, read the file (file url should comes from parent) then Write to your target folder. You should pass target folder location and filename from parent pipeline.
- If you want to delete from source , then use delete snap.
If you need to listen the source file path in particular frequency, then use file poll snap and make time out as -1, instead of Directory Browser. Rest should remain same.