US11995438B2 - System and method for software architecture redesign - Google Patents
System and method for software architecture redesign Download PDFInfo
- Publication number
- US11995438B2 US11995438B2 US17/764,152 US202017764152A US11995438B2 US 11995438 B2 US11995438 B2 US 11995438B2 US 202017764152 A US202017764152 A US 202017764152A US 11995438 B2 US11995438 B2 US 11995438B2
- Authority
- US
- United States
- Prior art keywords
- analysis
- code
- microservices
- software
- monolithic
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Active, expires
Links
- 238000000034 method Methods 0.000 title claims abstract description 59
- 238000004458 analytical method Methods 0.000 claims abstract description 131
- 230000003068 static effect Effects 0.000 claims abstract description 22
- 238000000605 extraction Methods 0.000 claims abstract description 13
- 108091029480 NONCODE Proteins 0.000 claims abstract description 8
- 230000006870 function Effects 0.000 claims description 51
- 238000012360 testing method Methods 0.000 claims description 29
- 238000004891 communication Methods 0.000 claims description 21
- 230000003993 interaction Effects 0.000 claims description 10
- 230000006399 behavior Effects 0.000 claims description 8
- 230000009466 transformation Effects 0.000 claims description 7
- 238000013480 data collection Methods 0.000 claims description 6
- 239000000284 extract Substances 0.000 claims description 6
- 238000010801 machine learning Methods 0.000 claims description 6
- 238000004590 computer program Methods 0.000 claims description 4
- 238000005516 engineering process Methods 0.000 claims description 4
- 230000007246 mechanism Effects 0.000 claims description 4
- 238000002360 preparation method Methods 0.000 claims description 4
- 238000012545 processing Methods 0.000 claims description 4
- 238000010200 validation analysis Methods 0.000 claims description 4
- 238000012795 verification Methods 0.000 claims description 4
- 230000010354 integration Effects 0.000 claims description 3
- 238000013473 artificial intelligence Methods 0.000 claims 5
- 230000008859 change Effects 0.000 description 9
- 238000007621 cluster analysis Methods 0.000 description 4
- 230000008878 coupling Effects 0.000 description 4
- 238000010168 coupling process Methods 0.000 description 4
- 238000005859 coupling reaction Methods 0.000 description 4
- 238000001914 filtration Methods 0.000 description 3
- 238000013528 artificial neural network Methods 0.000 description 2
- 230000008901 benefit Effects 0.000 description 2
- 230000003287 optical effect Effects 0.000 description 2
- 230000008569 process Effects 0.000 description 2
- 238000013138 pruning Methods 0.000 description 2
- 230000003595 spectral effect Effects 0.000 description 2
- 238000012706 support-vector machine Methods 0.000 description 2
- 230000002123 temporal effect Effects 0.000 description 2
- BUGBHKTXTAQXES-UHFFFAOYSA-N Selenium Chemical compound [Se] BUGBHKTXTAQXES-UHFFFAOYSA-N 0.000 description 1
- 206010070834 Sensitisation Diseases 0.000 description 1
- 238000010276 construction Methods 0.000 description 1
- 238000007405 data analysis Methods 0.000 description 1
- 238000000354 decomposition reaction Methods 0.000 description 1
- 238000011161 development Methods 0.000 description 1
- 238000010586 diagram Methods 0.000 description 1
- 239000000203 mixture Substances 0.000 description 1
- 230000009467 reduction Effects 0.000 description 1
- 229910052711 selenium Inorganic materials 0.000 description 1
- 239000011669 selenium Substances 0.000 description 1
- 230000008313 sensitization Effects 0.000 description 1
- 230000001235 sensitizing effect Effects 0.000 description 1
- 230000001131 transforming effect Effects 0.000 description 1
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/70—Software maintenance or management
- G06F8/72—Code refactoring
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/20—Software design
- G06F8/24—Object-oriented
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/70—Software maintenance or management
- G06F8/71—Version control; Configuration management
Definitions
- the present disclosure relates to a system and method for software architecture redesign.
- the disclosure relates to a system for software architecture redesign which replaces monolithic systems with microservices (and higher-level granularity services, e.g. individual functions in a Function as a Service environment).
- FIG. 1 is a schematic representation of a monolithic architecture 1 which comprises an application user interface (UI) 3 , tightly bound business logic 5 and a database 7 .
- the monolithic architecture 1 has all of the programmatic business logic 5 associated with a software system housed within a single large monolithic architecture.
- One disadvantage of this monolithic architecture is that it is unsuited to rapid feature delivery of services. Therefore, the current wave of technological advancement involves moving from monolithic software structures to cloud-based microservices.
- Microservices are a software development technique (a variant of the service-oriented architecture (SOA)) that structures an application as a collection of loosely coupled services.
- SOA service-oriented architecture
- services are fine-grained.
- the benefit of decomposing an application into different smaller services is that it improves modularity.
- microservices function as service-based systems and require an entire architectural redesign. Redesign requires an elicitation of all of the intricate accumulated dependencies within the monolithic architecture, a decomposition of the core functionality into microservices and the implementation of an entirely new event-driven communications mechanism. Therefore, redesign is expensive and time consuming.
- Microservices architectures are considered to be superior because they allow for many independent pieces of business logic to be completely decoupled, meaning that new business logic/features can be added to an existing system without the need to replace other already-operational business logic.
- microservices introduces several challenges, for example, the complexity that was once bundled tightly into the monolith is now essentially distributed across various services with intricate inter-service messaging demands.
- a further challenge is that, whereas in the monolith all of the data is typically stored in one large database, with microservices, only one service should manage any single item of data, yet clearly where complex business functions are implemented it might be necessary to engage multiple microservices in combination to deliver some higher order business feature.
- US Patent publication number US2019/0108067 assigned to IBM, discloses a method for transforming a monolithic application into microservices.
- the IBM method involves significant end-user interaction via a console to inform decisions, and completely overlooks runtime/dynamic data collection and analysis.
- reducing noise in the data is a large problem, especially where there are large volumes of code (either executing or static), which the IBM publication does not address.
- a system for creating a software application which operates to perform a function comprising:
- the invention provides an assembly module for forming the extracted discrete functional element into a microservice wherein the software function is recreated from one or more of said microservices.
- Dynamic analysis involves attaching to programs as they execute and analysing the various interactions between program components, including analysis of data layer concerns which can includes database call.
- Static analysis involves analysing source code when a program is not running and can be used to establish theoretical relationships and constrains that exist in the code, such as may not be readily identified through dynamic analysis alone.
- Non-code-related artefacts includes data from supporting systems and sources, including source code repository analysis which can provide various temporal and meta information such as rate of change in artefacts and change origin(s)/originator(s) as well a change size.
- the extraction module comprises a parallelized AI module for service identification configured with at least one unsupervised machine learning technique for extracting service candidates from extracted discrete functional elements wherein candidate microservices are recreated from one or more of said service candidates.
- the analysis module determines which data components of the monolithic software system are suitable for extraction.
- the analysis module analyses business logic of the monolithic software system.
- the analysis module uses static code analysis focused on architectural representation.
- the static code analysis comprises automated examination of efferent and/or afferent coupling metrics.
- the static code analysis comprises instability index determination.
- the analysis module uses dynamic code analysis under typical payloads to understand where code is more frequently executed.
- the analysis module uses dynamic code analysis to inform resources quotas in the microservices implementation.
- the analysis module uses testing asset leverage.
- testing asset leverage comprises pre-existing test assets targeted for transformation
- the analysis module uses code volatility analysis.
- the analysis module uses AI techniques to discover which mechanisms are the best candidates for extraction to form microservices (or individual functions, which can be considered to be very small microservices as utilised in Function as a Service environments).
- the AI technique is Support Vector Machines.
- the AI technique uses neural networks.
- the AI technique is statistical cluster analysis (including dimensionality reduction techniques).
- the analysis module uses code analysis to determine information exchange within the monolith.
- the code analysis forms a footprint for event/messaging.
- code analysis examines parameter lists for methods and functions, and/or control flow and/or interaction between methods
- the analysis module uses interface communications analysis to determine what traffic arises in interfaces within the monolith
- the analysis module uses interface communications analysis to determine what traffic arises between the monolith and the database.
- the analysis module uses interface communications analysis to determine what traffic arises between the monolith and the UI.
- the analysis module uses automated monolith unit test case discovery in order to isolate units of interest that can be considered candidates for microservice transformation
- the automated monolith UI test case discovery is a means to form test data for verification of the auto-generated microservices infrastructure (this includes Function as a Service).
- the analysis module examines object oriented (OO) structures of monolithic architectures.
- the analysis module examines continuous integration monolith based technology to auto-generate robust validation routines for the destination microservices based infrastructure.
- the analysis module uses automated analysis of source code commit logs to determine the level of volatility in each area of the code base as a means to identifying prime candidates for full microservice (or Function as a Service) implementation.
- the features are such instances in a form of microservice.
- the step of analyzing the monolithic software system comprises determining which data components of the monolithic software system are suitable for extraction.
- the step of analyzing the monolithic software system comprises analyzing business logic of the monolithic software system.
- the step of analyzing the monolithic software system comprises, static code analysis focused on architectural representation.
- the static code analysis comprises automated examination of efferent and/or afferent coupling metrics.
- the static code analysis comprises instability index determination.
- the step of analyzing the monolithic software system comprises dynamic code analysis under typical payloads (or system testing payloads) to understand execution paths and dependencies, and where code is more frequently executed.
- the step of analyzing the monolithic software system comprises dynamic code analysis to inform resources quotas in the microservices implementation.
- the step of analyzing the monolithic software system comprises, testing asset leverage.
- testing asset leverage comprises a pre-existing test assets targeted for transformation.
- the step of analyzing the monolithic software system comprises code volatility analysis.
- the step of analyzing the monolithic software system comprises using AI techniques to discover which mechanisms are the best candidates for extraction to form microservices.
- the AI technique is Support Vector Machines.
- the AI technique uses neural networks.
- the AI technique is statistical cluster analysis.
- the step of analyzing the monolithic software system comprises code analysis to determine information exchange within the monolith.
- the code analysis forms a footprint for event/messaging.
- code analysis examines parameter lists for methods and functions, and/or control flow and/or interaction between methods
- the step of analyzing the monolithic software system comprises interface communications analysis determine what traffic arises in interfaces within the monolith
- the step of analyzing the monolithic software system comprises interface communications analysis determine what traffic arises between the monolith and the database.
- the step of analyzing the monolithic software system comprises interface communications analysis determine what traffic arises between the monolith and the UI.
- the step of analyzing the monolithic software system comprises automated monolith unit test case discovery in order to isolate units of interest that can be considered candidates for microservice transformation
- the automated monolith UI test case discovery is a means to form test data for verification of the auto-generated microservices infrastructure.
- the step of analyzing the monolithic software system comprises examining object oriented (OO) structures of monolithic architectures.
- the step of analyzing the monolithic software system comprises examining continuous integration monolith based technology to auto-generate robust validation routines for the destination microservices based infrastructure.
- the step of analyzing the monolithic software system comprises automated analysis of source code commit logs to determine the level of volatility in each area of the code base as a means to identifying prime candidates for full microservice implementation.
- the features are such instances in a form of microservice.
- FIG. 1 is a schematic representation of a monolithic architecture
- FIG. 2 is a flow diagram which illustrates an example of the method of the present invention
- FIG. 3 is a schematic representation of an example of a system in accordance with the present invention.
- FIG. 4 illustrates a detailed architecture of a fully automated system for creating a software application which operates to perform a software function.
- the present invention provides a system and method for automation of the creation of a software application as a combination of microservices by extraction of discrete elements of software functionality from a monolithic architecture, forming them into microservices such that the software application is recreated as serverless hardware infrastructure while also validating the transformed code.
- serverless microservices will significantly reduce the hardware requirement for software systems.
- FIG. 2 shows an example of a method 11 for creating a software application which operates to perform a software function.
- the method analyses 13 a tightly bound monolithic software system in which the software function is operational. Examples of the means of analysis are provided below.
- the functional elements are extracted 15 from the monolithic software system and then formed 17 into a microservice. In this example, a number of microservices are created and used to recreate 19 the software function.
- FIG. 3 is a schematic representation 21 which shows a known monolithic architecture for a software application 23 , a software application created using microservices 25 and a microservice engine 49 in accordance with the present invention.
- the monolithic architecture 23 comprises an application user interface (UI) 27 , tightly bound business logic module 29 with business logic elements 31 and a database 33 .
- I/O communication 35 between the application UI 27 and the business logic module 29 and I/O communication 37 between the database 33 and the business logic module 29 are shown.
- the microservice engine comprises a bundle of software analysis tools described in more detail below which analyse the tightly bound monolithic software system 23 . It also extracts elements from the monolithic software system and then forms them into one or more microservice to recreate the software function as a loosely bound set of microservices.
- Analysis of the monolithic architecture includes analysis of:
- the microservice engine assembles the extracted elements into one or more microservices (or smaller functions such as may be used in a Function as a Service environment) which recreates the software function of the software of the monolithic architecture. This is achieved as a series of outputs 51 , 53 , 55 , 57 which define various microstructures as loosely bound business logic elements, loosely bound database elements 59 , I/O communication 65 between the application UI 63 and the business logic elements 61 and I/O communication 67 between the database elements 59 and the business logic elements 61 .
- Dynamic code analysis under typical payloads (or system test payloads) is used to understand code hot spots (parts that are executing more often) and also to inform resources quotas in the microservices implementation. Resource quotas are concerned with the allocation of hardware resources to microservices, for example determining or allowing for a certain capacity of CPU and RAM to be allocated to a microservice.
- Dynamic analysis involves attaching to programs as they execute and analysing the various interactions between program components, including analysis of data layer concerns which can includes database call.
- Static analysis involves analysing source code when a program is not running and can be used to establish theoretical relationships and constrains that exist in the code, such as may not be readily identified through dynamic analysis alone.
- Non-code-related artefacts includes data from supporting systems and sources, including source code repository analysis which can provide various temporal and meta information such as rate of change in artefacts and change origin(s)/originator(s) as well a change size.
- the interface communications 31 between the application UI 27 and the business logic 29 and between communications 37 between the database 33 and the business logic 29 are analysed to determine what traffic arises in interfaces within the monolith.
- Advanced code analysis is used to determine information exchange within the monolithic system 23 so as to form a footprint for event/messaging. For example, a very basic form of this analysis would examine parameter lists for methods and functions, as well as control flow and interaction between methods.
- Static analysis is used to enable automated examination of general coupling and other object-oriented infrastructure (e.g. efferent and afferent coupling metrics) along with instability index determination.
- Automated unit test case and test case suite discovery are created for the monolithic software to isolate units of interest that can be considered candidates for microservice transformation.
- Automated monolith test case discovery is used with the application UI 27 as a means to form test data for verification of the auto-generated microservices infrastructure.
- test cases developed using technology such as Selenium could be discovered and ported to the microservices based implementation.
- OO object oriented
- the structure of an OO implementation can be highly informative in relation to service (and microservice) discovery.
- DevOps based development and deployment chains may be created automatically.
- Examples of the present invention may also use interface communications discovery to determine exactly what traffic arises in interfaces between the monolithic software 29 and the UI 27 .
- interface communications discovery is used to determine exactly what traffic arises in interfaces between the monolithic software 29 and the database 33 .
- the present invention provides:
- FIG. 4 illustrates a detailed architecture of a fully automated system similar to FIG. 3 for creating a software application which operates to perform a software function, according to one embodiment of the invention.
- a number of separate phases are required in order for the system and method to operate.
- the analysis module 100 is configured with a dynamic data collection engine 101 for analysing the dynamic behaviour at runtime of a version of the software application in a monolithic software system in which the software function is operational.
- the first phase can also include static data collection engine 102 configured for analysing the static behaviour of a version of the software application in a monolithic software system in which the software function is operational.
- a repository collection engine 103 is configured for profiling source code repositories and commit history cluster analysis of the software application in a monolithic software system.
- a dynamic data preparation engine 104 is provided and comprises a semantic domain analysis module for extracting domain entities of the software application in which the software functions are built around the entities.
- a multi-form filtering engine is configured for extracting and filtering the runtime interaction of the monolith code using sophisticated pruning heuristics and automated fitness sensitization using packages, classes, methods, URLs and database Queries of the software application in a monolithic software system in which the software function is operational.
- An extraction module 105 comprises a parallelized AI module for service identification using unsupervised machine learning techniques (for example agglomerative clustering, spectral clustering and/or FP tree analysis) for extracting service candidates wherein candidate microservices are recreated from one or more of said service candidates.
- unsupervised machine learning techniques for example agglomerative clustering, spectral clustering and/or FP tree analysis
- An assembly module 106 comprises a Multivariate Service Optimisation and Selection module using Constraint-based Optimisation Algorithmic Techniques and configured to identify desirable microservice features including inter and intra, structural and semantic similarities within and among candidate microservices. If the microservice is not deemed optimal the result can be fed back into the parallelized AI module for further processing.
- the dynamic data collection engine 101 is configured to collect runtime data from the monolithic application and extracts the execution traces of the software with information including chains, URLs, classes, methods and database methods to construct a call graph.
- the static data collection engine 102 collects static data from the monolithic application, extracts the execution traces of the software with information including chains, URLs, classes, methods and database methods, analyse the control flow and the data flow.
- the repository collection engine 103 is configured to profile the source code repository of the monolithic application and clusters the application components based on the commit history of the monolithic application.
- a commit history cluster analysis module clusters the monolith code into clusters with similar behaviour.
- the dynamic data preparation engine 104 performs semantic domain analysis to automatically extract domain-specific entities of the monolithic application using the output of the parallelized AI Module.
- the dynamic data preparation engine performs a multi-form filtering engine that can utilise sophisticated pruning heuristics and automated fitness sensitizing using Packages, classes, Methods, URIs, Database Methods.
- the parallelized AI module automatically and concurrently extracts initial service candidates using unsupervised machine learning techniques including agglomerative clustering, spectral clustering and FP tree analysis.
- the parallelized AI module also composes candidate microservices from initial service candidates using constraint-based optimisation techniques.
- the multivariate service optimisation and selection using constraint-based optimisation algorithm uses fitness functions generated based on the outputs provided from the analysis module and the extraction module to select the service composition deemed optimal.
- the module 106 can be configured to use optimisation techniques to compose optimal service candidates that demonstrate the desirable microservice feature, wherein the selected service candidates become the recommended microservices.
- software application means a software function implemented in a given architecture/platform.
- Software function refers to the functionality of the software regardless of the architecture/platform.
- the description of the invention including that which describes examples of the invention with reference to the drawings may comprise a computer apparatus and/or processes performed in a computer apparatus.
- the invention also extends to computer programs, particularly computer programs stored on or in a carrier adapted to bring the invention into practice.
- the program may be in the form of source code, object code, or a code intermediate source and object code, such as in partially compiled form or in any other form suitable for use in the implementation of the method according to the invention.
- the carrier may comprise a storage medium such as ROM, e.g. CD ROM, or magnetic recording medium, e.g. a memory stick or hard disk.
- the carrier may be an electrical or optical signal which may be transmitted via an electrical or an optical cable or by radio or other means.
Landscapes
- Engineering & Computer Science (AREA)
- Software Systems (AREA)
- General Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Computer Security & Cryptography (AREA)
- Stored Programmes (AREA)
Abstract
Description
-
- eliciting the accumulated dependencies within the monolithic systems;
- separating core functionalities into micro-services; and
- creating event-driven communication systems.
-
- an analysis module for analyzing a version of the software application in a monolithic software system in which the software function is operational;
- an extraction module comprising dynamic analysis and static analysis of code and non-code-related artefacts for extracting discrete functional elements from the monolithic software system;
- an assembly module for forming the extracted discrete functional element into a microservice wherein the software function is recreated from one or more of said microservices.
-
- analyzing a version of the software application in a monolithic software system in which the software function is operational;
- extracting discrete functional elements using dynamic and static analysis of code and non-code-related artefacts from the monolithic software system;
- forming the extracted discrete functional element into a microservice; and
- recreating the software function from one or more of said microservices (or finer grained functions in the form of a Function as a Service target environment).
-
- I/
O communication 35 between theapplication UI 27 and thebusiness logic module 29; - I/
O communication 37 between thedatabase 33 and thebusiness logic module 29; -
business logic elements 31; - Interaction between business logic elements; and
- the database.
- I/
-
- a software-based system that will automatically determine a monolithic architecture through the implementation of AI techniques;
- a software-based system that will enable the creation of a microservices based infrastructure;
- a software-based system that will enable the establishment of appropriate event/messaging infrastructure; and
- a software-based system that will enable access to a serverless deployment environment.
Claims (27)
Applications Claiming Priority (4)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
GB1914106.8A GB2587432A (en) | 2019-09-30 | 2019-09-30 | System and method for software architecture redesign |
GB1914106 | 2019-09-30 | ||
GB1914106.8 | 2019-09-30 | ||
PCT/EP2020/077429 WO2021064058A1 (en) | 2019-09-30 | 2020-09-30 | System and method for software architecture redesign |
Publications (2)
Publication Number | Publication Date |
---|---|
US20220413846A1 US20220413846A1 (en) | 2022-12-29 |
US11995438B2 true US11995438B2 (en) | 2024-05-28 |
Family
ID=68538953
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US17/764,152 Active 2040-11-06 US11995438B2 (en) | 2019-09-30 | 2020-09-30 | System and method for software architecture redesign |
Country Status (4)
Country | Link |
---|---|
US (1) | US11995438B2 (en) |
EP (1) | EP4038492A1 (en) |
GB (1) | GB2587432A (en) |
WO (1) | WO2021064058A1 (en) |
Families Citing this family (8)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
CN113535227B (en) * | 2021-09-07 | 2021-12-21 | 深圳市云中鹤科技股份有限公司 | Deployment method and device of digital technology architecture |
US11847443B2 (en) | 2021-09-07 | 2023-12-19 | International Business Machines Corporation | Constraints-based refactoring of monolith applications through attributed graph embeddings |
US11726778B2 (en) | 2021-09-29 | 2023-08-15 | International Business Machines Corporation | Translating clusters of a monolith application to microservices |
US11768679B2 (en) | 2021-11-30 | 2023-09-26 | International Business Machines Corporation | Identifying microservices for a monolith application through static code analysis |
CN114281345A (en) * | 2021-12-31 | 2022-04-05 | 上海孚典智能科技有限公司 | Self-adaptive micro-service operation optimization system based on operation state sampling |
US11860980B2 (en) | 2022-01-05 | 2024-01-02 | International Business Machines Corporation | Cognitive method to split monolithic architecture into microservice architecture |
CN116185373B (en) * | 2023-04-26 | 2023-09-01 | 上海金仕达软件科技股份有限公司 | Micro-service infrastructure generation method based on static code analysis |
US12056255B1 (en) * | 2023-11-28 | 2024-08-06 | Monday.com Ltd. | Digital processing systems and methods for facilitating the development and implementation of applications in conjunction with a serverless environment |
Citations (17)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20040117124A1 (en) * | 2001-02-20 | 2004-06-17 | Eskinder Kiros | Method and apparatus for automated cellular bioinformatics |
US20050021715A1 (en) * | 2003-05-21 | 2005-01-27 | Diego Dugatkin | Automated capturing and characterization of network traffic using feedback |
US7428726B1 (en) * | 2000-04-12 | 2008-09-23 | Compuware Corporation | Techniques for software configuration tracking |
US20090217185A1 (en) * | 2008-02-22 | 2009-08-27 | Eugene Goldfarb | Container generation system for a customizable application |
WO2018197928A1 (en) | 2017-04-28 | 2018-11-01 | Lzlabs Gmbh | Containerized deployment of microservices based on monolithic legacy applications |
US20190087179A1 (en) * | 2017-09-15 | 2019-03-21 | Cognizant Technology Solutions India Pvt. Ltd. | System and method for predicting defects in a computer program |
US20190108067A1 (en) | 2017-10-11 | 2019-04-11 | International Business Machines Corporation | Decomposing monolithic application into microservices |
US20190250912A1 (en) | 2018-02-15 | 2019-08-15 | Wipro Limited | Method and system for migrating monolithic enterprise applications to microservice architecture |
US10552130B1 (en) * | 2017-06-09 | 2020-02-04 | Azul Systems, Inc. | Code optimization conversations for connected managed runtime environments |
US20200042315A1 (en) * | 2018-08-03 | 2020-02-06 | EMC IP Holding Company LLC | Method to disintegrate a monolith service to microservices |
US10684940B1 (en) * | 2018-09-18 | 2020-06-16 | Amazon Technologies, Inc. | Microservice failure modeling and testing |
US20200195668A1 (en) * | 2018-12-13 | 2020-06-18 | Imperva, Inc. | Selective database logging with smart sampling |
US20200285451A1 (en) * | 2019-03-05 | 2020-09-10 | Sap Se | Decoupling microservices from a monolithic application |
US20200287977A1 (en) * | 2019-03-06 | 2020-09-10 | At&T Intellectual Property I, L.P. | Connectionless service and other services for devices using microservices in 5g or other next generation communication systems |
US20210011688A1 (en) * | 2019-07-11 | 2021-01-14 | International Business Machines Corporation | Automatic discovery of microservices from monolithic applications |
US10936291B1 (en) * | 2019-04-17 | 2021-03-02 | EMC IP Holding Company LLC | Recommending the refactoring of microservices |
US10951492B2 (en) * | 2019-07-26 | 2021-03-16 | Cognizant Technology Solutions India Pvt. Ltd. | System and a method for automatic conversion of monolithic services to micro-services |
-
2019
- 2019-09-30 GB GB1914106.8A patent/GB2587432A/en not_active Withdrawn
-
2020
- 2020-09-30 WO PCT/EP2020/077429 patent/WO2021064058A1/en unknown
- 2020-09-30 EP EP20775802.0A patent/EP4038492A1/en active Pending
- 2020-09-30 US US17/764,152 patent/US11995438B2/en active Active
Patent Citations (18)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US7428726B1 (en) * | 2000-04-12 | 2008-09-23 | Compuware Corporation | Techniques for software configuration tracking |
US20040117124A1 (en) * | 2001-02-20 | 2004-06-17 | Eskinder Kiros | Method and apparatus for automated cellular bioinformatics |
US20050021715A1 (en) * | 2003-05-21 | 2005-01-27 | Diego Dugatkin | Automated capturing and characterization of network traffic using feedback |
US20090217185A1 (en) * | 2008-02-22 | 2009-08-27 | Eugene Goldfarb | Container generation system for a customizable application |
WO2018197928A1 (en) | 2017-04-28 | 2018-11-01 | Lzlabs Gmbh | Containerized deployment of microservices based on monolithic legacy applications |
EP3411785A1 (en) | 2017-04-28 | 2018-12-12 | LZLabs GmbH | Containerized deployment of microservices based on monolithic legacy applications |
US10552130B1 (en) * | 2017-06-09 | 2020-02-04 | Azul Systems, Inc. | Code optimization conversations for connected managed runtime environments |
US20190087179A1 (en) * | 2017-09-15 | 2019-03-21 | Cognizant Technology Solutions India Pvt. Ltd. | System and method for predicting defects in a computer program |
US20190108067A1 (en) | 2017-10-11 | 2019-04-11 | International Business Machines Corporation | Decomposing monolithic application into microservices |
US20190250912A1 (en) | 2018-02-15 | 2019-08-15 | Wipro Limited | Method and system for migrating monolithic enterprise applications to microservice architecture |
US20200042315A1 (en) * | 2018-08-03 | 2020-02-06 | EMC IP Holding Company LLC | Method to disintegrate a monolith service to microservices |
US10684940B1 (en) * | 2018-09-18 | 2020-06-16 | Amazon Technologies, Inc. | Microservice failure modeling and testing |
US20200195668A1 (en) * | 2018-12-13 | 2020-06-18 | Imperva, Inc. | Selective database logging with smart sampling |
US20200285451A1 (en) * | 2019-03-05 | 2020-09-10 | Sap Se | Decoupling microservices from a monolithic application |
US20200287977A1 (en) * | 2019-03-06 | 2020-09-10 | At&T Intellectual Property I, L.P. | Connectionless service and other services for devices using microservices in 5g or other next generation communication systems |
US10936291B1 (en) * | 2019-04-17 | 2021-03-02 | EMC IP Holding Company LLC | Recommending the refactoring of microservices |
US20210011688A1 (en) * | 2019-07-11 | 2021-01-14 | International Business Machines Corporation | Automatic discovery of microservices from monolithic applications |
US10951492B2 (en) * | 2019-07-26 | 2021-03-16 | Cognizant Technology Solutions India Pvt. Ltd. | System and a method for automatic conversion of monolithic services to micro-services |
Non-Patent Citations (9)
Title |
---|
Abdullah et al., "Unsupervised learning approach for web application auto-decomposition into microservices", published by The Journal of Systems and Software, Feb. 20, 2019, pp. 243-257 (Year: 2019). * |
Chen et al., "From Monolith to microservices: A Dataflow-Driven Approach", published by IEEE, 2017 24th Asia-Pacific Software Engineering Conference, pp. 466-475 (Year: 2017). * |
Fan et al., "Migrating Monolithic Mobile Application to Microservice Architecture: An Experiment Report", published by IEEE, 2017 IEEE 6th International Conference on AI & Mobile Services, pp. 109-112 (Year: 2017). * |
Fritzsch et al., "From Monolith to Microservices: A Classification of Refactoring Approaches", published by Cornell University, pp. 1-13, (Year: 2019). * |
International Search Report and Written Opinion issued in PCT/EP2020/077429 dated Jan. 1, 2021 (10 pages). |
International Search Report and Written Opinion issued in PCT/EP2020/077429 dated Jan. 20, 2021 (15 pages). |
Jin et al., "Functionality-oriented Microservice Extraction Based on Execution Trace Clustering" published by IEEE, 2018 IEEE International Conference on Web Service, pp. 211-218 (Year: 2018). * |
Kamimura et al., "Extracting Candidates of Microservices from Monolithic Application Code", published by IEEE, 2018 25th Asia-Pacific Software Engineering Conference (APSEC), pp. 571-580 (Year: 2018). * |
Kazanavicius, et al., "Migrating Legacy Software to Microservices Architecture" 2019 Open Conference of Electrical, Electronic, and Information Sciences (ESTREAM), IEEE, Apr. 25, 2019 (5 pages). |
Also Published As
Publication number | Publication date |
---|---|
GB2587432A (en) | 2021-03-31 |
EP4038492A1 (en) | 2022-08-10 |
WO2021064058A1 (en) | 2021-04-08 |
US20220413846A1 (en) | 2022-12-29 |
GB201914106D0 (en) | 2019-11-13 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US11995438B2 (en) | System and method for software architecture redesign | |
US20070061354A1 (en) | System for modeling architecture for business systems and methods thereof | |
CN110019651A (en) | A kind of streaming regulation engine and business data processing method | |
Cheng et al. | Scalable discovery of hybrid process models in a cloud computing environment | |
Walter et al. | An expandable extraction framework for architectural performance models | |
EP3198478A1 (en) | Method and system for implementing efficient classification and exploration of data | |
Becker et al. | Reverse engineering component models for quality predictions | |
US20110161263A1 (en) | Computer-Implemented Systems And Methods For Constructing A Reduced Input Space Utilizing The Rejected Variable Space | |
CN113128143B (en) | AI processor simulation method, AI processor simulation device, computer equipment and storage medium | |
Sellami et al. | Combining static and dynamic analysis to decompose monolithic application into microservices | |
Ferreira et al. | An Automated and Distributed Machine Learning Framework for Telecommunications Risk Management. | |
Niu et al. | On-demand cluster analysis for product line functional requirements | |
Kohyarnejadfard et al. | Anomaly detection in microservice environments using distributed tracing data analysis and NLP | |
Kaur et al. | An empirical study of aging related bug prediction using cross project in cloud oriented software | |
Kosztyán et al. | A matrix-based flexible project-planning library and indicators | |
Walter et al. | Tools for declarative performance engineering | |
Thüm et al. | Performance analysis strategies for software variants and versions | |
Eken et al. | Predicting defects with latent and semantic features from commit logs in an industrial setting | |
Tariq et al. | Time efficient end-state prediction through hybrid trace decomposition using process mining | |
Ardagna et al. | A fast and incremental development life cycle for data analytics as a service | |
Böhmer et al. | Automatic business process test case selection: coverage metrics, algorithms, and performance optimizations | |
CN112817574A (en) | Variable data processing method, variable data processing device, electronic device, and storage medium | |
De Gyves Avila et al. | A data driven platform for improving performance assessment of software defined storage solutions | |
CN113391795A (en) | Method and system for realizing self-adaptive mapping of application scene and software development kit | |
Asseldonk | From a Monolith to Microservices: the Effect of Multi-view Clustering |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
FEPP | Fee payment procedure |
Free format text: ENTITY STATUS SET TO UNDISCOUNTED (ORIGINAL EVENT CODE: BIG.); ENTITY STATUS OF PATENT OWNER: SMALL ENTITY |
|
AS | Assignment |
Owner name: DUBLIN CITY UNIVERSITY, IRELAND Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:CLARKE, PAUL;MCCARREN, ANDREW;REEL/FRAME:059418/0875 Effective date: 20201020 |
|
FEPP | Fee payment procedure |
Free format text: ENTITY STATUS SET TO SMALL (ORIGINAL EVENT CODE: SMAL); ENTITY STATUS OF PATENT OWNER: SMALL ENTITY |
|
STPP | Information on status: patent application and granting procedure in general |
Free format text: DOCKETED NEW CASE - READY FOR EXAMINATION |
|
STPP | Information on status: patent application and granting procedure in general |
Free format text: NON FINAL ACTION MAILED |
|
STPP | Information on status: patent application and granting procedure in general |
Free format text: RESPONSE TO NON-FINAL OFFICE ACTION ENTERED AND FORWARDED TO EXAMINER |
|
STPP | Information on status: patent application and granting procedure in general |
Free format text: NOTICE OF ALLOWANCE MAILED -- APPLICATION RECEIVED IN OFFICE OF PUBLICATIONS |
|
STPP | Information on status: patent application and granting procedure in general |
Free format text: PUBLICATIONS -- ISSUE FEE PAYMENT RECEIVED |
|
STCF | Information on status: patent grant |
Free format text: PATENTED CASE |