0

Our task is to create multi-instance simulator for sending changing data structure. Simulator should have up to 25.000 isolated instances, so all languages that require additional memory and space for enviroment (like Java) are not considered. Could we do this in different way than with Docker and C/C++?

Stefan Zobel
  • 3,182
  • 7
  • 28
  • 38
  • 2
    Way too broad. It's unclear what an instance is. It could be a function, an object/class or some process (and much more). Also: i don't see any use-case for docker here (and it basically conflicts with your additional space requirement). – sascha Jul 24 '17 at 12:45
  • Instance represents one network device. Each device in real life is separated from each other by a few miles. – El Pavlucco Jul 24 '17 at 13:36
  • https://stackoverflow.com/questions/21799382/is-there-a-maximum-number-of-containers-running-on-a-docker-host is relevant here even though some of this might be slightly out of date. – Grimmy Jul 24 '17 at 20:08

1 Answers1

-1

You could use a scripting language like Python or Node.js for this purpose, you wouldn't need to install much on your base Docker Image for either.

Terry Lennox
  • 29,471
  • 5
  • 28
  • 40