Slashdot Mirror


Sun Offering Optimized AMP Stack On Solaris

tbray writes "This is your friendly local Sun corporate drone reporting that we're going to be building and optimizing and DTrace-ing and shipping and supporting the AMP part of LAMP (details here). I think that basically the whole tech industry, excepting Microsoft, is now at least partly in the AMP camp."

12 of 135 comments (clear)

  1. The job isn't finished yet, until all of...(NICE!) by linuxbaby · · Score: 4, Interesting
    Great quote from TFA:

    The job isn't finished yet, until all of Apache and MySQL and PostgreSQL and PHP and Python and and Ruby and Rails are in the package, all optimized for Solaris, all stuffed with DTrace probes, and all with developer and production support available. It won't be long.
  2. Excepting MS? by Anonymous Coward · · Score: 1, Interesting

    Microsoft is indeed working on optimizing PHP for Windows, and they certainly support Python with IronPython (which is quite often faster than CPython).

    dom

  3. Postgres Migration by Doc+Ruby · · Score: 3, Interesting

    I wish there were a simple tool I could run that would analyze a LAMP install and migrate it to Postgres instead of MySQL.

    I don't want to get into a holy war about the relative merits: we already use Postgres, we will not support two database systems, we are not switching from Postgres to MySQL. MySQL might be good for others, but not for us.

    But we do get these LAMP apps that come bundled with MySQL. Usually they don't use any MySQL specific features that Postgres (and maybe moving some functions across the app/DB boundary) can't directly support. So I'd like to get a LAMP -> LAPP migrator that will automate the switch. Leaving optimizations for after the switch, to be performed by other (Postgres) tools or programmers/DBAs. The open source of these two DBs, and the open source of all these LAMP apps, should make migration between them accessible.

    I'm sure there are lots of people like me. Where's the tool that makes the open source as good for migrating among these programs as creating them from scratch?

    --

    --
    make install -not war

    1. Re:Postgres Migration by Furry+Ice · · Score: 2, Interesting

      I'm going to go out on a limb here and say that you've never actually maintained a large application that supported more than one database. It's not the most difficult problem to solve in the world, but it's pretty far from trivial at times. SQL may be standardized, but no one implements the standard.

      Sometimes, you end up having to have a different schema for the different databases because of optimizations that one supports and the other doesn't. For example, modeling trees in Oracle can be done with the CONNECT BY clause, which very few (any?) other databases have, so instead you choose whatever your database can deal with (there are many representations for trees; there's a whole book on the subject, actually: http://www.elsevier.com/wps/find/bookdescription.c ws_home/702605/description#description).

      Often you can choose something that works reasonably well on all the platforms you need to support, but if it ends up being a bottleneck (I've seen it happen more than once), you end up making different schemas and having to deal with all the headaches that come with it.

  4. Re:Yawn.... by m0rph3us0 · · Score: 3, Interesting

    For us we doubled the performance on our db by switching from RHEL4 to Solaris 10. The support for Solaris 10 is less than for RHEL4

  5. Re:Yawn.... by Kadin2048 · · Score: 2, Interesting

    I don't think there's any real reason to, if you're familiar with Linux ... Sun would like people to use Solaris, and they have some interesting administration tools, and of course they'll sell you a support contract and might be more "PHB compatible" than many Linux vendors, but I've yet to see any good comparisons.

    A while back there were some interesting comparisons of SQL performance on Darwin/Mac OS X versus Linux, under controlled conditions on similar hardware; it would be interesting to see a Sun-AMP versus LAMP comparison, done by some disinterested party, using the same versions of all the same software except for the OS, wherever possible. If Sun could outperform Linux, it would be intriguing ... but if they can't, except for people who already are familiar and more comfortable with it than they are with Linux, I don't see a major draw.

    --
    "Ladies and gentlemen, my killbot features Lotus Notes and a machine gun. It is the finest available."
  6. Re:Yawn.... by nuzak · · Score: 2, Interesting

    Hell, I more than doubled my performance on my filesystem-heavy loads going from RHEL4 to RHEL3. The syscall overhead went through the roof in EL4, even with SELinux off. I got tired of trying to compile a kernel (hey vendors, would it kill you to ship a config that doesn't panic when I compile using it without changing anything?) so I just retrograded. The next move will most likely be lateral, to another vendor.

    --
    Done with slashdot, done with nerds, getting a life.
  7. Re:Yawn.... by gstoddart · · Score: 5, Interesting

    A while back there were some interesting comparisons of SQL performance on Darwin/Mac OS X versus Linux, under controlled conditions on similar hardware

    Ah, but remember -- Sun can sell you a machine which goes well beyond the whole 'similar hardware'.

    If they can sell someone an optimized, supported, and enterprise-class piece of hardware which is basically turnkey, and can fill the job of being your web-facing front-end, there will be companies for whom this is a very good idea.

    What Sun can sell you is the higher end for which there is no way you could build it with a commodity PC. Enterprise customers have enterprise hardware needs, and enterprise mindsets. Being "PHB Compatible" is a valuable thing in business, cause if things go to shit, you have someone who can come in and make things go again.

    Sun isn't trying to get the hobbyist shop; they're targeting higher end companies with bigger budgets who want reliability.

    If for nothing else than they're going to support the AMP stack, I have to commend Sun on this decision. This can only be good for those parts of the stack, and it won't really hurt Linux in any way -- this is complementary. This will have the effect of giving PHBs an option which uses Apache, MySQL, and PHP/PostgressSQL (whichever it is). I don't see this as being a 'lose' for the OSS people.

    Why is Slashdot so pathologically opposed to someone buying a computer and operating system, even if it makes sense for their business goals?

    Cheers
    --
    Lost at C:>. Found at C.
  8. Re:Yawn.... by nadamsieee · · Score: 2, Interesting

    Seriously....since I don't really want to use Sun hardware or Solaris, tell me again, why would I want to leave the "L" (Linux) out of the Apache/MySql/Php stack? Especially given the fact that most of the security and bug fixes --at least for Php and MySql -- which pop up are first dealt with in the Linux end of the stack.

    Solaris is a pretty darn good product. And if Sun starts providing full time support for the "AMP" part of the stack, you can probably bet that bug fixes for Solaris won't be far behind those for Linux. And if Sun follows through and GPLv3's Solaris, things really start to get interesting...

  9. Re:Yawn.... by Doctor+Memory · · Score: 1, Interesting

    most of Sun's hardware nowadays is built on top of AMD (and soon Intel) CPUs Nope, most of their stuff still runs on SPARC. They're selling their new Niagra-based systems as fast as they can crank them out, and they still ship a healthy number of UltraSPARC boxes too. They do have a lot of AMD-based stuff, but they're still predominantly a SPARC vendor.
    --
    Just junk food for thought...
  10. Dtrace by starseeker · · Score: 2, Interesting

    I have a feeling Dtrace probes might be a big, big win here - if they instrument it as they have the Solaris system itself that level of performance tuning integrated into the entire software stack may allow for some Really Impressive payoffs.

    On the high end, bottlenecks are something to really watch for and identify, and Dtrace is an excellent tool for that sort of activity. This will be very interesting to watch.

    Also, if Solaris DOES go GPLv3, the immediate availability of a superior SAMP stack that is GPL could turn a lot of heads, and may even displace some LAMP systems quickly and painlessly.

    --
    "I object to doing things that computers can do." -- Olin Shivers, lispers.org
  11. Re:The "AMP Camp"??? by gbjbaanb · · Score: 2, Interesting

    Its not that you *have* to do that amount of debugging, but that you *can*. I suppose it does matter if you have several teams that write different tiers of a n-tier architecture (we've done that - web monkeys wrote the front end to a specified API, DBdevs write stored procedures. Poor application programmers get the blame when anything goes wrong, and poor system/middleware devs have to then find out who's right (or wrong as is the case). So being able to debug all the way through is rather handy.

    Really - don't knock something for being good.