Last active
December 16, 2019 21:45
-
-
Save naguibihab/448cdcd50434a06be9191ad4fe5b4e02 to your computer and use it in GitHub Desktop.
How to merge NoSQL & SQL using AWS Glue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// NoSQL | |
{ | |
tripId: abc, | |
timeFrom: 123123123, | |
timeTo: 123123123, | |
travelPath: [ | |
{ | |
lat: 123123123A | |
lng: 123123123B | |
}, | |
{ | |
lat: 123123123C, | |
lng: 123123123D | |
}, | |
{ | |
lat: 123123123E, | |
lng: 123123123F | |
} | |
] | |
} | |
// SQL | |
{ | |
tripId: abc, | |
driver: Mr X, | |
deliveringFrom: Tekehashi Store | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment