cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

How can a Join snap ever work in an ultra pipeline without using pipeExec?

eguo
Former Employee

In SL documenation about the Join snap, it has

Support and limitations: Ultra pipelines: May work in Ultra Pipelines.

Tried in vain to create an ultra pipeline contains a Join snap that works functionally. Hope someone can provide an example.

Here are what have been tried:

  1. used left outer join. It doesnโ€™t produce any output.
    2b98bc08584ab6dd698a879df27334bd8e92d35e.png
    childJoin_2017_05_17.slp (5.9 KB)

  2. used merge. It failed with error

Document created by โ€˜Merge[07773f4c-3a75-46f5-a46c-65d205aa6cc0 โ€“ b6c35bc0-b3df-4cb7-b086-35007573a112]โ€™ does not contain lineage information and cannot be used as output from an Ultra pipeline
Resolution
Use a Join snap to merge static documents into an Ultra input document or request that the snap be made Ultra-compatible
50cf0cb374955a22a378d9e2f906a58945b1816c.png
childMerge_2017_05_17.slp (5.7 KB)

Understand the we could move the Join inside a pipeExe, but thatโ€™s not what I wanted in this case.

3 REPLIES 3

dmiller
Admin Admin
Admin

โ€œMay workโ€ is used in the documentation for Snaps that were not explicitly given support/not given support in the code, but which QA have not officially verified as working or not.


Diane Miller
Community Manager

tstack
Former Employee

What was the join condition?

The use of the Join snap in an ultra was to add in some static data to the incoming document that would be used later. That use case is pretty much obsoleted by the expression-library feature, so we should probably change the bad advice given in the error.

eguo
Former Employee

In the case 1, condition is $left.country == $right and it is the left outer join.