eddyrick
Concurrency issues - distributed system
multiple services, using a message bus
Yeah the database server has abundance of resources it's not running out of resources but just locking records. One of the issues we've highlighted is that there are triggers on a few tables which upon occuring updates a customers account, along with manual updates and normal order completion route 😖
6 replies
Architecture help
ah sorry, I mean physical boundaries so in this example (which is the same for all 'applications' across our platform):
UI (Angular) sits on our Web server
API (.Net) lives on our API server
Server (.Net console as Windows Service) lives on one of our APP Servers
the common path would be:
UI > API via HTTP Get/Post
API > Windows Service via MessageBus
24 replies