SlapOS: a Multi-purpose Distributed Cloud Operating System Based on an ERP Billing Model
|
|
|
- Leon Cross
- 9 years ago
- Views:
Transcription
1 SlapOS: a Multi-purpose Distributed Cloud Operating System Based on an ERP Billing Model Jean-Paul Smets-Solanes, Christophe Cérin and Romain Courteaud Nexedi SA, 270 boulevard Clémenceau, Marcq-en-Baroeul, France. [email protected] Université de Paris 13, PRES Sorbonne Paris Cité LIPN UMR CNRS 7030, 99, avenue Jean-Baptiste Clément, Villetaneuse, France [email protected] Abstract SlapOS is an open source grid operating system for distributed cloud computing based on the moto everything is a process. SlapOS combines grid computing and Enterprise Resource Modeling (ERP) to provide Infrastructure as a Service (IaaS), Platform as a Service (PaaS) and Software as a Service (SaaS) through a simple, unified API which one can learn in a matter of minutes. Thanks to its unified approach and modular architecture, SlapOS has been used as a research testbed to benchmark NoSQL databases and optimize process allocation over intercontinental Cloud. SlapOS opens new perspectives for research in the area of resilience and security on the Cloud. Keywords-Service Architecture, Enterprise Level Transformation, Business Process Management and Integration, Business Grid and Cloud Computing. I. INTRODUCTION Cloud Computing is traditionally divided in three market segments: Infrastructure as a Service (IaaS), Platform as a Service (PaaS) and Software as a Service (SaaS). Cloud Computing standardization groups, government funded research projects and corporate marketing presentations often introduce Cloud Computing through a 3-layer approach. IaaS provides virtual machines and storage. PaaS is built on top of IaaS and provides core services such application servers and databases. SaaS is built on top of PaaS and provides end-user applications such as Content Management System (CMS) or Customer Relation Management (CRM) software. The traditional layered approach implicitly supposes that the IaaS layer of Public Clouds is implemented by very large server farms, which are supposed to provide optimal efficiency through economies of scale and automation. The IaaS layer of Private Clouds is implicitly supported by expensive Storage Area Networks (SAN) hardware. There are several efforts already under way, including the Distributed Management Task Force (DMTF) Open Cloud Standards Incubator, the Open Grid Forum s Open Cloud Computing Interface working group, and the Storage Network Industry Association Cloud Storage Technical Work Group. In France the Free Cloud Alliance promotes the first Open Source Cloud Computing Stack which covers both Infrastructure as a Service (IaaS), Platform as a Service (PaaS) and Software as a Service (SaaS) with a consistent set of technologies targetted at high performance and mission critical applications. A great resource to see the spectrum of cloud standards activity can be found at the OMG s cloudstandards.org wiki. With the increasing adoption of IPv6, 1 Gbps fiber to the home, multi-core CPUs and Solid State Disks, the traditional view on Public Cloud based on very large server farms, or the traditional view on Private Cloud based on corporate Storage Area Networks, is no longer as relevant as it used to be. A new form of Cloud massively distributed cloud can be implemented nowadays to provide Infrastructure as a Service (IaaS), Platform as a Service (PaaS) and Software as a Service (SaaS) with new levels of cost efficiency, drastically reduced environmental impact and higher protection of citizen Freedom. It is now possible to implement Cloud Computing through a myriad of servers located in everyone s home or in every worker s desk. Internet transit marginal cost becomes zero, distributed storage software is used instead of SAN. Energy is saved by eliminating the need for air cooling and by reusing natural server dissipation for house or office heating. Citizen Freedom is better protected by preventing data to be centralized under control of single entity, as it is now required for example by Law in India [XX]. Massively distributed cloud is already acknowledged and supported by the OW2 Consortium 1, by the Free Cloud Alliance 2 and by the Free Software Foundation
2 We will introduce in this article SlapOS, the first open source operating system for Distributed Cloud Computing. SlapOS is based on a grid computing daemon called slapgrid which is capable of installing any software on a PC and instantiate any number of processes of potentially infinite duration of any installed software. Slapgrid daemon receives requests from a central scheduler the SlapOS Master which collects back accounting information from each process. SlapOS Master follows an Enterprise Resource Planning (ERP) model to handle at the same time process allocation optimization and billing. According to the classification in [2], the paper is related to Service Architecture (how to design and build an operating system for the grid), Enterprise Level Transformation (what we consider as best practices for transforming the main activity of the company), Business Process Management and Integration (how to organize and develop your business according to the use of Open Source Software), Business Grid and Cloud Computing (how to enhance your business with Cloud Technology). The organization of the paper is as follows. Section II is an overview of the SplapOS project. Section III provides with details about the SlapOS implementation. Section IV-B is a full description of the developper and accounting models. Section V is related to an example about SlapOS use case. Section VI is about research questions about the design and the future of SlapOS. Section VII concludes the paper. II. A GRID APPROACH TO CLOUD COMPUTING SlapOS is an open source Cloud Operating system which was inspired by recent research in Grid Computing and in particular by BonjourGrid [3] [5] a meta Desktop Grid middleware for the coordination of multiple instances of Desktop Grid middleware. It is based on the moto that everything is a process. SlapOS is now an OW2 project. Figure 1 shows the current architecture. SlapOS defines two types of servers: SlapOS Nodes and SlapOS Master. SlapOS Nodes can be installed inside data centers or at home. Their role is to install software and run processes. SlapOS Master acts as a central directory of all SlapOS Nodes, knowing where each SlapOS Node is located and which software can be installed on each node. The role of SlapOS Master is to allocate processes to SlapOS Nodes. A. SlapOS Architecture SlapOS Nodes and SlapOS Master exchange are interconnected through the HTTP and XML based SLAP protocol. SlapOS Master sends to each SlapOS Node a description of which software should be installed and executed. Each SlapOS Node sends to SlapOS Master a description of how much resources were used during a given period of time for accounting and billing purpose. From a user point of view, SlapOS Node looks like an online shop for Cloud Computing resources. The user connects to Figure 1. The SlapOS Architecture SlapOS Master through a simplified front end, selects which software he or she needs. SlapOS Master then allocates the software onto a SlapOS Node and provides the connection information to the user. The allocated software can be of any type: virtual machine, database server, application server, web cache front end, etc. Figure 2. An example of SlapOS front-end B. An example of SlapOS front-end From a developer point of view, see Figure 2, SlapOS is a simple and universal API to create instances of any software daemon through a programmatic interface. The sample code bellow shows how a developer can request a new instances of a memcache server by invoking the request method of SlapOS API. Memcache [19] is a widely adopted key-value store protocol which is used to cache values in large scale web infrastructure. It is usually installed and configured by system administrators using packaging systems such RPM or DEB. In this example, a single method call does in a few seconds what a human system adminstrator would have done in few minutes at best.
3 A sample source code to request a process is shown on Figure 3. Figure 3. Example of source code and control a number of processes on UNIX-like operating systems. It provides a higher abstraction and flexibility than traditional sysinit. After some time, a typical SlapOS Node will include multiple software applications (see Figure 5) and, for each software application, multiple instances, each of which running in a different process. For example, both Mediawiki and OS Commerce could be installed onto the same SlapOS Node, with six instances of each being run as processes. By running software instances as processes, rather than by creating a virtual machine for each software instance as one would do with Amazon EC2, SlapOS is able to use hardware resources and RAM in particular more efficiently. III. CURRENT IMPLEMENTATION OF SLAPOS SlapOS is implemented as an extension of widely adopted open source software: GNU/Linux, Buildout [20] and Supervisord [21] and as depicted on Figure 4. The only new software introduced by SlapOS is Slapgrid, a daemon in charge of implementing the SLAP protocol on each SlapOS Node. A. SlapOS Kernel Each time slapgrid receives a request from SlapOS master to install a software, it downloads a description of that software in the form of so-called buildout profile. It then runs the buildout boostrap process to install the software. Buildout is a Python-based build system for creating, assembling and deploying applications from multiple parts, some of which may be non-python-based. Buildout can be used to build C, C++, ruby, java, perl, etc. software on Linux, MacOS, Windows, etc. Buildout can either build applications by downloading their source code from source repositories (subversion, git, mercurial, etc.) or by downloading binaries from package repositories (rpm, deb, eggs, gems, war, etc.). Buildout excels in particular at building applications in a way which is operating system agnostic and to automate application configuration process in a reproduceable way. Figure 5. SlapOS implementation B. Details about the implementation SlapOS Master (see Figure 6) runs ERP5 Cloud Engine, a version of ERP5 open source ERP capable of allocating processes in relation with accounting and billing rules. Initial versions of SlapOS Master were installed and configured by human. Newer versions of SlapOS Master are implemented themselves as SlapOS Nodes, in a completely reflexive ways. A SlapOS Master can thus allocate a SlapOS Master which in turn can allocate another SlapOS Master, etc. Figure 4. SlapOS kernel Each time slapgrid receives a request from SlapOS master to run a software as a new process, it calls first buildout to create all configuration files for that process then delegates to supervisord the execution of the process. Supervisor is a client/server system that allows its users to monitor Figure 6. SlapOS Master
4 A. Developper model IV. SLAPOS MODEL For the end user or the developer, SlapOS API is based on a single core API method: request. This method is used to extend the buildout framework. It adds to buildout the possibility to remotely deploy and configure buildout based software. Additional SlapOS API methods include initialize- Connection and registercomputerpartition. They are used to register to SlapOS master and are normally hidden to the developper of buildout profiles. What is important to notice at this point is that SlapOS, through the software release url parameter, can build, install and instanciate about any type of software as long as the software is described through a buildout profile which can be stored almost anywhere on the Web and referred to through a URL. There are already more than a thousand a buildout profiles for many different types of software including storage and virtual machines (IaaS), application server (PaaS) and business applications (SaaS). Another important aspect of the request method is that it defines a paremeter called instance type which can be used to specify which service of a given software should be instanciated and started. This is useful for encapsulating all services provides by a software into a single buildout software descriptor, rather than developing multiple ones and thus preventing mutualisation of shared libraries. A Qemu buildout profile for example provides both Kvm based virtual machines under the instance type kvm and nbd based block server under the instance type nbd. Both services are actually available as part of the same qemu binary, although they are mostly independent and can be allocated separately. Similarly, instances types are useful for application servers and distribute storage to differentiate master nodes vs. slave nodes in a non symetrical cluster. The extra parameters of the request method can be used to define Service Level Agreement (SLA) information and software configuration. SLA parameters can be used to specify that the software instance should be allocated on the same host, the same LAN, the same country, the same continent or on a different host, different LAN, different country or different continent. By allocating software instances on different LANs and different continents, resilience of a Cloud hosted environment can be increased. By allocating software instances on the same LAN or host, performance of distributed storage can be optimized. Extra parameters can also be used to specify the configuration of the software instance. The number of backend nodes of a Web application is typically specified in this way. Elasticity is provided in SlapOS by changing the value which defines the number of backends. Automatic elasticity is provided by combining performance monitoring and calls to the request method with a number of nodes which depends on the current status of performance monitoring, following a control system pattern. B. Accounting model The accounting model of SlapOS is an application of ERP5 Unified Business Model 4 (UBM) [12]. ERP5 defines 5 concepts which match with any business problem: Resource, Movement, Item, Node and Path. The ERP5 model is based on the idea that everything in business is a matter of flow, stock, traceability and planning of future flows. Until now, this model has been applied successfully to banking, accounting, manufacturing, trading, HR, document management, open data management, patient records. The use of ERP5 model in SlapOS comes from the fact that allocating and billing processes in computers is not very different from allocating containers in ships. In both cases, once it has been allocated, it is difficult to move it to another computer (vs. another ship). In the case of SlapOS, Nodes are the people and organisations who register to the SlapOS portal. Once they are registered, they can request any type of resource. They can also add to a SlapOS global Cloud their own servers in order to contribute to total amount of processing resources, just like SETI@Home did. SlapOS Resources - in the sense of ERP5 UBM - are the Software Products such as MySQL, KVM, Xwiki, Nuxeo, ERP5, Sheepdog which people and organisations can subscribe to and for which they will be later invoiced. It is important to notice that Software Products do not have a version of release number. It is just a marketing or commercial name for a service. Movements in the sense of UBM represent the billing information such as the amount of GHz, the amount of storage, the number of users which have been used over a period of time by each process in the SlapOS cloud. Then comes the core part of SlapOS: traceability. In order to know which version of which software is being run on which computer and IP address for who and with which parameters, SlapOS defines 5 types of UBM Item: Computer, Computer Partition, Software Release, Software Instance, Subscription Item. A Computer Item is created each time a server is added to the SlapOS cloud. Each Computer Item is divided into a given number of so-called Computer Partition. The number of independent services (Software Products) which can be instanciated on a given Computer is at most equal to the number Computer Partitions of the Computer. Computer Partitions are usually implemented as subdirectories of the Computer. On an IPv6 network, each Computer Partition can be associated to a different IPv6 address. On an IPv4 network, each Computer Partition can be associated to a different port range for the same IPv4 address. Some Computer Partitions can also associated to a tap virtual ethernet interface which is then bridged and used by virtual machines. 4
5 Some Computer Partitions are associated to a physical disk partition, which can be used by virtual machines for higher access performance through Virtio 5. The partitioning process in SlapOS is handled by optional utilities provided by SlapOS. There is no obligation to use such utilities. Any naming of directories, allocation of IP addresses or port range, disk partitions or network interfaces is acceptable as long as it can be described in SlapOS standard XML file which the slapgrid daemon uploads to SlapOS master. A Software Release Item defines precisely how to build a Software and install it on a Computer. Currently, SlapOS uses buildout profiles to define a Software Release. Multiple Software Release can exist for the same Software Product. For example, the MySQL Software Product exists in Release 5.0, Release 5.1, Release 5.0 patched with Senna Full Text, etc. A major strength of SlapOS is its ability to provide complete freedom to extend the number of Software Release and Software Products. The Software Release Item is the equivalent in SlapOS master of the software release url of the request method. A Software Instance Item contains all parameters to configure an instance of Software Release. It also defines the type of service to run from Software Release. It is the equivalent in SlapOS master of the instance type, instance id and kw parameters of the request method. The Subscription Item is used to group all accounting information for a given consistent set of Software Instances. It is also used to generate daily, weekly, monthly or yearly subscription billing. It plays a key role for the production of invoices. SlapOS movements which are either collected from each SlapOS node or generated by Subscription Item are collected on a monthly base, grouped by Subscription Item and by Customer, so that each customer can receive an invoice and understand for which service (Software Product), which release (Software Release) and configuration (Software Instance), on which computer (Computer Partition) and for what amount of which resource (Movement) he or she was invoiced. The information needed to produce a detailed invoice is actually the same as the information needed to provision services on the Cloud. This is another reason why in SlapOS, accounting and provisionning are handled by the same software component, both to reduce duplication of information, increase consistency and make the system more simple. C. Future evolutions of SlapOS models SlapOS uses buildout and a single URL to describe how to build and install software. This approach could be extended in different ways. Ideally, it should be possible to install software using other build systems or even by using packages (DEB, RPM). This is not incompatible with SlapOS 5 approach as long as the software which is installed provides itself a way to create multiple software instances through buildout or through any other type of templating system. It should also be possible to specify multiple URLs, embedded for example in a single file containing a list of URLs. This would be useful to specify different releases of the same software which are all considered as acceptable (ex. MySQL 5.0, MySQL 5.1, etc.). Another evolution could be the encapsulation of best Cloud practices into either buildout recipes (for modularity) or SlapOS API (for simplicity). For example, self-controlled elasticity based on performance monitoring and feedback could be encapsulated into a class and reused by different Software Product. SlapOS will first consider the approach of buildout recipes which provides maximum flexibility before considering extending the current simple API. V. EXAMPLES OF APPLICATION SlapOS is multi-purpose. It is used for public cloud and private cloud. It is used for IaaS, PaaS and SaaS. Although SlapOS is universal, it is also extremely simple. SlapOS API consists mostly of a single method: request. SlapOS is used by VIFIB, a French Internet Service Provider, to provide virtual machines through IPv6. VIFIB infrastructures consists of Asus barebone PCs with Intel i7 860 CPUs, 80 GB Solid Stade Disks and 8 GB RAM. Thanks to the use of SSD, running 8 virtual machines on a single PC which costs only 700 EUR is possible. VIFIB virtual machines are used mostly by developers who find them faster than their own laptop. SlapOS is used by Beteireflow, one of Ireland s largest CRM operation. SlapOS is used to instanciate a complex ERP5 solution which includes non transactional NoSQL (kumofs), distributed transactional NoSQL (NEO), load balancing (ha-proxy), a cluster of application servers (Zope), a set of front-ends (Apache, Varnish) and automatic backup daemons (repozo). Thanks to SlapOS, this complex system can be reinstalled and configured in a matter of seconds on a new infrastructure. SlapOS plays a key role here as part of a Disaster Recovery Plan. SlapOS is used by Nexedi to run ERP5 test suite. ERP5 test suite consists of more than 5000 tests including unit tests, functional tests and scalability tests. By distributing test tasks to SlapOS, ERP5 test suite can be executed in a few minutes instead of a few hours. This productivity improvement plays nowadays a key role in the acceleration of ERP5 release process. SlapOS is also a key component in the COMPATIBLE ONE project, French government sponsored project for open source Cloud. SlapOS acts as a unified billing platform for all types of IaaS, SaaS and PaaS thanks to the TioXML resource accounting standard. SlapOS should also soon serve as a platform for open source software publisher to turn their software into multi-tenant
6 SaaS. SlapOS has received a lot of attention from IT industry and telecommunication industry because it is capable of hosting as many as 200 ERP instances at a cost of less than 1 USD per month and per instance. It is also acknowledged that SlapOS can save huge investments in research and development for those companies which need to turn their existing software into SaaS. VI. RESEARCH QUESTIONS AND DESIGN A. Technology driven projects SlapOS raises wide variety of research topics: process allocation optimization, energy management, software distribution, resilient storage, high availability, security. In SlapOS, infinite duration processes are allocated, rather than limited duration computing tasks in traditional grid computing [10], [11]. Once a process is allocated on a SlapOS server node, it can not be moved to another SlapOS server node. Process allocation should at the same time optimize hardware resource usage and guarantee acceptable service level. Allocating too few processes per server node is a waste of resource usage. Allocating too many processes per server may lead to poor service for customers and users. Early research on this topics is being conducted as part of TioSafe project [22] by Institut Télécom, based on the metaphor of bin packing. Energy is becoming a key cost factors of Cloud Computing and a growing source of environmental impact. With SlapOS, heat dissipation during winter time is reused for household or office heating. During summer time, heat dissipation is either evacuated through natural air circulation or requires to spend additional energy for air cooling. In northern countries or mountain side, SlapOS leads to energy savings of more than 50% compared to a server farm. In southern countries, the energy balance is unclear. Improving the energy efficiency of SlapOS, either in combination with smart grids 6 or by implement optimal process allocation is another field of research. SlapOS does not use traditional software packaging found for example in GNU/Linux distributions and which has been extensively modeled and studied, in particular by Roberto di Cosmo [8], [9]. Instead it combines source code access with heterogeneous packaging which are now specific to each programming language: python eggs [23], ruby gems [24], Java. Thanks to buildout technology, a single SlapOS server node can run any number of versions of a given software or library at the same time, thus providing the level of flexibility required for SaaS and PaaS. This new approach opens new fields of research in post-packaging software distribution. SlapOS Nodes are not meant to be perfectly reliable. Instead, it is the role of the application to implement its own redundancy policy. This includes in particular redundant storage. Applications based on NoSQL database can leverage the 6 See grid native redundancy of most NoSQL software. Applications based on relational databases need to find relevant tactics to implement data redundancy. Some tactics are quite simple: for example, by connecting to two databases and maintaing an asynchronous copy of data from one database to the other. Other tactics are more complex and can involved clustered databases. Analysing the different tactics for data redundancy is an interesting field of education, if not research. Many students are not yet aware how to implement distributed data storage. SlapOS is a perfect test bed to educate students to the different approachs which are implemented in the industry. High availability is another research topic with SlapOS. The introduction of mobile IPv6 could be consider to implement a kind of process migration, as it already exists in XtreemOS [25]. Other approaches, based on dynamic DNS and monitoring could be integrated at the core of SlapOS. Mapping processes to internet names is generally a interesting direction for the future of SlapOS in the context of high availability requirements. Security is probably the most important research with SlapOS. Because it is based on IPv6 and on a flat view of Internet, SlapOS can not rely on firewalls or masquerading for security. Moroever, granting rights to install software on a SlapOS Node requires more flexibility than what SlapOS currently provides. The introduction of automated source code analysis and of distributed intrusion detection could help adding additional flexibility and create more trust for people to accept on their hardware software provided by other people. Operating system level security containers such as those found in ChromeOS [26] could also help reducing the risk breaking system security. B. Distributed architecture and distribution of services The coordination of SlapOS servers is a research issue as the coordination is the key point with Grids. In our context of Desktop Grids, the BonjourGrid [3] [5] component aims at improving the infrastructure efficiency by breaking up a large, monolithic application into separate components (services). The rationale for doing this is that the large application no longer requires an equally large, monolithic mainframe computer to run on. BonjourGrid has been imaginated for answering to the following question: how to federate all the users and machines of all the Boinc, Condor and XtremWeb projects? (Boinc, Condor and XtremWeb are popular Desktop Grid middleware [11]). In the past, Desktop Grid systems represented an alternative to super-computers and parallel machines and they offered computing power at low cost. Indeed, Desktop Grids have intrinsic features that explain the large number of international projects aiming to better exploit this computational potential. Many Desktop Grid system have been developed using a centralized model. These infrastructures run in a dynamic environment and the number of resources may
7 increases dynamically. Hence, the need for decentralization is becoming increasingly important. BonjourGrid is a new decentralized approach of Desktop Grid systems. Its main objective is to provide a decentralized infrastructure of multi-coordinators (here multi SlapOS servers), using the services offered by a publish/subscribe system [7]. Unlike a classical Desktop Grid, BonjourGrid can create, on demand, a dynamic and decentralized execution environment for each user, based on existing computing systems such as XtremWeb, Boinc or Condor, to run any kind of applications, without the intervention of a system administrator. Since SlapOS Masters are implemented themselves as SlapOS Nodes, in a completely reflexive ways, BonjourGrid may help to coordinate the multiple MAster nodes in the same way it coordinates the XtremWeb, Boinc or Condor coordinators. The problem is even simpler because we have only one type of system to manage (a SplaOS master). Moreover BonjourGrid comes with a fault tolerant approach based on passive replication and virtualization to tolerate the crash of coordinators (SlapOS master nodes). The novelty resided here in an integrated environment based on Bonjour (publication- subscription mecanism) for both the coordination protocol and for the fault tolerance issues. In particular, it is not so frequent to our knowledge to describe and to implement a fault tolerant protocol according to the pub-sub paradigm. Experiments, conducted on the Grid5000 testbed 7, have illustrated a comparative study between Boinc (resp. Condor) on top of BonjourGrid and a centralized system using Boinc (resp. Condor) and second prove the robustness of the fault tolerant mechanism. To summarize, the key idea of BonjourGrid is to rely on existing Institutional Desktop Grid middleware, and to orchestrate and coordinate multiple instances, i.e multiple computing elements, through a publish/subscribe system. We propose to reuse this framework for the coordination of SlapOS masters that may appear or disappear on the fly. Several issues must be taken into account in our future works. The first issue, which is not really difficult, is the reservation of participations: in the current version, BonjourGrid allocates available resources for a user without any reservation rules. Thus, if a user demands all the available machines for a long time, BonjourGrid allocates them to him. The second issue is going up to a wide area network. The current version works only in a local network infrastructure because of Bonjour, it is important to bypass this constraint. Grafting the new package of Bonjour, Wide Area Bonjour from Apple, may be a good solution to resolve this problem...but it is not sufficient to capture all the issues. For instance, the advent of Internet-Scale middleware raises qualitatively different issues than global scale alone specifically those of bridging trust domains across organizational boundaries. So, we will also need to address mecanisms for 7 authentification. In this new environment, we are planning to apply a re-engineering step for using the Extensible Messaging and Presence Protocol (XMPP [17], [18] ) which is an open technology for real-time communication, which powers a wide range of applications including instant messaging, presence, pub-sub... We believe that the XMPP framework is of premier choice for the implementation of the coordination in SlapOS but we need to measure the architectural impact of this choice on the protocol itself. A good example of what is possible to do with XMPP is the Archipel 8 project whose aiming at coordinating multiple virtual machines. However, XMPP has some limitations, among them a scalability problem in the management of rosters (see [18] page 219). The problem could be a problem with implementation. Another possibility for the coordination is a solution based on websockets / COMET / hookbox 9. Hookbox offers a pubsub interface but it is more oriented towards pure HTTP protocol than XMPP. Consequently, programming is more easy and we have less potential problems with firewalls. Anyway, the BonjourGrid protocol which is: 1) The user requests for computation; He selects machines based on their performance (CPU, RAM,...); 2) The user provides the control ow graph, binaries, input data; 3) The user deploys locally a coordinator and requests for participants. becomes as follows in SlapOS: 1) The user requests an instance of software release (ie. a daemon); 2) The user provides a URL to a description of the sofware release which itseld provides a description of how to create software instances; 3) The user provides configuration parameters to crate an instance of software release. but the main challenge remains: how to coordinate SLapOS masters between multiple distinct companies and based on contractual relationships but not based on technical relationships (CPU, RAM,...)? VII. CONCLUSION AND OUTLOOK SlapOS demonstrates that the borders between IaaS, PaaS and SaaS in Cloud Computing are no longer relevant. Through a single API and a single method inspired by 10 years of experience in grid computing, SlapOS is capable of allocating virtual machines, application servers, databases and even ERP applications. SlapOS also demonstrates that server farms and data centers are no longer required to provide high quality Cloud Computing. SlapOS servers hosted at home on optical fiber and IPv6 networks are capable of providing reliable
8 Cloud service thanks to application level data redundancy. Moreover, SlapOS contributes to energy savings by reusing heat dissipation of servers for households heating and by removing the need for air cooling in many countries. SlapOS is already in commercial production. It is used by companies or by people who are looking for a Cloud Computing solution which protects their strategic data at a low operating cost. It is used in particular by software publishers who are urged to transform their applications into SaaS. Yet, SlapOS needs many improvements. The Resilience project, a project sponsored by more than 10 organisations including Morpho, Nexedi, Nuxeo, Wallix, Université de Paris 13, Institut Télécom will improve SlapOS into two directions: by removing and making SlapOS Master distributed and by adding to SlapOS extensive support for security. SlapOS also nees more contributors. We are calling here all research, educational organization to join the SlapOS community and start building recipes for open source software so that it can be deployed on SlapOS. This effort is important for scientific reasons: by creating a rich library of open source applications hosted on the Cloud using open source SlapOS, research and education can keep access to the know how of Cloud Computing which is for now migrating increasingly to companies such as Google, Facebook and Microsoft, and remains secret. SlapOS is our proposed testbed to make sure that Distributed Cloud Computing knowledge remains shared and open. REFERENCES [1] Lesyng, B., Bala, P., Erwin, D.: Eurogrid: European computational grid testbed. J. Parallel Distrib. Comput. 63 (2003) [2] Liang-Jie Zhang EIC Editorial: Introduction to the Body of Knowledge Areas of Services Computing IEEE Transactions on Services Computing Vol 1, number 2, April-June 2008 [3] Heithem Abbes, Christophe Cérin, and Mohamed Jemni. Bonjourgrid as a decentralised job scheduler. In APSCC 08. Proceedings of the 2008 IEEE Asia-Pacific Services Computing Conference, pages 89 94,Washington, DC, USA, IEEE Computer Society. [4] Heithem Abbes, Christophe Cérin, and Mohamed Jemni. Bonjourgrid : Orchestration of multi-instances of grid middlewares on institutional desktop grids. In 3rd Workshop on Desktop Grids and Volunteer Computing Systems (PCGrid 2009), en conjonction avec IPDPS 2009, Rome, Italie, 29 Mai [5] Heithem Abbes, Christophe Cérin, Mohamed Jemni: A decentralized and fault-tolerant Desktop Grid system for distributed applications. Concurrency and Computation: Practice and Experience 22(3): (2010) [6] Douglas Thain, Todd Tannenbaum, and Miron Livny. Condor and the grid. In Fran Berman, Geoffrey Fox, and Tony Hey, editors, Grid Computing : Making the Global Infrastructure a Reality. John Wiley et Sons Inc., December [7] Patrick Th. Eugster, Pascal A. Felber, Rachid Guerraoui, and Anne-Marie Kermarrec. The many faces of publish/subscribe. ACM Comput. Surv., 35(2) :114131, [8] Roberto Di Cosmo, Stefano Zacchiroli: Feature Diagrams as Package Dependencies. Software Product Lines: Going Beyond 14th International Conference, SPLC 2010, Jeju Island, South Korea, September 13-17, Proceedings: [9] Pietro Abate, Roberto Di Cosmo, Jaap Boender, Stefano Zacchiroli: Strong dependencies between software components. Proceedings of the Third International Symposium on Empirical Software Engineering and Measurement, ESEM 2009, October 15-16, 2009, Lake Buena Vista, Florida, USA: [10] Ian Foster (Editor), Carl Kesselman (Editor) The Grid: Blueprint for a New Computing Infrastructure (The Elsevier Series in Grid Computing) Morgan Kaufmann, 1999 [11] Christophe Cerin (Editor), Gilles Fedak (Editor) Desktop Grid Computing Chapman & Hall, Fall 2011 [12] Smets-Solanes, J.-P., Atem de Carvalho, R. ERP5: a nextgeneration, open-source ERP architecture IT Professional, July-Aug. 2003, Volume: 5 Issue:4, page(s): [13] Teragrid. URL: [14] Grid5000. URL: php/grid5000:home [15] Boinc. URL: [16] XtremWeb. URL : http :// [17] XMPP. URL: [18] Xmpp, the definitive guide. Peter St Andre, Kevin Smith and Remko Trono n O Reilly, [19] Memcached: a free and open source, high-performance, distributed memory object caching system. [20] Buildout - software build system reloaded [21] Supervisor: A Process Control System [22] Tiosafe [23] Python Eggs [24] Ruby Gems [25] Xtreemos [26] ChromeOS
ERP and E-Business Application Deployment in Open Source Distributed Cloud Systems
Database Systems Journal vol. III, no.3/2012 3 ERP and E-Business Application Deployment in Open Source Distributed Cloud Systems George SUCIU 1, Traian-Lucian MILITARU 2,3, Gyorgy TODORAN 3 1, 2 Faculty
CLEVER: a CLoud-Enabled Virtual EnviRonment
CLEVER: a CLoud-Enabled Virtual EnviRonment Francesco Tusa Maurizio Paone Massimo Villari Antonio Puliafito {ftusa,mpaone,mvillari,apuliafito}@unime.it Università degli Studi di Messina, Dipartimento di
White Paper on CLOUD COMPUTING
White Paper on CLOUD COMPUTING INDEX 1. Introduction 2. Features of Cloud Computing 3. Benefits of Cloud computing 4. Service models of Cloud Computing 5. Deployment models of Cloud Computing 6. Examples
Data Centers and Cloud Computing. Data Centers
Data Centers and Cloud Computing Intro. to Data centers Virtualization Basics Intro. to Cloud Computing 1 Data Centers Large server and storage farms 1000s of servers Many TBs or PBs of data Used by Enterprises
Tamanna Roy Rayat & Bahra Institute of Engineering & Technology, Punjab, India [email protected]
IJCSIT, Volume 1, Issue 5 (October, 2014) e-issn: 1694-2329 p-issn: 1694-2345 A STUDY OF CLOUD COMPUTING MODELS AND ITS FUTURE Tamanna Roy Rayat & Bahra Institute of Engineering & Technology, Punjab, India
Cluster, Grid, Cloud Concepts
Cluster, Grid, Cloud Concepts Kalaiselvan.K Contents Section 1: Cluster Section 2: Grid Section 3: Cloud Cluster An Overview Need for a Cluster Cluster categorizations A computer cluster is a group of
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
Grid Computing Vs. Cloud Computing
International Journal of Information and Computation Technology. ISSN 0974-2239 Volume 3, Number 6 (2013), pp. 577-582 International Research Publications House http://www. irphouse.com /ijict.htm Grid
INTRODUCTION TO CLOUD COMPUTING CEN483 PARALLEL AND DISTRIBUTED SYSTEMS
INTRODUCTION TO CLOUD COMPUTING CEN483 PARALLEL AND DISTRIBUTED SYSTEMS CLOUD COMPUTING Cloud computing is a model for enabling convenient, ondemand network access to a shared pool of configurable computing
Cloud Computing with Red Hat Solutions. Sivaram Shunmugam Red Hat Asia Pacific Pte Ltd. [email protected]
Cloud Computing with Red Hat Solutions Sivaram Shunmugam Red Hat Asia Pacific Pte Ltd [email protected] Linux Automation Details Red Hat's Linux Automation strategy for next-generation IT infrastructure
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
Data Centers and Cloud Computing. Data Centers
Data Centers and Cloud Computing Slides courtesy of Tim Wood 1 Data Centers Large server and storage farms 1000s of servers Many TBs or PBs of data Used by Enterprises for server applications Internet
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
Data Centers and Cloud Computing. Data Centers. MGHPCC Data Center. Inside a Data Center
Data Centers and Cloud Computing Intro. to Data centers Virtualization Basics Intro. to Cloud Computing Data Centers Large server and storage farms 1000s of servers Many TBs or PBs of data Used by Enterprises
Cloud Computing. Chapter 1 Introducing Cloud Computing
Cloud Computing Chapter 1 Introducing Cloud Computing Learning Objectives Understand the abstract nature of cloud computing. Describe evolutionary factors of computing that led to the cloud. Describe virtualization
Introduction to Cloud Computing
Introduction to Cloud Computing Cloud Computing I (intro) 15 319, spring 2010 2 nd Lecture, Jan 14 th Majd F. Sakr Lecture Motivation General overview on cloud computing What is cloud computing Services
9/26/2011. What is Virtualization? What are the different types of virtualization.
CSE 501 Monday, September 26, 2011 Kevin Cleary [email protected] What is Virtualization? What are the different types of virtualization. Practical Uses Popular virtualization products Demo Question,
Bridging the gap between local IT and Cloud services, keeping you in control
Bridging the gap between local IT and Cloud services, keeping you in control The majority of Small and Mid-Sized Businesses (SMB s) are expected to operate in a hybrid IT environment (part on-premise,
Assignment # 1 (Cloud Computing Security)
Assignment # 1 (Cloud Computing Security) Group Members: Abdullah Abid Zeeshan Qaiser M. Umar Hayat Table of Contents Windows Azure Introduction... 4 Windows Azure Services... 4 1. Compute... 4 a) Virtual
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
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
Successfully Deploying Globalized Applications Requires Application Delivery Controllers
SHARE THIS WHITEPAPER Successfully Deploying Globalized Applications Requires Application Delivery Controllers Whitepaper Table of Contents Abstract... 3 Virtualization imposes new challenges on mission
Solution for private cloud computing
The CC1 system Solution for private cloud computing 1 Outline What is CC1? Features Technical details Use cases By scientist By HEP experiment System requirements and installation How to get it? 2 What
Data Centers and Cloud Computing
Data Centers and Cloud Computing CS377 Guest Lecture Tian Guo 1 Data Centers and Cloud Computing Intro. to Data centers Virtualization Basics Intro. to Cloud Computing Case Study: Amazon EC2 2 Data Centers
Building Success on Acquia Cloud:
Building Success on Acquia Cloud: 10 Layers of PaaS TECHNICAL Guide Table of Contents Executive Summary.... 3 Introducing the 10 Layers of PaaS... 4 The Foundation: Five Layers of PaaS Infrastructure...
RED HAT CLOUD SUITE FOR APPLICATIONS
RED HAT CLOUD SUITE FOR APPLICATIONS DATASHEET AT A GLANCE Red Hat Cloud Suite: Provides a single platform to deploy and manage applications. Offers choice and interoperability without vendor lock-in.
Expert Reference Series of White Papers. Understanding Data Centers and Cloud Computing
Expert Reference Series of White Papers Understanding Data Centers and Cloud Computing 1-800-COURSES www.globalknowledge.com Understanding Data Centers and Cloud Computing Paul Stryer, Global Knowledge
XMPP A Perfect Protocol for the New Era of Volunteer Cloud Computing
International Journal of Computational Engineering Research Vol, 03 Issue, 10 XMPP A Perfect Protocol for the New Era of Volunteer Cloud Computing Kamlesh Lakhwani 1, Ruchika Saini 1 1 (Dept. of Computer
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]
Building Storage Service in a Private Cloud
Building Storage Service in a Private Cloud Sateesh Potturu & Deepak Vasudevan Wipro Technologies Abstract Storage in a private cloud is the storage that sits within a particular enterprise security domain
Distributed Systems and Recent Innovations: Challenges and Benefits
Distributed Systems and Recent Innovations: Challenges and Benefits 1. Introduction Krishna Nadiminti, Marcos Dias de Assunção, and Rajkumar Buyya Grid Computing and Distributed Systems Laboratory Department
Cloud Computing: Computing as a Service. Prof. Daivashala Deshmukh Maharashtra Institute of Technology, Aurangabad
Cloud Computing: Computing as a Service Prof. Daivashala Deshmukh Maharashtra Institute of Technology, Aurangabad Abstract: Computing as a utility. is a dream that dates from the beginning from the computer
Plug-and-play Virtual Appliance Clusters Running Hadoop. Dr. Renato Figueiredo ACIS Lab - University of Florida
Plug-and-play Virtual Appliance Clusters Running Hadoop Dr. Renato Figueiredo ACIS Lab - University of Florida Advanced Computing and Information Systems laboratory Introduction You have so far learned
How To Use Arcgis For Free On A Gdb 2.2.2 (For A Gis Server) For A Small Business
Esri Middle East and Africa User Conference December 10 12 Abu Dhabi, UAE Understanding ArcGIS in Virtualization and Cloud Environments Marwa Mabrouk Powerful GIS capabilities Delivered as Web services
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
DISTRIBUTED SYSTEMS AND CLOUD COMPUTING. A Comparative Study
DISTRIBUTED SYSTEMS AND CLOUD COMPUTING A Comparative Study Geographically distributed resources, such as storage devices, data sources, and computing power, are interconnected as a single, unified resource
CLOUD COMPUTING: ARCHITECTURE AND CONCEPT OF VIRTUALIZATION
CLOUD COMPUTING: ARCHITECTURE AND CONCEPT OF VIRTUALIZATION Neha Roy 1, Rishabh Jain 2 1 PG Scholar, Masters of Technology, Galgotias College of Engineering and Technology, Greater Noida (India) 2 Assistant
Reference Model for Cloud Applications CONSIDERATIONS FOR SW VENDORS BUILDING A SAAS SOLUTION
October 2013 Daitan White Paper Reference Model for Cloud Applications CONSIDERATIONS FOR SW VENDORS BUILDING A SAAS SOLUTION Highly Reliable Software Development Services http://www.daitangroup.com Cloud
Open Source Cloud Computing Management with OpenNebula
CloudCamp Campus Party July 2011, Valencia Open Source Cloud Computing Management with OpenNebula Javier Fontán Muiños dsa-research.org Distributed Systems Architecture Research Group Universidad Complutense
IBM 000-281 EXAM QUESTIONS & ANSWERS
IBM 000-281 EXAM QUESTIONS & ANSWERS Number: 000-281 Passing Score: 800 Time Limit: 120 min File Version: 58.8 http://www.gratisexam.com/ IBM 000-281 EXAM QUESTIONS & ANSWERS Exam Name: Foundations of
System Models for Distributed and Cloud Computing
System Models for Distributed and Cloud Computing Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF Classification of Distributed Computing Systems
Global Headquarters: 5 Speen Street Framingham, MA 01701 USA P.508.872.8200 F.508.935.4015 www.idc.com
W H I T E P A P E R A p p l i c a t i o n D e l i v e r y f o r C l o u d S e r v i c e s : C u s t o m i z i n g S e r v i c e C r e a t i o n i n V i r t u a l E n v i r o n m e n t s Sponsored by: Brocade
Software-Defined Networks Powered by VellOS
WHITE PAPER Software-Defined Networks Powered by VellOS Agile, Flexible Networking for Distributed Applications Vello s SDN enables a low-latency, programmable solution resulting in a faster and more flexible
CompatibleOne Open Source Cloud Broker Architecture Overview
CompatibleOne Open Source Cloud Broker Architecture Overview WHITE PAPER October 2012 Table of Contents Abstract 2 Background 2 Disclaimer 2 Introduction 2 Section A: CompatibleOne: Open Standards and
Mobile Cloud Computing T-110.5121 Open Source IaaS
Mobile Cloud Computing T-110.5121 Open Source IaaS Tommi Mäkelä, Otaniemi Evolution Mainframe Centralized computation and storage, thin clients Dedicated hardware, software, experienced staff High capital
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.
Elastic Cloud Computing in the Open Cirrus Testbed implemented via Eucalyptus
Elastic Cloud Computing in the Open Cirrus Testbed implemented via Eucalyptus International Symposium on Grid Computing 2009 (Taipei) Christian Baun The cooperation of and Universität Karlsruhe (TH) Agenda
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
SURFsara HPC Cloud Workshop
SURFsara HPC Cloud Workshop doc.hpccloud.surfsara.nl UvA workshop 2016-01-25 UvA HPC Course Jan 2016 Anatoli Danezi, Markus van Dijk [email protected] Agenda Introduction and Overview (current
CLOUD BASED SERVICE (CBS STORAGE)
CLOUD BASED SERVICE (CBS STORAGE) Defining next generation of cloud based grid Power All Networks Ltd. Technical Whitepaper September 2008, version 1.04 PAGE 1 Table of Content Cloud Based Services (CBS
INTRODUCTION TO CLOUD MANAGEMENT
CONFIGURING AND MANAGING A PRIVATE CLOUD WITH ORACLE ENTERPRISE MANAGER 12C Kai Yu, Dell Inc. INTRODUCTION TO CLOUD MANAGEMENT Oracle cloud supports several types of resource service models: Infrastructure
Enterprise Cloud Solutions
IT(O) IT Outsourcing Options Enterprise Cloud Solutions CloudAgile Select Partner PDF v2.2 9/11/12 Cloud Computing with Latisys With the Latisys Cloud, your Enterprise can: Achieve unprecedented control,
Secure Cloud Computing through IT Auditing
Secure Cloud Computing through IT Auditing 75 Navita Agarwal Department of CSIT Moradabad Institute of Technology, Moradabad, U.P., INDIA Email: [email protected] ABSTRACT In this paper we discuss the
Introduction to Cloud Services
Introduction to Cloud Services (brought to you by www.rmroberts.com) Cloud computing concept is not as new as you might think, and it has actually been around for many years, even before the term cloud
Cloud Federation to Elastically Increase MapReduce Processing Resources
Cloud Federation to Elastically Increase MapReduce Processing Resources A.Panarello, A.Celesti, M. Villari, M. Fazio and A. Puliafito {apanarello,acelesti, mfazio, mvillari, apuliafito}@unime.it DICIEAMA,
EMC SYNCPLICITY FILE SYNC AND SHARE SOLUTION
EMC SYNCPLICITY FILE SYNC AND SHARE SOLUTION Automated file synchronization Flexible, cloud-based administration Secure, on-premises storage EMC Solutions January 2015 Copyright 2014 EMC Corporation. All
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
Cloud Computing. Chapter 1 Introducing Cloud Computing
Cloud Computing Chapter 1 Introducing Cloud Computing Learning Objectives Understand the abstract nature of cloud computing. Describe evolutionary factors of computing that led to the cloud. Describe virtualization
Analysis and Research of Cloud Computing System to Comparison of Several Cloud Computing Platforms
Volume 1, Issue 1 ISSN: 2320-5288 International Journal of Engineering Technology & Management Research Journal homepage: www.ijetmr.org Analysis and Research of Cloud Computing System to Comparison of
Citrix XenApp Server Deployment on VMware ESX at a Large Multi-National Insurance Company
Citrix XenApp Server Deployment on VMware ESX at a Large Multi-National Insurance Company June 2010 TECHNICAL CASE STUDY Table of Contents Executive Summary...1 Customer Overview...1 Business Challenges...1
Datamation. Find the Right Cloud Computing Solution. Executive Brief. In This Paper
Find the Right Cloud Computing Solution In This Paper There are three main cloud computing deployment models: private, public, and hybrid The true value of the cloud is achieved when the services it delivers
Windows Server Virtualization An Overview
Microsoft Corporation Published: May 2006 Abstract Today s business climate is more challenging than ever and businesses are under constant pressure to lower costs while improving overall operational efficiency.
How To Compare The Two Cloud Computing Models
WHITE PAPER Elastic Cloud Infrastructure: Agile, Efficient and Under Your Control - 1 - INTRODUCTION Most businesses want to spend less time and money building and managing infrastructure to focus resources
SURFsara HPC Cloud Workshop
SURFsara HPC Cloud Workshop www.cloud.sara.nl Tutorial 2014-06-11 UvA HPC and Big Data Course June 2014 Anatoli Danezi, Markus van Dijk [email protected] Agenda Introduction and Overview (current
ORACLE COHERENCE 12CR2
ORACLE COHERENCE 12CR2 KEY FEATURES AND BENEFITS ORACLE COHERENCE IS THE #1 IN-MEMORY DATA GRID. KEY FEATURES Fault-tolerant in-memory distributed data caching and processing Persistence for fast recovery
A quantitative comparison between xen and kvm
Home Search Collections Journals About Contact us My IOPscience A quantitative comparison between xen and kvm This content has been downloaded from IOPscience. Please scroll down to see the full text.
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)
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 Paradigm Shift. Jan Šedivý
Cloud Computing Paradigm Shift Jan Šedivý Business expectations Improving business processes Reducing enterprise costs Increasing the use of information/analytics Improving enterprise workforce effectiveness
Whitepaper. The ABC of Private Clouds. A viable option or another cloud gimmick?
Whitepaper The ABC of Private Clouds A viable option or another cloud gimmick? Although many organizations have adopted the cloud and are reaping the benefits of a cloud computing platform, there are still
SECURE, ENTERPRISE FILE SYNC AND SHARE WITH EMC SYNCPLICITY UTILIZING EMC ISILON, EMC ATMOS, AND EMC VNX
White Paper SECURE, ENTERPRISE FILE SYNC AND SHARE WITH EMC SYNCPLICITY UTILIZING EMC ISILON, EMC ATMOS, AND EMC VNX Abstract This white paper explains the benefits to the extended enterprise of the on-
Open Cloud System. (Integration of Eucalyptus, Hadoop and AppScale into deployment of University Private Cloud)
Open Cloud System (Integration of Eucalyptus, Hadoop and into deployment of University Private Cloud) Thinn Thu Naing University of Computer Studies, Yangon 25 th October 2011 Open Cloud System University
STeP-IN SUMMIT 2013. June 18 21, 2013 at Bangalore, INDIA. Performance Testing of an IAAS Cloud Software (A CloudStack Use Case)
10 th International Conference on Software Testing June 18 21, 2013 at Bangalore, INDIA by Sowmya Krishnan, Senior Software QA Engineer, Citrix Copyright: STeP-IN Forum and Quality Solutions for Information
Viswanath Nandigam Sriram Krishnan Chaitan Baru
Viswanath Nandigam Sriram Krishnan Chaitan Baru Traditional Database Implementations for large-scale spatial data Data Partitioning Spatial Extensions Pros and Cons Cloud Computing Introduction Relevance
Georgiana Macariu, Dana Petcu, CiprianCraciun, Silviu Panica, Marian Neagul eaustria Research Institute Timisoara, Romania
Open source API and platform for heterogeneous Cloud computing environments Georgiana Macariu, Dana Petcu, CiprianCraciun, Silviu Panica, Marian Neagul eaustria Research Institute Timisoara, Romania Problem
Elastic Private Clouds
White Paper Elastic Private Clouds Agile, Efficient and Under Your Control 1 Introduction Most businesses want to spend less time and money building and managing IT infrastructure to focus resources on
The Private Cloud Your Controlled Access Infrastructure
White Paper: Private Clouds The ongoing debate on the differences between a Public and Private Cloud are broad and often loud. The bottom line is that it s really about how the resource, or computing power,
IaaS Cloud Architectures: Virtualized Data Centers to Federated Cloud Infrastructures
IaaS Cloud Architectures: Virtualized Data Centers to Federated Cloud Infrastructures Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF Introduction
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
Running Oracle Databases in a z Systems Cloud environment
Running Oracle Databases in a z Systems Cloud environment Sam Amsavelu [email protected] ISV & Channels Technical Sales - Oracle IBM Advanced Technical Skills (ATS), America Technical University/Symposia
Achieving Real-Time Business Solutions Using Graph Database Technology and High Performance Networks
WHITE PAPER July 2014 Achieving Real-Time Business Solutions Using Graph Database Technology and High Performance Networks Contents Executive Summary...2 Background...3 InfiniteGraph...3 High Performance
Accelerating Enterprise Applications and Reducing TCO with SanDisk ZetaScale Software
WHITEPAPER Accelerating Enterprise Applications and Reducing TCO with SanDisk ZetaScale Software SanDisk ZetaScale software unlocks the full benefits of flash for In-Memory Compute and NoSQL applications
Deploying Business Virtual Appliances on Open Source Cloud Computing
International Journal of Computer Science and Telecommunications [Volume 3, Issue 4, April 2012] 26 ISSN 2047-3338 Deploying Business Virtual Appliances on Open Source Cloud Computing Tran Van Lang 1 and
C a r l G o e t h a l s T e r r e m a r k E u r o p e. C a r l. g o e t h a l s @ t e r r e m a r k. c o m
Cloud Computing for Government & Enterprise C a r l G o e t h a l s T e r r e m a r k E u r o p e C a r l. g o e t h a l s @ t e r r e m a r k. c o m Agenda Some history on Terremark State of Cloud Public
CLOUD COMPUTING. When It's smarter to rent than to buy
CLOUD COMPUTING When It's smarter to rent than to buy Is it new concept? Nothing new In 1990 s, WWW itself Grid Technologies- Scientific applications Online banking websites More convenience Not to visit
CA ARCserve Family r15
CA ARCserve Family r15 Rami Nasser EMEA Principal Consultant, Technical Sales [email protected] The ARCserve Family More than Backup The only solution that: Gives customers control over their changing
