Skip to content
Snippets Groups Projects
ds_devops_pe.tex 15.8 KiB
Newer Older
  • Learn to ignore specific revisions
  • Doina Cristina Duma's avatar
    Doina Cristina Duma committed
    \documentclass[a4paper]{jpconf}
    \usepackage{graphicx}
    \begin{document}
    
    \title{Common software lifecycle management in external projects}
    
    Doina Cristina Duma's avatar
    Doina Cristina Duma committed
    
    \author{C. Duma$^1$, A. Costantini$^1$, D. Michelotto$^1$,
    
            P. Orviz$^2$, D. Salomoni$^1$}
    \address{$^1$ INFN-CNAF, Bologna, IT}
    \address{$^2$ IFCA, Consejo Superior de Investigaciones Cientificas-CSIC, Santander, SP}
    
    Doina Cristina Duma's avatar
    Doina Cristina Duma committed
    
    \ead{ds@cnaf.infn.it}
    
    \begin{abstract}
    
    
    This paper describes the common procedure defined and adopted in the field of Software Lifecycle Management and
     Continuous Integration and Delivery to manage the new releases, as a first step to ensure 
    the quality of the provided solutions, services and components, while strengthening the collaboration between 
    
    developers and operations teams  among different external projects.
    
    In particular, the paper analyses the common software lifecycle management procedure developed during the 
    
    INDIO-DataCloud project and recently improved and adopted in two EC funded
    projects: eXtreme DataCloud and DEEP Hybrid DataCloud.
    
    Doina Cristina Duma's avatar
    Doina Cristina Duma committed
    \end{abstract}
    
    \section{Introduction}
    
    The eXtreme-DataCloud (XDC) \cite{xdc} and DEEP-HybridDataCloud (DEEP-HDC) \cite{deep} projects are aimed at addressing requirements from a wide range of User Communities belonging to several disciplines and test the developed software solutions against the real life use cases.
    The software solutions carried out by the both projects are released as Open Source and are based on already existing components (TRL8+) that the projects will enrich with new functionalities and plugins. 
    
    The use of standards and protocols widely available on the state-of-the-art distributed computing ecosystems may be not enough to guarantee that the released components can be easily plugged into the European e-Infrastructures and in general on cloud based computing environments and the definition and implementation of the entire Software 
    Lifecycle Management process becames mandatory in such projects.
    
    As the software components envisaged by both projects have a history of development
     in previous successful European projects (such as the INDIGO-DataCloud \cite{indigo} project) implementing different types of modern software development techniques,
    
     the natural choice was to complement the previous, individual, Continuous Development and Integration services 
    with a Continuous Testing, Deployment and Monitoring as part of a DevOps approach:
    \begin{itemize}
    \item Continuous Testing - the activity of continuously testing the developed software in order to identify issues in
     the early phases of the development. For Continuous testing, automation tools will be used. These tools enable 
    the QA’s for testing multiple code-bases and in parallel, to ensure that there are no flaws in the functionality. In 
    this activity the use of Docker containers for simulating testing environments on the fly, is also a preferred choice. 
    Once the code is tested, it is continuously integrated with the existing code.
    \item Continuous Deployment - the activity of continuously updating production environment once new code is made 
    available. Here we ensure that the code is correctly deployed on all the servers. If there is any addition of functionality
     or a new feature is introduced, then one should be ready to add resources according to needs. Therefore, it is also 
    the responsibility of the SysAdmin to scale up the servers. Since the new code is deployed on a continuous basis, 
    automation tools play an important role for executing tasks quickly and frequently. Puppet, Chef, SaltStack and 
    Ansible are some popular tools that could be used at this step. This activity represents the Configuration 
    Management - the process of standardising the resources configurations and enforcing their state across
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
     infrastructures in an automated manner. The extensive use of containerisation techniques will provide an 
    
    entire runtime environment: application/service, all its dependencies, libraries and binaries, and configuration 
    files needed to run it, bundled in one package - container. T3.1 will also manage the scalability testing, being
     able to manage the configurations and do the deployments of any number of nodes automatically.
    \item Continuous Monitoring - very crucial activity in the DevOps model of managing software lifecycle, which is 
    aimed at improving the quality of the software by monitoring its performance. This practice involves the participation 
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    of the Operations team who will monitor the users’ activity to discover bugs or improper behavior of the system.
    
     This can also be achieved by making use of dedicated monitoring tools, which will continuously monitor the application 
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    performance and highlight issues. Some popular tools useful in this step are Nagios \cite{nagios}, NewRelic \cite{newrelic} 
    and Sensu \cite{sensu}. These tools
    
     help to monitor the health of the system proactively and improve productivity and increase the reliability of the 
    systems, reducing IT support costs. Any major issues found could be reported to the Development team to be 
    fixed in the continuous development phase.
    \end{itemize}
    
    These DevOps activities are carried out on loop continuously until the desired product quality is achieved.
    Automation will play a central role in all the activities in order to achieve a complete release automation, moving the 
    software from the developers through build and quality assurance checks, to deployment into integration testbeds 
    and finally to production sites part of the Pilot Infrastructures. 
    
    In the following sections, an overview of the recentli defined best practices that have been adopted in both XDC and DEEP-XDC projects for the Software Lifecycle Management and Continuous Integration and Delivery are presented and described.
    
    \section{Software Quality Assurance and Control}
    
    Software Quality Assurance (SQA) covers the set of software engineering processes 
    that foster the quality and reliability in the software produced. The activities involved in this task are mainly focused on:
    
    Doina Cristina Duma's avatar
    Doina Cristina Duma committed
    \begin{itemize}
    
    \item Defining and maintaining a common SQA procedure to guide the software development efforts throughout its life cycle.
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    \item Formulating a representative set of metrics for the software quality control to follow up on the behavior of the 
    
    software produced, aiming to detect and fix early deviations in the software produced.
    \item Enabling a continuous integration process, eventually complemented by a continuous delivery scenario, promoting 
    the automation adoption for the testing, building, deployment and release activities.
    
    Doina Cristina Duma's avatar
    Doina Cristina Duma committed
    \end{itemize}
    
    
    In order to define the SQA process, the specific context of the software developed in the project has to be taken into account. 
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    The following particularities characterize the corresponding development teams:
    
    \begin{itemize}
    \item Heterogeneous developer profiles: different backgrounds and different degrees of expertise.  
    \item Geographically distributed.
    \item Different home institutes which implies different cultures, different development technologies, process and methods.
    \item High turnover due to the limited duration of the projects where the grid software has been developed so far.
    \item More focus on development activities, with limited resources, if any, available for quality assurance activities.
    
    Doina Cristina Duma's avatar
    Doina Cristina Duma committed
    \end{itemize}
    
    
    The Quality Assurance process has to take all above described factors into account to define the Software Quality Assurance Plan (SQAP). 
    
    Lucia Morganti's avatar
    Lucia Morganti committed
    A set of ``QA Policies'' have also to be defined to guide the development teams towards uniform practices and processes. 
    
    These QA Policies define the main activities of the software lifecycle, such as releasing, tracking, packaging and documenting
     the software carried out by the project. This is done in collaboration with development teams, making sure they are flexible 
    enough to co-exist as much as possible with current development methods. The SQA activities have to be monitored and controlled 
    to track their evolution and put in place corrective countermeasures in case of deviations.
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    Moreover, a quality model have to be defined
    
    to help in evaluating the software products and process quality. It helps to set quality goals for software products and processes. 
    The Quality Model has to follow the ISO/IEC 25010:2011 “Systems and software engineering - Systems and software 
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    Quality Requirements and Evaluation (SQuaRE) - System and software quality models” \cite{R18} to identify a set of characteristics (criteria)
    
    that need to be present in software products and processes to be able to meet the quality requirements.
    
    Those SQA criteria \cite{R22} have the goal to 
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    \begin{itemize}
    \item Enhance the visibility, accessibility and distribution of the produced source code through the alignment with to the Open Source Definition \cite{R23}.
    \item Promote code style standards to deliver good quality source code emphasizing its readability and reusability.
    \item Improve the quality and reliability of software by covering different testing methods at development and pre-production stages.
    \item Propose a change-based driven scenario where all new updates in the source code are continuously evaluated by the automated execution of the relevant tests.
    \item Adopt an agile approach to effectively produce timely and audience-specific documentation.
    \item Lower the barriers of software adoption by delivering quality documentation and the utilization of automated deployment solutions.
    \item Encourage secure coding practices and security static analysis at the development phase while providing recommendations on external security assessment.
    \end{itemize}
    
    \section{Software Maintenance and Support}
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    Regarding the software maintenance and support area of the software lifecycle management,
    
     the main objectives that should be and described in the Maintenance plan are:
    
    \begin{itemize}
    \item To increase the quality levels of the software by contributing to the implementation and automation 
    of the Quality Assurance (QA) and Control procedures defined by the project.
    \item To boost the software delivery process, relying on automation.
    \item To emphasize the communication and feedback with/from end users, in order to guarantee adequate
     requirements gathering and support.
    \item To guarantee the stability of services already deployed in production and the increase of their readiness
     levels, where needed.
    \end{itemize}
    
    Moreover the common practices deal with the definition of those processes and procedures related to the software maintenance and 
    support and their continuous execution:
    
    \begin{itemize}
    \item Software Maintenance - regarding software preparation \& transition from the developers to production 
    repositories and final users.
    \item Problem Management - providing the analysis \& documentation of problems.
    \item Change Management - control code, configuration changes, retirement calendars.
    \item Coordination the provisioning of adequate support to released software.
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    \item Responsible for the release management and coordination and the maintenance of the artifacts
    
     repositories, defining policies and release cycles.
    \end{itemize}
    The plan regarding the software maintenance and support management have to follow the guidelines of the 
    
    ISO/IEC 14764:2006 standard \cite{R30}, and includes a set of organizational and administrative roles to handle 
    
    maintenance implementation, change management and validation, software release, migration and retirement, support 
    and helpdesk activities. 
    Component releases are classified in major, minor, revision and emergency, based on the impact of the changes on the 
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    component interface and behavior. Requests for Change (RfC) are managed adopting a priority-driven approach, 
    
    so that the risk of compromising the stability of the software deployed in a production environment is minimized. 
    
    The User Support activity deals, instead, with the coordination of the support to the users that make use of the software components (developed within the project activities) and included in the main project software distributions.
    
    \section{Services for continuous integration and SQA}
    
    
    To support the Software Quality Assurance, the 
    Continuous Integration and the software release and maintenance activities, a set of tools and services are needed.    
    Usually, those tools and services are provided by using publicly available cloud services due to the following reasons:
    
    \begin{itemize}
    
    \item Higher public visibility and in line with project objectives for open source software,    
    \item Provides a path to further development, support and exploitation beyond the end of the project,
    
    \item Smaller effort needed inside the project to operate and manage those services.
    \end{itemize}
    
    The list of services needed is given in Table 1 with a small description for each service and the related Web link.
    
    \begin{figure}[h!]
    
    \centering
    
    Table 1: Tools and services to support DevOps.
    
    \includegraphics[width=10cm,clip]{CI-tools.png}
    %\caption{The list of services.}
    \label{citools}
    \end{figure}
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    \section{Key Performance Indicators}
    
    Defining appropriate KPIs for maintenance, release and support activities, and monitor them during the project lifetime
    
    may help in highlight the project achievements and put in place the appropriate corrective actions in case of deviations.
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    In principle, the KPIs should address  the following impact areas and reflect the related goal:
    \begin{itemize}
    \item Prepare data and computing e-Infrastructures to absorb the needs of communities that push the envelope in terms of data and intensive computing
    \begin{itemize}
    \item Goal: Extending the quality \& quantity of services provided by e-infrastructures 
    \end{itemize}
    \item Promote new research possibilities in Europe 
    \begin{itemize}
    \item Goal: Increasing the capacity for innovation and production of new knowledge 
    \end{itemize}
    \end{itemize}
    
    \section{Conclusions}
    
    The paper describes the common procedures to be applied in the field of software lifecycle management, aimed at managing 
     the new releases and ensure  the quality of the provided solutions, services and components provided by the project.
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    In particular, the paper described the best practices to adopt in order to i) foster the quality and reliability of the software produced,
    ii) to define the processes and procedures regarding the software maintenance and support, iii) identify the services needed  
    to support the Software Quality Assurance, the Continuous Integration and the software release and maintenance
    and iv) define appropriate KPIs to monitor the project achievements.
    
    
    The experience gathered throughout this activity with regards to 
    
    The adoption of different DevOps practices is becaming mandatory for software development projects, 
    the experience gathered throughout this activity can be also applicable to the development and distribution of software products coming, for example, from the user communities and other software product activities.
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    \section*{Acknowledgments}
    DEEP-HybridDataCloud has been funded by the European Commission H2020 research and innovation program under grant agreement RIA 777435.
    eXtreme DataCloud has been funded by the European Commission H2020 research and innovation program under grant agreement RIA 777367.
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    \section{References} 
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    \begin{thebibliography}{}
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    \bibitem{xdc}
    Web site: www.extreme-datacloud.eu
    \bibitem{deep}
    Web site: www.deep-hybrid-datacloud.eu
    
    \bibitem{indigo}
    Web site: www.indigo-datacloud.eu
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    \bibitem{nagios}
    Web site: https://www.nagios.org
    \bibitem{newrelic}
    Web site: https://newrelic.com
    \bibitem{sensu}
    Web site: https://sensu.io
    \bibitem{R18}
    
    Lucia Morganti's avatar
    Lucia Morganti committed
    ISO/IEC 25010:2011, ``Systems and software engineering - Systems and software Quality Requirements and Evaluation (SQuaRE) - System and software quality models'': https://www.iso.org/standard/35733.html 
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    \bibitem{R22}
    A set of Common Software Quality Assurance Baseline Criteria for Research Projects, http://digital.csic.es/bitstream/10261/160086/4/CommonSQA-v2.pdf 
    \bibitem{R23}
    The Open Source Definition, https://opensource.org/osd
    \bibitem{R30}
    ISO/IEC 14764:2006 standard, https://www.iso.org/standard/39064.html
    
    Alessandro Costantini's avatar
    Alessandro Costantini committed
    
    \end{thebibliography}