Automated Capturing and Systematic Usage of DevOps Knowledge for Cloud Applications
|
|
|
- Barry York
- 10 years ago
- Views:
Transcription
1 Institute of Architecture of Application Systems Automated Capturing and Systematic Usage of for Cloud Applications Johannes Wettinger, Vasilios Andrikopoulos, Frank Leymann Institute of Architecture of Application Systems, University of Stuttgart, Germany {wettinger, andrikopoulos, author = {Johannes Wettinger and Vasilios Andrikopoulos and Frank Leymann}, title = {Automated Capturing and Systematic Usage of for Cloud Applications}, booktitle = {Proceedings of the IEEE International Conference on Cloud Engineering (IC2E)}, year = {2015}, pages = { }, publisher = {IEEE Computer Society} } 2015 IEEE Computer Society. Personal use of this material is permitted. However, permission to reprint/republish this material for advertising or promotional purposes or for creating new collective works for resale or redistribution to servers or lists, or to reuse any copyrighted component of this work in other works must be obtained from the IEEE.
2 Automated Capturing and Systematic Usage of for Cloud Applications Johannes Wettinger, Vasilios Andrikopoulos, Frank Leymann Institute of Architecture of Application Systems (IAAS) University of Stuttgart, Stuttgart, Germany {wettinger, andrikopoulos, Abstract is an emerging paradigm to actively foster the collaboration between system developers and operations in order to enable efficient end-to-end automation of software deployment and management processes. is typically combined with Cloud computing, which enables rapid, on-demand provisioning of underlying resources such as virtual servers, storage, or database instances using APIs in a self-service manner. Today, an ever-growing amount of tools, reusable artifacts such as scripts, and Cloud services are available to implement automation. Thus, informed decision making on the appropriate approach(es) for the needs of an application is hard. In this work we present a collaborative and holistic approach to capture in a base. Beside the ability to capture expert and utilize crowdsourcing approaches, we implemented a crawling framework to automatically and capture. Moreover, we show how this is utilized to deploy and operate Cloud applications. Keywords, Crawling, Management, Model, Cloud Computing I. INTRODUCTION AND PROBLEM STATEMENT Today, it is vital for many software vendors and providers, especially in the field of Web applications and software-asa-service (SaaS) applications to frequently and continuously roll out updates of an application. This is because users and customers expect new features and bug fixes to be available as quickly as possible. Consequently, a critical competitive advantage can be achieved by meeting these expectations and implementing mechanisms to drastically shorten application release cycles. Thorough and holistic automation is required to enable frequent and continuous software delivery [1]. is an emerging paradigm [2] [4] to eliminate the split and barrier between developers and operations personnel: is a mix of patterns intended to improve collaboration between development and operations. addresses shared goals and incentives as well as shared processes and tools. Because of the natural conflicts among different groups, shared goals and incentives may not always be achievable. However, they should at least be aligned with one another. [5] Tight collaboration between developers and operations () as well as holistic end-to-end automation (e.g., in the form of a fully automated deployment pipeline [1]) is required to enable continuous delivery. A huge and confusing variety of tools, reusable artifacts, and services are available today. Prominent examples are the Chef configuration management framework [6], the Jenkins 1 continuous integration server, and Docker 2 as an efficient container virtualization approach. The open-source communities affiliated with these tools are publicly sharing reusable artifacts to package, deploy, and operate middleware and application components. For instance, Chef s Ruby-based domain-specific language [7] can be used to create and maintain cookbooks, which are basically scripts to automate the deployment and wiring of different components of an application stack. Alternatively or additionally, Docker container images can be built to package certain components in an isolated and reusable manner. There are further tools and corresponding artifacts such as Juju 3 with Juju charms 4 and Puppet [8], [9] with Puppet modules 5 that can be used alternatively or complementary. approaches are typically combined with Cloud computing [10] to enable on-demand provisioning of resources such as virtual servers and storage in a self-service manner. Different interfaces are offered by Cloud providers (e.g., Amazon 6 ) such as graphical user interfaces, command line interfaces, and APIs to provision and manage these resources. Especially APIs and command line interfaces are an efficient means to integrate automation approaches with Cloud resource management programmatically. This can be done for public, private, and hybrid Cloud scenarios. As an example, Amazon s APIs can be utilized to provision virtual servers on which Chef cookbooks or Juju charms are executed to deploy a certain application stack. Moreover, some Cloud providers offer higherlevel services such as middleware services (e.g., runtime-as-aservice, database-as-a-service, etc.) and operations automation services, abstracting from the underlying infrastructure. These services can be used alternatively or complementary to the lower-level infrastructure services. Because automation approaches and Cloud services appear, change, and disappear rapidly, it is hard to choose the most appropriate solutions and combinations thereof to implement holistic automation for a specific application. Informed decision making is hard because of the huge variety of options. is practically available at large scale, but it is not systematically captured and managed. 1 Jenkins: 2 Docker: 3 Juju: 4 Juju charms: 5 Puppet modules: 6 Amazon EC2 documentation:
3 However, providing solutions for this management problem is of the utmost importance to end up with an efficient automation and collaboration process to enable continuous delivery. The major contributions of this paper can therefore be summarized by: A holistic approach toward systematic management. The design and implementation of a base and the tooling required to populate it. An automated crawling approach to and capture. The remainder of this paper is structured as follows: Section II outlines a motivating scenario that is used as running example for this paper. We present a holistic methodology to enable management in Section III. Because the base is the core of our methodology, Section IV discusses classification and a prototype implementation in detail. Section V discusses the utilization of based on specific requirements. Finally, Section VI concludes the paper. II. MOTIVATION As a motivating scenario and running example for our work we consider the deployment and operations requirements of WordPress 7, which is a popular open-source blog application. WordPress requires: (i) a database server version 5.0 or greater, (ii) a PHP runtime version or greater, and (iii) a Web server such as Apache HTTP Server 8 or Nginx 9. In order to enable continuous delivery of new versions of WordPress (bug fixes, new features, etc.), these requirements have to be considered when implementing an end-to-end automation and collaboration process. Figure 1 presents an overview of the middleware components required to run WordPress. Moreover, different deployment options are outlined to make these middleware components available to the application, satisfying WordPress requirements. As an example, an existing Amazon Machine Image (AMI) 10 could be used to run a complete LAMP 11 stack on a single virtual machine (VM) to operate WordPress. However, in this case resources are limited to a single VM, and as such scalability options are limited. Thus, open-source deployment scripts such as the cookbook 12 and the PHP application cookbook 13 (Chef) could be used to split the middleware across two VMs, running in a Linux or Windows VM. In case the scalability of the database server needs to be further improved, the charm 14 may be used as a set of operations scripts to run a database cluster in a master/slave setup: data that are written to the master instance are consistently replicated to the slave instances, so reading requests can be load-balanced between slave instances. However, 7 WordPress requirements: 8 Apache HTTP Server: 9 Nginx: 10 LAMP stack AMI: 11 LAMP = Linux + Apache + + PHP 12 cookbook: 13 PHP app. cookbook: php 14 charm: Could be deployed and hosted using Google App Engine, Amazon EC2, Apache/PHP, Figure 1. WordPress Application PHP Runtime Web Server Database Server Could be deployed and hosted using Google Cloud SQL, Amazon RDS, Chef,, Middleware components of WordPress and deployment alternatives there is a constraint: Juju charms can only be deployed on Ubuntu-based VMs. To go one step further and provide elastic middleware for WordPress to scale in and out dynamically and automatically depending on the current workload, solutions such as databaseas-a-service and runtime-as-a-service [11] offerings can be used instead of maintaining VMs. For instance, Amazon Elastic Beanstalk 15 and Google App Engine 16 provide PHP runtime environments transparently as a service without seeing or maintaining the underlying infrastructure such as VMs. Amazon Relational Database Service (RDS) 17 may be used as database-as-a-service to satisfy the requirement of WordPress. One downside of this elastic middleware-as-aservice approach is its limited configurability. For instance, a database hosted on a VM can be arbitrarily tuned and configured, whereas a database instance offered as a service only provides predefined configuration options 18. Therefore, even for an application with a few deployment and operations requirements such as WordPress, there exists a great variety of alternatives. Because of the individual benefits and drawbacks of each alternative, it becomes difficult for application designers to decide on how to easily and efficiently deploy their application. Thus, the major challenge we tackle with our work is how to systematically capture, link, and utilize as a foundation for informed decision making during application design and deployment. For this purpose, a methodology and system to collaboratively maintain and use the captured is required because different parties such as developers and operations personnel may be involved. The following section presents a holistic approach toward this goal. III. DEVOPS KNOWLEDGE MANAGEMENT METHODOLOGY When developing and operating applications such as WordPress, a large variety of alternatives exist in choosing appropriate infrastructure and middleware solutions to fulfill requirements. Figure 2 outlines our proposal for a holistic management approach with the goal to provide the means to systematically resolve requirements. More specifically, is currently spread across different sources in the form of unstructured and semi-structured data. Public repositories, for instance, provide semi-structured data in the form of reusable artifacts such as scripts, templates, and images (e.g., preconfigured VM images) to operate middleware and application components. Prominent 15 Amazon Elastic Beanstalk: 16 Google App Engine: 17 Amazon Relational Database Service (RDS): 18 Creating a DB instance on Amazon RDS:
4 Heroku, Google App Engine, Chef Server, fog, jclouds, Unstructured data: Services, tools, and/or rate Experts capture and link ad-hoc browsing and/or refine (rate, link, ) Developers & Operations define develop & operate Discover semi-structured Discover unstructured Optional: Rate ed Capture, refine, and link in base Semi-structured data: Scripts, templates, Chef Docker Repository Image Repository Crowd Crawlers Linked services, tools, and artifacts on different levels: Infrastructure, middleware, application query Web Shop Application Requirements May be distributed and composed of different stores (public, private, community, ) Figure 3. Deploy, operate, and monitor application Browse, query, and refine base to resolve requirements Methodology to manage and use Define and refine requirements for application Figure 2. Holistic management (overview) examples are the Chef cookbook repository 19, Puppet Forge 20, Docker Hub 21, and Amazon Web Services Marketplace 22. Crawlers can be used to such artifacts in an automated manner because the artifacts are annotated with meta data such as dependencies, categories, and input/output data specifications. Ratings associated with these artifacts may be ed by the crawlers, too. Discovering unstructured data in a fully automated manner is much more challenging because natural language processing techniques such as document classification [12] need to be utilized. These approaches do not always lead to correct results, so the resulting base may become inconsistent quickly. Thus, additional sources of input can be used to and rate. For instance, experts are able to analyze the documentation and sources of tools (Chef [6], Puppet [8], etc.) to operate middleware and application components, libraries (fog 23, jclouds 24, etc.) to manage Cloud resources, and services (Heroku 25, Google App Engine, etc.) to utilize middleware-as-a-service offerings. However, y performed by humans is not limited to experts. Crowdsourcing approaches [13] may be used alternatively or in a complementary fashion. As an example, the growing open-source community centered around tools and artifacts such as Chef, Puppet, Juju, and Docker may follow such an approach to systematically consolidate. The ed by crawlers, experts, and crowdsourcing efforts can then be captured, linked, and optionally refined in a (KB) in a collaborative manner. This KB covers different levels of resources such as provisioning libraries on the level of infrastructure, deployment scripts on the level of middleware, and templates on the level of application stacks. As shown in Figure 3, the y and capturing is meant to be continuously repeated to refine and update the KB. As shown in Figure 2 and Figure 3, developers and operations personnel define requirements for a particular 19 Chef cookbooks: 20 Puppet Forge: 21 Docker Hub: 22 Amazon Web Services Marketplace: 23 fog: 24 jclouds: 25 Heroku: application (e.g., WordPress requires and PHP, as discussed in Section II). These requirements can be used to query against the KB to find viable options to resolve the requirements. Alternatively, the KB may be browsed, for instance, to get an impression what options are available to host a database. Then, the requirements of a particular application may be refined accordingly. Moreover, the base can be updated, e.g., by adding deployment scripts for new middleware components required by an application. All these tasks are performed to eventually resolve the requirements of an application in order to deploy and operate it. By end-to-end monitoring the application, occurring issues on different levels can be identified. For example, if there are problems with a certain middleware component, its requirements may have to be refined and adapted. As such, the proposed approach promotes the continuous and iterative accumulation, organization, and utilization of over the lifetime of applications. IV. DEVOPS KNOWLEDGEBASE In the previous section we proposed a methodology to enable holistic management. The KB is the central component to implement a collaborative management system. Collaboration based on the KB is not limited to the efficient collaboration between developers and operations personnel. It further includes the collaborative y and capturing of by experts, crawlers, and crowdsourcing. In this section we focus on the conceptual structure of the KB to enable collaborative management as discussed in the previous section. Technically, the KB may be composed of multiple, possibly distributed stores. For instance, there could be public stores that are maintained by open-source communities. These stores may be focused on artifacts of certain kinds such as Chef cookbooks and Docker images. Private stores may be maintained by companies or departments for that is either very specific and/or is not meant to be available outside the scope of one organization. Consequently, the actual KB is a composition of multiple public and/or private stores. A. Classification In order to classify existing tools, artifacts, and services in a systematic way, we propose a set of base taxonomies to categorize abstract entities and implementations.
5 Java Figure 4. Abstract Entity Runtime PHP PHP App. PHP on Google App Engine PHP on Elastic Beanstalk Apache/PHP Implementation Web Server Apache HTTP Server Middleware LAMP AMI LAMP Charm LAMP LAMP Cloud- Form. Tpl. Middleware taxonomy Database Graphbased Relational Messaging on RDS Charm More specifically, is organized around middleware, infrastructure, providers, and automation tooling. Figure 4 presents an extract of our middleware taxonomy classifying different kinds of middleware such as runtimes, Web servers, and databases. These are captured as abstract entities, whereas implementations such as PHP application cookbook, LAMP, and charm can be instantiated to resolve specific requirements. This middleware taxonomy is based on the middleware categorizations of Cloud providers and tooling providers such as Heroku 26, Google 27, IBM Bluemix 28, and Chef 29. In addition, an infrastructure taxonomy providing categorized infrastructure implementations is required to define dependencies for middleware implementations that are not offered as a service. For instance, the cookbook middleware implementation requires an operating system such as Ubuntu or Amazon Linux to be hosted on, whereas on RDS can be used as a service provided by Amazon RDS without having to resolve further infrastructure requirements. Middleware implementations may not only require infrastructure implementations. Additional tooling may be required by middleware implementations such as operations tools (e.g. Chef, Docker, Juju, etc.). Moreover, tooling to build, test, and integrate middleware and application components may be part of the requirements for a particular application. All these supporting tools covering both development and operations, as well as integration aspects are categorized using an additional ware taxonomy. Some middleware implementations are offered as a service by certain providers such as on RDS. An additional provider taxonomy to classify provider implementations such as RDS offered by Amazon. These provider implementations are linked to the service implementations in the middleware taxonomy to define, for instance, that on RDS is hosted on RDS. To capture such relations between implementations (hosted on, requires, etc.) and further characteristics in the 26 Heroku add-ons: 27 App Engine features: 28 IBM Bluemix services: 29 Chef cookbooks: Implementation PHP Application PHP on Google App Engine Apache/PHP on RDS Charm Properties ELASTIC SCALING SCALING = ware / Operations / Chef AND Middleware / Web Server / Apache AND = Infrastructure / OS / Linux / Ubuntu XOR Infrastructure / OS / Linux / RHEL XOR = Provider / Google / App Engine = TRUE = ware / Operations / Docker = Infrastructure / OS / Linux / Ubuntu XOR = Provider / Amazon / RDS = MASTER-SLAVE = ware / Operations / Chef AND = Infrastructure / OS / Linux / Ubuntu XOR = ware / Operations / Juju = Infrastructure / OS / Linux / Ubuntu = MASTER-SLAVE LAMP AMI = Provider / Amazon / EC2 LAMP Cloud- Formation Tpl. Ubuntu Server bit AMI OpsWorks Figure 5. REPLACES INT_WITH = Provider / Amazon / CloudFormation = Provider / Amazon / EC2 AND Provider / Amazon / RDS = Provider / Amazon / EC2 Properties of implementations = ware / Operations / Chef = Provider / Amazon / EC2 AND Provider / Amazon / RDS base, properties are added as annotations to implementations. In the following we present an initial set of properties to annotate implementations: HOSTED ON refers to one or more entities, either infrastructure or provider entities, on which this implementation can be hosted on. For instance, the cookbook may be hosted on Ubuntu, Amazon Linux, or Red Hat Enterprise Linux (RHEL). refers to one or more entities, most likely ware entities, that are needed to operate this implementation. For instance, the cookook requires Chef. REPLACES refers to one or more entities that can be replaced by this entity. For instance, Amazon OpsWorks can be used to replace a Chef server. INT WITH refers to one or more entities that are integrated with this entity. For instance, Amazon OpsWorks is integrated with Amazon RDS. VERSIONS defines one or more tuples to express which versions of this implementation are supported. For instance, a implementation supporting two versions: (, 5.5 ), (, 5.1 ). SCALING defines the scaling mode (e.g., cluster, masterslave, etc.) of this implementation if scaling is supported at all. ELASTIC defines whether this implementation is elastic, meaning if it scales automatically and dynamically depending on the current load. Figure 5 provides examples of properties for several implementations of different types. For instance, two of the four listed implementations support scaling in a masterslave manner, meaning additional slave instances can be added
6 Chef Repository Unstructured data Google App Engine Amazon Web Services Juju Charm Repository Semi-structured data Figure 6. capture and link Experts Crawler Amazon Google Chef Juju Overview of prototype implementation build and render consolidated base Builder Renderer as replicas to load-balance read requests between them; the other two do not support scaling. Considering implementations of a PHP runtime, some of them are elastic, whereas others do not have any scaling capabilities. Furthermore, some implementations are bound to certain providers such as PHP on Google App Engine or LAMP AMI; others only have to be hosted on certain operating systems that may run on arbitrary VMs at any provider or even on-premise. Additional properties may be defined to further characterize implementations. As an example, runtime-as-a-service offerings such as PHP on Google App Engine do not always provide unlimited filesystem access. Moreover, files stored in the filesystem may not be persistent. Such information can be captured using properties because application components may rely on corresponding features depending on their architecture and design. B. KB Prototype Implementation An overview of our prototype implementation of a KB is presented in Figure 6, following the methodology proposed in Section III and the classification discussed in the previous. More specifically, we have ed and systematically captured unstructured data from documentations and feature descriptions of Google App Engine and Amazon Web Services in corresponding stores. Currently, each store is represented as a single YAML 30 file stored in a Git repository. Based on the provider taxonomy discussed in the previous Section IV-A, we captured infrastructure and middleware implementations offered by these two providers. We then categorized these implementations based on the infrastructure and middleware taxonomies outlined before. Furthermore, we implemented a crawling framework to automatically semi-structured data such as reusable scripts and configuration definitions such as Chef cookbooks from public repositories. Corresponding stores are automatically generated by the crawler as shown in Figure 6. In order to eventually build and render a consolidated, interlinked base we implemented a base builder as a Node.js 31 module to merge individual stores. This is done by reading the contents of all stores and merging it into a hierarchically structured database. The technical foundation could be a single file rendered in JSON, XML, or YAML as it is implemented 30 YAML Ain t Markup Language: 31 Node.js: in our first prototype. But it could also be based on a database server such as a graph-based database server 32 or a relational database server to use and implement more efficient query mechanisms. The resulting KB currently holds roughly 4000 implementations, including 1430 Chef cookbooks, 2190 Puppet modules, and 278 Juju charms captured as middleware implementations by the crawling framework; the rest are additional implementations of types infrastructure, provider, and middleware derived from provider offerings as well as ware implementations. Finally, we implemented a base renderer as a Node.js module to render the base in different formats such as JSON, YAML, and XML. This eases the usage of the base in very different contexts. Both the base builder and the renderer can be used programmatically and through a command line interface. V. DEVOPS KNOWLEDGE UTILIZATION In order to logically specify requirements for an application such as WordPress as outlined in Section II, predicates can be defined and combined in the form of Boolean expressions. These expressions can then be utilized as queries against the KB. Let s assume E is the domain of all entities captured in the taxonomies that are part of our KB. The predicate P requires : E {true, false} then assigns each entity (abstract entity or implementation) a Boolean value. The P requires predicate returns true if the given entity is an implementation or there is at least one implementation that inherits from the given entity; otherwise it returns false. In addition to E, let s assume P is the domain of all properties and V is the domain of all property values; the predicate P propertyeq : E P V {true, false} then assigns each combination of an entity, a property, and a property value a Boolean value. The P propertyeq predicate returns true if the given entity owns the given property with the given value (in the KB), or there is at least one entity with the given property and value that inherits from the given entity; otherwise it returns f alse. The predicate P propertyeqgr : E P V {true, false} is very similar to P propertyeq but it also returns true if the actual property value is greater than the given value. For instance, this predicate can be used to express version dependencies in the sense of a particular version or greater is required. The predicates P propertyeq and P propertyeqgr implicitly cover the P requires predicate because if a certain property of an entity needs to be equal to or greater than a given value, the entity itself is obviously required. As an example, we could use the expression P requires ( Middleware/DB/.../ ) to specify the need for a database in our application stack. In case we require specific versions, we can go with a refined expression such as P propertyeqgr ( Middleware/DB/.../, versions, 5.0 ). Beside expressing application-specific requirements an organization may enforce further constraints that are valid independent of a specific application. Such constraints, as shown by the following examples, can be expressed as additional requirements: (i) has to be hosted on an Ubuntu VM; (ii) operating any component on Amazon is forbidden; (iii) using Chef for deployment is forbidden. 32 Neo4j graph database:
7 Additional predicates may have to be defined to cover such requirements. For instance, we have to define the predicate P excludes : E {true, false} to express that we do not allow Amazon to be involved in any application stack that we operate: P excludes ( Provider/Amazon ). Such expressions can be merged with application-specific requirements as outlined before, to get a consolidated Boolean expression to be used as a query against the KB. We use the standardized Web Services Policy Framework (WS-Policy) [14] to render expressions as policies and merge such expressions. Finally, merged expressions can be transformed to WS-Policy normal form (basically a disjunctive normal form) to ease the processing of corresponding expressions and their usage for query purposes. As an example for the WordPress application discussed in Section II we can express its minimum requirements as: W ordp ress minimum = P propertyeqgr ( Middleware/DB/.../, versions, 5.0 ) P propertyeqgr ( Middleware/Runtime/PHP, versions, ) P requires ( Middleware/Web Server ) The W ordp ress minimum expression can then be evaluated against the KB to see whether there are appropriate implementations to operate WordPress. Moreover, the expression is used to derive possibly multiple alternatives and combinations to operate the application based on the implementations captured in the base. A few examples drawn from the prototype implementation discussed in Section IV-B are: 1) LAMP AMI (middleware) hosted on Amazon EC2 (provider). 2) LAMP charm (middleware) hosted on Ubuntu (infrastructure) hosted on Amazon EC2 (provider). 3) PHP application cookbook (middleware) hosted on Ubuntu (infrastructure) hosted on Amazon EC2 (provider) & charm (middleware) hosted on Ubuntu (infrastructure) hosted on Amazon EC2 (provider). 4) PHP on Elastic Beanstalk (middleware) hosted on Amazon Elastic Beanstalk (provider) & on RDS (middleware) hosted on Amazon RDS (provider). 5) PHP on Google App Engine (middleware) hosted on Google App Engine (provider) & charm (middleware) hosted on Ubuntu (infrastructure) hosted on Amazon EC2 (provider). These are just several selected examples how the WordPress application can be deployed and operated. The requirements can be refined to limit the alternatives by additional constraints, e.g., by requiring a scalable implementation: W ordp ress scalabledb = P propertyeqgr ( Middleware/DB/.../, versions, 5.0 ) ( P propertyeq ( Middleware/.../, scaling, master-slave ) P propertyeq ( Middleware/.../, scaling, cluster ) )... Similarly, expressions can be further refined by adding constraints such as P propertyeq ( Middleware/Runtime/PHP, elastic, true) and P excludes ( Provider/Amazon ). These expressions are then rendered, merged, and normalized using WS-Policy to be used as queries against the KB. VI. CONCLUSION The paradigm is rising in prominence in contemporary information systems as the means for efficient, seamless end-to-end automated software management. The combination of approaches with Cloud computing solutions enables the rapid provisioning of infrastructure resources on demand. An ever expanding wealth of existing reusable artifacts and related Cloud services means that application designers and developers have ample opportunities for putting tried and tested into practice. However, deciding how to use this is hindered by the multitude of existing approaches, the scattering of between different communities and experts, and the width of the available design space in application design. In order to address the need for informed decision making, in the previous sections we presented our proposal for a holistic management methodology. More specifically, we identified a set of sources that can be (publicly) accessed, and the means to harvest the that is contained in these sources. This can be done in an automated manner based on our crawling approach. Finally, we discussed how to reflect, organize, store, and utilize the using a base, predicate logic, and WS-Policy. Future work includes the improvement of the management approach by populating the KB with more offerings from Cloud providers, the evaluation of crawling techniques for the automatic capturing of such offerings, e.g., based on the providers API documentations, and finally, we aim to enable the automated generation of alternative application topologies based on our previous research [15]. ACKNOWLEDGMENT This work is partially funded by the FP7 EU-FET project ALLOW Ensembles. REFERENCES [1] J. Humble and D. Farley, Continuous Delivery: Reliable Software Releases through Build, Test, and Deployment Automation. Addison- Wesley Professional, [2] J. Humble and J. Molesky, Why Enterprises Must Adopt Devops to Enable Continuous Delivery, Cutter IT Journal, vol. 24, [3] M. Walls, Building a Culture. O Reilly Media, Inc., [4] J. Wettinger, U. Breitenbücher, and F. Leymann, DevOpSlang - Bridging the Gap Between Development and Operations, in Proceedings of the 3rd European Conference on Service-Oriented and Cloud Computing (ESOCC), [5] M. Hüttermann, for Developers. Apress, [6] S. Nelson-Smith, Test-Driven Infrastructure with Chef. O Reilly Media, Inc., [7] S. Günther, M. Haupt, and M. Splieth, Utilizing Internal Domain- Specific Languages for Deployment and Maintenance of IT Infrastructures, Very Large Business Applications Lab Magdeburg, Fakultät für Informatik, Otto-von-Guericke-Universität Magdeburg, Tech. Rep., [8] J. Turnbull and J. McCune, Pro Puppet. Apress, [9] T. Uphill, Mastering Puppet. Packt Publishing Ltd, [10] P. Mell and T. Grance, The NIST Definition of Cloud Computing, National Institute of Standards and Technology, [11] S. Kächele, F. J. Hauck, C. Spann, and J. Domaschka, Beyond IaaS and PaaS: An Extended Cloud Taxonomy for Computation, Storage and Networking, [12] P. Trinkle, An Introduction to Unsupervised Document Classification, [13] S. Dustdar and K. Bhattacharya, The Social Compute Unit, Internet Computing, IEEE, vol. 15, no. 3, pp , [14] W3C, Web Services Policy Framework (WS-Policy), Version 1.5, [15] V. Andrikopoulos, S. G. Sáez, F. Leymann, and J. Wettinger, Optimal Distribution of Applications in the Cloud, in Proceedings of the 26th Conference on Advanced Information Systems Engineering (CAiSE), ser. LNCS. Springer, 2014, pp
DevOpSlang - Bridging the Gap Between Development and Operations
Institute of Architecture of Application Systems DevOpSlang - Bridging the Gap Between Development and Operations Johannes Wettinger, Uwe Breitenbücher, Frank Leymann Institute of Architecture of Application
Integrating Configuration Management with Model-Driven Cloud Management Based on TOSCA
Institute of Architecture of Application Systems Integrating Configuration Management with Model-Driven Cloud Management Based on TOSCA Johannes Wettinger, Michael Behrendt, Tobias Binz, Uwe Breitenbücher,
Characterizing and Evaluating Different Deployment Approaches for Cloud Applications
Institute of Architecture of Application Systems Characterizing and Evaluating Different Deployment Approaches for Cloud Applications Johannes Wettinger, Vasilios Andrikopoulos, Steve Strauch, Frank Leymann
Winery A Modeling Tool for TOSCA-based Cloud Applications
Institute of Architecture of Application Systems Winery A Modeling Tool for TOSCA-based Cloud Applications Oliver Kopp 1,2, Tobias Binz 2, Uwe Breitenbücher 2, and Frank Leymann 2 1 IPVS, 2 IAAS, University
Compensation-based vs. Convergent Deployment Automation for Services Operated in the Cloud
Institute of Architecture of Application Systems Compensation-based vs. Convergent Deployment Automation for Services Operated in the Cloud Johannes Wettinger, Uwe Breitenbücher, Frank Leymann Institute
CMotion: A Framework for Migration of Applications into and between Clouds
Institute of Architecture of Application Systems CMotion: A Framework for Migration of Applications into and between Clouds Tobias Binz, Frank Leymann, David Schumm Institute of Architecture of Application
JAVA IN THE CLOUD PAAS PLATFORM IN COMPARISON
JAVA IN THE CLOUD PAAS PLATFORM IN COMPARISON Eberhard Wolff Architecture and Technology Manager adesso AG, Germany 12.10. Agenda A Few Words About Cloud Java and IaaS PaaS Platform as a Service Google
Portable Cloud Services Using TOSCA
Institute of Architecture of Application Systems Portable Cloud Services Using TOSCA Tobias Binz, Gerd Breiter, Frank Leymann, and Thomas Spatzier Institute of Architecture of Application Systems, University
Integrated Cloud Application Provisioning: Script-centric Management Technologies
Integrated Cloud Application Provisioning: Interconnecting Service-centric and Script-centric Management Technologies Uwe Breitenbücher 1, Tobias Binz 1, Oliver Kopp 1,2, Frank Leymann 1, and Johannes
APP DEVELOPMENT ON THE CLOUD MADE EASY WITH PAAS
APP DEVELOPMENT ON THE CLOUD MADE EASY WITH PAAS This article looks into the benefits of using the Platform as a Service paradigm to develop applications on the cloud. It also compares a few top PaaS providers
C2C: An Automated Deployment Framework for Distributed Applications on Multi-Clouds
C2C: An Automated Deployment Framework for Distributed Applications on Multi-Clouds Flora Karniavoura, Antonis Papaioannou, and Kostas Magoutis Institute of Computer Science (ICS) Foundation for Research
CLOUD COMPUTING An Overview
CLOUD COMPUTING An Overview Abstract Resource sharing in a pure plug and play model that dramatically simplifies infrastructure planning is the promise of cloud computing. The two key advantages of this
Overview. The Cloud. Characteristics and usage of the cloud Realities and risks of the cloud
Overview The purpose of this paper is to introduce the reader to the basics of cloud computing or the cloud with the aim of introducing the following aspects: Characteristics and usage of the cloud Realities
Introduction to DevOps on AWS
Introduction to DevOps on AWS David Chapman December 2014 Contents Contents Abstract Introduction Agile Evolution to DevOps Infrastructure as Code AWS CloudFormation AWS AMI Continuous Deployment AWS CodeDeploy
Planning, Provisioning and Deploying Enterprise Clouds with Oracle Enterprise Manager 12c Kevin Patterson, Principal Sales Consultant, Enterprise
Planning, Provisioning and Deploying Enterprise Clouds with Oracle Enterprise Manager 12c Kevin Patterson, Principal Sales Consultant, Enterprise Manager Oracle NIST Definition of Cloud Computing Cloud
Cloud computing - Architecting in the cloud
Cloud computing - Architecting in the cloud [email protected] 1 Outline Cloud computing What is? Levels of cloud computing: IaaS, PaaS, SaaS Moving to the cloud? Architecting in the cloud Best practices
Combining Declarative and Imperative Cloud Application Provisioning based on TOSCA
Institute of Architecture of Application Systems Combining Declarative and Imperative Cloud Application Provisioning based on TOSCA Uwe Breitenbücher, Tobias Binz, Kálmán Képes, Oliver Kopp, Frank Leymann,
Java PaaS Enabling CI, CD, and DevOps
Java PaaS Enabling CI, CD, and DevOps AuthX Overview Who We Are? Digital Engagement Company offering Technical and Marketing Services with proven success supporting Fortune 1000 companies. We partner with
The Virtualization Practice
The Virtualization Practice White Paper: Managing Applications in Docker Containers Bernd Harzog Analyst Virtualization and Cloud Performance Management October 2014 Abstract Docker has captured the attention
Automatic Topology Completion of TOSCA-based Cloud Applications
Automatic Topology Completion of TOSCA-based Cloud Applications Pascal Hirmer 1, Uwe Breitenbücher 2, Tobias Binz 2, Frank Leymann 2 [email protected] 1 Institute for Parallel and Distributed
TOSCA Interoperability Demonstration
Topology and Orchestration Specification for Cloud Applications (TOSCA) Standard TOSCA Interoperability Demonstration Participating Companies: Join the TOSCA Technical Committee www.oasis-open.org, [email protected]
Cloud Computing: Making the right choices
Cloud Computing: Making the right choices Kalpak Shah Clogeny Technologies Pvt Ltd 1 About Me Kalpak Shah Founder & CEO, Clogeny Technologies Passionate about economics and technology evolving through
Cloud Hosting. QCLUG presentation - Aaron Johnson. Amazon AWS Heroku OpenShift
Cloud Hosting QCLUG presentation - Aaron Johnson Amazon AWS Heroku OpenShift What is Cloud Hosting? According to the Wikipedia - 2/13 Cloud computing, or in simpler shorthand just "the cloud", focuses
Bridge Development and Operations for faster delivery of applications
Technical white paper Bridge Development and Operations for faster delivery of applications HP Continuous Delivery Automation software Table of contents Application lifecycle in the current business scenario
Sistemi Operativi e Reti. Cloud Computing
1 Sistemi Operativi e Reti Cloud Computing Facoltà di Scienze Matematiche Fisiche e Naturali Corso di Laurea Magistrale in Informatica Osvaldo Gervasi [email protected] 2 Introduction Technologies
How To Compare Cloud Computing To Cloud Platforms And Cloud Computing
Volume 3, Issue 11, November 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Cloud Platforms
Build A private PaaS. www.redhat.com
Build A private PaaS WITH Red Hat CloudForms and JBoss Enterprise Middleware www.redhat.com Introduction Platform-as-a-service (PaaS) is a cloud service model that provides consumers 1 with services for
Open Source Multi-Cloud, Multi- Tenant Automation in the cloud with SlipStream PaaS
Open Source Multi-Cloud, Multi- Tenant Automation in the cloud with SlipStream PaaS A professional open source solution Robert Branchat, SixSq 5 July 2014 Lyon, France Based in Geneva, Switzerland Founded
SERVICE-ORIENTED MODELING FRAMEWORK (SOMF ) SERVICE-ORIENTED SOFTWARE ARCHITECTURE MODEL LANGUAGE SPECIFICATIONS
SERVICE-ORIENTED MODELING FRAMEWORK (SOMF ) VERSION 2.1 SERVICE-ORIENTED SOFTWARE ARCHITECTURE MODEL LANGUAGE SPECIFICATIONS 1 TABLE OF CONTENTS INTRODUCTION... 3 About The Service-Oriented Modeling Framework
RED HAT CLOUDFORMS ENTERPRISE- GRADE MANAGEMENT FOR AMAZON WEB SERVICES
TECHNOLOGY DETAIL RED HAT CLOUDFORMS ENTERPRISE- GRADE MANAGEMENT FOR AMAZON WEB SERVICES ABSTRACT Do you want to use public clouds like Amazon Web Services (AWS) to flexibly extend your datacenter capacity,
CloudCenter Full Lifecycle Management. An application-defined approach to deploying and managing applications in any datacenter or cloud environment
CloudCenter Full Lifecycle Management An application-defined approach to deploying and managing applications in any datacenter or cloud environment CloudCenter Full Lifecycle Management Page 2 Table of
A Complete Open Cloud Storage, Virt, IaaS, PaaS. Dave Neary Open Source and Standards, Red Hat
A Complete Open Cloud Storage, Virt, IaaS, PaaS Dave Neary Open Source and Standards, Red Hat 1 Agenda 1. Traditional virtualization 2. The move to IaaS 3. Storage 4. PaaS, application encapsulation and
Outlook. Corporate Research and Technologies, Munich, Germany. 20 th May 2010
Computing Architecture Computing Introduction Computing Architecture Software Architecture for Outlook Corporate Research and Technologies, Munich, Germany Gerald Kaefer * 4 th Generation Datacenter IEEE
McAfee Public Cloud Server Security Suite
Installation Guide McAfee Public Cloud Server Security Suite For use with McAfee epolicy Orchestrator COPYRIGHT Copyright 2015 McAfee, Inc., 2821 Mission College Boulevard, Santa Clara, CA 95054, 1.888.847.8766,
How To Understand Cloud Computing
Overview of Cloud Computing (ENCS 691K Chapter 1) Roch Glitho, PhD Associate Professor and Canada Research Chair My URL - http://users.encs.concordia.ca/~glitho/ Overview of Cloud Computing Towards a definition
Alfresco Enterprise on AWS: Reference Architecture
Alfresco Enterprise on AWS: Reference Architecture October 2013 (Please consult http://aws.amazon.com/whitepapers/ for the latest version of this paper) Page 1 of 13 Abstract Amazon Web Services (AWS)
Plan for Success with a Hybrid Cloud! Thanks to IBM Power Systems OpenStack SoftLayer and UrbanCode
Plan for Success with a Hybrid Cloud! Thanks to IBM Power Systems OpenStack SoftLayer and UrbanCode Please check-in to this session Guilhaume Garcia Pre-Sales Architect hybrid cloud IBM France fr.linkedin.com/in/guilhaumegarcia
Design Support for Performance Aware Dynamic Application (Re-)Distribution in the Cloud
Institute of Architecture of Systems Design Support for Performance Aware Dynamic (Re-)Distribution in the Cloud Santiago Gómez Sáez, Vasilios Andrikopoulos, Frank Leymann, Steve Strauch Institute of Architecture
zen Platform technical white paper
zen Platform technical white paper The zen Platform as Strategic Business Platform The increasing use of application servers as standard paradigm for the development of business critical applications meant
Clearing the Fog: Understanding z Systems Cloud Technology Options
Clearing the Fog: Understanding z Systems Cloud Technology Options Glenn Anderson IBM Lab Services and Training NewEra z Exchange March, 2016 Copyright IBM Corporation 2016. Technical University/Symposia
Cloud Computing Architecture: A Survey
Cloud Computing Architecture: A Survey Abstract Now a day s Cloud computing is a complex and very rapidly evolving and emerging area that affects IT infrastructure, network services, data management and
Last time. Today. IaaS Providers. Amazon Web Services, overview
Last time General overview, motivation, expected outcomes, other formalities, etc. Please register for course Online (if possible), or talk to Yvonne@CS Course evaluation forgotten Please assign one volunteer
Cloud Computing For Distributed University Campus: A Prototype Suggestion
Cloud Computing For Distributed University Campus: A Prototype Suggestion Mehmet Fatih Erkoç, Serhat Bahadir Kert [email protected], [email protected] Yildiz Technical University (Turkey) Abstract
Oracle Database Cloud
Oracle Database Cloud Shakeeb Rahman Database Cloud Service Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may
The Total Newbie s Introduction to Heat Orchestration in OpenStack
Tutorial The Total Newbie s Introduction to Heat Orchestration in OpenStack OpenStack is undeniably becoming part of the mainstream cloud computing world. It is emerging as the new standard for private
DevOps Course Content
DevOps Course Content INTRODUCTION TO DEVOPS What is DevOps? History of DevOps Dev and Ops DevOps definitions DevOps and Software Development Life Cycle DevOps main objectives Infrastructure As A Code
Cloud Models and Platforms
Cloud Models and Platforms Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF A Working Definition of Cloud Computing Cloud computing is a model
AppStack Technology Overview Model-Driven Application Management for the Cloud
AppStack Technology Overview Model-Driven Application Management for the Cloud Accelerating Application Time-to-Market The last several years have seen a rapid adoption for public and private cloud infrastructure
Cloud Computing Services and its Application
Advance in Electronic and Electric Engineering. ISSN 2231-1297, Volume 4, Number 1 (2014), pp. 107-112 Research India Publications http://www.ripublication.com/aeee.htm Cloud Computing Services and its
How To Set Up Wiremock In Anhtml.Com On A Testnet On A Linux Server On A Microsoft Powerbook 2.5 (Powerbook) On A Powerbook 1.5 On A Macbook 2 (Powerbooks)
The Journey of Testing with Stubs and Proxies in AWS Lucy Chang [email protected] Abstract Intuit, a leader in small business and accountants software, is a strong AWS(Amazon Web Services) partner
A Gentle Introduction to Cloud Computing
A Gentle Introduction to Cloud Computing Source: Wikipedia Platform Computing, Inc. Platform Clusters, Grids, Clouds, Whatever Computing The leader in managing large scale shared environments o 18 years
IDC MarketScape: Worldwide Public Deployment-Centric Cloud Application Platform 2015 Vendor Assessment
IDC MarketScape IDC MarketScape: Worldwide Public Deployment-Centric Cloud Application Platform 2015 Vendor Assessment Larry Carvalho Al Hilwa Jeff Silverstein Maureen Fleming Robert P. Mahowald THIS IDC
Cisco Intelligent Automation for Cloud
Product Data Sheet Cisco Intelligent Automation for Cloud Early adopters of cloud-based service delivery were seeking additional cost savings beyond those achieved with server virtualization and abstraction.
ArcGIS for Server: In the Cloud
DevSummit DC February 11, 2015 Washington, DC ArcGIS for Server: In the Cloud Bonnie Stayer, Esri Session Outline Cloud Overview - Benefits - Types of clouds ArcGIS in AWS - Cloud Builder - Maintenance
Private Cloud for WebSphere Virtual Enterprise Application Hosting
Private Cloud for WebSphere Virtual Enterprise Application Hosting Tracy Smith Nationwide Insurance February 7, 2013 Session Number 12884 www.linkedin.com/in/tracysmith2 [email protected] Private
2) Xen Hypervisor 3) UEC
5. Implementation Implementation of the trust model requires first preparing a test bed. It is a cloud computing environment that is required as the first step towards the implementation. Various tools
How AWS Pricing Works May 2015
How AWS Pricing Works May 2015 (Please consult http://aws.amazon.com/whitepapers/ for the latest version of this paper) Page 1 of 15 Table of Contents Table of Contents... 2 Abstract... 3 Introduction...
CUMULUX WHICH CLOUD PLATFORM IS RIGHT FOR YOU? COMPARING CLOUD PLATFORMS. Review Business and Technology Series www.cumulux.com
` CUMULUX WHICH CLOUD PLATFORM IS RIGHT FOR YOU? COMPARING CLOUD PLATFORMS Review Business and Technology Series www.cumulux.com Table of Contents Cloud Computing Model...2 Impact on IT Management and
Public Cloud Offerings and Private Cloud Options. Week 2 Lecture 4. M. Ali Babar
Public Cloud Offerings and Private Cloud Options Week 2 Lecture 4 M. Ali Babar Lecture Outline Public and private clouds Some key public cloud providers (More details in the lab) Private clouds Main Aspects
White Paper Take Control of Datacenter Infrastructure
Take Control of Datacenter Infrastructure Uniting the Governance of a Single System of Record with Powerful Automation Tools Take Control of Datacenter Infrastructure A new breed of infrastructure automation
How AWS Pricing Works
How AWS Pricing Works (Please consult http://aws.amazon.com/whitepapers/ for the latest version of this paper) Page 1 of 15 Table of Contents Table of Contents... 2 Abstract... 3 Introduction... 3 Fundamental
PERFORMANCE ANALYSIS OF KERNEL-BASED VIRTUAL MACHINE
PERFORMANCE ANALYSIS OF KERNEL-BASED VIRTUAL MACHINE Sudha M 1, Harish G M 2, Nandan A 3, Usha J 4 1 Department of MCA, R V College of Engineering, Bangalore : 560059, India [email protected] 2 Department
An Introduction to Cloud Computing Concepts
Software Engineering Competence Center TUTORIAL An Introduction to Cloud Computing Concepts Practical Steps for Using Amazon EC2 IaaS Technology Ahmed Mohamed Gamaleldin Senior R&D Engineer-SECC [email protected]
Azure Day Application Development
Azure Day Application Development Randy Pagels Developer Technology Specialist Tim Adams Developer Solutions Specialist Azure App Service.NET, Java, Node.js, PHP, Python Auto patching Auto scale Integration
A Study on Service Oriented Network Virtualization convergence of Cloud Computing
A Study on Service Oriented Network Virtualization convergence of Cloud Computing 1 Kajjam Vinay Kumar, 2 SANTHOSH BODDUPALLI 1 Scholar(M.Tech),Department of Computer Science Engineering, Brilliant Institute
EMC IT AUTOMATES ENTERPRISE PLATFORM AS A SERVICE
EMC IT AUTOMATES ENTERPRISE PLATFORM AS A SERVICE Self-service portal delivers ready-to-use development platform in less than one hour Application developers order from online catalog with just a few clicks
Networks and Services
Networks and Services Dr. Mohamed Abdelwahab Saleh IET-Networks, GUC Fall 2015 TOC 1 Infrastructure as a Service 2 Platform as a Service 3 Software as a Service Infrastructure as a Service Definition Infrastructure
Cloud Computing & Service Oriented Architecture An Overview
Cloud Computing & Service Oriented Architecture An Overview Sumantra Sarkar Georgia State University Robinson College of Business November 29 & 30, 2010 MBA 8125 Fall 2010 Agenda Cloud Computing Definition
1 What is Cloud Computing?... 2 2 Cloud Infrastructures... 2 2.1 OpenStack... 2 2.2 Amazon EC2... 4 3 CAMF... 5 3.1 Cloud Application Management
1 What is Cloud Computing?... 2 2 Cloud Infrastructures... 2 2.1 OpenStack... 2 2.2 Amazon EC2... 4 3 CAMF... 5 3.1 Cloud Application Management Frameworks... 5 3.2 CAMF Framework for Eclipse... 5 3.2.1
Scalable Architecture on Amazon AWS Cloud
Scalable Architecture on Amazon AWS Cloud Kalpak Shah Founder & CEO, Clogeny Technologies [email protected] 1 * http://www.rightscale.com/products/cloud-computing-uses/scalable-website.php 2 Architect
DISTRIBUTED SYSTEMS [COMP9243] Lecture 9a: Cloud Computing WHAT IS CLOUD COMPUTING? 2
DISTRIBUTED SYSTEMS [COMP9243] Lecture 9a: Cloud Computing Slide 1 Slide 3 A style of computing in which dynamically scalable and often virtualized resources are provided as a service over the Internet.
A Collection of Patterns for Cloud Types, Cloud Service Models, and Cloud-based Application Architectures
Universität Stuttgart Fakultät Informatik, Elektrotechnik und Informationstechnik A Collection of Patterns for Cloud Types, Cloud Service Models, and Cloud-based Application Architectures Christoph Fehling
Available online at http://acfa.apeejay.edu APEEJAY JOURNAL OF COMPUTER SCIENCE AND APPLICATIONS ISSN: 0974-5742(P)
COMPARATIVE ANALYSIS OF VARIOUS CLOUD TECHNOLOGIES Harmandeep Singh P.hd Research Scholar, Punjab Technical University, Jallandhar-Kapurtahla Highway, Kapurthala-144601(Punjab), INDIA Abstract With the
Logentries Insights: The State of Log Management & Analytics for AWS
Logentries Insights: The State of Log Management & Analytics for AWS Trevor Parsons Ph.D Co-founder & Chief Scientist Logentries 1 1. Introduction The Log Management industry was traditionally driven by
Best Practices for Python in the Cloud: Lessons Learned @ActiveState
Best Practices for Python in the Cloud: Lessons Learned @ActiveState Best Practices for Python in the Cloud Presented by: Gisle Aas, Senior Developer, ActiveState whoami? Gisle Aas! [email protected]!
Cutting Through the Hype: Straight Talk About the Mainframe and Cloud Computing. Straight talk on cloud computing
Glenn Anderson, IBM Lab Services and Training Cutting Through the Hype: Straight Talk About the Mainframe and Cloud Computing Summer SHARE August 2014 Session 15593 Straight talk on cloud computing What
Oracle Applications and Cloud Computing - Future Direction
Oracle Applications and Cloud Computing - Future Direction February 26, 2010 03:00 PM 03:40 PM Presented By Subash Krishnaswamy [email protected] Vijay Tirumalai [email protected]
Virtualization and IaaS management
CLOUDFORMS Virtualization and IaaS management Calvin Smith, Senior Solutions Architect [email protected] VIRTUALIZATION TO CLOUD CONTINUUM Virtual Infrastructure Management Drivers Server Virtualization
Version Control Your Jenkins Jobs with Jenkins Job Builder
Version Control Your Jenkins Jobs with Jenkins Job Builder Abstract Wayne Warren [email protected] Puppet Labs uses Jenkins to automate building and testing software. While we do derive benefit from
SAP HANA Cloud Platform. Technical Overview Uwe Heinz
SAP HANA Cloud Platform Technical Overview Uwe Heinz The way into the Cloud 75% New IT invests 2016 are cloud based Source: IDC 2013 Report: New Enterprise IT Spend 80% New IT invests Driven by users Source:
DevOps Best Practices for Mobile Apps. Sanjeev Sharma IBM Software Group
DevOps Best Practices for Mobile Apps Sanjeev Sharma IBM Software Group Me 18 year in the software industry 15+ years he has been a solution architect with IBM Areas of work: o DevOps o Enterprise Architecture
Linux/Open Source and Cloud computing Wim Coekaerts Senior Vice President, Linux and Virtualization Engineering
Linux/Open Source and Cloud computing Wim Coekaerts Senior Vice President, Linux and Virtualization Engineering NIST Definition of Cloud Computing Cloud computing is a model for enabling convenient, on-demand
Cloud Computing and Open Source: Watching Hype meet Reality
Cloud Computing and Open Source: Watching Hype meet Reality Rich Wolski UCSB Computer Science Eucalyptus Systems Inc. May 26, 2011 Exciting Weather Forecasts 99 M 167 M 6.5 M What is a cloud? SLAs Web
OASIS TOSCA. Introduction and Overview
OASIS TOSA Introduction and Overview Frank Leymann, IBM & U of Stuttgart ([email protected] Thomas Spatzier, IBM ([email protected]) Agenda TOSA Overview and Examples TOSA oncepts
An enterprise- grade cloud management platform that enables on- demand, self- service IT operating models for Global 2000 enterprises
agility PLATFORM Product Whitepaper An enterprise- grade cloud management platform that enables on- demand, self- service IT operating models for Global 2000 enterprises ServiceMesh 233 Wilshire Blvd,
Practical Development with a Platform as a Service (PaaS) Beyond the Basics
IBM Cloud: Think it. Build it. Tap into it. Carl Osipov, Developer Evangelist, IBM Bluemix [email protected] @CloudsWithCarl September 25, 2014 Practical Development with a Platform as a Service (PaaS)
Apache Stratos Building a PaaS using OSGi and Equinox. Paul Fremantle CTO and Co- Founder, WSO2 CommiCer, Apache Stratos
Apache Stratos Building a PaaS using OSGi and Equinox Paul Fremantle CTO and Co- Founder, WSO2 CommiCer, Apache Stratos @pzfreo #wso2 #apache [email protected] [email protected] 1 About me CTO and Co- Founder
WHAT DOES IT SERVICE MANAGEMENT LOOK LIKE IN THE CLOUD? An ITIL based approach
WHAT DOES IT SERVICE MANAGEMENT LOOK LIKE IN THE CLOUD? An ITIL based approach Marc Jansen Computer Science Institute University of Applied Sciences Ruhr West Tannenstr. 43, 46240 Bottrop Germany [email protected]
