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