When splitting 1 service into multiple services, do the configurations for the service need split and each part stored in the services?Why do we need RESTful Web Services?Database driven service configurations - Design or over-DesignMicroservices: Centralized Authorization vs Authorization in each serviceMicroservice granularity: Per domain model or not?Microservice architecture - carry message through services when order doesn't matterspring-data-rest and micro-services: Entity with @OneToOne relationship with Entity in another spring-data-rest serviceWhat design pattern should be used for a workflow like this?Deciding how to partition the system into microservicesDoes microservice data “ownership” mean data “understanding”?How to reconcile microservice “share nothing” principle with “independence”
Why when I add jam to my tea it stops producing thin "membrane" on top?
How to not get blinded by an attack at dawn
Does the wearer know what items are in which patch in the Robe of Useful items?
Was the dragon prowess intentionally downplayed in S08E04?
Using chord iii in a chord progression (major key)
Why commonly or frequently used fonts sizes are even numbers like 10px, 12px, 16px, 24px, or 32px?
To whom did Varys write those letters in Game of Thrones S8E5?
Assembly writer vs compiler
What is this weird d12 for?
Why do galaxies collide
Do crew rest seats count towards the maximum allowed number of seats per flight attendant?
Network latencies between opposite ends of the Earth
Why doesn't Iron Man's action affect this person in Endgame?
How do I know which cipher suites can be disabled?
c++ conditional uni-directional iterator
Can a tourist shoot a gun in the USA?
Were any toxic metals used in the International Space Station?
The difference between きわめて and いたって
Cuban Primes
Why did the metro bus stop at each railway crossing, despite no warning indicating a train was coming?
Will consteval functions allow template parameters dependent on function arguments?
What is the status of the Lannisters after Season 8 Episode 5, "The Bells"?
What information exactly does an instruction cache store?
How to make a not so good looking person more appealing?
When splitting 1 service into multiple services, do the configurations for the service need split and each part stored in the services?
Why do we need RESTful Web Services?Database driven service configurations - Design or over-DesignMicroservices: Centralized Authorization vs Authorization in each serviceMicroservice granularity: Per domain model or not?Microservice architecture - carry message through services when order doesn't matterspring-data-rest and micro-services: Entity with @OneToOne relationship with Entity in another spring-data-rest serviceWhat design pattern should be used for a workflow like this?Deciding how to partition the system into microservicesDoes microservice data “ownership” mean data “understanding”?How to reconcile microservice “share nothing” principle with “independence”
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
Let's say you have a "monolith" with a set of configurations
id: 1273,
fooConfig: .. ,
barConfig: .. ,
bazConfig: ...
and you want to split it into Foo
, Bar
and Baz
services which run jobs when asked to by a central workflow engine.
Do you need to store each of the configurations in the services, like
// Foo service config (stored in Foo service)
id: 1273,
.
. // fooConfig stuff
.
// Bar service config (stored in Bar service)
id: 1273,
.
. // barConfig stuff
.
// Baz service config (stored in Baz service)
id: 1273,
.
. // bazConfig stuff
.
or can you store the configuration in some other service (say Configuration Manager
service) and input the respective parts of it into the 3 job services when they are invoked?
web-services design-patterns service architecture microservices
add a comment |
Let's say you have a "monolith" with a set of configurations
id: 1273,
fooConfig: .. ,
barConfig: .. ,
bazConfig: ...
and you want to split it into Foo
, Bar
and Baz
services which run jobs when asked to by a central workflow engine.
Do you need to store each of the configurations in the services, like
// Foo service config (stored in Foo service)
id: 1273,
.
. // fooConfig stuff
.
// Bar service config (stored in Bar service)
id: 1273,
.
. // barConfig stuff
.
// Baz service config (stored in Baz service)
id: 1273,
.
. // bazConfig stuff
.
or can you store the configuration in some other service (say Configuration Manager
service) and input the respective parts of it into the 3 job services when they are invoked?
web-services design-patterns service architecture microservices
can you give an example of white kind of configuration fields you are referring to?
– NiRR
Mar 24 at 18:30
add a comment |
Let's say you have a "monolith" with a set of configurations
id: 1273,
fooConfig: .. ,
barConfig: .. ,
bazConfig: ...
and you want to split it into Foo
, Bar
and Baz
services which run jobs when asked to by a central workflow engine.
Do you need to store each of the configurations in the services, like
// Foo service config (stored in Foo service)
id: 1273,
.
. // fooConfig stuff
.
// Bar service config (stored in Bar service)
id: 1273,
.
. // barConfig stuff
.
// Baz service config (stored in Baz service)
id: 1273,
.
. // bazConfig stuff
.
or can you store the configuration in some other service (say Configuration Manager
service) and input the respective parts of it into the 3 job services when they are invoked?
web-services design-patterns service architecture microservices
Let's say you have a "monolith" with a set of configurations
id: 1273,
fooConfig: .. ,
barConfig: .. ,
bazConfig: ...
and you want to split it into Foo
, Bar
and Baz
services which run jobs when asked to by a central workflow engine.
Do you need to store each of the configurations in the services, like
// Foo service config (stored in Foo service)
id: 1273,
.
. // fooConfig stuff
.
// Bar service config (stored in Bar service)
id: 1273,
.
. // barConfig stuff
.
// Baz service config (stored in Baz service)
id: 1273,
.
. // bazConfig stuff
.
or can you store the configuration in some other service (say Configuration Manager
service) and input the respective parts of it into the 3 job services when they are invoked?
web-services design-patterns service architecture microservices
web-services design-patterns service architecture microservices
asked Mar 23 at 15:17
Mike Rowe ServisMike Rowe Servis
111
111
can you give an example of white kind of configuration fields you are referring to?
– NiRR
Mar 24 at 18:30
add a comment |
can you give an example of white kind of configuration fields you are referring to?
– NiRR
Mar 24 at 18:30
can you give an example of white kind of configuration fields you are referring to?
– NiRR
Mar 24 at 18:30
can you give an example of white kind of configuration fields you are referring to?
– NiRR
Mar 24 at 18:30
add a comment |
1 Answer
1
active
oldest
votes
You can save at common place. There is actually pattern called External Configuration Store. . The idea is to save configuration at central location and access as needed. It's easy and if tomorrow you add more services you can imagine the benefits . You can find more about here External Configuration Pattern
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55315214%2fwhen-splitting-1-service-into-multiple-services-do-the-configurations-for-the-s%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can save at common place. There is actually pattern called External Configuration Store. . The idea is to save configuration at central location and access as needed. It's easy and if tomorrow you add more services you can imagine the benefits . You can find more about here External Configuration Pattern
add a comment |
You can save at common place. There is actually pattern called External Configuration Store. . The idea is to save configuration at central location and access as needed. It's easy and if tomorrow you add more services you can imagine the benefits . You can find more about here External Configuration Pattern
add a comment |
You can save at common place. There is actually pattern called External Configuration Store. . The idea is to save configuration at central location and access as needed. It's easy and if tomorrow you add more services you can imagine the benefits . You can find more about here External Configuration Pattern
You can save at common place. There is actually pattern called External Configuration Store. . The idea is to save configuration at central location and access as needed. It's easy and if tomorrow you add more services you can imagine the benefits . You can find more about here External Configuration Pattern
edited Mar 24 at 9:20
answered Mar 24 at 8:56
Imran ArshadImran Arshad
1,3091915
1,3091915
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55315214%2fwhen-splitting-1-service-into-multiple-services-do-the-configurations-for-the-s%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
can you give an example of white kind of configuration fields you are referring to?
– NiRR
Mar 24 at 18:30