On the Modernization of ExplorViz towards a Microservice Architecture Christian Zirkelbach, Alexander Krause, and Wilhelm Hasselbring Software Engineering Group Kiel University, Germany {czi,akr,wha}@informatik.uni-kiel.de Abstract tures two different visualizations – an abstract soft- ware landscape and a detailed application level visu- Software systems evolve during their lifetime and alization, which are built-upon collected monitoring therefore face several challenges. Changing require- information. Since the first version, we have con- ments or upcoming feature requests make modifica- tinually developed and improved our software, e.g., tions or extensions inevitable. Especially long-living by replacing single components or adding new fea- software systems have often been built as monolithic tures. Thus, it was inevitable to make changes to the applications and are based on obsolescent architec- code and even architectural amendments. This cir- tures and technologies. This circumstance makes it cumstance made it more and more difficult over time, difficult for developers to maintain or extend software. to maintain and extend our software, especially for In this paper, we report on the modernization process external developers, e.g., computer science students. of our open source research project ExplorViz – mov- Overcoming these problems was our initial incentive ing from a monolithic towards a microservice archi- for the modernization. Similar decision triggers for tecture. We describe our previous version within the developers in other projects are depicted in [1]. We project and present how we solved the modernization performed an architectural modernization of our open and handled occurring problems. Afterwards, we il- source project ExplorViz and provided a simple way lustrate our modernized software system and point to enhance our software via extensions. out the obtained benefits. Finally, we delineate open The remainder of this paper is organized as follows. questions for the ongoing development. In Section 2, we describe the monolithic architecture 1 Introduction of our open source project, referred to as ExplorViz Legacy, and point out problems during development. Software systems evolve over time and encounter diffi- Afterwards, we present our approach to address the culties during their life cycle. Often these systems are presented problems in Section 3. In Section 4, we dis- modified or extended, induced by new requirements cuss related work regarding our approach. Finally, the or upcoming requests from customers. In the context conclusions are drawn and open questions are delin- of long-living software systems, these systems have of- eated. ten been built in form of monolithic applications and are comprised of obsolescent architectures and tech- 2 ExplorViz Legacy nologies. A key problem of monolithic applications is The idea behind ExplorViz was initially conceptu- that all components are developed on a single code- alized in 2012 and first published a year later [6]. base among several developers. This basically means, Since then, the project has evolved greatly in feature that if a developer wants to modify code or add a count, source lines of code, and research interests. new feature, he needs to be certain that the remain- For instance, we investigated alternative visualization ing code and provided services are still working af- approaches with cutting-edge input and output ter his changes [10]. A solution to this problem can devices in the context of program comprehension [7, be employing a different architectural style, namely 8]. These have been developed in terms of extensions, a microservice architecture, composed of several self- e.g., a Virtual Reality mode. Most of these extensions contained systems [9]. This style offers more flexibil- are the result of student’s theses or seminar papers. ity and scalability on the one hand and replaceability As of today we count a growing number of twenty of single components on the other hand [12]. Since student’s theses and more than ten Git branches in 2012, we develop the open source research project Ex- the context of the visualization functionality, i.e., plorViz,1 a web-based monitoring and visualization landscape and application renderings. tool for large software landscapes [11]. ExplorViz fea- 1 https://www.explorviz.net EMLS 2018: 5th Collaborative Workshop on Evolution and Maintenance of Long-Living Software Systems @ SE18, Ulm, Germany 39 Java and its Remote Procedure Calls (RPC) are Dart. This language is used by Google itself to build taught early in lectures, therefore we utilized the many applications as noted on the related website.3 Google Web Toolkit (GWT) as primary web frame- Since it was announced that JSNI will be removed work for our project. GWT enables writing Java with the release of GWT 3, we were in need of migrat- code for both server- (backend) and client-logic (fron- ing code once again. At this time ExplorViz Legacy tend) in a single project. It compiles client-related contained a great amount of JS code. Therefore, we Java- to respective JavaScript-code (JS), thus en- decided to drop GWT as scaffold and modernize the abling the execution in web browsers. Additionally, monolithic project with new technologies and less de- the toolkit introduces GWT RPC (GRPC) for trig- pendencies to modules of the underlying web frame- gering actions on the server or exchanging data over work. HTTP. Therefore, client-server communication is eas- ily usable for non-professional developers and does not 3 Modernization Procedure require manual parsing of Java objects to obtain a Two major communication technologies emerged from common transport format, e.g., JavaScript Object No- practical realization when implementing web services. tation (JSON). This particular technology of network Research shows that SOAP-based services are in fact communication eases the development, especially for less performant and do not support mobile devices our students. as good as their RESTful counterparts [5]. Further- more, the latter eases the development and influences <> Server the characteristics of a system, e.g., scalability and <> <> flexibility [3, 5]. ExplorViz Legacy HTTP Client In [13] the authors present how the German e- <> * commerce provider Otto modernized the underlying <> Database Browser software system of their online shop. Instead of refac- <> toring the old monolithic system, they completely re- Filesystem implemented the functionality, using a microservice architecture. The developed microservices communi- cate only by accessing REST APIs. This redesign re- Figure 1: Architectural overview of ExplorViz Legacy sulted in a highly scalable and fault tolerant software system. In Figure 1 the deployment and simplified software The previously mentioned issues in ExplorViz stack of our GWT-based ExplorViz Legacy is shown. Legacy (see Section 2) and the experience reports It can be deployed on a single server node. On startup, about successful utilization of alternative technolo- ExplorViz Legacy automatically creates a database gies, e.g., RESTful APIs, were triggers for a modern- for user management. The filesystem is facilitated to ization of the ExplorViz project. We no longer saw store serialized landscape objects, i.e., the underlying advantages of preferring GWT over other web frame- data models, that are retrieved from monitoring data works. Therefore, we decided to split the codebase and used for visualization. into two separated projects, i.e., backend and fron- The presented project setup was used since 2012 tend. The backend is implemented as a Java-based and published in 2013 on Github.2 During subse- web service providing a RESTful API for clients. quent development we frequently migrated client code Since client-side code is mostly written in JS nowa- from Java to JS using GWT’s JavaScript Native Inter- days, we choose this programming language for the face (JSNI), i.e., embedded JS code in Java methods. frontend. The reason behind this alteration of GWT’s intended Figure 2 depicts the new architecture and simpli- workflow was the utilization of modern JS libraries fied software stack of ExplorViz. Backend and fron- to simplify the usability for users. The result was a tend are now two self-contained microservices. Thus, fragmentation of ExplorViz’s codebase in JSNI- and they can be deployed on different server nodes. In Java-methods. This was further deteriorated when we detail, we employ distinct technology stacks with in- substituted GWT’s WebGL implementation with the tegrated storage. This allows us to exchange a single JS-based library three.js. three.js provides a high level or both microservices, as long as we take our specified of abstraction for 3D rendering and thus offers a better interfaces into account. maintainability and extensibility for new developers. The backend provides a RESTful API for fron- In 2016 we stopped the development of new fea- tend instances and is based on the Jersey framework,4 tures in ExplorViz. GWT seemed to disappear in a which implements the Servlet 3.0 specification. This variety of other projects. Additionally, there was no is utilized to implement a web service without the major update of the toolkit for at least a year. Mean- need to state a web.xml file, i.e., the servlet configura- while Google released a new programming language tion file. Instead, we use javax.servlet.annotations to which can also be used for web development, called 3 https://webdev.dartlang.org 2 https://github.com/ExplorViz/Explorviz 4 https://jersey.github.io EMLS 2018: 5th Collaborative Workshop on Evolution and Maintenance of Long-Living Software Systems @ SE18, Ulm, Germany 40 <> Server A <> <> Server B Backend <> HTTP <> Client <> (REST) Frontend HTTP ExplorViz (Jersey) 1..* * <> <> <> ExplorViz (EmberJS) Browser Database <> <> Filesystem Filesystem Figure 2: Overview of the modernized ExplorViz architecture define servlet declarations and mappings. We expect 4 Related Work this approach will ease the development, especially for In [2], the authors conduct a case study addressing students. the evolution of a software system, which has been ExplorViz’s new frontend uses the client-side JS scarcely documented. The case study involves archi- framework Ember.js (Ember), 5 which allows us to tecture recovery and planning and execution of several use to provide software visualizations with a WebGL- evolution cycles. Compared to our approach, we did enabled browser. Ember is based on the Model View not recover the architecture, since we did not want to ViewModel architectural pattern. As a result, man- keep the obsolete monolithic architecture, which was ual Document Object Model accesses are not neces- provided by GWT. Furthermore, we did not need to sary and developers need less code. Ember allows apply a series of refactoring iterations to modernize and emphasizes the use of components in web sites, our software system. i.e., self-contained, reusable, and exchangeable user [10] compares the development and cloud deploy- interface fragments. We employ this feature to encap- ment of an enterprise application based on a mono- sulate visualization modes. Therefore, they can be lithic approach and a microservice architecture. Their included, containing all necessary logic by inserting approach contains common elements to our applied a single line of code. Network communication, e.g., process. They employ modern technologies for sepa- fetching a landscape from the backend, is abstracted rate microservices, e.g., Java in the backend and JS by so-called adapters. These make it easy to send or in the frontend. Contrary to their results, we did not request data by using convention over configuration, face any of the mentioned problems during the migra- if the backend applies the same rules for URL defini- tion, like failures or timeouts. tions. According to [5], RESTful services can improve sys- The introduced microservices represent the core of tem flexibility, scalability, and performance in com- ExplorViz. As for future extensions, we implemented parison to SOAP-based web services. Additionally, clean and comprehensive interfaces for both compo- REST-based services are easier to consume and com- nents, that allow the registration of extensible func- pose, based on well-defined standards and heteroge- tionalities. A student implementing new mechanics neous operations. They provide an approach to mi- will therefore use a template extension as starting grate SOAP-based to RESTful services. Unfortu- point. Those extensions access core mechanics only nately, their approach is not applicable for us, since by a defined read-only API, which is implemented by our project is based on GWT instead of SOAP. the backend, respectively frontend. The modulariza- In [4], the authors present a survey of various tion enables us to improve the backend or frontend, approaches to move from legacy systems towards while not breaking extension support. a Service-Oriented-Architecture (SOA) environment. In summary, both frameworks are exchangeable Basically, they distinguish between four different cat- with respect to their language domain. The backend egories – replacement, wrapping, redevelopment, and would primarily need to define new ways to provide migration. While Replacement is self-explanatory, data. Since client-side JS frameworks have similar el- wrapping employs a new interface for existing com- ements and approaches, we think substituting Ember ponents to make them accessible in form of services. can be done with little effort. Redevelopment employs reverse and reengineering ap- 5 https://www.emberjs.com proaches to add necessary functionality to the legacy system. Finally, a migration moves a legacy system to EMLS 2018: 5th Collaborative Workshop on Evolution and Maintenance of Long-Living Software Systems @ SE18, Ulm, Germany 41 the more flexible environment. Thus, the original sys- [5] B. Upadhyaya et al. “Migration of SOAP-based tem’s data and functionality can be preserved. Based services to RESTful services”. In: Proceedings on the type of legacy system, tool support, and fur- of the 13th IEEE International Symposium on ther criteria, a different technique or strategies can Web Systems Evolution (WSE). Sept. 2011, be employed. Unfortunately, their present migration pp. 105–114. and redevelopment strategies are not adaptable for [6] F. Fittkau et al. “Live trace visualization for our process, since these focus on SOA environments comprehending large software landscapes: The instead of microservices. ExplorViz approach”. In: Proceedings of the First IEEE Working Conference on Software 5 Conclusions Visualization (VISSOFT). Sept. 2013, pp. 1–4. In this paper, we report on our modernization pro- [7] F. Fittkau, A. Krause, and W. Hasselbring. cess of ExplorViz from a monolithic towards a mi- “Exploring software cities in virtual reality”. croservice architecture. We pointed out encountered In: Proceedings of the 3rd IEEE Working Con- problems during our development since 2012, espe- ference on Software Visualization (VISSOFT). cially those related to the architecture underneath Sept. 2015, pp. 130–134. our software. Consequently, we described ExplorViz Legacy, the previous version of our open source re- [8] F. Fittkau, E. Koppenhagen, and W. Has- search project, and presented solutions to address the selbring. “Research Perspective on Supporting existing problems. Afterwards, we revealed our mod- Software Engineering via Physical 3D Models”. ernized software system and emphasized the obtained In: Proceedings of the 3rd IEEE Working Con- benefits. Even though our modernization process is ference on Software Visualization (VISSOFT). still in progress, we were already able to employ a mi- IEEE, Sept. 2015, pp. 125–129. croservice architecture in order to ease maintainabil- [9] S. Newman. Building microservices: designing ity on one hand, and extensibility on the other hand. fine-grained systems. O’Reilly, 2015. Finally, we would like to delineate some of our open [10] M. Villamizar et al. “Evaluating the monolithic questions: and the microservice architecture pattern to de- • How can we derive best practice guidelines from ploy web applications in the cloud”. In: Proceed- our migrations for other projects? ings of the 10th Computing Colombian Confer- ence (10CCC). Sept. 2015, pp. 583–590. • Does the rapid evolution of JS frontend frame- [11] F. Fittkau, A. Krause, and W. Hassel- works influence the ongoing evolution of Ex- bring. “Software landscape and appli- plorViz? cation visualization for system compre- • How can we reposition ExplorViz as an open hension with ExplorViz”. In: Informa- source visualization framework for diverse data, tion and Software Technology (2016). as exemplarily shown in [14]? http://dx.doi.org/10.1016/j.infsof.2016.07.004. [12] T. Salah et al. “The evolution of distributed References systems towards microservices architecture”. In: Proceedings of the 11th International Confer- [1] J. Koskinen et al. “Software Modernization De- ence for Internet Technology and Secured Trans- cision Criteria: An Empirical Study”. In: Pro- actions (ICITST). Dec. 2016, pp. 318–325. ceedings of the 9th European Conference on Software Maintenance and Reengineering. Mar. [13] W. Hasselbring and G. Steinacker. “Microser- 2005, pp. 324–331. vice Architectures for Scalability, Agility and Reliability in E-Commerce”. In: Proceedings [2] F. Cuadrado et al. “A Case Study on Software of the International Conference on Software Evolution towards Service-Oriented Architec- Architecture Workshops (ICSAW). Apr. 2017, ture”. In: Proceedings of the 22nd International pp. 243–246. Conference on Advanced Information Network- ing and Applications. Mar. 2008, pp. 1399–1404. [14] C. Zirkelbach. “Juggling with Data: On the Lack of Database Monitoring in Long-Living [3] S. Vinoski. “RESTful Web Services Develop- Software Systems”. In: Proceedings of the ment Checklist”. In: IEEE Internet Computing 4th Collaborative Workshop on Evolution and 12.6 (Nov. 2008), pp. 96–95. Maintenance of Long-Living Software Sys- [4] A. A. Almonaies, J. R. Cordy, and T. R. Dean. tems (EMLS). Softwaretechnik-Trends 2. 2017, “Legacy system evolution towards service- pp. 62–65. oriented architecture”. In: Proceedings of the In- ternational Workshop on SOA Migration and Evolution. 2010, pp. 53–62. EMLS 2018: 5th Collaborative Workshop on Evolution and Maintenance of Long-Living Software Systems @ SE18, Ulm, Germany 42