Stories
Slash Boxes
Comments

SoylentNews is people

posted by Fnord666 on Tuesday March 24 2020, @09:33PM   Printer-friendly
from the partly-sunny-with-hybrid-clouds dept.

No Culture Clash in the Marriage of IBM and Red Hat

How is the marriage between IBM and Red Hat going?

The view from the executive boardroom is good. IBM was recently able to report an uptick in income after five quarters of falling revenues, partly because of income produced by its new red-headed open source partner.

[ . . . . ] Further evidence that the suits at the top are happy came with the recent announcement that next month when Ginni Rometty steps down as IBM's president and CEO Jim Whitehurst will be taking a seat at the big kids' table as IBM's president while remaining as Red Hat's CEO.

From the start, IBM said it would leave Red Hat alone and that the new buy would operate as an independent company. [ . . . . ] "I don't have a $34 billion death wish," Rometty added. "I didn't buy them to destroy them."

[ . . . . ] "but IBM has also been a huge proponent of open source. [IBM] obviously has both open and proprietary-based solutions, but they've been a big sponsor of Linux and the Linux Foundation, and they've been involved in communities like Kubernetes. I think IBM doesn't get enough credit sometimes for what they've done for open source." [ . . . . ] it's doubtful Linux would be the dominant force in data centers it has become if it were not for IBM's $1 billion investment in the operating system's development in 2001. It's also true that over the years IBM has been a contributor to important open source projects [ . . . ]

[ . . . . ] It was Red Hat's cloud expertise that first prompted IBM to consider its $34 billion investment in Red Hat. According to IBM, many of its enterprise customers have yet to utilize public clouds and are reluctant to give up their own on-premises data centers, often because they're still dependent on large monolithic applications that weren't designed for cloud-native infrastructures. Others are in highly regulated businesses with requirements to keep customer data on-prem.

IBM has been advocating hybrid cloud as a way for companies to keep much of their compute on-prem while harnessing the advantages offered by public clouds for some workloads. As it happens, Red Hat practically wrote the book on hybrid cloud, and is responsible for much of the technology – like OpenStack and OpenShift – that makes it possible.

"Hybrid cloud is something that Red Hat's been a strong proponent of," said Fernandes.

How important is Red Hat perceived to be for non data center applications?


Original Submission

 
This discussion has been archived. No new comments can be posted.
Display Options Threshold/Breakthrough Mark All as Read Mark All as Unread
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • (Score: 0) by Anonymous Coward on Wednesday March 25 2020, @01:55PM (3 children)

    by Anonymous Coward on Wednesday March 25 2020, @01:55PM (#975457)

    I hate EJBs, but to be fair the core problem that caused them was Java itself, not IBM. Java before version 8 has to be one of the most verbose programming languages ever invented, right up there with COBOL. GNU grep is 120k lines of C, if it was written in Java 1.3 it would be 0.85e22 lines of code. If you took Java 1.3 and had to replace an EJB implementation, your replacement would only be marginally shorter and less awful to work on.

    Java 8 added lambdas, streams, and default interface method implementations. Since then Java has added multiline string support, factory methods for immutable collection types, better forms of case statements, and limited type inference. Maybe by 2030 it will be as pleasant to use as Kotlin, Groovy, or Scala.

  • (Score: 2) by DannyB on Wednesday March 25 2020, @04:24PM

    by DannyB (5839) Subscriber Badge on Wednesday March 25 2020, @04:24PM (#975521) Journal

    I've never used EJBs.

    By 2030, I hope Kotlin, Groovy and Scala will still be around.

    --
    People today are educated enough to repeat what they are taught but not to question what they are taught.
  • (Score: 0) by Anonymous Coward on Wednesday March 25 2020, @05:11PM (1 child)

    by Anonymous Coward on Wednesday March 25 2020, @05:11PM (#975540)

    Disagree. Spring was invented as a much simpler alternative to EJBs many, many years before all your pet language features were added to Java. Spring killed EJB and became the new standard. Spring saved Java.

    • (Score: 0) by Anonymous Coward on Thursday March 26 2020, @02:11AM

      by Anonymous Coward on Thursday March 26 2020, @02:11AM (#975683)

      I worked with a Spring application once and I was always surprised why every operation was done with a crazy deep stack. A multi-step login kept on descending further and further with each step until everything was unwound in the end, as opposed to making new state available to a higher position in the stack.