Python Forum
How to support multiple users with heavy data processing
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to support multiple users with heavy data processing
#2
When your processing takes 15 minutes, the user have to wait 15 minutes.
The program structure can be following:
  • Manager process, which receives the tasks and sending them to a free worker process
  • Worker processes which are started by Manager
  • Asynchronous WebInterface which is doing the communication between Manager <> Client.
  • E-Mail Client which sends finished work to the user, which can be accessed for a duration on the WebServer.

This are my thoughts. Maybe you can make it simpler, but I guess you'll end in a big message queue forward and backward.
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply


Messages In This Thread
RE: How to support multiple users with heavy data processing - by DeaD_EyE - Jun-19-2018, 03:20 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  how to split socket data onto multiple clients for separate processing ConcealedFox70 0 1,988 Jan-11-2022, 08:26 PM
Last Post: ConcealedFox70
  Socket won't receive data suddenly with multiple clients SquareRoot 0 2,829 Sep-06-2017, 09:09 PM
Last Post: SquareRoot

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020