Table of content



4.1 Analysis Result



The monolith has been split into 4 microservices. The global data schema consists of 33 relationships. Each of the 4 microservices owns its own local data schema. 22 of the 33 relationships could be kept within the microservice architecture. This is a percentage value of approximately 67. Both entities of these kept relationships can still be retrieved by a local transaction running in only one microservice. The complexity stays the same as it has been in the monolithic architecture. The local transactions still can profit from the ACID feature that most of the standard relational databases support. 33 percent of the relationships have been destroyed by the data schema split. For those broken relationships, there have to be introduced distributed transactions that span over more than one microservice. Please take a look into the subchapters 3.x.x of this cookbook. For each of the 26 entities, there can be found a description how to create a global transaction that span over more than microservice.

Microservice architecture for schema

Microservices

3.1 CountryService3.2 DiscountCampaignService3.3 ProductService3.4 ShopLicenseService


00000000000000000000000000CountryCountryService
00000000000000000000000000CustomerGroupCountryService
01000010000000000000000000CustomerGroupMemberCountryService
00000010000000000000000000CustomerOrderCountryService
00000010000000000000000000DeliveryCountryService
00000010000000000001000000DiscountCampaignCustomerCountryService
10000000000000000000000000ShopCustomerCountryService
00000000000000000000000000ShopEmployeeCountryService
10000000000000000000000000WarehouseCountryService
00000001100000000000000000WarehouseResponsibilityCountryService
00001000000010000000000000CustomerDeliveryProductService
00000000000000000000000000DistributorProductService
00010000000001000000000000OrderItemProductService
10000000000000100010000000ProductProductService
00000000000000000000000000ProductCategoryProductService
00000000100101000000000000ProductDeliveryProductService
10000000000001000000000000ProductPriceProductService
00000000100001000000000000PurchaseRuleProductService
10000000000000000000000000SalesTaxProductService
00000000000000000000000100DiscountCampaignDiscountCampaignService
01000000000000000001000000DiscountCampaignCustomerGroupDiscountCampaignService
00000000000001000001000000DiscountCampaignProductDiscountCampaignService
00000000000000100001000000DiscountCampaignProductCategoryDiscountCampaignService
00000000000000000000000000DiscountTypeDiscountCampaignService
00000000000000000000000000ShopLicenseShopLicenseService
00000000000000000000000010ShopOwnerShopLicenseService


References

NoProperty NameEntityReferences EntityMicroservices
1CustomerGroupMember . CustomerGroupCustomerGroupMemberCustomerGroupCountryService
2CustomerGroupMember . ShopCustomerCustomerGroupMemberShopCustomerCountryService
3CustomerOrder . ShopCustomerCustomerOrderShopCustomerCountryService
4Delivery . ShopCustomerDeliveryShopCustomerCountryService
5DiscountCampaignCustomer . ShopCustomerDiscountCampaignCustomerShopCustomerCountryService
6DiscountCampaignCustomer . DiscountCampaign DiscountCampaignCustomer DiscountCampaign CountryService DiscountCampaignService
7ShopCustomer . CountryShopCustomerCountryCountryService
8Warehouse . CountryWarehouseCountryCountryService
9WarehouseResponsibility . ShopEmployeeWarehouseResponsibilityShopEmployeeCountryService
10WarehouseResponsibility . WarehouseWarehouseResponsibilityWarehouseCountryService
11CustomerDelivery . Delivery CustomerDelivery Delivery ProductService CountryService
12CustomerDelivery . OrderItemCustomerDeliveryOrderItemProductService
13OrderItem . CustomerOrder OrderItem CustomerOrder ProductService CountryService
14OrderItem . ProductOrderItemProductProductService
15Product . CountryOfOrigin Product Country ProductService CountryService
16Product . ProductCategoryProductProductCategoryProductService
17Product . SalesTaxProductSalesTaxProductService
18ProductDelivery . Warehouse ProductDelivery Warehouse ProductService CountryService
19ProductDelivery . DistributorProductDeliveryDistributorProductService
20ProductDelivery . ProductProductDeliveryProductProductService
21ProductPrice . Country ProductPrice Country ProductService CountryService
22ProductPrice . ProductProductPriceProductProductService
23PurchaseRule . Warehouse PurchaseRule Warehouse ProductService CountryService
24PurchaseRule . ProductPurchaseRuleProductProductService
25SalesTax . Country SalesTax Country ProductService CountryService
26DiscountCampaign . DiscountTypeDiscountCampaignDiscountTypeDiscountCampaignService
27DiscountCampaignCustomerGroup . CustomerGroup DiscountCampaignCustomerGroup CustomerGroup DiscountCampaignService CountryService
28DiscountCampaignCustomerGroup . DiscountCampaignDiscountCampaignCustomerGroupDiscountCampaignDiscountCampaignService
29DiscountCampaignProduct . Product DiscountCampaignProduct Product DiscountCampaignService ProductService
30DiscountCampaignProduct . DiscountCampaignDiscountCampaignProductDiscountCampaignDiscountCampaignService
31DiscountCampaignProductCategory . ProductCategory DiscountCampaignProductCategory ProductCategory DiscountCampaignService ProductService
32DiscountCampaignProductCategory . DiscountCampaignDiscountCampaignProductCategoryDiscountCampaignDiscountCampaignService
33ShopOwner . ShopLicenseShopOwnerShopLicenseShopLicenseService


Table of content