Questions tagged [multi-instance-deployment]
22 questions
0
votes
0 answers
What process does the wait command use to determine which process is done?
I have a for loop in a shell script that runs like:
for ((i=1; i<=N; i++))
do
eval $cmd
wait
done
and my issue is that $cmd is in the form:
numactl --physcpu=0-0 --membind=0 [SCRIPT] &
numactl --physcpu=1-1 --membind=0 [SCRIPT] &
numactl…

manatee
- 15
- 4
0
votes
0 answers
Best way to store data that needs to be accessed from multiple instances
What is the way to cache the sort of data that needs to be accessed basically constantly from different instances with the least overhead.
I'm currently using Mongo but it's creating too much overhead being accessed by each player very often. The…

Daniel H.
- 1
- 2
0
votes
1 answer
Major upgrade on a multi-instance installer
I'm reluctant to ask this question at this time, as I repeat WiX - Doing a major upgrade on a multi instance install... Yet I hope my question will get answered :)
I have an installer with multiple instances:

towel
- 2,094
- 1
- 20
- 30
0
votes
2 answers
How to store temporary data in an Azure multi-instance (scale set) virtual machine?
We developed a server service that (in a few words) supports the communications between two devices. We want to make advantage of the scalability given by an Azure Scale Set (multi instance VM) but we are not sure how to share memory between each…

lcit
- 306
- 3
- 12
0
votes
1 answer
Store file in multi instance app
We are developing an web application using Spring framework. We would like to deploy it on multiple instances of Tomcat load balanced by Apache.
Our users will be uploading multiple documents(doc, xlx, images) on to our platform. These file will be…

Gaurav Agarwal
- 41
- 3
0
votes
2 answers
Correct approach for deploying a content management Web Application for different accounts on Azure platform
I develop a commercial Asp.Net MVC Web Application. The application is standard, runs on IIS Web Server and utilizes SQL Server database. Our business model is such that we deploy our application on-site in our customers’ Intranet or data center.…

yarg
- 679
- 6
- 11
0
votes
0 answers
ColdFusion multi instance installation
We have a single ColdFusion 10 Tomcat server on Apache with Multi-instance configuration. We have 4 instances. cfusion and cfusion2 are for visitors in a single cluster. The other two are Search instance and Scheduled Job instance. We have a couple…

OJ Johnson
- 1
- 2