github.com/pachyderm/pachyderm@v1.13.4/examples/joins/outer_join.json (about) 1 { 2 "pipeline": { 3 "name": "outer_join" 4 }, 5 "description": "A pipeline that lists all returns by zipcode joining stores and returns information.", 6 "input": { 7 "join": [ 8 { 9 "pfs": { 10 "repo": "stores", 11 "branch": "master", 12 "glob": "/STOREID(*).txt", 13 "join_on": "$1", 14 "outer_join": true 15 } 16 }, 17 { 18 "pfs": { 19 "repo": "returns", 20 "branch": "master", 21 "glob": "/*_STOREID(*).txt", 22 "join_on": "$1", 23 "outer_join": true 24 } 25 } 26 ] 27 }, 28 "transform": { 29 "cmd": [ "python", "outer/main.py" ], 30 "image": "pachyderm/example-joins-inner-outer:1.12.2" 31 } 32 }