You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to store projects in a NoSQL database like dynamoDB, enriched with:
organisation data? maybe in a different table
geo-data. Geocode the main organisation.
In order not to timeout the lambda functions, we might need to use SQS to queue up all projects to be enriched (from the original xls data), process them with a lambda function, and store them enriched in our data storage.
The text was updated successfully, but these errors were encountered:
After playing around with various different ways of dealing with DynamoDB, dynamodb-wrapper seems the most fit to write a lot records without having to have massive write throughput: https://www.npmjs.com/package/dynamodb-wrapper
parse projects with related organisations. Store the main organisation at the same level as the project, and store the other organisations as a blob within that project (this is optional)
enrich each project with geodata -- trial dynamoDB streams with geotagging lambda
We need to store projects in a NoSQL database like dynamoDB, enriched with:
In order not to timeout the lambda functions, we might need to use SQS to queue up all projects to be enriched (from the original xls data), process them with a lambda function, and store them enriched in our data storage.
The text was updated successfully, but these errors were encountered: