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 a proxy like nginx or envoy to communicate the cloud system with the exterior while load-balancing resources.
For the heavy task, we may want to use WebAssembly so we can use almost the same (native) code in the cloud nodes and in the user browser as well as achieving a better performance than using JS alone in the browser.
The problem with using WebAssembly only in the browser is the (efficient) communication between the browser and the cloud. We can address this problem by:
Use HTTP to communicate and use JSON as a way to communicate nodes. Easy to implement.
User GRPC and Protocol Buffers to communicate between nodes. To do that, we will need to use JS to retrieve the response from the webassembly execution and then send it over grpc.
Design and implement the communication schema between the private network (nodes in the cloud) and the rest of users (using their browsers)
The text was updated successfully, but these errors were encountered: