Questions tagged [multi-instance-deployment]

22 questions
6
votes
3 answers

How to do file versioning with CDN and a loadbalancer?

So I'm using a very simple CDN service. You point to your website and if you call it through their HostName they'll cache it for you after the first call. I use this for all my static content, like JavaScript files and images. This all works perfect…
5
votes
1 answer

Error when binding two instances Janusgraph on same graph

So I'm trying to deploy 2 instances of Janusgraph (v 0.3.1) to insert data in the same keyspace of ScyllaDb backend. To do that i deploy 2 janusgraph containers with docker. The first one is starting without errors and creates the keyspace in my…
Amojow
  • 141
  • 9
5
votes
3 answers

Pattern to avoid message counter in a singleton on multi instances applications

I would like to know which pattern is recommended to work with counter representing the number of message processed, with an application that should be stateless. For example, in an architecture where an application is deployed on several servers,…
4
votes
1 answer

Saas: Single-instance vs Multi-instance vs Single-tenant vs Multi-tenant?

I've been reading about instances and tenants and in the Saas architecture. My questions are as follows (please correct anything that you notice I've gotten wrong with any of the following terms): 1) Instance: Is an instance of a piece of software…
3
votes
0 answers

Service Fabric application Multi-Instance randomly return 503 error

We have a service fabric application which comprises of a single service. This service exposes HTTP endpoints via Web Api on port 8910 we deploy this application to different instances and use the following code to prevent port clashes between our…
2
votes
1 answer

How to call @Scheduled method in only one instance using @PostConstruct

There is job that needs to be done on cron schedule The same logic as in the job must be performed at the start of the spring boot application, therefore @PostConstruct method is used Shedlock is used, since it is planned to run the application in…
2
votes
1 answer

When to separate systems into multiple Dynamics CRM instances

My organization is just starting to dive into Dynamics CRM and one of the questions that has come up is when should we combine various applications into one instance and when should they be separated into multiple instances? I know the answer to…
1
vote
1 answer

IBM BPM 8.5 Multi-instance sequence flow by custom order

Have loan task (see example below) which is separating by multi-instance loop: loans[ [loanNo:1, dueDate: 2020-10-10], [loanNo:2, dueDate: 2020-05-05], [loanNo:3, dueDate: 2020-07-07] ] How to make sequence loop to loop by custom order,…
Arturas
  • 161
  • 9
1
vote
0 answers

cannot create JDBC datasource named transactional_DS while implementing Multi-instance in moqui using docker

As Multi-Tenant Functionality for Moqui Framework 2.0.0 has been removed, I am trying to implement same with Docker. I just created image using- $ ./docker-build.sh Modified- moqui-ng-my-compose.yml ./compose-run.sh…
1
vote
1 answer

changing the destination directory in multi-instance installation using InstanceId

how to change the destination directory of a component using the InstanceId in multi instance installation in Basic MSI project.
TrustyCoder
  • 4,749
  • 10
  • 66
  • 119
1
vote
1 answer

Azure- static repository needs reloading

I have a static repository with stores a large XML file structure in memory and is loaded only once in the MVC application. The application is hosted on Azure (Paas) with 2 instances. We have a design tool which is used to add more stuff or remove…
chugh97
  • 9,602
  • 25
  • 89
  • 136
0
votes
1 answer

Shared memory or reference to memory objects for UWP multi instance app?

Is there any way to create shared memory between multiple instance of an UWP app? For example, I need to load hundreds of images (as Bitmap) in one instance of UWP app. Loading same images in the other instance can take double memory. Is there any…
0
votes
1 answer

How to communicate with two instance of UWP App

I have an uwp app, which can have multiple instances Now if I change something on one instance, other instance need to get the update right away. We have tried to use Out-Proc AppSerivce but its doesn't seems persistent (AppService connection is…
deba
  • 87
  • 5
0
votes
1 answer

Multiple Instances in React native functional components?

I am using the code of my file const first = () =>{ return( ) } I want to create multiple instances of the the first component so that i can use it as tabs, and i want to save instance of the component.i want that i can create new…
0
votes
1 answer

Building Multi-instance (dedicated environment) and Multi-Tenant Applications on Azure

I have to implement a hybrid model of application on Azure, where a few (20%) of the clients will have dedicated instances others (80%) will be based on Multi-tenant (shared) model. What approach should I take in terms of Azure AD (Different AAD…
1
2