Cloud is a shift from the focus on underlying technology implementation to leveraging existing implementations and further building upon them. Cloud orchestration or a network of clouds is the wave of the future where these clouds can operate with elasticity, scalability, and efficiency. Effective service management is an important aspect of managing such networks. The transition to the cloud will enable the further aggregation of composite web services and enhanced business-to-business capabili...| By Lori MacVittie | Article Rating: |
|
| December 10, 2009 09:30 PM EST | Reads: |
6,211 |
An interesting thing happens when you combine toolkits like XAJAX and SAJAX and the ability to perform content-based routing: you can actually achieve function-level load balancing in both cloud-based and traditional architectures.
As you might have discovered from previous posts mentioning it, I still do web application development to support hobby interests in my (very little) spare time. I’m currently in love with the XAJAX library, which has made development of what is supposed to be a very interactive application nearly effortless.
I’m also very much enamored of load balancing/application delivery and cloud computing, specifically how to get the most out of the latter using the former. XAJAX is a perfect example of how the choice of development environment can impact – positively – the ability of an intelligent intermediary to drill-down into the application workload on a functional basis and more efficiently distribute requests to get the most out of an architecture.
Before someone argues that SAJAX is a better choice I’ll include it, as well, as a “this is a great option, too” for cloud computing environments. XAJAX is strictly for PHP (which is fine for me but not for everyone) while SAJAX supports a broader range of languages and data formats – XAJAX supports only XML, which for purposes of integrating with my BIG-IP via iControl is just fine but again, may not suit everyone’s needs. Both XAJAX and SAJAX pass as part of the data exchange the server-side function being invoked, which is really what’s necessary to accomplish load balancing at the functional layer and what makes both very well-suited to building highly scalable web applications for cloud computing deployment.
One of the things we rarely talk about is that what we’re really distributing (and thus load balancing) in a cloud computing environment is complete applications. The ability to distribute individual workloads is not part and parcel of cloud computing environments today even though it is closely associated with the purist definition of cloud computing. This means if one particular function in an application is more compute intense than another we simply scale the entire application, regardless of whether scaling the individual function would be a more efficient use of resources or not. In many cases this is because we don’t have the means by which we can distribute workload across multiple instances in any environment, cloud or traditional. We simply don’t have the information necessary to accomplish it.
SOA, specifically when utilizing SOAP, affords us that level of granularity by including in the SOAP envelope the specific operation (function) being invoked. But SOA and SOAP are rarely used in Web 2.0 applications, developers for whatever reason preferring AJAX-based techniques and POX (Plain Old XML) or JSON over the more complex SOAP-encoded data.
XAJAX, and SAJAX (and I’m sure other AJAX-based libraries as well) affords us the same granularity and opportunity to scale applications at the functional layer. The same mechanisms that abstract the invocation of server-side functions that makes it so blessedly easy for developers to use and develop web applications is the same abstraction that makes it blessedly easy for a network-side scripting capable application delivery controller (load balancer) to scale a web application based on individual functions. This also, by the way, enables the ability to distribute part of the application in the local data center and another “out in the cloud” with equal alacrity.
If you take a look at the screen shot you’ll see a capture of a Firebug capture of interaction between my browser and my web application. You’ll note that the request sent uses HTTP method POST, and there are three variables sent by XAJAX, one of which is xjxfun – the XAJAX function on the server that I am invoking. In this case it’s the amazingly self-explanatory “getThing” function. In SAJAX this parameter is called rs but it passes the same level of information: the function name and its parameters.
What’s important here is not what the function does but how it’s called from the client: by name, and clearly tagged with an associative descriptive, namely xjxfun.
Assuming that when I profiled my web application (you are profiling your web applications, right?) I discovered (gasp!) that the getThing function requires a disproportionate amount of resources, I might decide that I’d like to scale my application by distributing the getThing function to their own instance of the application rather than being lumped in with all the other functions that will, as utilization climbs, negatively impact the performance of the entire application.
A network-side scripting capable intermediary can easily handle this by (1) inspecting the request, (2) extracting the value of xjxfun from the POST body, and (3) routing the request to the appropriate instance(s) of the application, the ones designated specifically to handle this more compute intense function. Interestingly enough because the arguments are also passed clearly in both XAJAX and SAJAX, you could route requests based on the values of the parameters. This requires some pretty in-depth knowledge of the impact of certain queries and parameters on the execution of your application. You have to know ahead of time that a parameter of X necessarily results in a huge result set from a query and takes more time to execute and uses more memory than the same function invoked using parameter Y. Imagine Twitter compiles a list hourly of users with the most followers and most active update frequency. It could push this information to the intermediary assuming that the intermediary used that list as part of the condition for routing requests. If the parameter passed to a specific function were part of that list, the intermediary would know to route that request knowing it was going to take longer to fulfill or required more resources. Infrastructure 2.0 capable intermediaries are more than capable of incorporating application-specific data with environmental and operational status and data to determine where best to route a request. It’s kind of what they’re designed to do.
Now, if this is a local data center deployed application you could do some cloudbalancing-like behavior and direct the request for that function to a cloud-deployed instance instead. This would be particularly useful in the case that the function is storage-related, and you want to take advantage of cloud storage as a means to reduce the overhead of building out a similar infrastructure locally. This works because when a Load balancer/application delivery controller is introduced into the architecture it can mediate for every request. It has to broker between the client and application because it makes the determination where to route the request – to which instance of the application, local or cloud-based, etc… Thus it sees every request and can inspect every request and can act on every request. Given that XAJAX and SAJAX so nicely presents function level information to us, we can easily use that information to base decisions on where to route a given request.
That offers some extraordinary opportunities to architect innovative solutions to traditional scalability and performance issues. It gives us the ability to actually migrate individual “workloads” between clouds and local data centers. We can better leverage existing resources in the data center based on an understanding of specific compute resource needs of individual functions. We can replace, augment, or secure individual functions on an on-demand basis, in real-time, near-time, anytime.
It may be, in the long term, that one of the effects of cloud computing will be that choices made by developers will impact decisions made regarding infrastructure but the opposite is also true. It’s quite possible that the ease with which XAJAX and SAJAX can be leveraged by intelligent intermediaries because of the way it naturally communicates with the server may give it an advantage in a debate between it and another library that does not offer similar ease of intermediary integration.
Regardless, if you’re using XAJAX or SAJAX or trying to decide which AJAX library to use – or even building your own – keep in mind the ability to integrate with intermediaries and how that integration – or lack thereof - will impact your overall application performance and scalability strategy in the long run.
Related blogs & articles:
- Using Network-Side Scripting to Implement Mock API Endpoints
- AJAX and Network-Side Scripting
- Virtualization Changes Application Deployment But Not Development
- WILS: Why Does Load Balancing Improve Application Performance?
- Impact of Load Balancing on SOAPy and RESTful Applications
- Business-Layer Load Balancing
- Cloud Balancing, Cloud Bursting, and Intercloud
- Understanding network-side scripting
Read the original blog entry...
Published December 10, 2009 Reads 6,211
Copyright © 2009 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Lori MacVittie
Lori MacVittie is responsible for education and evangelism of application services available across F5’s entire product suite. Her role includes authorship of technical materials and participation in a number of community-based forums and industry standards organizations, among other efforts. MacVittie has extensive programming experience as an application architect, as well as network and systems development and administration expertise. Prior to joining F5, MacVittie was an award-winning Senior Technology Editor at Network Computing Magazine, where she conducted product research and evaluation focused on integration with application and network architectures, and authored articles on a variety of topics aimed at IT professionals. Her most recent area of focus included SOA-related products and architectures. She holds a B.S. in Information and Computing Science from the University of Wisconsin at Green Bay, and an M.S. in Computer Science from Nova Southeastern University.
Cloud is a shift from the focus on underlying technology implementation to leveraging existing implementations and further building upon them. Cloud orchestration or a network of clouds is the wave of the future where these clouds can operate with elasticity, scalability, and efficiency. Effective service management is an important aspect of managing such networks. The transition to the cloud will enable the further aggregation of composite web services and enhanced business-to-business capabili...Feb. 18, 2012 11:00 AM EST Reads: 547 |
By Pat Romanski The focus of Java EE 7 is on the cloud, and specifically it aims to bring Platform-as-a-Service providers and application developers together so that portable applications can be deployed on any cloud infrastructure and reap all its benefits in terms of scalability, elasticity, multitenancy, etc. The existing specifications in the platform such as JPA, Servlets, EJB, and others will be updated to meet these requirements.
Java EE 7 continues the ease of development push that characterized prior ...Feb. 18, 2012 10:45 AM EST Reads: 2,268 |
By Jeremy Geelan With Cloud Expo 2012 New York (10th Cloud Expo) just four months away, what better time to start introducing you in greater detail to the distinguished individuals in our incredible Speaker Faculty for the technical and strategy sessions at the conference...
We have technical and strategy sessions for you every day from June 11 through June 14 dealing with every nook and cranny of Cloud Computing and Big Data, but what of those who are presenting? Who are they, where do they work, what else h...Feb. 18, 2012 08:30 AM EST Reads: 599 |
By Liz McMillan Wide and cheap availability of cloud-based media services is upon us. With the transformations these services are already bringing to the consumption of music, video and interactive media, change has likewise come to professional workflows. Documents in 2012 are read, written, collaborated on, and distributed anywhere an Internet-enabled device can reach – which is to say, everywhere.
In his session at the 10th International Cloud Expo, Christopher Kenneally, Director of Business Development a...Feb. 17, 2012 02:00 PM EST Reads: 548 |
By Kevin Jackson From the NRO Press Release: "Considered one of the top women leaders in Federal IT, Ms. Singer was recognized for her innova... Feb. 17, 2012 07:00 AM EST Reads: 529 |
By Brian McCallion I've been working on Enterprise Cloud Strategy and in the course of this work identified some interesting and non-obvious opportunities in the Cloud.
One solution I’ve examined is the well-crafted solution that is enStratus. enStratus has built a SaaS Cloud Management / Governance product focused on providing critical management, monitoring, governance capabilities tailored to the needs of the Global 2000 market, rather than the startup market. As I have worked with a current Fortune 500 clie...Feb. 17, 2012 07:00 AM EST Reads: 3,680 |
By Jeremy Geelan With Cloud Expo 2012 New York (10th Cloud Expo) now under four months away, what better time to start introducing you in greater detail to the distinguished individuals in our incredible Speaker Faculty for the technical and strategy sessions at the conference...
We have technical and strategy sessions for you every day from June 11 through June 14 dealing with every nook and cranny of Cloud Computing and Big Data, but what of those who are presenting? Who are they, where do they work, what e...Feb. 16, 2012 07:30 AM EST Reads: 938 |
By Pat Romanski 2011 was a year of rapid adoption for public and private cloud services. Instant and on-demand server provisioning was the driving force behind the massive growth. On top, cloud server templates and script automation simplified application installation for simple and pre-defined application stacks, but have not targeted more complex enterprise application environments.
In his session at the 10th International Cloud Expo, John Yung, CEO of Appcara, will discuss how 2012 will be the year for app...Feb. 16, 2012 06:30 AM EST Reads: 2,045 |
By Jeremy Geelan "Having been in the IT field for many years, I believe the cloud computing chapter in the industry is an exciting one and I am proud to be a part of it," said National Reconaissance Office (NRO) Chief Information Officer Jill T. Singer Tuesday, as it was announced that she was one of 10 winners of the 2012 CloudNOW "Top Ten Women in Cloud" Awards.Feb. 16, 2012 06:30 AM EST Reads: 610 |
By Liz McMillan As more enterprises are adopting clouds, the nature of cloud computing is changing. Previously, clouds were used to test applications or for non-mission critical applications. Today, enterprises are using clouds for cost-saving advantages and launching more mission critical applications that have defined performance needs.
In his session at the 10th International Cloud Expo, Eric Shepcaro, CEO and Chairman of the Board of Telx, will discuss how distributed computing has many advantages. It wou...Feb. 16, 2012 05:45 AM EST Reads: 1,851 |
- How Are You Building Your Cloud?
- Cloud Expo New York Speaker Profile: Dave Asprey – Trend Micro
- Big Data in Telecom: The Need for Analytics
- Big Data Gold Mine in Cloud Governance and Automation
- Drool, Britannia? Is the UK Failing the Cloud?
- Cloud Expo New York Speaker Profile: Mårten Mickos – Eucalyptus Systems
- Thoughts on Big Data and Data Virtualization
- Cloud Expo New York Speaker Profile: Bernard Golden – HyperStratus
- What Motivates Open Standards in the Cloud?
- What to Expect in 2012: Cloud Computing and Open Source Software
- Will PaaS Finally Bring Open Source Love to the Enterprise?
- Australia's Lunatic NBN OK for Cloud (Update)
- The Future of Cloud Computing: Industry Predictions for 2012
- HP Puts Activist Shareholder on Board
- Gartner Hype Cycle for Emerging Technologies 2011
- How Are You Building Your Cloud?
- Cloud Expo New York Speaker Profile: Dave Asprey – Trend Micro
- Big Data in Telecom: The Need for Analytics
- i-Technology in 2012: Five Industry Predictions
- Big Data Gold Mine in Cloud Governance and Automation
- 9th International Cloud Expo | Cloud Expo Silicon Valley – Photo Album
- Drool, Britannia? Is the UK Failing the Cloud?
- Microsoft Tries Hadoop on Azure
- Cloud Expo New York Speaker Profile: Mårten Mickos – Eucalyptus Systems
- What is Cloud Computing?
- The Top 150 Players in Cloud Computing
- Six Benefits of Cloud Computing
- Virtualization Conference Keynote Webcast Live on SYS-CON.TV
- What's the Difference Between Cloud Computing and SaaS?
- GDS International: Global Warming Scam?
- Twenty-One Experts Define Cloud Computing
- The Future of Cloud Computing
- The Top 250 Players in the Cloud Computing Ecosystem
- SOA 2 Point Oh No!
- Cloud Expo Europe 2009 in Prague: Themes & Topics
- A Brief History of Cloud Computing: Is the Cloud There Yet?









The focus of Java EE 7 is on the cloud, and specifically it aims to bring Platform-as-a-Service providers and application developers together so that portable applications can be deployed on any cloud infrastructure and reap all its benefits in terms of scalability, elasticity, multitenancy, etc. The existing specifications in the platform such as JPA, Servlets, EJB, and others will be updated to meet these requirements.
Java EE 7 continues the ease of development push that characterized prior ...
With Cloud Expo 2012 New York (10th Cloud Expo) just four months away, what better time to start introducing you in greater detail to the distinguished individuals in our incredible Speaker Faculty for the technical and strategy sessions at the conference...
We have technical and strategy sessions for you every day from June 11 through June 14 dealing with every nook and cranny of Cloud Computing and Big Data, but what of those who are presenting? Who are they, where do they work, what else h...
Wide and cheap availability of cloud-based media services is upon us. With the transformations these services are already bringing to the consumption of music, video and interactive media, change has likewise come to professional workflows. Documents in 2012 are read, written, collaborated on, and distributed anywhere an Internet-enabled device can reach – which is to say, everywhere.
In his session at the 10th International Cloud Expo, Christopher Kenneally, Director of Business Development a...
I've been working on Enterprise Cloud Strategy and in the course of this work identified some interesting and non-obvious opportunities in the Cloud.
One solution I’ve examined is the well-crafted solution that is enStratus. enStratus has built a SaaS Cloud Management / Governance product focused on providing critical management, monitoring, governance capabilities tailored to the needs of the Global 2000 market, rather than the startup market. As I have worked with a current Fortune 500 clie...
With Cloud Expo 2012 New York (10th Cloud Expo) now under four months away, what better time to start introducing you in greater detail to the distinguished individuals in our incredible Speaker Faculty for the technical and strategy sessions at the conference...
We have technical and strategy sessions for you every day from June 11 through June 14 dealing with every nook and cranny of Cloud Computing and Big Data, but what of those who are presenting? Who are they, where do they work, what e...
2011 was a year of rapid adoption for public and private cloud services. Instant and on-demand server provisioning was the driving force behind the massive growth. On top, cloud server templates and script automation simplified application installation for simple and pre-defined application stacks, but have not targeted more complex enterprise application environments.
In his session at the 10th International Cloud Expo, John Yung, CEO of Appcara, will discuss how 2012 will be the year for app...
"Having been in the IT field for many years, I believe the cloud computing chapter in the industry is an exciting one and I am proud to be a part of it," said National Reconaissance Office (NRO) Chief Information Officer Jill T. Singer Tuesday, as it was announced that she was one of 10 winners of the 2012 CloudNOW "Top Ten Women in Cloud" Awards.
As more enterprises are adopting clouds, the nature of cloud computing is changing. Previously, clouds were used to test applications or for non-mission critical applications. Today, enterprises are using clouds for cost-saving advantages and launching more mission critical applications that have defined performance needs.
In his session at the 10th International Cloud Expo, Eric Shepcaro, CEO and Chairman of the Board of Telx, will discuss how distributed computing has many advantages. It wou...
Is Big Data destined for only the top 3,000 companies worldwide? What about medium or small companies who are equally as data-driven? Is there a place for Big Data in SMB markets? When I talk to SMB companies about their use of public cloud services, it’s a no-brainer. Pay as you go, lower costs up...
Last summer a CIO for a high profile ecommerce company told me that the smartest way to play the cloud was to rent the spike. I just read the same thing from Zynga’s Infrastructure CTO Allan Leinwand in Inside Zynga’s Big Move To Private Cloud by InformationWeek’s Charles Babcock.
We have previously provided a Quickstart guide to standing up Rackspace cloud servers (and have one for Amazon servers as well). These are very low cost ways of building reliable, production ready capabilities for enterprise use (commercial and government).
Israel-based startup Porticor launches this week with technology aimed at giving enterprises a way to encrypt data held in cloud computing services, including those from Amazon and Rackspace.
Porticor Virtual Private Data is focused on protecting data at rest in cloud-based computing centers where ...
If you are running the BIG-IP Edge Client on your iPhone, iPod or iPad, you may have gotten an AppStore alert for an update. If not, I just wanted to let you know that version 1.0.3 of the iOS Edge Client is available at the AppStore.
The main updates in v1.0.3:
URI scheme enhancement allows passi...
Statistics matter, not only in business, but increasingly also in our social life - well, at least in our social media life. Some of the statistics I noticed this week were round numbers, like 1000. With 1000 representing both the number now showing under "followers" in Twitter and the revenue numbe...
Let's face it right now the cloud is pretty immature. The level of automation and management of these environments are analogous to the early assembly lines, but it won't be this way long. This is not the industrial revolution and it moves at a wicked fast pace. Before we know it the next generation...
In previous posts such as Cloud Computing: Hype, Vision or Reality?, Hyped Cloud Technologies, PAAS is not Mainstream yet, SaaS is going Mainstream, Future applications: SaaS or traditional? I discussed Cloud Computing.
Recently I read Joe McKendrick's interesting article titled:Cloud Computing Mar...
Having covered Cloud Foundry, Force.com, Google App Engine and Red Hat OpenShift, we now take a look at Microsoft’s PaaS offering, Windows Azure.
Microsoft Windows Azure Platform is a Platform as a Service offering from Microsoft. It was announced in 2008 and became available in 2010. Since then Mi...










