Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×
Databases IT

Scalability In the Cloud Era Isn't What You Think 75

Esther Schindler writes "'Scalability' isn't a checkbox on a vendor's feature chart — though plenty of them speak of it that way. In this IT Expert Voice article, Scott Fulton examines how we define 'scalability,' why it's data that has to scale more than servers, and how old architectural models don't always apply. He writes, 'If you believe that a scalable architecture for an information system, by definition, gives you more output in proportion to the resources you throw at it, then you may be thinking a cloud-based deployment could give your existing system "infinite scalability." Companies that are trying out that theory for the first time are discovering not just that the theory is flawed, but that their systems are flawed and now they're calling out for help.'"
This discussion has been archived. No new comments can be posted.

Scalability In the Cloud Era Isn't What You Think

Comments Filter:
  • I read the article (Score:5, Interesting)

    by Saint Stephen ( 19450 ) on Tuesday May 11, 2010 @03:04PM (#32173082) Homepage Journal

    and learned not a damned thing. Classic marketecture speak.

  • by Locke2005 ( 849178 ) on Tuesday May 11, 2010 @03:10PM (#32173144)
    Unlike stupidity, computing resources are inherently limited. Which is a good thing... imagine, if it were really unlimited, the huge bill you would get at the end of the month for a runaway task attempting to use every node?
  • by roman_mir ( 125474 ) on Tuesday May 11, 2010 @03:15PM (#32173190) Homepage Journal

    Scalability is a buzzword that equipment, databases and servers (hardware/software) are sold on. It is as if by adding more weblogic servers to a cluster really makes your application scalable, as if throwing more processors onto a RAID system gives you more parallel ways to read / write the same data etc.

    It is all true to an extent and it is all false where it really matters. Applications need to be designed to be scalable and if I learned anything over the past 16 years is that people do not even begin to understand what it means.

    The managers and even many 'architects' really think that by throwing some stupid app on a cluster will really solve the scalability issues and so on. But the problem is that it is a very specific problem that can be solved by simply adding cluster nodes without actually properly designing the app. I blame various silver bullets like EJBs, CORBA, RMI, JNDI, BEA, Oracle, IBM and such for promoting this view among the top brass and pulling attention away from working out correct architecture to solve the specific problems that appear in building truly scalable applications.

    Application servers and databases are the worst at this, they certainly provide some specific type of scalability solution but because of that, it is almost expected that it does not matter how an app is designed to interact with these, and the design is really on the distant third, fourth, fifth or further place, way behind the deadlines, the politics, the hiring practices etc.

    Scalability is like security, it is not a one specific thing it is a way to approach many different issues and problems and even when you think your app is secure in 5 different ways, there is a sixth way in which it is not. Same with scalability: it is not only about multi-threading requests, it is not only about multiple processors for a RAID system, it is about total understanding of how the application is and will be used and adjusting it for various types of usage. Proper design for scalability mixes various approaches, there could be intermediate steps added, back-ground processing added, intermediary storage, separate storage for reading than for saving, various caching mechanisms and synchronization between nodes in a cluster for different caching questions. This could be redefining an algorithm to be less dependent on reading data from slow media. Some things are not supposed to be done in parallel, so certain bottlenecks due to synchronization need to be looked at and solved early on, because these become the Achilles heel - synchronizing on anything at all can defeat a super-fast cluster and make it no better than as a single laptop.

    It is a design issue.

  • by gstoddart ( 321705 ) on Tuesday May 11, 2010 @03:24PM (#32173296) Homepage

    and learned not a damned thing. Classic marketecture speak.

    I don't think it's marketecture -- I think it' trying to point out some issues which most of us have never really thought about in terms of cloud computing.

    Admittedly, I couldn't read through the entire article in one go, but I am going to go back and try to finish it.

    The thesis seems to be something along the lines of: everyone thinks that with cloud computing if you keep throwing resources at the problem, scalability is something which sorts itself out.

    The reality seems to be that as companies do that, they find themselves using proportionally more resources, and then they hit a wall where scalability tips over, and they get less additional benefit per additional resource. Which seems to be contrary to what everyone believes about cloud computing.

    That seems to happen because the traditional apps everyone is trying to scale with cloud computing don't necessarily benefit from that kind of scaling. It looks like that for a while, and then it falls apart, and people need to figure out how to fix it -- you end up with a hot mess that doesn't even remotely do what you need it to.

    At least, that' my best high-level grokking. But, I don't claim to grok with fullness. :-P

  • by Lord Ender ( 156273 ) on Tuesday May 11, 2010 @03:27PM (#32173330) Homepage

    The Google App Engine cloud computing offering plans to (eventually) automatically scale your application as much as you need. But that scalability comes at a cost: only key-value stores may be used. Sorry, no relational databases available. JOINs just don't scale. You can distribute data across any number of nodes, but JOINing data which lives on separate computers is not gonna happen.

    If you need JOIN-like behavior, your app has to request all the data, then compute the result itself. Trying to write an app for such a system means rearchitecting the data in ways to minimize the need for such operations, even if that means having duplicate data.

    It's quite an exercise to unlearn what you have learned about SQL and relational databases, but the use of object mappers can help a lot.

  • by jd ( 1658 ) <imipak@yahoGINSBERGo.com minus poet> on Tuesday May 11, 2010 @06:23PM (#32175876) Homepage Journal

    Sometimes an old thought can trigger a new line of thinking. For example, it would be difficult to make a 3-CCD camera that's as flat as a modern digital camera, because a decent-sized CCD placed sideways will widen the camera by that amount. The prism would normally be bulky, too. Far as I know, that's the main reason you see this sort of camera on high-end video equipment, not cheap digital cameras. However, I don't see anything there that can't be solved by using a few lenses and mirrors. Since CCDs can do 16bpp, this would not only let you triple the number of pixels but also produce high dynamic range. I've no doubt it's been done, it's too obvious not to have been, but I don't see anything like this in the regular marketplace although I can see no obvious objection. The only place I see anything like it is in the high-end with much larger - and much more expensive - gear.

  • A minor niggle to a correct thesis: clouds are indeed horizontal creatures, like lichens (:-)) Joins, however, can be decomposed into a horizontally scalable component that runs on many nodes to return a small candidate set and a vertical component that puts together the candidates and returns the valid ones as a join. This is what the Oracle Teradata (sp?) machine does, making TP substantially more scalable. The bottleneck in this scheme is the backplane: it requires Linux hyperchannel to achieve the expected performance boost. --dave

"More software projects have gone awry for lack of calendar time than for all other causes combined." -- Fred Brooks, Jr., _The Mythical Man Month_

Working...