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;








0















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?










share|improve this question






















  • can you give an example of white kind of configuration fields you are referring to?

    – NiRR
    Mar 24 at 18:30

















0















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?










share|improve this question






















  • can you give an example of white kind of configuration fields you are referring to?

    – NiRR
    Mar 24 at 18:30













0












0








0








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?










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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

















  • 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












1 Answer
1






active

oldest

votes


















0














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






share|improve this answer

























    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
    );



    );













    draft saved

    draft discarded


















    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









    0














    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






    share|improve this answer





























      0














      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






      share|improve this answer



























        0












        0








        0







        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






        share|improve this answer















        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







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 24 at 9:20

























        answered Mar 24 at 8:56









        Imran ArshadImran Arshad

        1,3091915




        1,3091915





























            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript