-
Notifications
You must be signed in to change notification settings - Fork 2
Vertigo Architecture Summary
We have rolled our own highly available, inexpensive, low latency, scalable data store supported by the industries leading cloud solutions and programming languages. Our datastore operates with low impact on the environment only using the most performant programming languages and vendors dedicated to web sustainability.
tech stack: Git, Github, AWS, OpenSearch, ApiGateway, Lambda, Go
- Client sends JSON or Media file to the server.
- Server commits JSON or Media file to Github repository.
- [Optional] Server indexes file and/or extracted metadata inside AWS opensearch.
flowchart LR
subgraph Client;
json[JSON]
png[PNG]
end;
subgraph Server;
json-->lambda[Lambda]
png-->lambda[Lambda]
end;
subgraph Github;
lambda-->repository[Repository]
end;
subgraph AWS;
lambda-->opensearch[Open Search]
end;
- File Compliance/Validation
- Operation Authorization/Governance
- Audit Logging
- File Metadata Management
- Search Indexing
- Notifications
Devices can request the current version of files through a Github pages website.
flowchart LR
subgraph Client;
device[Device]
end;
subgraph Github;
device<-->pages[Pages Site]
end;
Devices can circumvent cache and/or request any version of a file inside Github repository.
flowchart LR
subgraph Client;
device
end;
subgraph Server;
device<-->lambda[Lambda]
end;
subgraph Github;
lambda<-->repository[Repository]
end;
Device queries open search directly and open search responds with results of search.
flowchart LR
subgraph Client;
device
end;
subgraph AWS;
device<-->opensearch[Open Search]
end;
Device queries open search indirectly through lambda.
flowchart LR
subgraph Client;
device
end;
subgraph Server;
device<-->lambda[Lambda]
end;
subgraph AWS;
lambda<-->opensearch[Open search]
end;
Subscribed devices are notified of actions carried out without polling.
flowchart LR
subgraph Client;
device
end;
subgraph Server;
lambda[Lambda]-->device
end;
Github repo can be easily connected with azure static web apps, cloudflare, aws s3, etc. and distributed closer to end users via CDNs.