how can i implement distributed computing in a website of departmental store? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

how can i implement distributed computing in a website of departmental store?

I am building a website for a online departmental store and I want to implement distributed computing in my website please give me suggestions on how I can do this. any good advice will be entertained

20th Jun 2023, 4:01 PM
Khalil ur Rehman
Khalil ur Rehman - avatar
1 Answer
+ 2
My first question is WHY? Distributed computing can be very complex, and generally it makes sense in a situation when there is a scalability problem that a single machine is not sufficient to satisfy the traffic. Distributed operating systems such as Kubernetes can take years to master. Then the hardware itself can be very expensive to rent in a cloud environment, and using it also has a steep learning curve and usually specific to the cloud provider. https://www.ridge.co/blog/what-is-distributed-computing/ https://blog.devgenius.io/kubernetes-a-framework-to-run-distributed-systems-resiliently-5f9d77442709 Then the next question is which part of the website you want to "distribute"... How can you split the functionality? What is going to be your network architecture? How are you going to coordinate it?
22nd Jun 2023, 5:06 AM
Tibor Santa
Tibor Santa - avatar