If you have 50K Runnables which take on up to 5 seconds each that is 250,000 seconds of work. If you want to run this every 30 * 60 seconds, you need to run this across a minimum of 139 threads. If you use 200 threads it could take 20 minutes to execute them all. You may need more threads if you want these tasks to complete in say 5 minutes.
A simple read or write shouldn't take 1-5 seconds. By one Socket operation do you mean a read or a write or do you mean open a socket, send some data and get a reply? The later can involve a lot of overhead.
While 50K is a lot, I would just have this many scheduled tasks, unless you need tasks to be run on the 30 minute interval as close as possible. If you have 50K independent tasks they will run approximately every 30 minutes but run at different times to each other. This is unavoidable to some degree as you don't have 50K cores, but how concerned are you about running them as close as possible?
Runnableinstances at the executor and let it work through them as fast as possible? What's the purpose of that initial delay? NB: For that many I/O bound(?) operations, you might be better off using an async execution scheme. – Waldheinz Sep 5 '11 at 14:27