Evaluating Caching Strategies for Cloud Data Access using an Enterprise Service Bus
|
|
|
- Frank Chandler
- 10 years ago
- Views:
Transcription
1 Institute of Architecture of Application Systems Evaluating Caching Strategies for Cloud Data Access using an Enterprise Service Bus Santiago Gómez Sáez, Vasilios Andrikopoulos, Frank Leymann, Steve Strauch Institute of Architecture of Application Systems, University of Stuttgart, Germany {santiago.gomez-saez, vasilios.andrikopoulos, frank.leymann, author = {Santiago G{\'o}mez S{\'a}ez and Vasilios Andrikopoulos and Frank Leymann and Steve Strauch}, title = {Evaluating Caching Strategies for Cloud Data Access using an Enterprise Service Bus}, booktitle = {Proceedings of the IEEE International Conference on Cloud Engineering (IEEE IC2E 2014)}, year = {2014}, pages = { }, doi = { /IC2E }, publisher = {IEEE Computer Society} } 2014 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 2014 IEEE International Conference on Cloud Engineering Evaluating Caching Strategies for Cloud Data Access using an Enterprise Service Bus Santiago Gómez Sáez, Vasilios Andrikopoulos, Frank Leymann, Steve Strauch Institute of Architecture of Application Systems (IAAS) University of Stuttgart, Stuttgart, Germany {santiago.gomez-saez, vasilios.andrikopoulos, frank.leymann, Abstract Nowadays different Cloud services enable enterprises to migrate applications to the Cloud. An application can be partially migrated by replacing some of its components with Cloud services, or by migrating one or multiple of its layers to the Cloud. As a result, accessing application data stored offpremise requires mechanisms to mitigate the negative impact on Quality of Service (QoS), e.g. due to network latency. In this work, we propose and realize an approach for transparently accessing data migrated to the Cloud using a multi-tenant open source Enterprise Service Bus (ESB) as the basis. Furthermore, we enhance the ESB with QoS awareness by integrating it with an open source caching solution. For evaluation purposes we generate a representative application workload using data from the TPC-H benchmark. Based on this workload, we then evaluate the optimal caching strategy among multiple eviction algorithms when accessing relational databases located at different Cloud providers. Keywords Enterprise Service Bus (ESB); Cache; Relational Databases; Performance Optimization I. INTRODUCTION The successful introduction of the Cloud computing paradigm generated the need for Cloud-enabled applications, i.e. applications that are migrated to the Cloud. Most of the literature on the subject discusses Cloud migration as the re-packaging of applications into one or more virtual machines (VMs). However, the increasing number of available Cloud services on the Platform as a Service (PaaS) level like Google App Engine 1 allow for the partial migration of the application [1]. In this context it becomes possible to migrate only some of the components of the application off-premise (in the Cloud), e.g. its database, or some of the application functionality, e.g. backing up of data, while the remaining of the application remains on-premise. Focusing in particular on the Data Layer of the application, as defined by Fowler [2], i.e. as the data accessing, manipulation and persistence aspect of the application, there are two different types of migration options: in one type the usually, but not necessarily, relational database management system (RDBMS) used by the application is migrated as a whole to a VM and accessed remotely by the application through conventional means, e.g. SQL commands over a JDBC connection. The other type relies on a predefined (usually RESTful) API provided by a Database as a Service (DBaaS) like Amazon SimpleDB 2. 1 Google App Engine: 2 Amazon SimpleDB: In any case, accessing the application database over a network, and relying on exogenous to the application resources due to hosting the database off-premise has potentially a significant negative impact on the QoS of the application, e.g. due to unpredictability in the network latency between the application and the data, or to variability in the performance of the Cloud service provider [1]. Furthermore, as discussed more extensively in [1], migrating (any part of) the application to the Cloud most probably involves a degree of adaptation involved. In the best case only a degree of re-wiring may be necessary to redirect the application to the migrated off-premise database. In the worse case, significant changes may be required to the application logic in order to cope with incompatibilities in the way the data is accessed, e.g. when moving to a DBaaS from a traditional RDBMS. In order to minimize the adaptation effort required, and to mitigate the negative impact on the QoS of the application by migrating its Data Layer to the Cloud, we propose the use of an Enterprise Service Bus (ESB) solution as the means to provide transparent data access to potentially multiple databases migrated to the Cloud. While similar efforts, e.g. [3] have proposed the use of ESBs in accessing data services, they rely on wrapping the database as a Web services and therefore require additional development effort. Furthermore, these approaches do not utilize caching support on the level of data requests in order to cope with network latency, as traditionally supported by middleware solutions. The solution we discuss in the later sections has built-in caching support, allowing for multiple caching strategies to be selected from a list of available ones. Since the efficiency of caching strategies relies heavily on the nature of the application workload [4], a major goal of this work is to provide an evaluation of the efficiency of our proposal for one representative application workload before generalizing the discussion across different loads in the future. The contributions of this work can therefore be summarized as follows: The design and realization of CDASMix, a multi-tenant aware ESB solution with caching support that enables transparent data access to databases both on-premise and off-premise. A performance evaluation of our proposal, with the dual purpose of showing the impact of introducing CDASMix to the performance of the application, and identifying the optimal caching strategy for CDASMix /14 $ IEEE DOI /IC2E
3 for different deployment options across Cloud service providers. A set of initial findings stemming from this evaluation, that can be valuable for related efforts. The remaining of this paper is structured as follows: Section II discusses the architecture and implementation of our proposal. Section III discusses the methodology, experimental setup and results, and the most important findings of the evaluation of our proposal. Section IV summarizes related work. Finally, Section V concludes with future work. II. CDASMIX: CLOUD DATA ACCESS SUPPORT IN SERVICEMIX In this section we present Cloud Data Access Support in ServiceMix (CDASMix), an architecture and implementation approach enabling transparent data access to relational databases both on-premise and off-premise. We reuse and extend ESB MT, a multi-tenant aware ESB solution [5], as the basis for the design and realization of our approach. ESB MT enhances the Apache ServiceMix 4.3 JBI container 3 with multitenant communication support for service endpoints deployed in the ESB, and multi-tenant aware dynamic endpoint deployment capabilities. As ESB MT focuses on enabling multi-tenancy at the communication level between application services rather than on application s data access, the remaining of this section describes the extensions realized for CDASMix. The ESB MT provides a Web UI and a Web services API in order to offer customization, administration, and management functionalities to its users [5]. The Web services API was extended with a set of operations for configuring the transparent data access. No modifications on the Web UI were required. The Business Logic layer of ESB MT enables role-based access control for administration and management of the JBI Container Instance Cluster in the Resources layer [5]. The realization of transparent Cloud data access support in CDASMix does not require architectural modifications on this layer, but extensions for enabling administration and persistence of information related to the tenant s off-premise data stores are needed. The Resources Layer of CDASMix consists of a set of registries and multiple JBI containers which constitute a JBI Container Instance Cluster. CDASMix uses the existing ESB MT registries described in [5]. The service registry database schema has been extended to store Cloud data access management information in a tenant aware manner. SQL statements Routing support required this extension to include both connection-related information and database-specific information, e.g. remote database URL and database schema details respectively. In the following we focus on the required extensions of each instance of the JBI container cluster in order to enable transparent Cloud data access support (Fig. 1). JBI containers provide integration support with external services via various protocols and message processing facilities such as routing, as in traditional ESB solutions. ESB MT, and by extension CDASMix, is based on the OSGi Framework 4 in order to allow components to be deployed in a loosely coupled manner. The ServiceMix solution at the core of ESB MT is equipped 3 Apache ServiceMix: 4 OSGi Version 4.3: for this purpose with several OSGi components which realize the ESB functionality complying to the JBI specification. For example, the ServiceMix-HTTP Binding Component (BC) supports interactions with external services via HTTP, and the Apache Camel 5 Service Engine (SE) realizes a set of known Enterprise Integration Patterns [6]. The Normalized Message Router (NMR) provides integration support between JBI and OSGi components within the ESB through a message-based interface. JBI components provided by ServiceMix support multiple communication protocols (e.g. HTTP, JMS, etc.) by marshaling and demarshaling protocol-specific messages into a standardized internal Normalized Message Format (NMF) [7]. Nevertheless, database system native communication protocols are not supported, as they are solution-specific. We focus our approach on providing communication support for a well known and widely used RDBMS, MySQL 6. The same approach however can be used to provide support for other systems such as PostgresSQL 7. Figure 1 zooms in the architecture of one ESB instance in the cluster in order to illustrate how transparent message routing and transformation of application data requests was realized for enabling transparent access through one physical endpoint in CDASMix to potentially multiple backend data stores. The developed MySQL Proxy is an OSGi component that implements an OSGi- and JBI-compliant version of a Java-based MySQL proxy and serves as the physical endpoint to communicate via the native communication protocol of MySQL. We extended and integrated the existing open source Java-based MySQL Proxy in Myosotis Tungsten Connector 8 for this purpose. The MySQL Proxy is fully integrated with the JBI container via the Normalized Message Routing (NMR) API. ACache Cluster ensures high performance of SQL read operations in CDASMix by dynamically generating cache keys based on the information type received in the MySQL Proxy, and by deleting cache records when SQL statements involve data modification. For the realization we reused and extended Ehcache by integrating it into CDASMix also as an OSGi bundle. The ESB MT Camel SE (denoted as SMX-Camel-mt in Fig. 1) provides multi-tenancy and integration support between the JBI environment and the Enterprise Integration Patterns realizations of Apache Camel. A custom Camel component named CamelcdasmixJDBC was developed in CDASMix in order to dynamically connect to off-premise data sources via multiple database system communication protocols. The CamelcdasmixJDBC component is accessed through a Camel endpoint in the SMX-Camel OSGi component (Fig. 1). The utilization of the SMX-Camel OSGi component enables loading of CamelcdasmixJDBC component packages during runtime, e.g. in order to support a new database system. Focusing on caching, the version of Ehcache currently used supports three popular cache eviction algorithms: Least Recently Used (LRU), Least Frequently used (LFU), and First In First Out (FIFO). LRU deletes the element with the last used timestamp, LFU the element with the least number of hits, and the FIFO algorithm deletes the elements from the cache in the same 5 Apache Camel: 6 MySQL: 7 PostgresSQL: 8 Tungsten Replicator: 9 Ehcache: 290
4 Presentation Web Service API Web UI Access Layer External Application Business Logic Tenant Registry Manager Configuration Registry Manager Service Registry Manager JBI Container Manager Service Assembly Manager Resources Message Broker Tenant Registry Database Configuration Registry Database Service Registry Database Cluster JBI Container Instance Cluster MySQL Proxy Cache Cluster Instance Instance 1 1 Instance 1 OSGi Environment JBI Environment NMR API Standardized Interfaces for Binding Components Normalized Message Router Standardized Interfaces for Service Engines Camel cdasmixjdbc SMX- Camel Backend Cloud Data Store Provider SMX-Camel -mt Legend Message Flow OSGi Component JBI Component Figure 1. Architecture of an ESB Instance in CDASMix order they were put into the cache [8]. The effectiveness of these algorithms in comparison to the absence of cache, and to the direct accessing of off-premise data sources (without CDASMix intervention), is discussed in the following section. A. Methodology III. EVALUATION In this work we focus on measuring the impact of introducing an ESB between the application and its migrated data to off-premise Cloud services, and on introducing multiple caching strategies to ameliorate negative performance effects. In general, the best caching strategy is the one that minimizes the end-to-end client latency of the application. Therefore, we do not only measure the latency (e.g. in terms of throughput or response time), but also the performance of the cache eviction algorithm (e.g. cache hit rate vs. cache miss rate). The caching strategy selection when accessing data in a multi-tier architecture is heavily dependent on the application workload [4]. CDASMix is meant to be used for databases that are accessed transparently over the network. For the purposes of this work we therefore focus the workload generation towards maximizing the data volume transfered through CDASMix, effectively simulating a read-intensive application [9], i.e. an application that mostly executes complex read operations in its database system. The TPC-H 10 benchmark provides a set of complex queries for a predefined database schema. However, the benchmark does not include a load driver, and the queries are not distributed across a predefined workload. Therefore, in order to evaluate CDASMix we generate an application workload reusing a fixed set of N TPC-H queries, but organizing them towards building a discrete uniform workload distribution, 10 Transaction Processing Performance Council: Apache JMeter 2.9 D2 D1 D3 E Amazon RDS MySQL 5.1 instance TPC-H CDASMix E3 E2 E1 VM1 (Amazon EC2) MySQL 5.1 TPC-H VM0 (Flexiscale) Legend MySQL 5.1 Message Flow TPC-H Measurement Point Throughput and Transfer Rate Built-in Cache Figure 2. Overview of the Experimental Setup where each query has a probability of 1/N of being included in the workload. In addition, three main scenarios are taken into consideration in this evaluation, based on different Cloud infrastructures where the database can be deployed, as shown in Fig. 2: I. in an RDBMS on the same VM as CDASMix (VM0 on Flexiscale 11 ); II. in an RDBMS hosted on a VM of a different Cloud provider (CDASMix on VM0 (Flexiscale) and MySQL hosted on Amazon EC2 12 (VM1)); and III. in a DBaaS solution (Amazon RDS 13 ) with the CDASMix hosted on VM0. For each of the scenarios, we first compare the direct access to the database, with a transparent access to the database through 11 Flexiant Flexiscale: 12 Amazon EC2: 13 Amazon RDS: 291
5 CDASMix without caching support enabled (see Fig. 2). In a second step, we enable caching support in CDASMix, and evaluate the effect on performance of the available cache eviction algorithms: LRU, LFU, and FIFO. Performance is measured in terms of average throughput (Req./s) and average cache hit ratio (% cache hit). For simplifying the discussion, one tenant is used across all scenarios. B. Experimental Setup The TPC-H benchmark provides a set of operations for generating different volumes of data, and a set of complex queries for a predefined database schema. For this evaluation, a sample data of 1GB was created, and imported into the relational database systems deployed in Flexiscale and Amazon, and into a database instance deployed on Amazon RDS. In terms of load driving, we generate a workload of 100 queries from 5 original queries 14. Each query of the workload retrieves a data volume of approximately 2.5MB from the database system. Towards minimizing the network latency and establishing the evaluation baseline of hosting the application stack in the same system as CDASMix, Apache JMeter 15 is used for load driving purposes in VM0. The workload is then imported into the load driver, and the JDBC connections are configured using the MySQL Connector/J (5.1.22) to submit the queries. In the case of direct connections to MySQL on Flexiant/Amazon EC2 and Amazon RDS, the loader has to be configured separately to address the various endpoints of the databases (connections D1, D2 and D3 in Fig. 2). When CDASMix is used, JMeter is configured only once with an ESB endpoint (connection E in Fig. 2) and the redirection of the queries to the various databases through connections E1 to E3 uses the configuration mechanisms offered by CDASMix. JMeter is set up to measure the elapsed time for each request to be processed, out of which we calculate the average throughput of the load in executed transactions per second. In terms of the experimental setup shown in Fig. 2, the virtual machine VM0 (8GB RAM, 4 CPUs AMD Opteron 2GHz with 512KB cache) hosted in the Flexiscale infrastructure runs Ubuntu Linux OS. Deploying CDASMix and JBIMulti2 in VM0 also required the deployment of the JOnAS application server (for JBIMulti2), and the PostgreSQL database (for the registries). The maximum JVM memory heap size of the ServiceMix process was set to 1GB. In the same VM, a MySQL database system with an internal cache size of 16MB was installed. The My-SQL built-in cache in the database systems deployed in VM1 and VM0 use an LRU eviction algorithm incorporating a midpoint insertion strategy. In the Amazon AWS Cloud infrastructure, both the Amazon EC2 VM and the Amazon RDS database are hosted in the eu-west-1a availability zone. An m1.xlarge EC2 instance running the Ubuntu LTS OS was created, and MySQL database system was deployed on it, with an internal cache size of 16MB. In Amazon RDS, a db.m1.xlarge instance was created, running a MySQL engine version, as the MySQL engine version is not available. 14 Generated Load: publications/ic2e14/queries4load/generatedload csv 15 Apache JMeter: C. Experimental Results Figures 3 and 4 summarize our throughput and hit rate measurements, respectively, for all scenarios discussed in the evaluation s methodology. With respect to throughput, the following conclusions can be drawn from Fig. 3: Using CDASMix for transparent data access without any caching (NoCache cases in Fig. 3) always results to worse performance compared to directly accessing the database (through a JDBC connection). This is due to additional processing performed by CDASMix. However, use of caching improves performance significantly in all scenarios. LFU appears to be the more successful eviction algorithm in the MySQL-based scenarios (Fig. 3a) but yields slightly worse results than the other two when used in conjunction with Amazon RDS (Fig. 3b). For the case where the database is basically on-premise (Scenario I), even with caching enabled the throughput is (around 50%) worse when CDASMix is used. However, using LFU reduces the latency to almost 10%. In the presence of network latency (Scenarios II and III), the use of caching results in better throughput when compared to the direct connection (Scenario II) and/or the absence of caching (Scenario III). Based on the measurements shown in Fig. 3b, we can conclude that RDS implements an unspecified caching strategy which appears to be more effective for the generated workload. Adding (SQL) updates to the workload results in significantly less throughput; further investigation is required in this direction. Furthermore, the effect of network latency appears to be less in this scenario, due to the data-intensive nature of the service i.e. being optimized for data transfers instead of computation (as in the case of using IaaS solution in the other scenarios). As a result, all three eviction algorithms produce very similar results. The measured hit rate is similar for all three algorithms across all scenarios (Fig. 4) and depends on the load used. In the work load that we generated, repetition of queries is (on purpose) low, which results relatively often in evicting items from the cache (almost 20% of the time). The most successful strategy for MySQL-based scenarios (LFU) has actually the worse hit rate from all algorithms, but relies extensively on the caching strategy implemented by MySQL (LRU). The impact of our findings is discussed in the following. D. Discussion Going back to the original goal of this work, the previous results have positively demonstrated that a) it is indeed possible to use an ESB solution in order to enable transparent access to data that are migrated off-premise (in the Cloud), and b) in order to achieve acceptable, and in some cases better performance, caching plays the most important role. Caching effectively ameliorates the impact of network latency introduced by the migration of the database, and becomes more important as latency varies unpredictably over time. However, choosing the appropriate caching strategy depends heavily on the application(s) workload. The reported results concerning 292
6 Throughput (requests/sec) 0,0350 0,0300 0,0250 0,0200 0,0150 0,0100 0,0050 0,0334 0,0300 0,0287 0,0277 0,0161 0,0269 0,0250 0,0240 0,0206 0,0125 Direct NoCache LRU LFU FIFO Throughput (requests/sec) 0,3500 0,3000 0,2500 0,2000 0,1500 0,1000 0,0500 0,3014 0,0205 0,0328 0,0324 0,0328 Direct NoCache LRU LFU FIFO 0,0000 I II (a) Scenarios I& II(MySQL in IaaS solutions) 0,0000 III (b) Scenario III (DBaaS) Figure 3. Throughput in Requests per Second for all Scenarios Hit Rate (%) 83,00% 82,00% 81,00% 80,00% 79,00% 78,00% 77,00% 76,00% 75,00% 74,00% 73,00% 72,00% Figure 4. 78,19% 75,96% 80,39% 81,95% 75,71% 80,68% 79,30% 79,36% 77,58% I II III Average Hit Rate Per Scenario the efficiency of the LFU eviction algorithm are applicable only to applications with read-heavy workloads. Generalizing our findings requires different type of loads also to be taken into consideration. Furthermore, by introducing caching on the level of CDASMix, i.e. between the application and its database, we have basically implemented a two-level caching system with different caching strategies per level. In the case of Scenarios I and II, for example, our measurements show that LRU (on MySQL side) works more efficiently in tandem with LFU (at CDASMix), rather than with any other strategy. LFU at CDASMix however seems to antagonize the caching strategy implemented by Amazon RDS and does not produce better results than e.g. FIFO. It becomes therefore important to be able to identify the appropriate, meaning complementary, caching strategies for CDASMix and the RDBMS or DBaaS used. Further investigation is required for e.g. PostgresSQL and Google SQL. IV. RELATED WORK Accessing Cloud data services through an ESB is currently supported by the JBoss Enterprise Data Service Platform 16,by means of exposing databases as data Web services that can be accessed through an ESB [3]. However, vendor-specific 16 JBoss Data Services Platform: jbossenterprisemiddleware/data-services LRU LFU FIFO communication protocols supported by relational database systems, e.g. MySQL, PostgreSQL, Oracle, usually realized in standardized APIs, e.g. JDBC 17, are not supported. Applications accessing these data services should either be adapted to use them, or designed specifically for them. CDASMix allows applications to interact with both on- and off-premise databases through the ESB in their native communication protocol with minimum adaptations required. Other ESB technologies, e.g. Fuse ESB 18, and integration frameworks such as Apache Camel 19, support configuration of connections to external relational database systems for internal processing and routing purposes. However, incoming (client-side) connections are not configurable in such technologies. CDASMix minimizes the required modifications in the application s upper layers when migrating its data to the Cloud. Caching strategies and replication have been widely investigated in the scope of Web applications [4], [10], [11]. Caching dynamic Web content reduces the latency when getting both application data, and application Web pages [9]. Nowadays, Web applications do not statically retrieve the Web page s content, but dynamically create Web pages based on business specific requirements, e.g. customized Web pages based on predefined user preferences. In [4] the importance of characterizing the application s workload prior to the selection of the caching strategy in order to scale Web applications is remarked. Furthermore, in [9] an approach for dynamically caching Web pages at the front-end of a multi-tier J2EE architecture is presented. However, the utilization of an ESB as the application s data access layer is not considered in these works, and therefore caching support is realized within the different servers hosting the application tiers, rather than in Message-Oriented Middleware (MOM) components. Caching support in middleware systems aims to reduce the complexity of realizing caching in the application logic. In [12] a cache mediation pattern for MOM is proposed as a reusable solution for accelerating service responses. However, caching strategy definitions or developer guidelines towards selecting the most appropriate caching strategy are not included in their proposal. Furthermore, multi-tenancy awareness is not considered. The 17 JDBC: 18 Fuse ESB: 19 Apache Camel JDBC: 293
7 integrated caching solution in CDASMix realizes multi-tenancy support atop of the original caching operations by dynamically creating multi-tenant aware cache keys. Different Cloud aware benchmarks have been created to evaluate several features such as elasticity [13] and performance isolation [14]. To the extent of our knowledge, there is no commonly agreed benchmarking approach for evaluating Cloudenabled middleware components such as an ESB. In [5] we extended an ESB-specific benchmark to enable multitenancy awareness. However, neither the benchmark nor the workload are suitable for evaluating CDASMix. Transaction processing and relational database benchmarks are available for evaluation purposes, e.g. the TPC-* benchmarks from the Transaction Processing Performance Council. For example, the TPC-W benchmark generates Web application workload by emulating Web browsers [15], and TPC-H evaluates accessing large data volume through complex queries. The evaluation of transparently accessing migrated data in the Cloud through an ESB, and therefore the evaluation of performance improvement when utilizing different intermediate caching strategies, is not yet covered by such benchmarks. RadarGun 20 is a Cache Benchmark Framework which focuses specifically on caching solutions, but not on accessing data remotely, e.g. via an ESB using relational database system communication protocols. Therefore, we chose to generate an artificial workload using sample data from the TPC-H benchmark, use Apache JMeter as the driver for this load, and configure different caching strategies in CDASMix. V. CONCLUSIONS AND FUTURE WORK In the previous sections we presented and evaluated an approach for transparently accessing data stored both onor off-premise (i.e. in the Cloud) through an ESB solution. We proposed an architectural approach for accessing data in relational database systems, e.g. MySQL, PostgreSQL, etc., through an existing multi-tenant aware ESB solution (ESB MT ). The adaptation of the ESB MT to allow applications to communicate with its database(s) required modifications to it, including the realization of a MySQL Proxy supporting the native MySQL communication protocol, database-aware routing and connection components, and caching mechanisms to mitigate the latency introduced by the network and routing operations. The resulting solution, CDASMix, allows applications to communicate using JDBC with it, while transparently redirecting their (SQL) requests to databases either on-premise or off-premise. For evaluation purposes we generated a read-heavy application workload using sample data and queries from the TPC-H benchmark, and specified multiple scenarios for several Cloud services and caching strategies. We observed an expected performance degradation when using CDASMix compared to direct accessing the database from the application. However, we demonstrated that the performance degradation is mitigated, and in some cases overturned, when caching support is enabled. Furthermore, we went a step further, and found for the used database system and generated workload the most appropriate cache eviction algorithms combination for effectively coordinating a two level cache formed by the CDASMix cache and the built-in MySQL cache. This finding however cannot be replicated when using Amazon RDS as the remote database, indicating the use of an unspecified caching mechanism at the DBaaS side. Of particular interest to our future investigation is to include in CDASMix components to support NoSQL database systems specific communication protocols, e.g. JSON over HTTP supported in Amazon DynamoDB, etc. Furthermore, at the caching level we plan to extend the set of cache eviction algorithms actually supported by the multi-tenant aware caching component, investigate towards distributed caching mechanisms when enabling horizontal scalability of CDASMix, and optimize the performance of the integrated cache solution, e.g. based on eliminating noise in large cache systems. We also plan to extend the evaluation methodology towards analyzing and identifying different application workloads for scalability purposes using for example RadarGun 20, an open source benchmarking framework for distributed caches. ACKNOWLEDGMENTS This work is funded by the FP7 EU-FET project AL- LOW Ensembles and the BMBF-project ECHO (01XZ13023G). REFERENCES [1] V. Andrikopoulos, T. Binz, F. Leymann, and S. Strauch, How to Adapt Applications for the Cloud Environment, Computing, vol. 95, no. 6, pp , [2] M. Fowler et al., Patterns of Enterprise Application Architecture. Addison-Wesley Professional, [3] Red Hat, Inc, Gap Analysis: The Case for Data Services, [4] S. Sivasubramanian, G. Pierre, M. van Steen, and G. Alonso, Analysis of Caching and Replication Strategies for Web Applications, Internet Computing, IEEE, vol. 11, no. 1, pp , [5] S. Strauch, V. Andrikopoulos, S. Gómez Sáez, and F. Leymann, ESB MT : A Multi-tenant Aware Enterprise Service Bus, International Journal of Next-Generation Computing, vol. 4, no. 3, pp , [6] Gregor Hohpe and Bobby Woolf, Enterprise Integration Patterns: Designing, Building, and Deploying Messaging Solutions. Addison- Wesley Professional, [7] T. Rademakers and J. Dirksen, Open-Source ESBs in Action. Greenwich, CT, USA: Manning Publications Co., [8] J. Handy, The Cache Memory Book, 2nd ed. Morgan Kaufmann, [9] S. Bouchenak, A. Cox, S. Dropsho, S. Mittal, and W. Zwaenepoel, Caching Dynamic Web Content: Designing and Analysing an Aspect- Oriented Solution, in Proceedings of Middleware 06. Springer, 2006, pp [10] M. Rabinovich and O. Spatscheck, Web Caching and Replication. Addison-Wesley, [11] D. Wessels, Web Caching. O Reilly & Associates, Inc., [12] F. Y. Rao, R. Fang, Z. Tian, E. Lane, H. Srinivasan, T. Banks, and L. He, Cache Mediation Pattern, in Proceedings of OOPSLA 05, [13] P. Brebner, Is Your Cloud Elastic Enough?: Performance Modelling the Elasticity of Infrastructure as a Service (IaaS) Cloud Applications, in Proceedings of ICPE 12, 2012, pp [14] R. Krebs, C. Momm, and S. Kounev, Metrics and Techniques for Quantifying Performance Isolation in Cloud Environments, in Proceedings of QoSA 12. ACM, 2012, pp [15] D. A. Menascé, TPC-W: A Benchmark for E-Commerce, Internet Computing, IEEE, vol. 6, no. 3, pp , All links were last followed on January 22, RadarGun: 294
Transparent Access to Relational Databases in the Cloud Using a Multi-Tenant ESB
Institute of Architecture of Application Systems Transparent Access to Relational Databases in the Cloud Using a Multi-Tenant ESB Steve Strauch, Vasilios Andrikopoulos, Santiago Gómez Sáez, Frank Leymann
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
ESB MT : A Multi-tenant Aware Enterprise Service Bus
Institute of Architecture of Application Systems ESB MT : A Multi-tenant Aware Enterprise Service Bus Steve Strauch, Vasilios Andrikopoulos, Santiago Gómez Sáez, Frank Leymann Institute of Architecture
Implementation and Evaluation of a Multi-tenant Open-Source ESB
Institute of Architecture of Application Systems Implementation and Evaluation of a Multi-tenant Open-Source ESB Steve Strauch, Vasilios Andrikopoulos, Santiago Gómez Sáez, Frank Leymann Institute of Architecture
Extending an Open Source Enterprise Service Bus for Cloud Data Access Support
Institute of Architecture of Application Systems University of Stuttgart Universitätsstraße 38 D-70569 Stuttgart Diploma Thesis No. 3419 Extending an Open Source Enterprise Service Bus for Cloud Data Access
Cloud Computing: Meet the Players. Performance Analysis of Cloud Providers
BASEL UNIVERSITY COMPUTER SCIENCE DEPARTMENT Cloud Computing: Meet the Players. Performance Analysis of Cloud Providers Distributed Information Systems (CS341/HS2010) Report based on D.Kassman, T.Kraska,
Clustering Versus Shared Nothing: A Case Study
2009 33rd Annual IEEE International Computer Software and Applications Conference Clustering Versus Shared Nothing: A Case Study Jonathan Lifflander, Adam McDonald, Orest Pilskalns School of Engineering
Enabling Database-as-a-Service (DBaaS) within Enterprises or Cloud Offerings
Solution Brief Enabling Database-as-a-Service (DBaaS) within Enterprises or Cloud Offerings Introduction Accelerating time to market, increasing IT agility to enable business strategies, and improving
Performance Management for Cloudbased STC 2012
Performance Management for Cloudbased Applications STC 2012 1 Agenda Context Problem Statement Cloud Architecture Need for Performance in Cloud Performance Challenges in Cloud Generic IaaS / PaaS / SaaS
Towards Dynamic Application Distribution Support for Performance Optimization in the Cloud
Institute of Architecture of Application Systems Towards Dynamic Application Support for Performance Optimization in the Cloud Santiago Gómez Sáez, Vasilios Andrikopoulos, Frank Leymann, Steve Strauch
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
White Paper. Cloud Native Advantage: Multi-Tenant, Shared Container PaaS. http://wso2.com Version 1.1 (June 19, 2012)
Cloud Native Advantage: Multi-Tenant, Shared Container PaaS Version 1.1 (June 19, 2012) Table of Contents PaaS Container Partitioning Strategies... 03 Container Tenancy... 04 Multi-tenant Shared Container...
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
Enterprise Service Bus Evaluation as Integration Platform for Ocean Observatories
Enterprise Service Bus Evaluation as Integration Platform for Ocean Observatories Durga pavani Brundavanam, Mississippi state university Mentor: Kevin Gomes Summer 2009 Keywords: Integration, Enterprise
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
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
Migrating Application Data to the Cloud Using Cloud Data Patterns
Institute of Architecture of Application Systems Migrating Application Data to the Cloud Using Cloud Data Patterns Steve Strauch, Vasilios Andrikopoulos, Thomas Bachmann, Frank Leymann Institute of Architecture
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
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
Performance Analysis of Web based Applications on Single and Multi Core Servers
Performance Analysis of Web based Applications on Single and Multi Core Servers Gitika Khare, Diptikant Pathy, Alpana Rajan, Alok Jain, Anil Rawat Raja Ramanna Centre for Advanced Technology Department
Dependency Free Distributed Database Caching for Web Applications and Web Services
Dependency Free Distributed Database Caching for Web Applications and Web Services Hemant Kumar Mehta School of Computer Science and IT, Devi Ahilya University Indore, India Priyesh Kanungo Patel College
PipeCloud : Using Causality to Overcome Speed-of-Light Delays in Cloud-Based Disaster Recovery. Razvan Ghitulete Vrije Universiteit
PipeCloud : Using Causality to Overcome Speed-of-Light Delays in Cloud-Based Disaster Recovery Razvan Ghitulete Vrije Universiteit Introduction /introduction Ubiquity: the final frontier Internet needs
Integration of Different Aspects of Multi-Tenancy in an Open Source Enterprise Service Bus
Institute of Architecture of Application Systems University of Stuttgart Universitätsstraße 38 D-70569 Stuttgart Student Thesis No. 2394 Integration of Different Aspects of Multi-Tenancy in an Open Source
Extending an Open Source Enterprise Service Bus for SQL Statement Transformation to Enable Cloud Data Access
Institute of Architecture of Application Systems University of Stuttgart Universitätsstraße 38 D-70569 Stuttgart Master Thesis No. 3506 Extending an Open Source Enterprise Service Bus for SQL Statement
An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide
Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide An Oracle White Paper July 2011 1 Disclaimer The following is intended to outline our general product direction.
19.10.11. Amazon Elastic Beanstalk
19.10.11 Amazon Elastic Beanstalk A Short History of AWS Amazon started as an ECommerce startup Original architecture was restructured to be more scalable and easier to maintain Competitive pressure for
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
How To Choose Between A Relational Database Service From Aws.Com
The following text is partly taken from the Oracle book Middleware and Cloud Computing It is available from Amazon: http://www.amazon.com/dp/0980798000 Cloud Databases and Oracle When designing your cloud
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
A Middleware Strategy to Survive Compute Peak Loads in Cloud
A Middleware Strategy to Survive Compute Peak Loads in Cloud Sasko Ristov Ss. Cyril and Methodius University Faculty of Information Sciences and Computer Engineering Skopje, Macedonia Email: [email protected]
On- Prem MongoDB- as- a- Service Powered by the CumuLogic DBaaS Platform
On- Prem MongoDB- as- a- Service Powered by the CumuLogic DBaaS Platform Page 1 of 16 Table of Contents Table of Contents... 2 Introduction... 3 NoSQL Databases... 3 CumuLogic NoSQL Database Service...
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
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
Building a Scalable News Feed Web Service in Clojure
Building a Scalable News Feed Web Service in Clojure This is a good time to be in software. The Internet has made communications between computers and people extremely affordable, even at scale. Cloud
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)
Enterprise Edition Scalability. ecommerce Framework Built to Scale Reading Time: 10 minutes
Enterprise Edition Scalability ecommerce Framework Built to Scale Reading Time: 10 minutes Broadleaf Commerce Scalability About the Broadleaf Commerce Framework Test Methodology Test Results Test 1: High
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
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
Implementing Enterprise Integration Patterns Using Open Source Frameworks
Implementing Enterprise Integration Patterns Using Open Source Frameworks Robert Thullner, Alexander Schatten, Josef Schiefer Vienna University of Technology, Institute of Software Technology and Interactive
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
A Comparison of Clouds: Amazon Web Services, Windows Azure, Google Cloud Platform, VMWare and Others (Fall 2012)
1. Computation Amazon Web Services Amazon Elastic Compute Cloud (Amazon EC2) provides basic computation service in AWS. It presents a virtual computing environment and enables resizable compute capacity.
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
Six Strategies for Building High Performance SOA Applications
Six Strategies for Building High Performance SOA Applications Uwe Breitenbücher, Oliver Kopp, Frank Leymann, Michael Reiter, Dieter Roller, and Tobias Unger University of Stuttgart, Institute of Architecture
Enabling Horizontal Scalability in an open source Enterprise Service Bus
Institute of Architecture of Application Systems University of Stuttgart Universitätsstraße 38 D 70569 Stuttgart Master s Thesis Nr. 3545 Enabling Horizontal Scalability in an open source Enterprise Service
Performance Testing of a Cloud Service
Performance Testing of a Cloud Service Trilesh Bhurtun, Junior Consultant, Capacitas Ltd Capacitas 2012 1 Introduction Objectives Environment Tests and Results Issues Summary Agenda Capacitas 2012 2 1
Benchmarking Couchbase Server for Interactive Applications. By Alexey Diomin and Kirill Grigorchuk
Benchmarking Couchbase Server for Interactive Applications By Alexey Diomin and Kirill Grigorchuk Contents 1. Introduction... 3 2. A brief overview of Cassandra, MongoDB, and Couchbase... 3 3. Key criteria
Informatica Data Director Performance
Informatica Data Director Performance 2011 Informatica Abstract A variety of performance and stress tests are run on the Informatica Data Director to ensure performance and scalability for a wide variety
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
Building an AWS-Compatible Hybrid Cloud with OpenStack
Building an AWS-Compatible Hybrid Cloud with OpenStack AWS is Transforming IT Amazon Web Services (AWS) commands a significant lead in the public cloud services market, with revenue estimated to grow from
Service Oriented Architectures
8 Service Oriented Architectures Gustavo Alonso Computer Science Department Swiss Federal Institute of Technology (ETHZ) [email protected] http://www.iks.inf.ethz.ch/ The context for SOA A bit of history
Cloud Design and Implementation. Cheng Li MPI-SWS Nov 9 th, 2010
Cloud Design and Implementation Cheng Li MPI-SWS Nov 9 th, 2010 1 Modern Computing CPU, Mem, Disk Academic computation Chemistry, Biology Large Data Set Analysis Online service Shopping Website Collaborative
Adaptation of the Data Access Layer to Enable Cloud Data Access
Institute of Architecture of Application Systems University of Stuttgart Universitätsstraße 38 D-70569 Stuttgart Master s Thesis No. 3305 Adaptation of the Data Access Layer to Enable Cloud Data Access
Performance Characteristics of VMFS and RDM VMware ESX Server 3.0.1
Performance Study Performance Characteristics of and RDM VMware ESX Server 3.0.1 VMware ESX Server offers three choices for managing disk access in a virtual machine VMware Virtual Machine File System
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
Service Mediation. The Role of an Enterprise Service Bus in an SOA
Service Mediation The Role of an Enterprise Service Bus in an SOA 2 TABLE OF CONTENTS 1 The Road to Web Services and ESBs...4 2 Enterprise-Class Requirements for an ESB...5 3 Additional Evaluation Criteria...7
USING VIRTUAL MACHINE REPLICATION FOR DYNAMIC CONFIGURATION OF MULTI-TIER INTERNET SERVICES
USING VIRTUAL MACHINE REPLICATION FOR DYNAMIC CONFIGURATION OF MULTI-TIER INTERNET SERVICES Carlos Oliveira, Vinicius Petrucci, Orlando Loques Universidade Federal Fluminense Niterói, Brazil ABSTRACT In
Stackato PaaS Architecture: How it works and why.
Stackato PaaS Architecture: How it works and why. White Paper Published in 2012 Stackato PaaS Architecture: How it works and why. Stackato is software for creating a private Platform-as-a-Service (PaaS).
On-demand Provisioning of Workflow Middleware and Services An Overview
On-demand Provisioning of Workflow Middleware and s An Overview University of Stuttgart Universitätsstr. 8 70569 Stuttgart Germany Karolina Vukojevic-Haupt, Florian Haupt, and Frank Leymann Institute of
Experiences with Transformation to Hybrid Cloud: A Case Study for a Large Financial Enterprise
New York University, CSCI-GA.3033-011, Spring 2015 Hari Ramasamy, Ph.D. Manager and Research Staff Member, IBM Research Member, IBM Academy of Technology [email protected] http://researcher.watson.ibm.com/researcher/view.php?person=us-hvramasa
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
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,
Where We Are. References. Cloud Computing. Levels of Service. Cloud Computing History. Introduction to Data Management CSE 344
Where We Are Introduction to Data Management CSE 344 Lecture 25: DBMS-as-a-service and NoSQL We learned quite a bit about data management see course calendar Three topics left: DBMS-as-a-service and NoSQL
DESIGN OF A PLATFORM OF VIRTUAL SERVICE CONTAINERS FOR SERVICE ORIENTED CLOUD COMPUTING. Carlos de Alfonso Andrés García Vicente Hernández
DESIGN OF A PLATFORM OF VIRTUAL SERVICE CONTAINERS FOR SERVICE ORIENTED CLOUD COMPUTING Carlos de Alfonso Andrés García Vicente Hernández 2 INDEX Introduction Our approach Platform design Storage Security
Performance Prediction, Sizing and Capacity Planning for Distributed E-Commerce Applications
Performance Prediction, Sizing and Capacity Planning for Distributed E-Commerce Applications by Samuel D. Kounev ([email protected]) Information Technology Transfer Office Abstract Modern e-commerce
Oracle s Cloud Computing Strategy
Oracle s Cloud Computing Strategy Your Strategy, Your Cloud, Your Choice Sandra Cheevers Senior Principal Product Director Cloud Product Marketing Steve Lemme Director, Cloud Builder Specialization Oracle
Evaluation Methodology of Converged Cloud Environments
Krzysztof Zieliński Marcin Jarząb Sławomir Zieliński Karol Grzegorczyk Maciej Malawski Mariusz Zyśk Evaluation Methodology of Converged Cloud Environments Cloud Computing Cloud Computing enables convenient,
Efficient Cloud Management for Parallel Data Processing In Private Cloud
2012 International Conference on Information and Network Technology (ICINT 2012) IPCSIT vol. 37 (2012) (2012) IACSIT Press, Singapore Efficient Cloud Management for Parallel Data Processing In Private
Oracle Database Cloud Services OGh DBA & Middleware Day
Oracle Database Cloud Services OGh DBA & Middleware Day Jan van Tiggelen Principal Sales Consultant Oracle Core Technology June 4th, 2015 Safe Harbor Statement The following is intended to outline our
Dimension Data Enabling the Journey to the Cloud
Dimension Data Enabling the Journey to the Cloud Grant Morgan General Manager: Cloud 14 August 2013 Client adoption: What our clients were telling us The move to cloud services is a journey over time and
MyDBaaS: A Framework for Database-as-a-Service Monitoring
MyDBaaS: A Framework for Database-as-a-Service Monitoring David A. Abreu 1, Flávio R. C. Sousa 1 José Antônio F. Macêdo 1, Francisco J. L. Magalhães 1 1 Department of Computer Science Federal University
Shared Services Canada. Cloud Computing
Shared Services Canada Cloud Computing Architecture Framework Advisory Committee Transformation, Service Strategy and Design January 28, 2013 1 Agenda TIME TOPICS PRESENTER(S) 09:00 9:15 Opening Remarks
Performance Modeling and Analysis of a Database Server with Write-Heavy Workload
Performance Modeling and Analysis of a Database Server with Write-Heavy Workload Manfred Dellkrantz, Maria Kihl 2, and Anders Robertsson Department of Automatic Control, Lund University 2 Department of
Client-aware Cloud Storage
Client-aware Cloud Storage Feng Chen Computer Science & Engineering Louisiana State University Michael Mesnier Circuits & Systems Research Intel Labs Scott Hahn Circuits & Systems Research Intel Labs Cloud
QLIKVIEW INTEGRATION TION WITH AMAZON REDSHIFT John Park Partner Engineering
QLIKVIEW INTEGRATION TION WITH AMAZON REDSHIFT John Park Partner Engineering June 2014 Page 1 Contents Introduction... 3 About Amazon Web Services (AWS)... 3 About Amazon Redshift... 3 QlikView on AWS...
TECHNOLOGY WHITE PAPER Jun 2012
TECHNOLOGY WHITE PAPER Jun 2012 Technology Stack C# Windows Server 2008 PHP Amazon Web Services (AWS) Route 53 Elastic Load Balancing (ELB) Elastic Compute Cloud (EC2) Amazon RDS Amazon S3 Elasticache
Google Cloud Platform The basics
Google Cloud Platform The basics Who I am Alfredo Morresi ROLE Developer Relations Program Manager COUNTRY Italy PASSIONS Community, Development, Snowboarding, Tiramisu' Reach me [email protected]
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
An Oracle White Paper September 2012. Oracle Database and the Oracle Database Cloud
An Oracle White Paper September 2012 Oracle Database and the Oracle Database Cloud 1 Table of Contents Overview... 3 Cloud taxonomy... 4 The Cloud stack... 4 Differences between Cloud computing categories...
Figure 1. The cloud scales: Amazon EC2 growth [2].
- Chung-Cheng Li and Kuochen Wang Department of Computer Science National Chiao Tung University Hsinchu, Taiwan 300 [email protected], [email protected] Abstract One of the most important issues
Cloud Customer Architecture for Web Application Hosting, Version 2.0
Cloud Customer Architecture for Web Application Hosting, Version 2.0 Executive Overview This paper describes vendor neutral best practices for hosting web applications using cloud computing. The architectural
Available online at www.sciencedirect.com. ScienceDirect. Procedia Computer Science 68 (2015 ) 78 88
Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 68 (2015 ) 78 88 HOLACONF - Cloud Forward: From Distributed to Complete Computing CloudStore - towards scalability benchmarking
Web Application Hosting in the AWS Cloud Best Practices
Web Application Hosting in the AWS Cloud Best Practices September 2012 Matt Tavis, Philip Fitzsimons Page 1 of 14 Abstract Highly available and scalable web hosting can be a complex and expensive proposition.
Cisco Integration Platform
Data Sheet Cisco Integration Platform The Cisco Integration Platform fuels new business agility and innovation by linking data and services from any application - inside the enterprise and out. Product
Automated Capturing and Systematic Usage of DevOps Knowledge for Cloud Applications
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
perspective Microservices A New Application Paradigm Abstract
perspective Microservices A New Application Paradigm Abstract Microservices Architecture is introducing the concept of developing functionality as a number of small self-contained services. This paper
How To Monitor A Server With Zabbix
& JavaEE Platform Monitoring A Good Match? Company Facts Jesta Digital is a leading global provider of next generation entertainment content and services for the digital consumer. subsidiary of Jesta Group,
International Journal of Engineering Research & Management Technology
International Journal of Engineering Research & Management Technology March- 2015 Volume 2, Issue-2 Survey paper on cloud computing with load balancing policy Anant Gaur, Kush Garg Department of CSE SRM
AN IMPLEMENTATION OF E- LEARNING SYSTEM IN PRIVATE CLOUD
AN IMPLEMENTATION OF E- LEARNING SYSTEM IN PRIVATE CLOUD M. Lawanya Shri 1, Dr. S. Subha 2 1 Assistant Professor,School of Information Technology and Engineering, Vellore Institute of Technology, Vellore-632014
WELCOME TO Open Source Enterprise Architecture
WELCOME TO Open Source Enterprise Architecture WELCOME TO An overview of Open Source Enterprise Architecture In the integration domain Who we are Fredrik Hilmersson Petter Nordlander Why Open Source Integration
