Slashdot Mirror


GE CTO On Moving 9,000 Apps To the Public Cloud

StewBeans writes: The Wall Street Journal recently published a special report on the staggering growth of the hybrid cloud, citing research from multiple sources, including survey results from Gartner indicating that 75% of large enterprises planned to take advantage of the hybrid cloud by end of this year. The article said that, "CIOs are demanding a way to combine the best of the cloud with their own localized data centers. Few companies or organizations are willing or able to move all of their IT to the public cloud." GE is apparently one of those few companies, because the CTO of Cloud for GE recently wrote that they are moving the vast bulk of their 9,000 applications into the public cloud. In the article, he explains how they came to this counterintuitive decision, their strategy for moving so many apps to the cloud, and why he's more optimistic about the public cloud versus hybrid or private.

123 comments

  1. Survery results from Gartner? by tomhath · · Score: 4, Insightful

    survey results from Gartner indicating that 75% of large enterprises planned to take advantage of the hybrid cloud by end of this year

    Gartner reports that enterprises they surveyed "have plans". Just roll your eyes and walk away.

    1. Re:Survery results from Gartner? by bobthesungeek76036 · · Score: 1

      survey results from Gartner indicating that 75% of large enterprises planned to take advantage of the hybrid cloud by end of this year

      Gartner reports that enterprises they surveyed "have plans". Just roll your eyes and walk away.

      Run far away from anything to do with Gartner...

      --
      Karma: Bad
  2. Tax Dodge by Anonymous Coward · · Score: 0

    Given GE's M.O., I think it's safe to assume that the predominate reason for this move involves some sort of tax dodge.

  3. Sure... they're large enough... by NFN_NLN · · Score: 2

    They're large enough and have enough of a cloud presence that they carry weight. Smaller companies moving to the cloud aren't going to get level of service they're expecting. Unless they pay for it of course, and then they'll find out running it in house would have been cheaper.

    1. Re:Sure... they're large enough... by Anonymous Coward · · Score: 2, Insightful

      Even when you are large you sometimes get shit service. I could rattle off how much our service is making and how much we pay per month on SLA. Crap service. We are rewinding it all back into inhouse.

    2. Re:Sure... they're large enough... by lgw · · Score: 3, Interesting

      Unless they pay for it of course, and then they'll find out running it in house would have been cheaper.

      In-house is almost always cheaper if you just look at server costs. But if you move enough stuff to the cloud you can get rid of a large chunk of your IT staff - it's a form of outsourcing. When that's true, you can come out way ahead. This is quite appealing to large companies that do all their IT grunt work through contractors anyhow - it's just a move from one group with contractual SLAs on service to another.

      The cloud is also more appealing for services where each tier is a highly-available, load-balanced, stateless sea of servers. That sort of thing really benefits from the trivial and immediate server replacement you have from the cloud providers. (Something's wrong with Server-447? Just drop it and provision a new one, 5 minutes max.) But for simpler services that advantage is lost in the noise of manual software deployment/config/etc to stand up a new box.

      --
      Socialism: a lie told by totalitarians and believed by fools.
    3. Re:Sure... they're large enough... by viperidaenz · · Score: 1

      If you're big enough, you can negotiate SLA's with financial penalties for failing them.

    4. Re:Sure... they're large enough... by Anonymous Coward · · Score: 0

      Collecting on them is another matter altogether. Especially in the event of a huge disaster which would trigger huge penalties. Would the provider pay you, or just file bankruptcy instead? Or just pay lawyers to keep the issue tied up in court for years?

    5. Re:Sure... they're large enough... by Trepidity · · Score: 1

      Reducing staff is the intent, but so far I'm not sure it's being realized. At least for the handful of companies where I have some view into how they're using AWS, they have an awful lot of people who look like IT staff, but have been rebranded from "sysadmin" to "devops". Some are even doing pretty similar things as before, like building and maintaining OS and application images, keeping up on security issues, writing big piles of scripts to automate deployment, etc. The forms are new (Ansible scripts, VHD and Docker images, etc.), but a lot of the work looks familiar.

    6. Re:Sure... they're large enough... by jon3k · · Score: 1
      People also forget about networking and storage, along with the associated support staff. If you operate a very small staff already, you likely won't be able to get rid of anyone. But if you've got a mid to large staff, you can definitely make considerable cuts. But ..

      (Something's wrong with Server-447? Just drop it and provision a new one, 5 minutes max.)

      We had this before the cloud became popular, and still do. Who isn't running a (nearly) fully virtualized environment these days?

    7. Re:Sure... they're large enough... by Princeofcups · · Score: 1

      That sort of thing really benefits from the trivial and immediate server replacement you have from the cloud providers. (Something's wrong with Server-447? Just drop it and provision a new one, 5 minutes max.) But for simpler services that advantage is lost in the noise of manual software deployment/config/etc to stand up a new box.

      That works really well for a simple web server, but in the real world of corporate applications, nothing could be further from the truth. First, apps must ships files between databases and themselves. In a private datacenter, that's over ethernet. In the cloud, it is often over disparate VPN connection, and worse of all, over your internet connection. How many companies willing to get a 10Gb ethernet pipe? Not many. So they get dedicated leased lines to AWS et al, otherwise their transaction times are atrocious. Then there's the hilarity of trying to print a file back in the office. Oops. Cloud is a one way solution. Those apps cannot see your printers. Or any of your internal applications. So you end up completely rewriting your processes and data flows. Now if you are using any shared storage, all bets are off. Each cloud server is its own little walled off environment, which means that using shared storage is right out. Now all those files have to be scp'ed back and forth.

      Really, it's all just smoke a mirrors. The cloud is nothing but a big scam. Any CTO who pushes the cloud is just drinking the cool aid. The costs of those WAN connections, future price increases (everything costs rock bottom right now, that's not going to last), plus cloud provider lock in (just try getting your database out of AWS and see what hidden costs there really are). Ain't no one saving money moving to the cloud, but there are a lot of "cloud consultants" getting rich.

      --
      The only thing worse than a Democrat is a Republican.
    8. Re:Sure... they're large enough... by phantomfive · · Score: 1

      At least for the handful of companies where I have some view into how they're using AWS, they have an awful lot of people who look like IT staff, but have been rebranded from "sysadmin" to "devops".

      That's a good point

      --
      "First they came for the slanderers and i said nothing."
    9. Re:Sure... they're large enough... by lgw · · Score: 1

      Everything's virtual, sure, but hosts fail, have disk problems, eventually age out, etc. It's a pain. I've done it both ways, and I really like having one less category of things to care about. Plus, if you ever need 300 added servers today, and tomorrow, but then the peak will pass, the cloud is nice for that.

      --
      Socialism: a lie told by totalitarians and believed by fools.
    10. Re:Sure... they're large enough... by lgw · · Score: 0

      First, apps must ships files between databases and themselves. In a private datacenter, that's over ethernet. In the cloud, it is often over disparate VPN connection, and worse of all, over your internet connection. How many companies willing to get a 10Gb ethernet pipe?

      All my data is next to my servers these days, in the cloud, works well for me. Different tools for different jobs, perhaps?

      Now if you are using any shared storage, all bets are off.

      I remember the days of fibre channel. Seems like so long ago. What an expensive pain in the ass that was, the bad of days of trying to scale vertically instead of horizontally.

      plus cloud provider lock in (just try getting your database out of AWS and see what hidden costs there really are)

      True enough, but it's no picnic moving off of Oracle either. It's always going to suck if a key vendor goes bad (but what are the odds anyone will ever go as bad as Oracle?).

      --
      Socialism: a lie told by totalitarians and believed by fools.
    11. Re:Sure... they're large enough... by swb · · Score: 1

      IMHO, hosts seldom fail. PSUs fail (rarely), but who doesn't do redundant PSUs? HDDs fail, but all but the tiniest sites have centralized storage with double-parity RAID and two hot spares, so the failure is contained and ameliorated with no interaction past a 20 minute online ticket for a replacement hard disk.

      Aging out of hardware is a problem virtualization and centralized storage solved. You rack up a new host, install your software, patch, add to cluster, migrate VMs off the old host, done. I do these upgrades all the time and frankly I spend more time on the nuts and bolts of racking and cabling than any data migration. SAN upgrades take longer, depending on your data amount and software, but really the impact isn't much more.

      Switching fabric upgrades probably are the most complex, but the complexity is often self-imposed by brain damaged initial configurations and lack of rack space. When those aren't an issue, it's far less complex and with host/SAN redundancy/teaming/MPIO, you can usually integrate the new fabric with the old, move connections to new hardware and experience zero interruption. The biggest downtime inducers are lack of redundancy to remote closets.

    12. Re:Sure... they're large enough... by Anonymous Coward · · Score: 0

      First, apps must ships files between databases and themselves

      Do they really? Is that, like, Princeofcups First Law of Apps? They always have a database, and they always ship files to and from the databases?

      In the cloud, it is often over disparate VPN connection, and worse of all, over your internet connection. How many companies willing to get a 10Gb ethernet pipe?

      That answer can be found by the following equation: "Number of companies" - "number of companies who design and build their apps in a sane fashion" = "how many companies willing to get 10 Gb ethernet pipe."

      Then there's the hilarity of trying to print a file back in the office. Oops. Cloud is a one way solution.

      I wish somebody had told me that before I set up a VPC in AWS that can route directly into my lab. Apparently, I'm doing the impossible.

      Now if you are using any shared storage, all bets are off. Each cloud server is its own little walled off environment, which means that using shared storage is right out. Now all those files have to be scp'ed back and forth.

      Or you could, you know, create a properly secured clustered fileservers that share those files to all hosts that need it.

      Really, it's all just smoke a mirrors. The cloud is nothing but a big scam.

      Thank you, it's clear from your comments that you know all about the cloud. I should like to subscribe to your newsletter, sir.

    13. Re:Sure... they're large enough... by Anonymous Coward · · Score: 0

      I guess several people have already commented how wrong this is, but I'll add my own experience. We just did an evaluation of new software using virtual servers hosted on Amazon. The RAM and disk space requirements were large enough that we couldn't just add these evaluation servers to our private datacenter without adding resources. For us, that would take months of funding, analyzing, RFQ, PO, shipping, installation, configuration. The AWS servers were running within a week of my CR, and the costs passed off to the requesting business unit. We'll use these intermittently for 3 months or 6 months, then retire them. So there are certainly cases where it's easier, faster, and more productive to use cloud resources than host them internally.

    14. Re:Sure... they're large enough... by jon3k · · Score: 1

      Sure, you have to manage the hardware. We're talking about comparing a particular feature of the two deployment models. Of course, if you manage hardware you need humans to manage the hardware. But if we're talking about dealing with the failure of an individual guest or host, I don't see much of a difference between "the cloud" and a highly virtualized datacenter.

      As far as dealing with spikes in demand, you really have to think that there are two very different environments. There are internal IT departments where demand spikes like that don't exist, and there are public facing operations (ie big web operations) where the cloud makes a lot more sense. I deal with the former, not the latter.

    15. Re:Sure... they're large enough... by Anonymous Coward · · Score: 0

      You've apparently never heard of a VPC.. Network-wise our cloud resources might as well be sitting in our data center. Currently connected via a few 1Gig pipes. Shared storage is all over the place via multiple different services. When was the last time you looked at an actual cloud provider? Actually did anything with it? You're talking about a world that hasn't existed for years now.

      I'm not saying the cloud is perfect nor is it the best solution for every company / every project but the issues you're talking about have been long since worked past.

    16. Re:Sure... they're large enough... by lgw · · Score: 1

      As far as dealing with spikes in demand, you really have to think that there are two very different environments. There are internal IT departments where demand spikes like that don't exist, and there are public facing operations (ie big web operations) where the cloud makes a lot more sense. I deal with the former, not the latter.

      There's a lot of truth to this idea, IMO. Right tools for the job. Moving your Exchange server to the cloud (or Office whatsit where MS does it all) is a very different kind of question than a web service. Moving either your DB or the servers that need it to the cloud, but not both, is consultant-level stupid.

      There are other cases too of course. For a software company, using the cloud to do all of your QA makes a lot of sense - I've been at several place that spend years developing cloudlike system to manage pools of servers to allow large QA setups to be shared between teams. A new project like that today internally would be a bit nuts. Another case is a big workload that only happens once a month (e.g., end-of-month accounting runs), which can be a big win to run in the cloud if your auditors allow it.

      --
      Socialism: a lie told by totalitarians and believed by fools.
    17. Re:Sure... they're large enough... by luis_a_espinal · · Score: 1

      Collecting on them is another matter altogether. Especially in the event of a huge disaster which would trigger huge penalties. Would the provider pay you, or just file bankruptcy instead? Or just pay lawyers to keep the issue tied up in court for years?

      that is why you go with large providers that have everything in place to settle should they fail to live up to their SLAs, not some SuggarDaddy one-man-shop cloud service.

  4. I'm eager to browse their private data,upload more by Anonymous Coward · · Score: 1

    I love browsing private cloud data. I hope they upload more of it to check out.

    *any hacker anywhere

  5. Makes sense by Anonymous Coward · · Score: 5, Funny

    That way it will be easier to ship all of our IT responsibilities to India or China and not need any Americans involved. That entire cost center will be cut by 75%. What's not to like?

    What's that? Corporate espionage?

    Nah, they'll be paid well for their standard of living so they won't break the chain of trust. And besides there will be an iron clad contract in place, our lawyers will crush them in court if they do any monkey business.

    Such a worrywart! C'mon over here young man and pour me another brandy!

    1. Re:Makes sense by Anonymous Coward · · Score: 1

      I used to work at GE, and I assure you that is essentially how this decision gets made. Gigantic bureaucratic mess of a corporation. The only employer in my professional career I was actively happy to leave. They were always quick to explain that their enormous legal department will quash any resistance, whether internal or external.

    2. Re:Makes sense by Feral+Nerd · · Score: 1

      What's that? Corporate espionage?

      You mean GE actually has tech the Chinese would consider worth stealing?

    3. Re:Makes sense by Anonymous Coward · · Score: 0

      That way it will be easier to ship all of our IT responsibilities to India or China and not need any Americans involved. That entire cost center will be cut by 75%. What's not to like?

      Your right on the money. They definitely follow the Jack Welch mentality of let me anchor my factory off the country with the cheapest labor source and cut labor costs. If a job can be offshored, it is.

      They also will tell you up front that they burn through Developers, figuring if you cannot handle the load, they will find someone who can and are proud of this fact. Its in their training material for managers...if a programmer (engineer) cannot meet ever compressed sprints (more to do in the same amount of time), find someone who can.

      Don't know if the guy now works at GE Global Research, but if he does, he most certainly supports GE Developers in over 120 different countries. Heavily impacted by local last mile bandwidth issues, Java resource creep, Oracle, ITIL, etc... At least they were smart enough to have Linux VMs. The Cloud that GE Global Research controls is mostly internal, not external customers. And if a project has military or security ramifications, it can not be hosted there for obvious reasons.

      Java Melody is used to fine tune Java, but you can NEVER 100% tune out thread creep, memory creep which is what I mean by resource creep. Many times the only solution is to shutdown/restart the servers, which they do NOT like to do. Java will never work well without periodical restarting.

      For Irony, they promote "Agile/Scrub" software development practices but use a mainframe Service Now based Support Ticket System...too funny. Anyone who has attempted to implement new features in Service Now can attest to how non-Agile it really is. In spite of having better Java-based tools available to do it

      And they are little 'a' agile, not big 'A' Agile as they do not have a formal Product Owner "standups" (Conference calls) nor do they have a full time Scrub Master, usually its an overworked Manager acting in that role. Not that agile is bad, they do a pretty good job with that.

      If you get a job at GE, even GE Global Research and do not move into management fast, it is only a matter of time until your role, if you are a US Citizen, is offshored, usually to India for pennies on the dollar.

      You will work to the end of your contract, but after that, perhaps not.

  6. Deferred maintenance by Anonymous Coward · · Score: 0

    This is a win for CTOs who have inherited their predecessors' stingy "make it work a little longer" budgetary process. Now they have the ultimate trump card of "the upgrade is to migrate", and they save all the hardware capital costs to do so.

  7. 9,000 apps? by Anonymous Coward · · Score: 1

    Any company that has 9,000 apps is bloated and broken. GE is a financial services firm, so they make money by doing nothing, which keeps them bloated and broken and very profitable. No one should even bother to listen to them.

    1. Re:9,000 apps? by Anonymous Coward · · Score: 1

      I thought GE made trains...

    2. Re:9,000 apps? by Anonymous Coward · · Score: 0

      They do, but they make most of their cash through financial services.

    3. Re:9,000 apps? by bws111 · · Score: 1

      Nope. Industrial operations had $110B in revenue, $18B in profit. GE Capital had $43B in revenue, $7B in profit.

    4. Re:9,000 apps? by CanadianMacFan · · Score: 1

      They also make wind turbines, jet engines, home appliances, medical equipment, and a whole lot more.

    5. Re:9,000 apps? by viperidaenz · · Score: 1

      I thought they made the Fukushima nuclear reactors.

      And the engines for the Boeing 777

      And ultrasound machines

      And tugboat engines ...
      the list goes on.

    6. Re:9,000 apps? by Anonymous Coward · · Score: 1

      GE is a financial services firm,

      Last I heard they are getting rid of the financial services.

    7. Re: 9,000 apps? by cyber-vandal · · Score: 1

      Spoken like someone who's never had a job in IT.

    8. Re:9,000 apps? by Anonymous Coward · · Score: 1

      GE's financial services (most of them, at least) have been spun off into Synchrony Financial and are now an independent company.

    9. Re:9,000 apps? by afidel · · Score: 2

      Yup, the financial services wing has been under-performing the manufacturing part of the company since 2007 and because of GE's size they were going to be labelled a systemic risk by the Fed which would have brought a huge amount of auditing and capital requirements that would have further dragged on the company.

      --
      There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order. Starting now.
    10. Re:9,000 apps? by Anonymous Coward · · Score: 0

      and they don't pay any taxes.

    11. Re:9,000 apps? by __aaclcg7560 · · Score: 1

      GE sold off GE Capital Bank to Goldman Sachs to avoid the Wall Street regulations that came from owning a bank. I'm so overjoyed that my savings account is now with Goldman Sachs (not!).

  8. Criminal Use of Market Speak and General Idiocy by crackspackle · · Score: 4, Funny

    Lance Weaver is the Chief Technology Officer for Cloud at GE Corporate. ... Lance holds a Bachelor of Science degree in Criminal Justice from Truman State University.

    "This interconnection oriented architecture means we contract with colocation facilities where we can place our inspection tools and GE services into dense meeting areas of the multi-cloud environment. These are places where you find many cloud providers under one roof and we can place our services, inspection and data sets within them to obtain cloud agnostic, high speed adjacency."

    "Another factor in making our journey to public cloud successful is our self-service (or what I call opt-in) approach, which allows business units to choose the services they wish to consume. People will naturally gravitate to high value, frictionless services"

    "Running inside a public cloud environment, you're able to consume unlimited capacity as needed. Today, we scale up and down thousands of times in a day while we handle peak loads or run experiments."

    1. Re:Criminal Use of Market Speak and General Idiocy by swb · · Score: 1

      "This interconnection oriented architecture means we contract with colocation facilities where we can place our inspection tools and GE services into dense meeting areas of the multi-cloud environment. These are places where you find many cloud providers under one roof and we can place our services, inspection and data sets within them to obtain cloud agnostic, high speed adjacency."

      While spoken like a true executive, I don't think he's being idiotic besides tone and language.

      If they are structuring workloads to be cloud agnostic -- which only seems smart, then locating data centers where multiple providers are tenants is a pretty decent strategy. They guarantee maximum intra-provider bandwidth and low latency, allowing them to shift workloads between providers or build multi-provider clusters that might not work if you're spanning datacenters.

      All of this seems reasonable, as does Wal Mart's push for tools to increase cloud-cloud compatibility and portability. The biggest problem with cloud compute is the lack of VM compatibility between vendors. Fix that, and find data centers where you find providers colocated and you can treat cloud vendors like one giant cluster where you can migrate VMs between providers.

      A cow-orker and I were just wondering the other day if you couldn't build an appliance that would let you migrate a VM between VMware and Hyper-V.

    2. Re:Criminal Use of Market Speak and General Idiocy by scamper_22 · · Score: 1

      I've come to appreciate corporate speak. I find it hugely amusing.

      That's really how it works.
      They read some new trend.
      They create a program on it.
      They fund that program.

      That's how things get done at these companies.

      I've been complaining for years about our build system and how much manual work goes into deploying a build, but no one wanted to change anything.

      Suddenly we get funding for *The Cloud*.
      Next thing you know, in order to get onto the cloud, we need to fix everything that needed fixing all that time. In comes, Jenkins, Maven, configuration abstractions, refactoring...

      All funded because some buzzword made it into the business magazines and this caused the executives to make sure they are doing something with that buzzword to not be left behind from their peers who are doing buzzword.

      Oh I'm sure it even frustrates executives who know what they're doing or those that come from a technical background.
      So learn to love the buzzwords :)

  9. MBA alert by Anonymous Coward · · Score: 2, Interesting

    "We support approximately 9,000 applications at GE, and our enterprise IT efforts right now are focused on moving the vast bulk of them into public cloud. This may sound like a counter-intuitive strategy, but here is why it’s a great fit for GE."

    MBA's bless 'em.

    "In our environment, like many others, we ran the bulk of our applications on-premise in private cloud and highly-virtualized environments. Yet we were still dealing with the challenges of demand spikes without sufficient capacity. We had the desire to burst out to external cloud to solve these problems by leveraging a hybrid cloud. "

    So you didn't add capacity internally, you bought it externally, and thus lost the biggest advantage of using your own servers: control and security. Worse you made the system more complex as they had to cope with some servers in the public internet.

    Worse still, you're using misleading MBA speak. There is no such thing as 'private cloud'. You ran these apps on servers YOU controlled, then you moved those apps to servers controlled BY OTHER COMPANIES ACROSS THE INTERNET. Hopefully you put in the fallback plan for if the company fails, and take regular backups of your data on their servers to make sure you still keep it. What happens when the spotty youth they hired hands your app data to his frat friend? Because while internally the network admins forced security, you lost that when you lost control of your servers.

    "However, if we were able to burst out to the external cloud to support our applications then why were we running the applications internally at all? This insight gave us a new perspective on the importance of public cloud in any strategy"

    Having pissed away the advantage of having your own servers, what the hell, lets set ourselves up with a third party supplier and hope they won't screw us over... that's a plan right? It says here in "MBA World" that "all good MBAs are leveraging the cloud"!

    CLOUD!

    1. Re:MBA alert by turbidostato · · Score: 1

      "So you didn't add capacity internally, you bought it externally, and thus lost the biggest advantage of using your own servers: control and security."

      Taken from another poster above... "Lance Weaver is the Chief Technology Officer for Cloud at GE Corporate. ... Lance holds a Bachelor of Science degree in Criminal Justice from Truman State University."

      So he probably knows nothing about computers but he probably knows about the real cost and value of "control and security" better than you.

      "There is no such thing as 'private cloud'."

      Of course there is.

      "You ran these apps on servers YOU controlled, then you moved those apps to servers controlled BY OTHER COMPANIES ACROSS THE INTERNET."

      So what? In fact, given Weaver's background he probably would say "so much the better".

      "Hopefully you put in the fallback plan for if the company fails, and take regular backups of your data on their servers to make sure you still keep it."

      As in "that's a side effect from your decision of going to a public provider because if you hosted internally you wouldn't need to have backup plans in case your datacenter goes boom nor backups to make sure you data is still there"?

      "You ran these apps on servers YOU controlled"

      You can bet Mr Lance Weaver neither controls the company's internal servers nor will control those externalized. In all cases he will be delegating to a third party, even within his company, but it is much easier to deflect blame and sue when it is an external company the one that can be shown responsible.

      "What happens when the spotty youth they hired hands your app data to his frat friend? "

      And who says your own company won't be the one hiring the spotty youth? Difference being that if it is *your* company the one hiring the spotty youth under your direct line of command, *you* are in trouble. If it is a service company it is that company the one in trouble.

    2. Re:MBA alert by bws111 · · Score: 2

      If you have a package to ship across the country, do you drive it there yourself, or do you give it to UPS? If you want to be connected to the internet, do you run your own fibers, etc, or contract with an ISP? If you want a server, do you build your own fab and make your own chips, or do you buy servers or components from someone else?

      All businesses rely on other businesses for critical things. They are called suppliers, and the way you do business with them is through a new invention called the contract.

    3. Re:MBA alert by Anonymous Coward · · Score: 0

      > "about the real cost and value of "control and security" better than you."

      You understand that control and security in the network context is real stuff, access control, physical control of the network cables run, , encryption, firewalls, routing, permissions. Not some fluffy vague concept of crime. You made a play on the word 'security' as if the guard of the prison could be a network admin!

      "Private cloud" is a marketing term to lessen the difference between local servers and ones in another company by calling them both 'cloud'. You buy servers not cloud.

      Your users connect across the public internet, across a set of ISPs with which you have no SLA agreement, you do not control and he cannot even list the ISPs that GE data will cross on its way to a 'cloud' provider.

      > "You can bet Mr Lance Weaver neither controls the company's internal servers nor will control those externalized"

      No HR will hire them according to GE's hiring policy, Network admins will connect the networks and run the servers according to GE policy, the Apps will be run by their respective divisions, also within GE's management, also hired by HR also under GE policy. He has taken two of those systems out of GE control and outside GE management.

      So now the apps, and large parts of the network are outside GE policy, and outside HR hiring vetting.

      "What happens when the spotty youth they hired hands your app data to his frat friend? "

      Or indeed as your CTO. HR need to tighten up their recruitment so the CTO actually is qualified to do that job and understands the actual mechanics of the job.

    4. Re:MBA alert by bws111 · · Score: 1

      You do know that GE is a global company, with facilities all over the world, right? Unless your brilliant proposal is that they build their own worldwide network, connecting every office, plant, etc, all that data is going over the Internet anyway.

    5. Re:MBA alert by Anonymous Coward · · Score: 0

      "do you drive it there yourself, or do you give it to UPS?"

      Why would you ship it by UPS from floor 5 to floor 3? When shipping it means wrapping it up, sending it down to the mail office in floor 1 to go to UPS who send it to *unknown* sorting office to come back to floor 1 to be shipped to floor 3, where its unwrapped?

      Vague analogies aside...

      At the end of the day these are computers, plugged into wall sockets and internet connections. Putting 20 routers, 10 ISPs, and thousands of miles of cable between the computer does not make business sense. Any claimed saving is illusory.

      If you can hire the company to run that server remotely, you can hire them to run it locally on your network and save all the network infrastructure you would otherwise be maintaining to secure this remote connection.

      "buzzwords" and "analogies" really don't hack it here.

    6. Re:MBA alert by Anonymous Coward · · Score: 0

      " all that data is going over the Internet anyway."

      No, that would be dumb, it will be leased connections (point to point with SLA and set routing). You wouldn't connect every office to every hacker on the planet by connecting routing the corporate network over Internet, that would be dumb.

      Oh... right....Lance Weaver. I see your point. Perhaps he's already done that damage.

    7. Re: MBA alert by guruevi · · Score: 1

      And what do you think these 'leased point to point' connections are? They are terminated at your ISP and routed over other ISP's to the other end. If you're lucky they'll do it over an encrypted VPN. Did you really think someone rolls out cable for each leased connection? Or reserves a fiber across the ocean for your use only?

      The only way to be sure it is done correctly is to do it yourself. If you hand your stuff to others, they'll cut corners everywhere to make a quick buck.

      --
      Custom electronics and digital signage for your business: www.evcircuits.com
    8. Re:MBA alert by KGIII · · Score: 2

      This cloud thing really isn't new. From a VPS, to email, to simple web hosting - it's in the cloud. The name has just changed. It's like renting time on the mainframe and connecting via a dumb terminal, all over again. Some methods have changed, sure... Essentially? It's much the same. That which is old is new again.

      --
      "So long and thanks for all the fish."
    9. Re:MBA alert by dave420 · · Score: 1

      It really isn't. We are talking about cloud infrastructure, not a little VPS or email. If you rented time on a mainframe and then decided you need 16 more mainframes in the next half hour, would that be possible in the old days? Unless you had a very peculiar (or expensive) provider, that wouldn't be possible. Cloud infrastructure scales remarkably well, for anyone who wishes to use it, and can scale up and down very quickly, depending on requirements.

      Squinting until it all looks the same so you can make a sagely comment isn't doing you any great service.

    10. Re:MBA alert by Viol8 · · Score: 1

      " If you rented time on a mainframe and then decided you need 16 more mainframes in the next half hour, would that be possible in the old days?"

      Yes. VMs started on mainframes. Learn some computer history.

    11. Re:MBA alert by Viol8 · · Score: 1

      "So he probably knows nothing about computers but he probably knows about the real cost and value of "control and security" better than you."

      Unfortunately for your idea and much to the dispair of accountants everywhere - knowing the cost and value of something is rarely enough. I might know the cost and value of every part in my cars engine but that doesn't mean I know the best servicing procedure or that I can fix it when it suddenly dies in the middle of nowhere at night in the pissing rain.

      Clearly this man only has vague concepts of what is really going on at the system level and what the compromises are. He probably just thinks saying "Cloud" often enough with a liberal sprinkling of other trendy buzzwords is enough to impress his peers and make him sound like he has his finger on the pulse.

      Do you have an MBA by any chance?

    12. Re:MBA alert by rayd75 · · Score: 1

      In the old days, prior to ubiquitous hardware virtualization, you would have paid for more CPU time or more sessions. The key point being that your provider would have placed your workload on a shared system with greater capacity than necessary. How could they justify this excess capacity? Easy! By charging you dearly for access to it when you needed it on short notice. Hmmm... Sure sounds familiar.

    13. Re:MBA alert by KGIII · · Score: 1

      VMs aren't really all that new. They're just more popular. Yes, it's speedier. Most everything is. Not much squinting required, I don't think.

      --
      "So long and thanks for all the fish."
    14. Re:MBA alert by turbidostato · · Score: 1

      "You understand that control and security in the network context is real stuff, access control, physical control of the network cables run, , encryption, firewalls, routing, permissions. Not some fluffy vague concept of crime."

      Except that, well, it isn't. Control and security in corporate environment is all about money, legal liability and reputation. That's my point and that's why I said that probably Lance Weaver is more fitted to understand it than your average nerdo which really believes what you say above. The pity is that I'd want to see in an executive position somebody that understands that but also knows how network cables, encryption, firewalls, routing, permissions, etc. fit into the equation, which probably this one guy doesn't.

      "You buy servers not cloud."

      Of course you buy servers, not cloud. But you use them to build cloud, not a "nerd's collection of fancy hardware". If it allows for self service, metered consumption and automation, it is a cloud. If its only customers belong to the same corp that deployed the solution or, at least, the solution has been deployed for a single tenant, it is a private cloud.

      "Your users connect across the public internet, across a set of ISPs with which you have no SLA agreement, you do not control and he cannot even list the ISPs that GE data will cross on its way to a 'cloud' provider."

      You don't have much an idea about how big corporate deployments work, do you?

      "He has taken two of those systems out of GE control and outside GE management."

      Which, as I already told, will probably mean easier liability management for him.

      "HR need to tighten up their recruitment"

      The moment recruitment is strictly controlled by HR instead of the business units that need the people is the moment you are better off outsourcing services. Guaranteed.

    15. Re:MBA alert by turbidostato · · Score: 1

      "Do you have an MBA by any chance?"

      Yes, I do have an MBA, but I only enrolled after more than 20 years of real technical background (and I mean real, not just knowing the buzzwords and managing people who have the technical knowledge), so I can see both sides of the pond.

      I see your point and you are probably right, but this doesn't mean this guy doesn't bring his own luggage which happens to be good knowledge and expertise for the position; it's only that it is not *all* the required knowledge and expertise he should bring to the position.

  10. Good luck with that Cloud thing... by bobthesungeek76036 · · Score: 2

    I spent all last week hearing about the damn cloud and Oracle OpenWorld. And the company that I work for has their heads in the cloud now. It will be interesting how all the datacenters in the world are consolidated into these cloud providers. They are just making sweet targets for terrorists around the world...

    --
    Karma: Bad
    1. Re:Good luck with that Cloud thing... by phantomfive · · Score: 1

      And the company that I work for has their heads in the cloud now. It will be interesting how all the datacenters in the world are consolidated into these cloud providers. They are just making sweet targets for terrorists around the world...

      Hello friend, hopefully they don't share the same air conditioning controller.

      --
      "First they came for the slanderers and i said nothing."
    2. Re:Good luck with that Cloud thing... by Anonymous Coward · · Score: 0

      This is all infrastructure. You could say:

      It will be interesting how all the [generators] in the world are consolidated into these [electricity] providers. They are just making sweet targets for terrorists around the world...

  11. Not big enough to have your own private cloud? by MavEtJu · · Score: 1

    You would think that a company like GE would be big enough to be able to have their own private cloud infrastructure.

    --
    bash$ :(){ :|:&};:
  12. CIA to put their email on AOL Cloud by Anonymous Coward · · Score: 0

    Well you see, the CIA is planning to move its email system into the cloud. And really John Brennan, CIA director, was just testing the water with his AOL email account.

    Now that he's seen how successful 'the cloud' is, the whole CIA email system will be moved to AOL.

  13. "Moving to the cloud" == "Outsourcing" by QuietLagoon · · Score: 2
    Ever since outsourcing became a bad word in IT departments, the phrase "moving to the cloud" seems to have replaced it.

    .
    I guess it is better public relations for corporations to lay off IT workers when apps are "moved to the cloud" than when the "datacenter is being outsourced".

    1. Re:"Moving to the cloud" == "Outsourcing" by Anonymous Coward · · Score: 0

      "Our sysadmin? He's in a better place now. He was moved to the Cloud."

  14. Awful SW by McBullseye · · Score: 1

    My personal opinion as a customer, GE is currently awful at supporting their SW. They require extremely specific builds under "FDA regulations" that only limit vendors from patching rather than customers (I.E. they certified SQL Server 2005, it is 2015 and you want to run SQL 20012? Nope, we don't support that even though the legislation says customers are allowed to update base systems). If a GE cloud goes live we can expect to be deploying HIPAA compliant applications on SQL 2012 in 2019 based on current "certification" requirements.

    Further, they are already big enough to espouse a "my way or the highway" attitude around their medical products. They may try to use that as leverage to force huge organizations into the cloud, but quite frankly, HIPAA is scalable legislation and no cloud solution to my knowledge has met huge organization requirements for audit trails on data center entry and physical access.

    So, go ahead and push this agenda GE... It may finally be the one thing that finally causes the big players to break your medical divisions back.

    1. Re:Awful SW by Seng · · Score: 1

      Agreed... Centricty... Cough Cough. Today's software on yesterday's vulnerable platforms!

  15. Interesting CTo cheerleader piece by ErichTheRed · · Score: 2

    I'm a proponent of the cloud when it makes sense, and think that companies should implement a private cloud for their own internal applications. I'm not so sure about a company putting everything out on the public cloud, nor whether the migration will complete. The article says they're 350 apps in, with 1000 targeted for the end of the year. In enterprise IT, an "app" can be anything from the crown jewels to Bob in Accounting's hosted Access database or Excel macros. I'm assuming they're starting with the Access database. :-)

    The thing I don't like about the public cloud is the real possibility for permanent vendor lock-in, IBM mainframe style. Prices are low now, but when all the competitors are driven out and the cloud bubble bursts, Amazon and Microsoft are going to slowly turn the prices up. Assuming the cloud provider isn't a security basket case, secure environments can be designed. But, this is GE we're talking about. I guarantee they're wallowing in outsourced-IT mediocrity and managing a massive bloated system. GE was the archetype for the 60s-style conglomerate, so I'm sure they have huge amounts of duplication. They probably have 30 SAP implementations and 20 Oracle ERP systems from the various divisions, acquisitions, etc.

    It'll be interesting to see what happens. Just don't forget, big company CIOs, that the public cloud is being subsidized by the latest round of VC funded web startups and phone apps. When that bubble bursts, expect vendors to make their money back in other ways...

    1. Re:Interesting CTo cheerleader piece by Baron_Yam · · Score: 2

      > companies should implement a private cloud for their own internal applications

      So, a new word for the client-server architecture that's been around since the first terminal accessed the first mainframe?

    2. Re:Interesting CTo cheerleader piece by Anonymous Coward · · Score: 0

      They had it that way, they needed more capacity, instead of simply signing off on another server to slot in the rack.... a $5000 purchase.... he negotiates 'cloud' servers outside.

      One is a signature on a purchase order, the other means he runs around negotiating deals, meeting vendors, dinners, business trips, blow hookers... Really it moves a very boring upgrade into a thing to be managed by him, which gives him a role in the company.

      This won't fix any duplication, he's negotiation a whole bunch of deals with different ISPs/ASPs, so it just adds a layer of his management to it and spreads out the apps.

      So 5000 people using an app won't be accessing a local server on their corporate network, they'll be accessing a local server on their corporate network (but it will be renamed 'firewall' or 'Vpn cache' or some such) which sends it to the remote server on someone elses network across the internet. An extra level of complexity that needs management and thus needs Mr MBA.

    3. Re:Interesting CTo cheerleader piece by Anonymous Coward · · Score: 0

      Yessiree you nailed it...lock-in. That's why Microsoft went balls deep with Azure. Oracle's still trying to figure it out. When they do their customers will beg for the sweet relief that is called death.

    4. Re:Interesting CTo cheerleader piece by drinkypoo · · Score: 1

      So, a new word for the client-server architecture that's been around since the first terminal accessed the first mainframe?

      Well, no. Clouds are cluster-based and you can spin up resources as you need them. This is normally significant because of billing but it has other benefits as well. If a machine craters, new instances just come up on new machines. If machines are not used, they can put themselves to sleep; if you need more capacity, you can wake some machines up. So it's not the same as mainframe computing, and not even precisely the same as the traditional client-server model.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    5. Re:Interesting CTo cheerleader piece by omgwtfroflbbqwasd · · Score: 2

      The thing I don't like about the public cloud is the real possibility for permanent vendor lock-in, IBM mainframe style.

      What many people don't realize is that this is why OpenStack is so popular. As cloud providers "standardize" on the OpenStack platform and APIs (except for AWS, which doesn't do it because they are the 900 lb gorilla in the market), they become interchangeable by nature. The common denominator for compatibility is how your provisioning and migration engine interfaces with the cloud provider. And if you're based on the OpenStack API, then you can basically migrate or provision your workloads on any provider that supports that API - no lock-in. All you need to do is update DNS to point to your new hosting provider and you're in business.

    6. Re: Interesting CTo cheerleader piece by bamirian · · Score: 1

      'Lock-in' is pervasive in IT. Programming languages, content management systems, rdbms's, virtualization platforms, etc., etc, etc. That hasn't stopped us though from leveraging a technology when it provides us some good value. Then, when we get to a place where it's not meeting our needs-- we come up with a migration strategy. Nothing new here, same 'lock-in' problem we've faced for years with just about everything.

    7. Re:Interesting CTo cheerleader piece by bmimatt · · Score: 1

      What you do not seem to realize is that there doesn't have to be a vendor lock-in. All machines should be under config management and orchestration if the environment is large enough (ie more than one box). All you need to do to leave a vendor is: 1. Stand up new, mirror infrastructure at vendor B (using tools mentioned above) 2. Replicate/copy data 3. QA/sanity check (although well put together CM will do that for you) 4. Say good-bye to vendor A. On the other hand, if you choose to set up all of your CM/Orchestration to be very vendor specific, you may have some extra work to do to free yourself. AW's CM is basically Chef, but they call it OpsWorks. No miracles there because they're the 9000lbs gorilla.

    8. Re: Interesting CTo cheerleader piece by Anonymous Coward · · Score: 0

      So....exactly like a mainframe then? Because that's what they did. Decades ago

    9. Re:Interesting CTo cheerleader piece by Anonymous Coward · · Score: 0

      No. Yes in the old school mainframes you could do "real" isolation, etc.. but in the commodity PC world none of the "cloud" stuff took off until VM management and deployment matured.

      In the old school, you talked to IT and waited 2-24 weeks (depending on how big and shitty they are) for them to land you a new piece of hardware for your app.

      Now, with internal cloud, you can go to a portal and say "give me a 2 core machine with 16G of RAM and 2 100G disks" and get it within 10 minutes.

      This won't always work, of course - sometimes you need the iron but 95% of plain jane enterprise apps can be hosted on a VM.

    10. Re: Interesting CTo cheerleader piece by dave420 · · Score: 1

      How is that like a mainframe? If your mainframe had a problem, you couldn't magically spin up another one. If your traffic increased, you couldn't spin up a handful for a couple of hours.

    11. Re: Interesting CTo cheerleader piece by drinkypoo · · Score: 1

      So....exactly like a mainframe then? Because that's what they did. Decades ago

      Really? Show me one mainframe that did that, and it has to have been at least twenty years ago, since you're such hot shit and it happened "Decades ago". The truth is that mainframes are the opposite of cloud computing, and our now-normal client-server model sits in between.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    12. Re:Interesting CTo cheerleader piece by Baron_Yam · · Score: 1

      Ahh. So cloud = virtualized server with on-demand redundancy.

      OK. I get so sick of new buzzwords for old things, I tend to tune them out. It's nice to know this one actually has a useful difference behind it.

    13. Re: Interesting CTo cheerleader piece by bws111 · · Score: 1

      Seriously? 'Service bureaus' selling efficiently shared computing resources have been around since the 1960s (5 decades ago). Virtual machines have been in use since at least 1972 (4 decades ago). LPARs, allowing things like capping of resources, have been around since the 1980s (3 decades ago). Parallel Sysplexes, allowing sharing of data and movement of workload, every across a wide geograpahy, have been available since 1990 (2.5 decades ago).

      The only thing 'new' is the concept of a provider having paid-for-but-unused capacity sitting around in case someone needs it. Maybe someday the PC world will catch up to the mainframes and have unused-and-NOT-paid-for capacity until seconds before it is required.

  16. young one...what is this cloud you speak of? by turkeydance · · Score: 1

    master, it is our destiny.

  17. Remember GEISCO? by Anonymous Coward · · Score: 0

    Back to the future, sort of. GE was an early timesharing user, building what we would now call a "private cloud" based on a several datacenters in the US and elsewhere. Eventually started selling spare cycles and access to various software tools to others, so it became sort of public. Interesting system - I used it in the deep dark past.

  18. Yeah, Democracy in Action by Anonymous Coward · · Score: 0

    Every piece of equipment between you and your data gets to vote continuously on whether you're going to be able to run your business. And all have veto power!

  19. He's an Idiot. by sycodon · · Score: 1, Troll

    First, any executive that utters the word "Cloud" is a moron. A CTO, CIO, etc who utters the word "cloud" is a fucking moron. "Cloud" is a marketing word for other people's servers.

    Second moving Enterprise applications off of the company's servers is stupid and reckless. Security, accessibility, up time, backups, integrity, etc. are in the control of a company that makes its living by cutting corners and economizing. And if any of them are defense related, probably illegal.

    Third, this moron "executive" is probably just trying to reduce head count and infrastructure costs, looking toward the next fucking quarterly results and doesn't intend on being around a year or two from now when it all comes crashing down.

    --
    When Fascism comes to America, it will call itself Anti-Fascism, and tell you to give up your guns.
    1. Re:He's an Idiot. by JustAnotherOldGuy · · Score: 1

      First, any executive that utters the word "Cloud" is a moron. A CTO, CIO, etc who utters the word "cloud" is a fucking moron.

      And the best part is they have no fucking idea what the "cloud" actually is. If you told them it's just "other people's servers" they wouldn't understand that either, but still.

      So yeah, I get tired of the "cloud cloud cloud cloud cloud...." shit too. It's fucking stupid.

      --
      Just cruising through this digital world at 33 1/3 rpm...
    2. Re:He's an Idiot. by irrational_design · · Score: 3, Insightful

      Yes, it's other peoples servers, but there is more to it than that. We used to host physical servers at a data center. It was a huge PITA to get new servers provisioned. Moving to virtual servers on other people's servers (aka, the cloud) has been the greatest thing ever for us. Could we host the virtual servers locally? Sure. Do we want to? No. So for me the cloud is not defined by just being someone else's servers, but virtual servers running on some else's servers. It simplifies so much that we would never go back to physical servers or hosting our own virtual servers unless (probably until) some massive problem happens.

    3. Re:He's an Idiot. by Anonymous Coward · · Score: 0

      Problem is, MBAs don't care about anything that probably won't happen or can't be easily quantified in dollar terms. The advantages of "Security, accessibility, up time, backups, integrity, " aren't really quantifiable (compared to a $3000 capital expenditure for a new server), therefore (in MBA speak) they're worthless - or, even if they're valued, a good MBA would be skeptical of the value placed on them.

    4. Re: He's an Idiot. by ThatsMyNick · · Score: 1

      So, who cares? You have always used other people's racks (or DC space). You have always used other people's cable/fiber. As long as they provide SLA guarantees, who cares. So far they have been better at running their server than most company's local IT has.

      You can stop relying on other people's servers when you have stopped relying on other people's cables, DC space.

    5. Re: He's an Idiot. by Monoman · · Score: 2

      "As long as they provide SLA guarantees, who cares."

      That SLA won't bring your data back if they lose it and it won't bring customers back decide to go elsewhere after that "cloud" doesn't live up to the SLA. An SLA is not a guarantee it is more like insurance.

      --
      Keep the Classic Slashdot.
    6. Re:He's an Idiot. by dave420 · · Score: 1

      Your name seems rather fitting. You sound like the cliched old man shouting at the TV because the programs confuse and scare him. It's OK you don't understand the benefits cloud providers offer. The rest of us will continue to use them to enrich your life, even if you have no idea.

    7. Re: He's an Idiot. by Dog-Cow · · Score: 1

      No one sane relies on the Cloud provider to do proper backups. You still do that yourself, if you care.

    8. Re:He's an Idiot. by AchilleTalon · · Score: 1

      Well said!

      --
      Achille Talon
      Hop!
    9. Re: He's an Idiot. by AchilleTalon · · Score: 1

      Or you make it contractual with your cloud providers and audit the process regularily to make sure it meets your expectations. It is all a question of how much money you are ready to pay for a service and make sure the service is provided as agreed.

      --
      Achille Talon
      Hop!
    10. Re:He's an Idiot. by sycodon · · Score: 1

      The advantage to being an old man is that you've gone through bullshit like this before and know how it turns out. Idiot executives who do these kinds of things NEVER think it through past the next quarter. When things go sideways they look for other people to blame and WE get to pick up the pieces.

      Hell, right out of college I worked for an Aerospace company made up of several divisions. Just as I got there, they decided to combine all the divisional databases into one. Then a year later, they wanted to split them back up. Two years after that, combine them again. Luckily, we only commented out code so the second time was easy. But what drove it each time was a new moron executive.

      --
      When Fascism comes to America, it will call itself Anti-Fascism, and tell you to give up your guns.
    11. Re:He's an Idiot. by gtall · · Score: 2

      Just because a CEO/CIO mentions the word "cloud", it doesn't mean they do not understand the concept. If you had read the article, you'll see the reasons they went to the cloud, the biggest seems to be they are tired of keeping a lot of excess capacity around for spikes of computing work. It is simply cheaper. And they aren't just tossing apps into the cloud. They (at least they claim) are evaluating the risk for each app and binning them accordingly. The ones with the highest risk get the most oversight.

      They seem to believe they can get the security necessary in the cloud. Under that assumption, why should they duplicate cloud services when that is not part of any of GE's primary businesses? GE is a serious company, they aren't about to throw stuff into the cloud and jeopardize their company on the mere whim of a CEO or CIO. They'll have reams of documentation on how it can be achieved, what it will cost, the risks involved, etc.

    12. Re:He's an Idiot. by JustAnotherOldGuy · · Score: 1

      Just because a CEO/CIO mentions the word "cloud", it doesn't mean they do not understand the concept.

      Oftentimes that is exactly what it means. I'd be surprised if half of the CEO/CIOs who use that word have the slightest idea of what it actually means.

      -

      GE is a serious company, they aren't about to throw stuff into the cloud and jeopardize their company on the mere whim of a CEO or CIO.

      Lol, that's adorably naive. You realize that quite a few companies have done exactly that and then reversed course after realizing they fucked up majorly by doing so? HIPPA, SOX, all sorts of security and compliance issues pop up later (or fall on them like a ton of bricks) and then they realize that "cloud" isn't a magic word that makes all their problems go away. Ask me how I know.

      -

      They'll have reams of documentation on how it can be achieved, what it will cost, the risks involved, etc.

      What's your point? That enough documentation will help them understand the issues? It should, but often it doesn't.

      I know- maybe they should put all that documentation in the Cloud(tm) so that their customer-centric, three-dimensional transitional mobility will allow them to enable interactive policy capability and achieve forward-thinking optimized organizational alignment? Because, you know, Cloud.

      --
      Just cruising through this digital world at 33 1/3 rpm...
    13. Re:He's an Idiot. by UncleGizmo · · Score: 1

      Yes, he must be an idiot for using the generally accepted shorthand name that everyone recognizes, as opposed to you who have insightfully seen through the marketing BS. Although you did use marketing words like "Enterprise" rather than "scalable for large-business use" and "CTO" rather than "person in charge of all company technology," so perhaps you're just railing against a pet peeve of yours.

      However, on the bright side, I am sure GE appreciates the awareness you have provided them that moving some of these apps is "probably" illegal. They're "probably" scrambling that one lawyer they have, to look at that.

      --
      Who put this thing together? Me, that's who.
    14. Re:He's an Idiot. by blue9steel · · Score: 1

      It's OK you don't understand the benefits cloud providers offer.

      The same ones remote hosting providers with a support contract have been offering for years? The Cloud is good marketing but otherwise not new.

    15. Re: He's an Idiot. by Anonymous Coward · · Score: 0

      most company's local IT

      How can you have the most out of only one?

    16. Re: He's an Idiot. by Anonymous Coward · · Score: 0

      Do you even know what an SLA is? Apparently not.

      The SLA covers any damages that data loss might cause. Maybe you don't negotiate that at ma and pop shop, but you can rest assured that GE does. That means data don't get lost or they make a ton of money.

    17. Re: He's an Idiot. by Perky_Goth · · Score: 1

      Unless they go bankrupt for some reason, than it's a chain of dominoes imploding.

    18. Re: He's an Idiot. by ThatsMyNick · · Score: 1

      You think large cloud providers (Google, Amazon, IBM-Softlayer) dont live up their SLA? History shows they do. If you dont mind, some people like to take decisions based on data available. They can steal your data, as much as they can tap your traffic when you are located in their datacenter or use their physical access to gain root and bug your system. Do we really have to discuss these?

  20. Cloud is like this. by Anonymous Coward · · Score: 0

    Cloud means not-your-servers.

    So you are not storing data in "clouds" you are storing data on not-your-servers. For GE ok whatever. They can buy servers and call them clouds if they want to. Of course.

    Don't believe the cloud hype because they named not-your-servers "clouds". When data is run on not-your-servers you accept risks. If you think that's cool because "c'mon guys, everybody is doing it"... look at big corporations. For a business those are calculated business decisions. For home users... ask Jennifer Lawrence about not-your-servers.

  21. I'm laffing... by Seng · · Score: 1

    I work for a company that has to support several CRAPTASTIC GE medical apps. They can't keep the software running in a very limited Windows environment where the clients run on very specific support versions of Internet Explorer. They're planning on moving apps to the cloud where the clients might end up running on anything from Chrome to IE11? LAUGHING OUT LOUD. Not a snowball's chance in hell!

  22. Time Warner Cable by DogDude · · Score: 1

    The ability for our business to access "The Cloud" is determined by Time Warner Cable. So, no.

    --
    I don't respond to AC's.
  23. why? by Anonymous Coward · · Score: 0

    Why? The Payroll, and generic business stuff should have already been outsourced to someone like IBM. As for their products, it should be some computer that costs thousands of dollars, controlling some engine, or turbine, which costs millions of dollars. Hell, give it its own computer with Linux or BSD on it. So what if the Desktop Environment is crappy. Who cares, as long as it is reliable. What would GE be doing, where operating servers is a significant part of the cost of something?

  24. GE Corprate is an IT Provider by nevermindme · · Score: 1

    I worked at GE on the same team as the Author a decade ago at the Toaster Division...err Consumer and Industrial.. Back then the company had distinct silos as to business units and it was a major pain just to move sites from one silo to another, we were directed to reIP and rename everything on a annual basis.

    Teams in each division spent months changing IP schemas of whole divisions because of an accounting change. We brought in new companies and spun new companies on a yearly basis. I think we spun out to another GE division and brought in the same plant 3 times in 4 years. . We had ITIL, We had SixSigma, We had 3+ ticketing systems and we had some real TPS reports.

    GE the IT provider now seems to provide data center services for the unregulated parts enterprise. I am sure there are some holdouts at GE Healthcare and GE Turbine/Energy/Aviation running something on local iron. Also no manufacturing plant is going to release the process control to the other side of network. Putting everything on a VM is nothing new for GE. Putting disparate systems in the same data center, no big deal. Putting two divisions under one roof. If you datacenters, their own IT, their data. look at their history GE built their own brand of mainframes just to account for their own enterprise. They finally have divested themselves of owning their own corporate jewels, the information is everywhere, the information is nowhere

    The data that runs the company is in other peoples hands, not my cup of tea but GE has long gone past sensible and risk adverse. Seeing that the IT and network infrastructure is treated as a both a commodity and a infrastructure redefines IT role. At least they are no longer playing with IT as a profit center.

  25. GE and 9,000 applications in the cloud .. by nickweller · · Score: 1

    "GE recently wrote that they are moving the vast bulk of their 9,000 applications into the public cloud."

    What would any company need with 9,000 applications. Would lead to much inefficiencies and insecurities as there's no was to predict how emergent bugs would lead to security violations.

  26. time to.. by Anonymous Coward · · Score: 0

    sell your GE stocks, me thinks.

  27. All hype to brainwash techies by Anonymous Coward · · Score: 0

    Why? So they can influence you by putting a stupid idea in your heads since you're the techies that will validate it. Dumb move, don't do it. The very fact they're up to trying to puppeteer your type means it is NOT working for them so they resort to typical business "this is the best thing since sliced bread: everyone jumping on the bandwagon and you'll be left behind" mind control bullshit marketers use. Do not believe the hype. Hype means something is not selling on its own merits so the brainwashing bullcrap is put out and it's all lies from paid for 'experts' at Gartner, the joke of the fucking industry for decades. Haven't enough cloud failures like Google at your recent sporting events not shown you that many piece distributed crapshoot is not up to the task?

  28. Stewiepam by Hognoxious · · Score: 1

    Ooh look, a link to enterprisersproject.com. It's almost enough to make you think there's a shill around.

    --
    Confucius say, "Find worm in apple - bad. Find half a worm - worse."
  29. 9000 aps is the problem by Anonymous Coward · · Score: 0

    Moving the 9000 aps anywhere is the wrong solution. They should not have 9000 aps in the first place.

    1. Re:9000 aps is the problem by Anonymous Coward · · Score: 0

      Uninformed opinion. Care to guess how many individual business make up GE?

  30. Happening at small companies too by Anonymous Coward · · Score: 0

    I work at a steel mill and the IT Director is moving every single app and service into the cloud that she possibly can. Office365, AS400, Plex, Exchange, everything. The only server we'll have left on-site are file and backup servers plus whatever the few remaining local apps are that we need.

  31. Does the cloud have limits? by fluffernutter · · Score: 1

    I'm reading between $10K and $50K on cloud per year and you might as well have your own servers, this true?

    --
    Laws are rules for the court, but merely a bottom bar to hit for life. Think beyond laws in your actions always.
  32. Another sound technical decision... by ilsaloving · · Score: 1

    Another sound technical decision, from the company that built the Fukushima nuclear reactors.

  33. CoLo hub == SPOC? by plopez · · Score: 1

    OK, if I am reading it right these CoLo hubs is GE putting all their eggs into one basket. Are they setting themselves up for a single point of failure?

    --
    putting the 'B' in LGBTQ+
  34. What About... by Anonymous Coward · · Score: 0

    Light bulbs
    Jet engines
    Turbine generators
    Until recently kitchen apliances

    I think that they are into a little more than financial services

  35. The sysadmin doesn't run the business for a reason by Anonymous Coward · · Score: 0

    Everyone who says cloud is executive MBA BS probably spends more time looking at perl scripts than balance sheets. If you think the DC is cheaper than cloud, you must ask yourself three questions: 1. Cheaper by how much? 2. How much capital must I invest to save that? 3. Where could I invest my money instead and what would that investment return? Even if you are excellent and can run your DC as optimally as Amazon (you can't), you still make lousy margins on your DC investment. The opportunity cost isn't worth it. The MBA's realize that a dollar invested in your low margin DC is a dollar you didn't spend purchasing a high margin business.