Requirements:
Simple Example: A client makes a request and sends a list of integers (e.g. 2,1,4,8,9,7,5,2,3,4,1,2). The service should return the sum of the squares of its' input numbers (2^2 + 1^2 + ...). The distributed system should split the process to different servers (part of the distributed system).
Questions:
I have no code examples so far, I am interested in suggestions for the architecture and good practices.