Steve George, Weaveworks & Steve Waterworth, Weaveworks | AWS Startup Showcase S2 E1
(upbeat music) >> Welcome everyone to theCUBE's presentation of the AWS Startup Showcase Open Cloud Innovations. This is season two of the ongoing series. We're covering exciting start startups in the AWS ecosystem to talk about open source community stuff. I'm your host, Dave Nicholson. And I'm delighted today to have two guests from Weaveworks. Steve George, COO of Weaveworks, and Steve Waterworth, technical marketing engineer from Weaveworks. Welcome, gentlemen, how are you? >> Very well, thanks. >> Very well, thanks very much. >> So, Steve G., what's the relationship with AWS? This is the AWS Startup Showcase. How do Weaveworks and AWS interact? >> Yeah sure. So, AWS is a investor in Weaveworks. And we, actually, collaborate really closely around EKS and some specific EKS tooling. So, in the early days of Kubernetes when AWS was working on EKS, the Elastic Kubernetes Service, we started working on the command line interface for EKS itself. And due to that partnership, we've been working closely with the EKS team for a long period of time, helping them to build the CLI and make sure that users in the community find EKS really easy to use. And so that brought us together with the AWS team, working on GitOps and thinking about how to deploy applications and clusters using this GitOps approach. And we've built that into the EKS CLI, which is an open source tool, is a project on GitHub. So, everybody can get involved with that, use it, contribute to it. We love hearing user feedback about how to help teams take advantage of the elastic nature of Kubernetes as simply and easily as possible. >> Well, it's great to have you. Before we get into the specifics around what Weaveworks is doing in this area that we're about to discuss, let's talk about this concept of GitOps. Some of us may have gotten too deep into a Netflix series, and we didn't realize that we've moved on from the world of DevOps or DevSecOps and the like. Explain where GitOps fits into this evolution. >> Yeah, sure. So, really GitOps is an instantiation, a version of DevOps. And it fits within the idea that, particularly in the Kubernetes world, we have a model in Kubernetes, which tells us exactly what we want to deploy. And so what we're talking about is using Git as a way of recording what we want to be in the runtime environment, and then telling Kubernetes from the configuration that is stored in Git exactly what we want to deploy. So, in a sense, it's very much aligned with DevOps, because we know we want to bring teams together, help them to deploy their applications, their clusters, their environments. And really with GitOps, we have a specific set of tools that we can use. And obviously what's nice about Git is it's a very developer tool, or lots and lots of developers use it, the vast majority. And so what we're trying to do is bring those operational processes into the way that developers work. So, really bringing DevOps to that generation through that specific tooling. >> So Steve G., let's continue down this thread a little bit. Why is it necessary then this sort of added wrinkle? If right now in my organization we have developers, who consider themselves to be DevOps folks, and we give them Amazon gift cards each month. And we say, "Hey, it's a world of serverless, "no code, low code lights out data centers. "Go out and deploy your code. "Everything should be fine." What's the problem with that model, and how does GitOps come in and address that? >> Right. I think there's a couple of things. So, for individual developers, one of the big challenges is that, when you watch development teams, like deploying applications and running them, you watch them switching between all those different tabs, and services, and systems that they're using. So, GitOps has a real advantage to developers, because they're already sat in Git, they're already using their familiar tooling. And so by bringing operations within that developer tooling, you're giving them that familiarity. So, it's one advantage for developers. And then for operations staff, one of the things that it does is it centralizes where all of this configuration is kept. And then you can use things like templating and some other things that we're going to be talking about today to make sure that you automate and go quickly, but you also do that in a way which is reliable, and secure, and stable. So, it's really helping to bring that run fast, but don't break things kind of ethos to how we can deploy and run applications in the cloud. >> So, Steve W., let's start talking about where Weaveworks comes into the picture, and what's your perspective. >> So, yeah, Weaveworks has an engine, a set of software, that enables this to happen. So, think of it as a constant reconciliation engine. So, you've got your declared state, your desired state is declared in Git. So, this is where all your YAML for all your Kubernetes hangs out. And then you have an agent that's running inside Kubernetes, that's the Weaveworks GitOps agent. And it's constantly comparing the desired state in Git with the actual state, which is what's running in Kubernetes. So, then as a developer, you want to make a change, or an operator, you want to make a change. You push a change into Git. The reconciliation loop runs and says, "All right, what we've got in Git does not match "what we've got in Kubernetes. "Therefore, I will create story resource, whatever." But it also works the other way. So, if someone does directly access Kubernetes and make a change, then the next time that reconciliation loop runs, it's automatically reverted back to that single source of truth in Git. So, your Kubernetes cluster, you don't get any configuration drift. It's always configured as you desire it to be configured. And as Steve George has already said, from a developer or engineer point of view, it's easy to use. They're just using Git just as they always have done and continue to do. There's nothing new to learn. No change to working practices. I just push code into Git, magic happens. >> So, Steve W., little deeper dive on that. When we hear Ops, a lot of us start thinking about, specifically in terms of infrastructure, and especially since infrastructure when deployed and left out there, even though it's really idle, you're paying for it. So, anytime there's an Ops component to the discussion, cost and resource management come into play. You mentioned this idea of not letting things drift from a template. What are those templates based on? Are they based on... Is this primarily an infrastructure discussion, or are we talking about the code itself that is outside of the infrastructure discussion? >> It's predominantly around the infrastructure. So, what you're managing in Git, as far as Kubernetes is concerned, is always deployment files, and services, and horizontal pod autoscalers, all those Kubernetes entities. Typically, the source code for your application, be it in Java, Node.js, whatever it is you happen to be writing it in, that's, typically, in a separate repository. You, typically, don't combine the two. So, you've got one set of repository, basically, for building your containers, and your CLI will run off that, and ultimately push a container into a registry somewhere. Then you have a separate repo, which is your config. repo, which declares what version of the containers you're going to run, how many you're going to run, how the services are bound to those containers, et cetera. >> Yeah, that makes sense. Steve G., talk to us about this concept of trusted application delivery with GitOps, and frankly, it's what led to the sort of prior question. When you think about trusted application delivery, where is that intertwinement between what we think of as the application code versus the code that is creating the infrastructure? So, what is trusted application delivery? >> Sure, so, with GitOps, we have the ability to deploy the infrastructure components. And then we also define what the application containers are, that would go to be deployed into that environment. And so, this is a really interesting question, because some teams will associate all of the services that an application needs within an application team. And sometimes teams will deploy sort of horizontal infrastructure, which then all application teams services take advantage of. Either way, you can define that within your configuration, within your GitOps configuration. Now, when you start deploying speed, particularly when you have multiple different teams doing these sorts of deployments, one of the questions that starts to come up will be from the security team, or someone who's thinking about, well, what happens if we make a deployment, which is accidentally incorrect, or if there is a security issue in one of those dependencies, and we need to get a new version deployed as quickly as possible? And so, in the GitOps pipeline, one of the things that we can do is to put in various checkpoints to check that the policy is being followed correctly. So, are we deploying the right number of applications, the right configuration of an application? Does that application follow certain standards that the enterprise has set down? And that's what we talk about when we talk about trusted policy and trusted delivery. Because really what we're thinking about here is enabling the development teams to go as quickly as possible with their new deployments, but protecting them with automated guard rails. So, making sure that they can go fast, but they are not going to do anything which destroys the reliability of the application platform. >> Yeah, you've mentioned reliability and kind of alluded to scalability in the application environment. What about looking at this from the security perspective? There've been some recently, pretty well publicized breaches. Not a lot of senior executives in enterprises understand that a very high percentage of code that their businesses are running on is coming out of the open source community, where developers and maintainers are, to a certain degree, what they would consider to be volunteers. That can be a scary thing. So, talk about why an enterprise struggles today with security, policy, and governance. And I toss this out to Steve W. Or Steve George. Answer appropriately. >> I'll try that in a high level, and Steve W. can give more of the technical detail. I mean, I'll say that when I talk to enterprise customers, there's two areas of concern. One area of concern is that, we're in an environment with DevOps where we started this conversation of trying to help teams to go as quickly as possible. But there's many instances where teams accidentally do things, but, nonetheless, that is a security issue. They deploy something manually into an environment, they forget about it, and that's something which is wrong. So, helping with this kind of policy as code pipeline, ensuring that everything goes through a set of standards could really help teams. And that's why we call it developer guard rails, because this is about helping the development team by providing automation around the outside, that helps them to go faster and relieves them from that mental concern of have they made any mistakes or errors. So, that's one form. And then the other form is the form, where you are going, David, which is really around security dependencies within software, a whole supply chain of concern. And what we can do there, by, again, having a set of standard scanners and policy checking, which ensures that everything is checked before it goes into the environment. That really helps to make sure that there are no security issues in the runtime deployment. Steve W., anything that I missed there? >> Yeah, well, I'll just say, I'll just go a little deeper on the technology bit. So, essentially, we have a library of policies, which get you started. Of course, you can modify those policies, write your own. The library is there just to get you going. So, as a change is made, typically, via, say, a GitHub action, the policy engine then kicks in and checks all those deployment files, all those YAML for Kubernetes, and looks for things that then are outside of policy. And if that's the case, then the action will fail, and that'll show up on the pull request. So, things like, are your containers coming from trusted sources? You're not just pulling in some random container from a public registry. You're actually using a trusted registry. Things like, are containers running as route, or are they running in privileged mode, which, again, it could be a security? But it's not just about security, it can also be about coding standards. Are the containers correctly annotated? Is the deployment correctly annotated? Does it have the annotation fields that we require for our coding standards? And it can also be about reliability. Does the deployment script have the health checks defined? Does it have a suitable replica account? So, a rolling update. We'll actually do a rolling update. You can't do a rolling update with only one replica. So, you can have all these sorts of checks and guards in there. And then finally, there's an admission controller that runs inside Kubernetes. So, if someone does try and squeeze through, and do something a little naughty, and go directly to the cluster, it's not going to happen, 'cause that admission controller is going to say, "Hey, no, that's a policy violation. "I'm not letting that in." So, it really just stops. It stops developers making mistakes. I know, I know, I've done development, and I've deployed things into Kubernetes, and haven't got the conflict quite right, and then it falls flat on its face. And you're sitting there scratching your head. And with the policy checks, then that wouldn't happen. 'Cause you would try and put something in that has a slightly iffy configuration, and it would spit it straight back out at you. >> So, obviously you have some sort of policy engine that you're you're relying on. But what is the user experience like? I mean, is this a screen that is reminiscent of the matrix with non-readable characters streaming down that only another machine can understand? What does this look like to the operator? >> Yeah, sure, so, we have a console, a web console, where developers and operators can use a set of predefined policies. And so that's the starting point. And we have a set of recommendations there and policies that you can just attach to your deployments. So, set of recommendations about different AWS resources, deployment types, EKS deployment types, different sets of standards that your enterprise might be following along with. So, that's one way of doing it. And then you can take those policies and start customizing them to your needs. And by using GitOps, what we're aiming for here is to bring both the application configuration, the environment configuration. We talked about this earlier, all of this being within Git. We're adding these policies within Git as well. So, for advanced users, they'll have everything that they need together in a single unit of change, your application, your definitions of how you want to run this application service, and the policies that you want it to follow, all together in Git. And then when there is some sort of policy violation on the other end of the pipeline, people can see where this policy is being violated, how it was violated. And then for a set of those, we try and automate by showing a pull request for the user about how they can fix this policy violation. So, try and make it as simple as possible. Because in many of these sorts of violations, if you're a busy developer, there'll be minor configuration details going against the configuration, and you just want to fix those really quickly. >> So Steve W., is that what the Mega Leaks policy engine is? >> Yes, that's the Mega Leaks policy engine. So, yes, it's a SaaS-based service that holds the actual policy engine and your library of policies. So, when your GitHub action runs, it goes and essentially makes a call across with the configuration and does the check and spits out any violation errors, if there are any. >> So, folks in this community really like to try things before they deploy them. Is there an opportunity for people to get a demo of this, get their hands on it? what's the best way to do that? >> The best way to do it is have a play with it. As an engineer, I just love getting my hands dirty with these sorts of things. So, yeah, you can go to the Mega Leaks website and get a 30-day free trial. You can spin yourself up a little, test cluster, and have a play. >> So, what's coming next? We had DevOps, and then DevSecOps, and now GitOps. What's next? Are we going to go back to all infrastructure on premises all the time, back to waterfall? Back to waterfall, "Hot Tub Time Machine?" What's the prediction? >> Well, I think the thing that you set out right at the start, actually, is the prediction. The difference between infrastructure and applications is steadily going away, as we try and be more dynamic in the way that we deploy. And for us with GitOps, I think we're... When we talk about operations, there's a lots of depth to what we mean about operations. So, I think there's lots of areas to explore how to bring operations into developer tooling with GitOps. So, that's, I think, certainly where Weaveworks will be focusing. >> Well, as an old infrastructure guy myself, I see this as vindication. Because infrastructure still matters, kids. And we need sophisticated ways to make sure that the proper infrastructure is applied. People are shocked to learn that even serverless application environments involve servers. So, I tell my 14-year-old son this regularly, he doesn't believe it, but it is what it is. Steve W., any final thoughts on this whole move towards GitOps and, specifically, the Weaveworks secret sauce and superpower. >> Yeah. It's all about (indistinct)... It's all about going as quickly as possible, but without tripping up. Being able to run fast, but without tripping over your shoe laces, which you forgot to tie up. And that's what the automation brings. It allows you to go quickly, does lots of things for you, and yeah, we try and stop you shooting yourself in the foot as you're going. >> Well, it's been fantastic talking to both of you today. For the audience's sake, I'm in California, and we have a gentleman in France, and a gentlemen in the UK. It's just the wonders of modern technology never cease. Thanks, again, Steve Waterworth, Steve George from Weaveworks. Thanks for coming on theCUBE for the AWS Startup Showcase. And to the rest of us, keep it right here for more action on theCUBE, your leader in tech coverage. (upbeat music)
SUMMARY :
of the AWS Startup Showcase This is the AWS Startup Showcase. So, in the early days of Kubernetes from the world of DevOps from the configuration What's the problem with that model, to make sure that you and what's your perspective. that enables this to happen. that is outside of the how the services are bound to that is creating the infrastructure? one of the things that we can do and kind of alluded to scalability that helps them to go And if that's the case, is reminiscent of the matrix and start customizing them to your needs. So Steve W., is that what that holds the actual policy engine So, folks in this community So, yeah, you can go to on premises all the in the way that we deploy. that the proper infrastructure is applied. and yeah, we try and stop you and a gentlemen in the UK.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Steve Waterworth | PERSON | 0.99+ |
Dave Nicholson | PERSON | 0.99+ |
David | PERSON | 0.99+ |
Steve George | PERSON | 0.99+ |
AWS | ORGANIZATION | 0.99+ |
Steve G. | PERSON | 0.99+ |
France | LOCATION | 0.99+ |
Steve W. | PERSON | 0.99+ |
California | LOCATION | 0.99+ |
30-day | QUANTITY | 0.99+ |
Weaveworks | ORGANIZATION | 0.99+ |
Git | TITLE | 0.99+ |
UK | LOCATION | 0.99+ |
GitOps | TITLE | 0.99+ |
Java | TITLE | 0.99+ |
two | QUANTITY | 0.99+ |
Node.js | TITLE | 0.99+ |
one advantage | QUANTITY | 0.99+ |
two guests | QUANTITY | 0.99+ |
Mega Leaks | TITLE | 0.99+ |
Mega Leaks | TITLE | 0.99+ |
both | QUANTITY | 0.99+ |
today | DATE | 0.99+ |
each month | QUANTITY | 0.99+ |
DevOps | TITLE | 0.98+ |
Netflix | ORGANIZATION | 0.98+ |
one set | QUANTITY | 0.98+ |
DevSecOps | TITLE | 0.98+ |
one form | QUANTITY | 0.98+ |
EKS | TITLE | 0.98+ |
one | QUANTITY | 0.97+ |
One area | QUANTITY | 0.97+ |
Kubernetes | TITLE | 0.97+ |
two areas | QUANTITY | 0.97+ |
one replica | QUANTITY | 0.96+ |
GitHub | ORGANIZATION | 0.95+ |
Keynote Reaction with DR
(upbeat music) >> Okay, Chloe, thank you very much. Hey folks, in here in the Cloud City We with Danielle Royston. Great to see you. Watching you up on stage, I got to say, as the CEO of TelcoDR, leader and chief executive of that company. As well as a great visionary, you laid out the vision. It's hard to debate that. I mean, I think there's people who will say that vision, is like freedom, no one can debate it. It's not going to happen. >> Yeah, there's still a lot of debate in our industry about it. There's a lot of articles being written about it. I've referenced one about, you know, should we let the dragons into the castle? For me, I think it's super obvious. I think other industries are like "Duh, we've made the move." And Telco is still like, "Hmm, we're not sure." And so, am I a visionary, I don't know. I'm just sort of just Babe Ruth-ing it a little bit. I think that's where we're going. >> You know you do, you have a lot of content, podcasts, you write blogs, you do a lot of speaking. You brought it all together on stage, right? That has got to feel good. >> Yeah. >> You've got a body of work and it came together very nicely. How did you feel up there? >> Oh my God, it's absolutely nerve wrecking. I sort of feel like, you know, could you tell if my hands were shaking? Right, could you tell that my heart was racing? >> It's a good feeling. >> I don't know. >> Come on! >> I'll be honest, I'm happy it's over, I'm happy. I think I did a really great job and I'm really happy >> Yeah, you did a great job, I love the dragon reference-- >> Have it in the can. >> Fantastic, loved the Game of Thrones vibe there. It was cool-- >> Totally. >> One of the things I wanted pick up on, I thought it was very interesting and unique was the iPhone reference 14 years ago, because that really, to me, was a similar moment because that shifted the smartphone. A computer that happened to make phone calls. And then we all knew who was the leader at that time, Nokia, Blackberry with the phones, and they became toast. That ushered in a whole another era of change, wealth creation, innovation, new things. >> Yeah. Well, up until that moment, carriers had been designing the phones themselves. They were branded with their logos. And so Steve Jobs fought for the design of the iPhone. He designed it with the consumer, with the user in mind. But I think what it really, I mean, it's such a big pivotal moment in our industry because it singled the end of voice revenue and ushered in the era of data. But it also introduced the OTT players, right? That came in through the apps and started a siphon approved from the carriers. And this is like, it's a pivotal moment in the industry, like, changed the industry forever. >> It's a step function, it was a step function change, it's obvious, everyone knew it. But what's interesting is that we were riffing yesterday about O-RAN and Android. So you have iPhone, but Android became a very successful open source project that changed the landscape of the handset. Some are saying that that kind of phenomenon is coming here. Into Telco with software, kind of like an Android model where that'll come in. What's your thoughts on that, reaction to that? >> Yeah, well the dis-aggregation of the hardware, right? We're in the iconic Erickson booth, right? They get most of their revenue from RAN, from Radio Access Networks. And now with the introduction of Open RAN, right? With 50% less CapEx, 40% less OPEX, you know, I think it's easiest for Greenfield operators like Dish, that are building a brand new network. But just this month, Vodafone announced they're going to build the world's largest Open RAN network. Change is happening and the big operators are starting to adopt Open RAN in a real big way. >> So to me, riding the dragon means taking the advantage of new opportunities on top of that dragon. Developing apps like the iPhone did. And you mentioned Android, they got it right. Remember the Windows Phone, right? They tried to take Windows and shove it to the phone-- >> Barely. >> It was a kin phone too. >> I try to delete it from my, look here, beep! >> I'm going to take this old world app and I'm going to shove it into the new world, and guess what, it failed. So if the Telco is trying to do the same thing here, it will fail, but if they start building 5G apps in the cloud and pick the cloud native and think about the consumer, isn't really that the opportunity that you're talking about? >> Well, I think it is, absolutely. And I think it's a wake up call for the vendors in our space, right? And I'm certainly trying to become a vendor with Totogi. I'm really pushing my idea. But you can't take, using your Windows example on the Windows Phone, you can't take a Windows app and stuff it onto a phone and you can't take these old school applications that were written 20 years ago and just stuff them into the cloud, right? Cloud is not a place, it's a way to design applications and it all needs to be rewritten and let's go write, rewrite it. >> It's not a destination as we always say. Let's take a step back on the keynote 'cause I know we just did a couple of highlights there, wasn't the whole thing. We were watching it, by the way, we thought you did a great job, you were very cool and calm under pressure. But take us through the core ideas in the keynote. Break down the core elements of what the talk was about. >> Yeah, I think the headline really is, you know, just like there were good and bad things about the iPhone, right? It killed voice, but introduced data and all these other things. There's good and bad things about the public cloud, right? It's not going to be smooth sailing, no downsides. And so I acknowledge that, even though I'm the self appointed queen, you know? This self appointed evangelist. And so, I think that if you completely ignore the public cloud, try to stick your head in the sand and pretend it doesn't exist, I think there's nothing but downsides for Telcos. And so I think you need to learn how to maximize the advantage there, ride he dragon, like spew some fire and, you know, get some speed and height, and then you can double your ARPU. But I think, going from there, so the next three, I was trying to give examples of what I meant by that, of why it's a double-edged sword, why it's two sides of the coin. And I think there's three areas, which is the enterprise, the network, and a relationship with subscribers. And so that really what the talk, that's what the talk is about >> The three main pillars. >> Yeah, yeah! >> Future, work, enterprise, transition, Open RAN. >> The network and then the relationship with the subscribers. >> Those are the structural elements you see. >> Yeah, yeah, yeah. >> What's the most important one you think, right now, that people are focused on? >> I mean, I think the first one, with work, that's an easy one to do, because there's not too much downside, right? I think we all learned that we could work productively from home. The reason public cloud matter there is because we had tools like Zoom and G Suite and we didn't need to be, I mean, imagine if that this had happened even 20 years ago, right? Broadband at the home wasn't ready, the tools weren't ready. I mean, it would have been, I mean a bigger disaster than it was, right? And so this is an opportunity to sort of ride this work from home wave that a lot of CEOs are saying, we're not coming back or we're going to have smaller offices. And all of those employees need fiber to their home. They need 5G at their home. I mean, if I'm a head of enterprise in a Telco, I am shifting my 5G message from like random applications or whatever, to be like, how are you getting big pipes to the home so your workers can be productive there? And that, I don't hear Telco's talking about that and that's a really big idea. >> You know, you say it's a no brainer, but it's interesting you had your buildings crumbling, which was great, very nice effect in the talk. I heard a executive, Wall Street executive the other day, talking about how, "My people will be back in the office. "I'm going to mandate vaccinations, they're going to be back "in the office, you work for me. "Even though it's an employee friendly environment "right now, I don't care". And I was shocked. I go, okay, this is just an old guy. But, and it's not just the fact that it's an old guy, old guard doing that because I take two examples of old guys, Michael Dell and Frank Slootman. >> Yeah. >> Right, Michael Dell, you know, hundred billion dollar company, Frank Slootman, hottest, you know, software company. Both of them, sort of agree. It's a no brainer. >> Yeah. >> Why should I spend all this money on buildings? And my people are going to be more productive. They love it, so. Why fight the fashion? >> Well, I think the office and I can talk about this for a long time and I know we don't have that much time, but on offices, it's a way to see when did you come in and when did you leave, and look over your shoulder and what we're working on. And that's what offices are for. Now, we tell ourselves it's about collaboration and all this other stuff. And you know, these guys are saying, "come back to the office." It's because they don't have an answer on how to manage productivity. What are you working on? Are you off, are you authentically working 40 hours a week? I want to see, I know if at least you're here, you're here. Now, you might be playing, you know, Minesweeper. You might be playing Minesweeper on your computer, but at least you were, your butt was at your computer. So yeah, I think this is a pivotal moment in work. I think Telcos could push it, to work from home. We'll get you the pipes, we'll get you the cloud-based tools to help manage productivity, to change in work style. >> Yeah, and we've covered this in theCube many times, about how software is going to enable this virtual first model, no one's actually built software for virtual first. I think that's going to happen. Again, back to your team software, but I want to ask you about software defined infrastructure. You mentioned O-RAN, and as software eats the world and eats infrastructure, you still need infrastructure. So, talk about the relationship of how you see O-RAN competing and winning with the balance of software versus the commodity argument. >> Yeah, and I think this is really where people get scared in Telco. I mean, authentically nervous, right. Where you're like, okay, really the public cloud is at that network edge, right? We're really going to like, who are we? It's an identity crisis. We're not the towers anymore. We're renting space, right? We're now dis-aggregating the network, putting the edge cloud right there and it's AWS or Google. Who are we, what do we do, are we networks? Are we a tech company? Right, and so I'm like, guys, you are your subscribers and you don't focus on that. I mean, it's kind of like a last thought. >> So you're like a therapist then too, not just an evangelist. >> I'm a little bit of a therapist. >> Okay, lay down on the couch, Telco. >> Let's talk about what your problems are. (laughs) >> They have tower issues. >> All seriousness, no but, the tower is changing is backhauling. Look at direct connects for instance. The rise of direct and killed the exchanges. I mean, broadband, backhaul, last mile, >> Yeah. >> Completely, still issues, >> Yeah. >> But it's going to software and so that's there. The other thing I want to get to quickly, I know we don't have a lot of time, is the love relationship you talk about with subscribers. We had Peter Adderton on, from a Boost Mobile, formerly Boost Mobile, earlier. He was saying, if you don't have a focus on the customer, then you're just selling minutes and that's it. >> Yeah. >> And his point was, they don't really care. >> Yeah. Let's talk about organizational energy, right? How much energy is contained within any organization, not just Telco, but any organization. To some of your people time is the hours they work per week. And then you think of that as a sack on how you're allocating your time and spending your time, right? And so I think they spend 50% of their time, maybe more, fighting servers, machines, the network, right? And having all these battles. How much of that organizational energy is dedicated to driving great subscriber experiences? And it just shrunk, right? And I think that's where the public cloud can really help them. Like ride the dragon. Let the dragon deal with some of this underlying stuff. So that you can ride a dragon, survey the land, focus on your subscriber and back to the software. Use software, just like the OTT players are doing. They are taking away your ARPU. They're siphoning your ARPU, 'cause they're providing a better customer experience. You need to compete on that dimension. Not the network, not the three Telcos in the country. You're competing again, WhatsApp, Apple, Amazon, Facebook. And you spent how much of your organizational energy to focus on that? Very small. >> And that's where digital platforms roll by, it uses the word platform, why? Because everybody wants to be a platform. Why do you want to be a platform? Because I want to be like Amazon, they're a platform. And you think about Netflix, right? It's not, you know, you don't think about Netflix UK or Netflix Spain, right? >> It's global. >> There's one Netflix >> Yeah, yeah. >> You don't think about their marketing department or their sales department or their customer service, you think about the app. >> Yeah. >> You know. One interface. And that's what digital platforms allow you to do. And granted, there's a lot of public policy to deal with, but if you're shooting satellites up in space, >> Yeah. >> You know, now, you own that space, right, global network. >> And what makes Netflix so good, I think, is that it knows you, right? It knows what you're watching and recommends things, and you're like, "Oh, I would like that, that's great." Who knows more about you than your mobile phone? Carry it everywhere you go, right? What you're watching, what you're doing, who you're calling, what time did you wake up? And right now all of that data we talked about a couple of days ago, it's trapped in siloed old systems. And like why do people think Google knows so much about you? Telco knows about you. And to start to use that to drive a great experience. >> And you've got a great relationship with Netflix. The relationship we have with our our carrier is to your admin, "can you call these guys? "I don't know, I lost the password, I can't get in". >> Right. >> It's like-- >> Or you get SIM hacked-- >> I don't have an hour and a half to call your call center 'cause you don't have a chat bot, right. >> I don't have time. >> Chat bot, right. I can't even do the chat bot because my problem is, you're like, I got to talk to someone. All of their systems are built with the intention of a human being on the other side, and there's all this awesome chat bot AI that works. >> Yeah. >> Set it free. >> Yeah, yeah, right. You almost rather go to the dentist, then calling your carrier. >> Well, we're going to wrap things up here on the keynote review. Did you achieve what you wanted to achieve? I mean, controversy, bold vision, leadership, also that came across, but people they know who you are now. You're out there and that's great news. >> Yeah. I think I rocked the Telco universe and I'm really, that was my goal, and I think I accomplish it so, very excited. >> Well, we love having you on theCUBE. It's great to have great conversations, not only are you dynamic and smart, you're causing a lot of controversy, in a good way and getting, waking people up. >> Making people talk, that's a start. >> And I think, the conversations are there. People are talking and having relationships on the ecosystem open, it's all there. Danielle Royston, you are a digital revolution, DR. Telco DR, thanks for coming to theCube. >> Thank you so much, always fun. >> Good to see you. >> Thanks. >> Of course, back to the Cloud City studios. Adam is going to take it from here and continue on day three of theCube. Adam in studio, thanks for having us and take it from here.
SUMMARY :
I got to say, as the CEO of TelcoDR, I've referenced one about, you know, You know you do, you How did you feel up there? I sort of feel like, you know, I think I did a really great job Fantastic, loved the because that shifted the smartphone. because it singled the that changed the landscape of the handset. of the hardware, right? And you mentioned Android, and I'm going to shove and you can't take these we thought you did a great job, And so I think you need Future, work, enterprise, with the subscribers. Those are the structural I think we all learned "in the office, you work for me. you know, hundred billion dollar company, Why fight the fashion? And you know, these guys are saying, I think that's going to happen. and you don't focus on that. So you're like a therapist then too, of a therapist. Okay, lay down on the couch, what your problems are. the tower is changing is backhauling. is the love relationship you And his point was, And then you think of that as a sack And you think about Netflix, right? you think about the app. platforms allow you to do. you own that space, right, global network. And to start to use that to "I don't know, I lost the 'cause you don't have a chat bot, right. I can't even do the chat You almost rather go to the dentist, but people they know who you are now. and I'm really, that was my goal, Well, we love having you on theCUBE. that's a start. And I think, the Cloud City studios.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Telco | ORGANIZATION | 0.99+ |
Chloe | PERSON | 0.99+ |
Frank Slootman | PERSON | 0.99+ |
Steve Jobs | PERSON | 0.99+ |
Netflix | ORGANIZATION | 0.99+ |
Danielle Royston | PERSON | 0.99+ |
Vodafone | ORGANIZATION | 0.99+ |
Nokia | ORGANIZATION | 0.99+ |
Amazon | ORGANIZATION | 0.99+ |
Blackberry | ORGANIZATION | 0.99+ |
Apple | ORGANIZATION | 0.99+ |
ORGANIZATION | 0.99+ | |
Adam | PERSON | 0.99+ |
Peter Adderton | PERSON | 0.99+ |
Telcos | ORGANIZATION | 0.99+ |
Boost Mobile | ORGANIZATION | 0.99+ |
AWS | ORGANIZATION | 0.99+ |
iPhone | COMMERCIAL_ITEM | 0.99+ |
50% | QUANTITY | 0.99+ |
ORGANIZATION | 0.99+ | |
two sides | QUANTITY | 0.99+ |
Michael Dell | PERSON | 0.99+ |
ORGANIZATION | 0.99+ | |
Minesweeper | TITLE | 0.99+ |
Windows | TITLE | 0.99+ |
TelcoDR | ORGANIZATION | 0.99+ |
Android | TITLE | 0.99+ |
Game of Thrones | TITLE | 0.99+ |
40% | QUANTITY | 0.99+ |
Both | QUANTITY | 0.99+ |
three areas | QUANTITY | 0.99+ |
yesterday | DATE | 0.99+ |
Michael Dell | PERSON | 0.99+ |
O-RAN | TITLE | 0.99+ |
three | QUANTITY | 0.99+ |
an hour and a half | QUANTITY | 0.98+ |
Radio Access Networks | ORGANIZATION | 0.98+ |
three main pillars | QUANTITY | 0.98+ |
G Suite | TITLE | 0.98+ |
14 years ago | DATE | 0.98+ |
20 years ago | DATE | 0.98+ |
this month | DATE | 0.97+ |
first model | QUANTITY | 0.96+ |
two examples | QUANTITY | 0.96+ |
hundred billion dollar | QUANTITY | 0.96+ |
One | QUANTITY | 0.96+ |
40 hours a week | QUANTITY | 0.96+ |
Cloud City | LOCATION | 0.95+ |
first one | QUANTITY | 0.95+ |
OPEX | ORGANIZATION | 0.94+ |
day three | QUANTITY | 0.93+ |
CapEx | ORGANIZATION | 0.92+ |
couple of days ago | DATE | 0.9+ |
Dish | ORGANIZATION | 0.9+ |
Zoom | TITLE | 0.9+ |
Totogi | ORGANIZATION | 0.89+ |
One interface | QUANTITY | 0.89+ |
Wall Street | LOCATION | 0.89+ |
Open RAN | TITLE | 0.89+ |
Netflix UK | ORGANIZATION | 0.88+ |
first | QUANTITY | 0.87+ |
DR | PERSON | 0.86+ |
theCube | ORGANIZATION | 0.83+ |
Kamal Shah, Red Hat & Kirsten Newcomer, Red Hat | Red Hat Summit 2021 Virtual Experience
>>Hey, welcome to the Cubes coverage of Red Hat Summit 2021, the virtual experience, I'm lisa martin, I have two guests joining me. One is a cube alum kamal Shah is back, he's now the VP of cloud platforms at Brent had come on, it's great to have you back on the program. You're in a new role, we're going to talk about that. Thank you. And Kirsten newcomer is here as well. She's the Director of cloud and Death stickups strategy at Red Hat, Kirsten, Welcome and thank you for bringing the red hat vibe to the segment. >>Absolutely, very happy to be here. >>So looking forward to this conversation that we're going to be having in the next 20 minutes or so. We're gonna be talking about the last time come on, you were on, you were the ceo of stack rocks In January of 2021. The announcement that red hat plans to acquire stack rocks, it wouldn't be talking all about that. But I'd like to start with Kirsten, give us your perspective from red hats perspective, why is red hat a good fit for stack rocks? >>You know, there are so many reasons first of all as as you know, right? Red hat has been working with product Izing kubernetes since kubernetes one dato. Right, so so open shift three dato shipped with kubernetes one dot Oh, so we've been working with kubernetes for a long time, stack rocks embraces kind of is kubernetes native security embraces the declarative nature of kubernetes and brings that to security. Red hats, Custer's red hat enterprise customers, we have a great set across different verticals that are very security conscious and and during my five years at red hat, that's where I spend the majority of my time is talking with our customers about container and kubernetes security. And while there's a great deal of security built in to open shift as it goes to market out of the box, customers need the additional capabilities that stack rock springs. Historically, we've met those needs with our security partners. We have a great ecosystem of security partners. And with the stack rocks acquisition, we're now in a position to offer additional choice. Right. If a customer wants those capabilities from Red hat tightly integrated with open shift, we'll have those available and we continue to support and work with our broad ecosystem of security partners. >>Excellent customers always want choice. Come on. Give me your perspective. You were at the helm the ceo of stack rocks as you were last time you were on the cube. Talk to me about the redhead acquisition from your seat. >>Yeah. So as as Kirsten mentioned, we were partners of red hat. You're part of the red hat partner ecosystem. And uh, what we found is that was both a great strategic fit and a great cultural fit between our two companies. Right? And so the discussions that we had were how do we go and quickly enable our customers to accelerate their digital transformation initiatives to move workloads to the cloud, to containerized them, to manage them through kubernetes and make sure that we seamlessly addressed their security concerns. Right? Because it continues to be the number one concern for large enterprises and medium sized enterprises and frankly any enterprise that uh, you know, uh, working out today. So, so that was kind of the impetus behind it. And I must say that so far the the acquisition has been going on very smoothly. So we had two months in roughly and everybody and has been very welcoming, very collaborative, very supportive. And we are already working hand in hand to to integrate our companies and to make sure that we are working closely together to make our customers successful. >>Excellent. We're gonna talk about that integration in a second. But I can imagine challenging going through an acquisition during a global pandemic. Um but that is one of the things that I think lends itself to the cultural alignment. Kamal that you talked about, Kirsten. I want to get your perspective. We know we talk about corporate culture and corporate culture has changed a lot in the last year with everybody or so many of us being remote. Talk to me about kind of the core values that red hat and stack rocks share >>actually, you know, that's been one of the great joys doing during the acquisition process in particular, Kamal and and ali shared kind of their key values and how they um how they talked to talk with their team And some of the overlap was just so resonated so much for all of us. In particular the sense of transparency, uh, that the, that the team the stack rocks executive team brings and approaches. That's a that's a clear value for red hat um strongly maintained. Uh, that was one of the key things the interest in um uh, containers and kubernetes. Right. So the technology alignment was very clear. We probably wouldn't have proceeded without that. But again, um and I think the investment in people and the independence and the and the strong drive of the individuals and supporting the individuals as they contribute to the offering so that it really creates that sense of community um and collaboration that is key. Uh and and it's just really strong overlap in in cultural values and we so appreciated that >>community and collaboration couldn't be more important these days. And ultimately the winner is the customers. So let's dig in. Let's talk about what stack rocks brings to open shift Kirsten take it away >>man. So as I said earlier, um so I think we we really believe in continuous security at red hat and in defense and depth. And so when we look at an enterprise kubernetes distribution that involves security at the real core os layer security and kubernetes adding the things into the distribution, making sure they're there by default, that any distribution needs to be secured to be hardened, auditing, logging, identity, access management, just a wealth of things. And Red hat has historically focused on infrastructure and platform security, building those capabilities into what we bring to market stack rocks enhances what we already have and really adds workload protection, which is really when it comes down to it. Especially if you're looking at hybrid cloud, multi cloud, how you secure, not just the platform, but how you secure your workloads changes. And we're moving from a world where, you know, you're deploying anti virus or malware scanners on your VMS and your host operating system to a world where those work clothes may be very short lived. And if they aren't secured from the get go, you miss your opportunity to secure them right? You can't rely on, you know, you do need controls in the infrastructure but they need to be kubernetes native controls and you need to shift that security left. Right? You never patch a running container. You always have to rebuild and redeploy if you patch the running container the next time that container images deployed, you've missed, you've lost that patch. And so the whole ethos the whole shift left. The Deb sec ops capabilities that stack rock springs really adds such value. Right? You can't just do DEF SEc or set cops. You need to do a full infinity loop to really have def SEc ops and stack rocks. I'm gonna let Kamal tell you about it, but they have so many capabilities that that really drive that shift left and enable that closed loop. We're just so excited that they're part of our offerings. >>So can you take us through that? How does stack rocks facilitate the shift left? >>Yeah, absolutely. So stack rocks, which we we announced at summit is now being rebranded as red hat. Advanced cluster security was really purpose built to help our customers address the use cases across the entire application lifecycle. Right? So from bill to deploy to run time. So this is the infinite loop that Kirsten mentioned earlier and one of our foundations was to be kubernetes native to ensure that security is really built into the application is supposed to bolt it on. So specifically, we help our customers shift left by securing the supply chain and we're making sure that we identifying vulnerabilities early during the build process before they make it to a production environment. We helped them secure the infrastructure by preventing miS configurations again early in the process because as we all know, MIS configurations often lead to breaches at at runtime. Right? We help them address uh compliance requirements by ensuring that we can check for CS benchmarks are regulatory requirements around the C I P C I, hip hop and this and and that's uh you know, just focusing on shift left, doesn't really mean that you ignore the right side or ignore the controls you need uh when your applications are running in production. So we help them secure that at runtime by identifying preventing breaches the threat detection, prevention and incident response. >>That built in security is you both mentioned that built in versus bolt on Kirsten? Talk to me about that, that as really kind of a door opener. We talked a lot about security issues, especially in the last year. I don't know how many times we've talked about miS configurations leading to breaches that we've seen so many security challenges present in the last year. We talked to me a little bit Kirsten about >>what >>customers appetites are for going. All right now, I've got cloud native security, I'm going to be able to, I'm going to feel more comfortable with rolling out production deployments. >>It's, it's a great place to go. So there are a number of elements to think about. And if I could, I could, I could start with by building on the example that Kamal said, Right, So when we think about um I need to build security into my pipeline so that when I deliver my containerized workloads, they're secure. What if I miss a step or what if a new vulnerability is discovered after the fact? Right. So one of the things that stack rocks or redhead a CS offers is it has built in policy checks to see whether a container or running image has something like a package manager in it. Well, a package manager can be used to load software that is not delivered with the container. And so the idea of ensuring that you are including workload, built in workload, protect locks with policies that are written for you. So you can focus on building your applications. You don't necessarily have to learn everything there is to know about the new attack vectors that are really just it it's new packaging, it's new technology. It's not so much there are some new attack vectors, but mostly it's a new way of delivering and running your applications. That requires some changes to how you implement your security policies. And so ensuring that you have the tools and the technology that you're running on have those capabilities built in. So that when we have conversations with our security conscious customers, we can talk with them about the attack vectors they care about. We can illustrate how we are addressing those particular concerns. Right? One of them being malware in a container, we can look for stack. Rocks can look for a package manager that could be used to pull in, you know, code that could be exploited and you can stop a running container. Um, we can do deeper data collection with stack rocks. Again, one of the challenges when you're looking at moving your security capabilities from a traditional application environment is containers come and go all the time. In a kubernetes cluster nodes, your servers can come and go in a cloud native kubernetes cluster, right? If you're running on on cloud public cloud infrastructure, um, those things are the nodes are ephemeral to, they're designed to be shut down and brought back up. So you've got a lot more data that you need to collect and that you need to analyze and you need to correlate the information between these. Right? I no longer have one application stack running on one or more VMS, it's just things are things are moving fast so you want the right type of data collection and the right correlation to have good visibility into your environment. >>And if I can just build on that a little bit. The whole idea here is that these policies really serve as god rails right for the developers. So the it allows developers to move quickly to accelerate the speed of development without having to worry about hundreds of potential security issues because there are guardrails that will notify that with concrete recommendations early in the process. And the analogy I often use is that you know the reason we have breaks in our cars, it's not to slow us down but to allow us to go faster because we know we can slow down when we need to write. So similarly these policies are really it's really designed to accelerate the speed of development and accelerate digital transformation initiatives that our customers are embarking on >>and come on. I want to stick with you on the digital transformation front. We've talked so much about how accelerated that has been in the last year with everything going on in such a dynamic market. Talk to me Kamal about some of the feedback that you've gotten from stack rocks customers about the acquisition and how it is that maybe that facilitator of the many pivots that businesses have had to do in the last year to go from survival mode to thriving business. >>Yeah. Yes, absolutely. The feedback from all of our customers bar none has been very very positive. So it's been it's allowed us to invest more in the business and you know, we publicly stated that we are going to invest more in adding more capabilities. We are more than doubling the size of our teams as an example. And really working hand in hand with our uh the broader team at Red had to uh further accelerate the speed of development and digital transformation initiatives. So it's been extremely positive because we're adding more resources, We're investing more. We're accelerating the product roadmap uh based on uh compared to what we could do as a, as a start up as you can imagine. And and the feedback has been nothing but positive. So that's kind of where we are today. And what we're doing with the summit is rolling out a new bundle called open shift uh, Open shift platform plus, which includes not just Red hat A CS which used to be Stock rocks, but also red hat open shift hybrid cloud platform as well as Red hat advanced uh container cluster management, ACM capabilities as well as create the container registry. So we're making it easier for our customers to get all the capabilities that they need to for the drive digital transformation initiatives to get. It goes back to this whole customer centric city team that red hat has, that was also core value of stack rocks and and the winner and all of this, we believe ultimately is our, our our customers because that's where we exist to serve them, >>right. And I really like that if I could chime in kind of on top of that a little bit. Um so, so I think that one of the things we've seen with the pandemic is more of the red Hat customers are accelerating their move to public cloud and away from on premises data centers. Uh and and you know, that's just part partly because of so many people working remotely. Um it just has really pushed things. And so with Hybrid cloud becoming even more key to our joint customer base and by hybrid cloud, I mean that they have some environments that are on premises as they're making this transition. Some of those environments may stay that footprint may stay on premises, but it might be smaller, they may not have settled on a single public cloud. They could, in fact, they often are picking a public cloud based on where their development focuses. Google is very popular for ai and ml workloads. Amazon of course is just used, you know, by pretty much everybody. Um and then Azzurri is popular with um a subset of customers as well. And so we see our customers investing in all of these environments and stack rocks red hat A CS like open shift runs in all these environments. So with open shift platform plus you get a complete solution that helps with multi cluster management with a C. M with security across all of these environments, right? You can take one approach to how you secure your cluster, how you secure your workloads, how you manage configurations, You get one approach no matter where you're running your containers and kubernetes platform when you're doing this with open shift platform plus. So you also get portability. If today you want to be running an amazon maybe tomorrow you need to spin up a cluster in google, you can do that if you're working with the K s or G K E, you can or a Ks, you can do that with red hat a CS as well. So we really give you everything you need to be successful in this move and we give you back to that choice word, right? We give you the opportunity to choose and to migrate at the speed that works for you. >>So that's simplicity. That streamlining. I gotta ask you the last question here in our last couple of minutes. Come on, what's the integration process been like? as we said the acquisition just a couple of months in. But talk to me about that integration process. What that's been like? >>Yeah, absolutely. So as I mentioned earlier, the process has been very smooth so far, so two months in and it's largely driven by the common set of culture and core values that exists between our two companies. And so uh you know, from a product standpoint, we've been working hand in hand because I mentioned earlier, we were partners are working hand in hand on accelerating the road map the joint roadmap that we have here uh from a go to market perspective teams are well integrated. We are going to be rolling out the rolling out the bundle and we're gonna be rolling out additional uh options for our customers. We've also publicly announced that will be open sourcing uh red hat A. C. S. Uh formerly known as Stock Rock. So stay tuned for further news and that announcement. And, and so you know, uh, again two months and everybody's been super collaborative. Super helpful, super welcoming. And the team is the well settled and we're looking forward to now focusing on our primary objective is just to make sure that our customers are successful. >>Absolutely. That customer focus is absolutely critical. But also so is the employee experience. And it sounds like we both talked about the ethos and the and the core value alignment. They're probably being pretty critical to doing an integration during a very challenging time globally. I appreciate both of you joining me on the program today, sharing what's going on stack rocks now asks the opportunities for customers to have that built in cuBA and the security. Thanks so much for your time. >>Thank you. Thank >>you for Camel shaw and Kirsten newcomer. I'm lisa martin. You're watching the cubes coverage of Red Hat Summit, The virtual experience. Mhm
SUMMARY :
at Brent had come on, it's great to have you back on the program. the last time come on, you were on, you were the ceo of stack rocks In January of 2021. security embraces the declarative nature of kubernetes and brings that to security. Talk to me about the redhead acquisition from your seat. And so the discussions that we had were Um but that is one of the things that I think lends the individuals and supporting the individuals as they contribute to And ultimately the winner is the customers. You always have to rebuild and redeploy if you patch the running container the next time or ignore the controls you need uh when your applications are running in production. We talked a lot about security issues, especially in the last year. I'm going to be able to, I'm going to feel more comfortable with rolling out production deployments. And so ensuring that you have And the analogy I often use is that you know the reason we have breaks in our cars, the many pivots that businesses have had to do in the last year to go from invest more in the business and you know, we publicly stated that we are going to You can take one approach to how you secure your cluster, how you secure your workloads, But talk to me about that integration process. And so uh you know, from a product standpoint, we've been working hand in hand because the opportunities for customers to have that built in cuBA and the security. Thank you. you for Camel shaw and Kirsten newcomer.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Kirsten | PERSON | 0.99+ |
Kamal | PERSON | 0.99+ |
January of 2021 | DATE | 0.99+ |
two months | QUANTITY | 0.99+ |
Amazon | ORGANIZATION | 0.99+ |
red hat | ORGANIZATION | 0.99+ |
two companies | QUANTITY | 0.99+ |
lisa martin | PERSON | 0.99+ |
Red Hat | ORGANIZATION | 0.99+ |
tomorrow | DATE | 0.99+ |
red hat | ORGANIZATION | 0.99+ |
five years | QUANTITY | 0.99+ |
red Hat | ORGANIZATION | 0.99+ |
Red hat | ORGANIZATION | 0.99+ |
two guests | QUANTITY | 0.99+ |
last year | DATE | 0.99+ |
today | DATE | 0.99+ |
hundreds | QUANTITY | 0.99+ |
one | QUANTITY | 0.99+ |
both | QUANTITY | 0.99+ |
Stock Rock | ORGANIZATION | 0.99+ |
Red | ORGANIZATION | 0.98+ |
amazon | ORGANIZATION | 0.98+ |
One | QUANTITY | 0.98+ |
Kirsten Newcomer | PERSON | 0.98+ |
Red Hat Summit 2021 | EVENT | 0.98+ |
Red Hat Summit | EVENT | 0.98+ |
one approach | QUANTITY | 0.98+ |
Red hats | ORGANIZATION | 0.97+ |
red hats | ORGANIZATION | 0.96+ |
ORGANIZATION | 0.96+ | |
ORGANIZATION | 0.96+ | |
single | QUANTITY | 0.96+ |
Custer | ORGANIZATION | 0.95+ |
Kamal Shah | PERSON | 0.93+ |
year | DATE | 0.93+ |
first | QUANTITY | 0.92+ |
one application | QUANTITY | 0.91+ |
Azzurri | ORGANIZATION | 0.91+ |
Red hat | TITLE | 0.84+ |
pandemic | EVENT | 0.81+ |
kubernetes | ORGANIZATION | 0.78+ |
kamal Shah | PERSON | 0.77+ |
stack rocks | ORGANIZATION | 0.76+ |
Red Hat Summit 2021 Virtual | EVENT | 0.75+ |
red hat | TITLE | 0.74+ |
K s | COMMERCIAL_ITEM | 0.73+ |
M | TITLE | 0.7+ |
Camel shaw | PERSON | 0.66+ |
20 minutes | DATE | 0.65+ |
G K E | COMMERCIAL_ITEM | 0.65+ |
potential security | QUANTITY | 0.64+ |
second | QUANTITY | 0.61+ |
Brent | ORGANIZATION | 0.57+ |
4-video test
>>don't talk mhm, >>Okay, thing is my presentation on coherent nonlinear dynamics and combinatorial optimization. This is going to be a talk to introduce an approach we're taking to the analysis of the performance of coherent using machines. So let me start with a brief introduction to easing optimization. The easing model represents a set of interacting magnetic moments or spins the total energy given by the expression shown at the bottom left of this slide. Here, the signal variables are meditate binary values. The Matrix element J. I. J. Represents the interaction, strength and signed between any pair of spins. I. J and A Chive represents a possible local magnetic field acting on each thing. The easing ground state problem is to find an assignment of binary spin values that achieves the lowest possible value of total energy. And an instance of the easing problem is specified by giving numerical values for the Matrix J in Vector H. Although the easy model originates in physics, we understand the ground state problem to correspond to what would be called quadratic binary optimization in the field of operations research and in fact, in terms of computational complexity theory, it could be established that the easing ground state problem is np complete. Qualitatively speaking, this makes the easing problem a representative sort of hard optimization problem, for which it is expected that the runtime required by any computational algorithm to find exact solutions should, as anatomically scale exponentially with the number of spends and for worst case instances at each end. Of course, there's no reason to believe that the problem instances that actually arrives in practical optimization scenarios are going to be worst case instances. And it's also not generally the case in practical optimization scenarios that we demand absolute optimum solutions. Usually we're more interested in just getting the best solution we can within an affordable cost, where costs may be measured in terms of time, service fees and or energy required for a computation. This focuses great interest on so called heuristic algorithms for the easing problem in other NP complete problems which generally get very good but not guaranteed optimum solutions and run much faster than algorithms that are designed to find absolute Optima. To get some feeling for present day numbers, we can consider the famous traveling salesman problem for which extensive compilations of benchmarking data may be found online. A recent study found that the best known TSP solver required median run times across the Library of Problem instances That scaled is a very steep route exponential for end up to approximately 4500. This gives some indication of the change in runtime scaling for generic as opposed the worst case problem instances. Some of the instances considered in this study were taken from a public library of T SPS derived from real world Veil aside design data. This feels I TSP Library includes instances within ranging from 131 to 744,710 instances from this library with end between 6880 13,584 were first solved just a few years ago in 2017 requiring days of run time and a 48 core to King hurts cluster, while instances with and greater than or equal to 14,233 remain unsolved exactly by any means. Approximate solutions, however, have been found by heuristic methods for all instances in the VLS i TSP library with, for example, a solution within 0.14% of a no lower bound, having been discovered, for instance, with an equal 19,289 requiring approximately two days of run time on a single core of 2.4 gigahertz. Now, if we simple mindedly extrapolate the root exponential scaling from the study up to an equal 4500, we might expect that an exact solver would require something more like a year of run time on the 48 core cluster used for the N equals 13,580 for instance, which shows how much a very small concession on the quality of the solution makes it possible to tackle much larger instances with much lower cost. At the extreme end, the largest TSP ever solved exactly has an equal 85,900. This is an instance derived from 19 eighties VLSI design, and it's required 136 CPU. Years of computation normalized to a single cord, 2.4 gigahertz. But the 24 larger so called world TSP benchmark instance within equals 1,904,711 has been solved approximately within ophthalmology. Gap bounded below 0.474%. Coming back to the general. Practical concerns have applied optimization. We may note that a recent meta study analyzed the performance of no fewer than 37 heuristic algorithms for Max cut and quadratic pioneer optimization problems and found the performance sort and found that different heuristics work best for different problem instances selected from a large scale heterogeneous test bed with some evidence but cryptic structure in terms of what types of problem instances were best solved by any given heuristic. Indeed, their their reasons to believe that these results from Mexico and quadratic binary optimization reflected general principle of performance complementarity among heuristic optimization algorithms in the practice of solving heart optimization problems there. The cerise is a critical pre processing issue of trying to guess which of a number of available good heuristic algorithms should be chosen to tackle a given problem. Instance, assuming that any one of them would incur high costs to run on a large problem, instances incidence, making an astute choice of heuristic is a crucial part of maximizing overall performance. Unfortunately, we still have very little conceptual insight about what makes a specific problem instance, good or bad for any given heuristic optimization algorithm. This has certainly been pinpointed by researchers in the field is a circumstance that must be addressed. So adding this all up, we see that a critical frontier for cutting edge academic research involves both the development of novel heuristic algorithms that deliver better performance, with lower cost on classes of problem instances that are underserved by existing approaches, as well as fundamental research to provide deep conceptual insight into what makes a given problem in, since easy or hard for such algorithms. In fact, these days, as we talk about the end of Moore's law and speculate about a so called second quantum revolution, it's natural to talk not only about novel algorithms for conventional CPUs but also about highly customized special purpose hardware architectures on which we may run entirely unconventional algorithms for combinatorial optimization such as easing problem. So against that backdrop, I'd like to use my remaining time to introduce our work on analysis of coherent using machine architectures and associate ID optimization algorithms. These machines, in general, are a novel class of information processing architectures for solving combinatorial optimization problems by embedding them in the dynamics of analog, physical or cyber physical systems, in contrast to both MAWR traditional engineering approaches that build using machines using conventional electron ICS and more radical proposals that would require large scale quantum entanglement. The emerging paradigm of coherent easing machines leverages coherent nonlinear dynamics in photonic or Opto electronic platforms to enable near term construction of large scale prototypes that leverage post Simoes information dynamics, the general structure of of current CM systems has shown in the figure on the right. The role of the easing spins is played by a train of optical pulses circulating around a fiber optical storage ring. A beam splitter inserted in the ring is used to periodically sample the amplitude of every optical pulse, and the measurement results are continually read into a refugee A, which uses them to compute perturbations to be applied to each pulse by a synchronized optical injections. These perturbations, air engineered to implement the spin, spin coupling and local magnetic field terms of the easing Hamiltonian, corresponding to a linear part of the CME Dynamics, a synchronously pumped parametric amplifier denoted here as PPL and Wave Guide adds a crucial nonlinear component to the CIA and Dynamics as well. In the basic CM algorithm, the pump power starts very low and has gradually increased at low pump powers. The amplitude of the easing spin pulses behaviors continuous, complex variables. Who Israel parts which can be positive or negative, play the role of play the role of soft or perhaps mean field spins once the pump, our crosses the threshold for parametric self oscillation. In the optical fiber ring, however, the attitudes of the easing spin pulses become effectively Qantas ized into binary values while the pump power is being ramped up. The F P J subsystem continuously applies its measurement based feedback. Implementation of the using Hamiltonian terms, the interplay of the linear rised using dynamics implemented by the F P G A and the threshold conversation dynamics provided by the sink pumped Parametric amplifier result in the final state of the optical optical pulse amplitude at the end of the pump ramp that could be read as a binary strain, giving a proposed solution of the easing ground state problem. This method of solving easing problem seems quite different from a conventional algorithm that runs entirely on a digital computer as a crucial aspect of the computation is performed physically by the analog, continuous, coherent, nonlinear dynamics of the optical degrees of freedom. In our efforts to analyze CIA and performance, we have therefore turned to the tools of dynamical systems theory, namely, a study of modifications, the evolution of critical points and apologies of hetero clinic orbits and basins of attraction. We conjecture that such analysis can provide fundamental insight into what makes certain optimization instances hard or easy for coherent using machines and hope that our approach can lead to both improvements of the course, the AM algorithm and a pre processing rubric for rapidly assessing the CME suitability of new instances. Okay, to provide a bit of intuition about how this all works, it may help to consider the threshold dynamics of just one or two optical parametric oscillators in the CME architecture just described. We can think of each of the pulse time slots circulating around the fiber ring, as are presenting an independent Opio. We can think of a single Opio degree of freedom as a single, resonant optical node that experiences linear dissipation, do toe out coupling loss and gain in a pump. Nonlinear crystal has shown in the diagram on the upper left of this slide as the pump power is increased from zero. As in the CME algorithm, the non linear game is initially to low toe overcome linear dissipation, and the Opio field remains in a near vacuum state at a critical threshold. Value gain. Equal participation in the Popeo undergoes a sort of lazing transition, and the study states of the OPIO above this threshold are essentially coherent states. There are actually two possible values of the Opio career in amplitude and any given above threshold pump power which are equal in magnitude but opposite in phase when the OPI across the special diet basically chooses one of the two possible phases randomly, resulting in the generation of a single bit of information. If we consider to uncoupled, Opio has shown in the upper right diagram pumped it exactly the same power at all times. Then, as the pump power has increased through threshold, each Opio will independently choose the phase and thus to random bits are generated for any number of uncoupled. Oppose the threshold power per opio is unchanged from the single Opio case. Now, however, consider a scenario in which the two appeals air, coupled to each other by a mutual injection of their out coupled fields has shown in the diagram on the lower right. One can imagine that depending on the sign of the coupling parameter Alfa, when one Opio is lazing, it will inject a perturbation into the other that may interfere either constructively or destructively, with the feel that it is trying to generate by its own lazing process. As a result, when came easily showed that for Alfa positive, there's an effective ferro magnetic coupling between the two Opio fields and their collective oscillation threshold is lowered from that of the independent Opio case. But on Lee for the two collective oscillation modes in which the two Opio phases are the same for Alfa Negative, the collective oscillation threshold is lowered on Lee for the configurations in which the Opio phases air opposite. So then, looking at how Alfa is related to the J. I. J matrix of the easing spin coupling Hamiltonian, it follows that we could use this simplistic to a p o. C. I am to solve the ground state problem of a fair magnetic or anti ferro magnetic ankles to easing model simply by increasing the pump power from zero and observing what phase relation occurs as the two appeals first start delays. Clearly, we can imagine generalizing this story toe larger, and however the story doesn't stay is clean and simple for all larger problem instances. And to find a more complicated example, we only need to go to n equals four for some choices of J J for n equals, for the story remains simple. Like the n equals two case. The figure on the upper left of this slide shows the energy of various critical points for a non frustrated and equals, for instance, in which the first bifurcated critical point that is the one that I forget to the lowest pump value a. Uh, this first bifurcated critical point flows as symptomatically into the lowest energy easing solution and the figure on the upper right. However, the first bifurcated critical point flows to a very good but sub optimal minimum at large pump power. The global minimum is actually given by a distinct critical critical point that first appears at a higher pump power and is not automatically connected to the origin. The basic C am algorithm is thus not able to find this global minimum. Such non ideal behaviors needs to become more confident. Larger end for the n equals 20 instance, showing the lower plots where the lower right plot is just a zoom into a region of the lower left lot. It can be seen that the global minimum corresponds to a critical point that first appears out of pump parameter, a around 0.16 at some distance from the idiomatic trajectory of the origin. That's curious to note that in both of these small and examples, however, the critical point corresponding to the global minimum appears relatively close to the idiomatic projector of the origin as compared to the most of the other local minima that appear. We're currently working to characterize the face portrait topology between the global minimum in the antibiotic trajectory of the origin, taking clues as to how the basic C am algorithm could be generalized to search for non idiomatic trajectories that jump to the global minimum during the pump ramp. Of course, n equals 20 is still too small to be of interest for practical optimization applications. But the advantage of beginning with the study of small instances is that we're able reliably to determine their global minima and to see how they relate to the 80 about trajectory of the origin in the basic C am algorithm. In the smaller and limit, we can also analyze fully quantum mechanical models of Syrian dynamics. But that's a topic for future talks. Um, existing large scale prototypes are pushing into the range of in equals 10 to the 4 10 to 5 to six. So our ultimate objective in theoretical analysis really has to be to try to say something about CIA and dynamics and regime of much larger in our initial approach to characterizing CIA and behavior in the large in regime relies on the use of random matrix theory, and this connects to prior research on spin classes, SK models and the tap equations etcetera. At present, we're focusing on statistical characterization of the CIA ingredient descent landscape, including the evolution of critical points in their Eigen value spectra. As the pump power is gradually increased. We're investigating, for example, whether there could be some way to exploit differences in the relative stability of the global minimum versus other local minima. We're also working to understand the deleterious or potentially beneficial effects of non ideologies, such as a symmetry in the implemented these and couplings. Looking one step ahead, we plan to move next in the direction of considering more realistic classes of problem instances such as quadratic, binary optimization with constraints. Eso In closing, I should acknowledge people who did the hard work on these things that I've shown eso. My group, including graduate students Ed winning, Daniel Wennberg, Tatsuya Nagamoto and Atsushi Yamamura, have been working in close collaboration with Syria Ganguly, Marty Fair and Amir Safarini Nini, all of us within the Department of Applied Physics at Stanford University. On also in collaboration with the Oshima Moto over at NTT 55 research labs, Onda should acknowledge funding support from the NSF by the Coherent Easing Machines Expedition in computing, also from NTT five research labs, Army Research Office and Exxon Mobil. Uh, that's it. Thanks very much. >>Mhm e >>t research and the Oshie for putting together this program and also the opportunity to speak here. My name is Al Gore ism or Andy and I'm from Caltech, and today I'm going to tell you about the work that we have been doing on networks off optical parametric oscillators and how we have been using them for icing machines and how we're pushing them toward Cornum photonics to acknowledge my team at Caltech, which is now eight graduate students and five researcher and postdocs as well as collaborators from all over the world, including entity research and also the funding from different places, including entity. So this talk is primarily about networks of resonate er's, and these networks are everywhere from nature. For instance, the brain, which is a network of oscillators all the way to optics and photonics and some of the biggest examples or metal materials, which is an array of small resonate er's. And we're recently the field of technological photonics, which is trying thio implement a lot of the technological behaviors of models in the condensed matter, physics in photonics and if you want to extend it even further, some of the implementations off quantum computing are technically networks of quantum oscillators. So we started thinking about these things in the context of icing machines, which is based on the icing problem, which is based on the icing model, which is the simple summation over the spins and spins can be their upward down and the couplings is given by the JJ. And the icing problem is, if you know J I J. What is the spin configuration that gives you the ground state? And this problem is shown to be an MP high problem. So it's computational e important because it's a representative of the MP problems on NPR. Problems are important because first, their heart and standard computers if you use a brute force algorithm and they're everywhere on the application side. That's why there is this demand for making a machine that can target these problems, and hopefully it can provide some meaningful computational benefit compared to the standard digital computers. So I've been building these icing machines based on this building block, which is a degenerate optical parametric. Oscillator on what it is is resonator with non linearity in it, and we pump these resonate er's and we generate the signal at half the frequency of the pump. One vote on a pump splits into two identical photons of signal, and they have some very interesting phase of frequency locking behaviors. And if you look at the phase locking behavior, you realize that you can actually have two possible phase states as the escalation result of these Opio which are off by pie, and that's one of the important characteristics of them. So I want to emphasize a little more on that and I have this mechanical analogy which are basically two simple pendulum. But there are parametric oscillators because I'm going to modulate the parameter of them in this video, which is the length of the string on by that modulation, which is that will make a pump. I'm gonna make a muscular. That'll make a signal which is half the frequency of the pump. And I have two of them to show you that they can acquire these face states so they're still facing frequency lock to the pump. But it can also lead in either the zero pie face states on. The idea is to use this binary phase to represent the binary icing spin. So each opio is going to represent spin, which can be either is your pie or up or down. And to implement the network of these resonate er's, we use the time off blood scheme, and the idea is that we put impulses in the cavity. These pulses air separated by the repetition period that you put in or t r. And you can think about these pulses in one resonator, xaz and temporarily separated synthetic resonate Er's if you want a couple of these resonator is to each other, and now you can introduce these delays, each of which is a multiple of TR. If you look at the shortest delay it couples resonator wanted to 2 to 3 and so on. If you look at the second delay, which is two times a rotation period, the couple's 123 and so on. And if you have and minus one delay lines, then you can have any potential couplings among these synthetic resonate er's. And if I can introduce these modulators in those delay lines so that I can strength, I can control the strength and the phase of these couplings at the right time. Then I can have a program will all toe all connected network in this time off like scheme, and the whole physical size of the system scales linearly with the number of pulses. So the idea of opium based icing machine is didn't having these o pos, each of them can be either zero pie and I can arbitrarily connect them to each other. And then I start with programming this machine to a given icing problem by just setting the couplings and setting the controllers in each of those delight lines. So now I have a network which represents an icing problem. Then the icing problem maps to finding the face state that satisfy maximum number of coupling constraints. And the way it happens is that the icing Hamiltonian maps to the linear loss of the network. And if I start adding gain by just putting pump into the network, then the OPI ohs are expected to oscillate in the lowest, lowest lost state. And, uh and we have been doing these in the past, uh, six or seven years and I'm just going to quickly show you the transition, especially what happened in the first implementation, which was using a free space optical system and then the guided wave implementation in 2016 and the measurement feedback idea which led to increasing the size and doing actual computation with these machines. So I just want to make this distinction here that, um, the first implementation was an all optical interaction. We also had an unequal 16 implementation. And then we transition to this measurement feedback idea, which I'll tell you quickly what it iss on. There's still a lot of ongoing work, especially on the entity side, to make larger machines using the measurement feedback. But I'm gonna mostly focused on the all optical networks and how we're using all optical networks to go beyond simulation of icing Hamiltonian both in the linear and non linear side and also how we're working on miniaturization of these Opio networks. So the first experiment, which was the four opium machine, it was a free space implementation and this is the actual picture off the machine and we implemented a small and it calls for Mexico problem on the machine. So one problem for one experiment and we ran the machine 1000 times, we looked at the state and we always saw it oscillate in one of these, um, ground states of the icing laboratoria. So then the measurement feedback idea was to replace those couplings and the controller with the simulator. So we basically simulated all those coherent interactions on on FB g. A. And we replicated the coherent pulse with respect to all those measurements. And then we injected it back into the cavity and on the near to you still remain. So it still is a non. They're dynamical system, but the linear side is all simulated. So there are lots of questions about if this system is preserving important information or not, or if it's gonna behave better. Computational wars. And that's still ah, lot of ongoing studies. But nevertheless, the reason that this implementation was very interesting is that you don't need the end minus one delight lines so you can just use one. Then you can implement a large machine, and then you can run several thousands of problems in the machine, and then you can compare the performance from the computational perspective Looks so I'm gonna split this idea of opium based icing machine into two parts. One is the linear part, which is if you take out the non linearity out of the resonator and just think about the connections. You can think about this as a simple matrix multiplication scheme. And that's basically what gives you the icing Hambletonian modeling. So the optical laws of this network corresponds to the icing Hamiltonian. And if I just want to show you the example of the n equals for experiment on all those face states and the history Graham that we saw, you can actually calculate the laws of each of those states because all those interferences in the beam splitters and the delay lines are going to give you a different losses. And then you will see that the ground states corresponds to the lowest laws of the actual optical network. If you add the non linearity, the simple way of thinking about what the non linearity does is that it provides to gain, and then you start bringing up the gain so that it hits the loss. Then you go through the game saturation or the threshold which is going to give you this phase bifurcation. So you go either to zero the pie face state. And the expectation is that Theis, the network oscillates in the lowest possible state, the lowest possible loss state. There are some challenges associated with this intensity Durban face transition, which I'm going to briefly talk about. I'm also going to tell you about other types of non aerodynamics that we're looking at on the non air side of these networks. So if you just think about the linear network, we're actually interested in looking at some technological behaviors in these networks. And the difference between looking at the technological behaviors and the icing uh, machine is that now, First of all, we're looking at the type of Hamilton Ian's that are a little different than the icing Hamilton. And one of the biggest difference is is that most of these technological Hamilton Ian's that require breaking the time reversal symmetry, meaning that you go from one spin to in the one side to another side and you get one phase. And if you go back where you get a different phase, and the other thing is that we're not just interested in finding the ground state, we're actually now interesting and looking at all sorts of states and looking at the dynamics and the behaviors of all these states in the network. So we started with the simplest implementation, of course, which is a one d chain of thes resonate, er's, which corresponds to a so called ssh model. In the technological work, we get the similar energy to los mapping and now we can actually look at the band structure on. This is an actual measurement that we get with this associate model and you see how it reasonably how How? Well, it actually follows the prediction and the theory. One of the interesting things about the time multiplexing implementation is that now you have the flexibility of changing the network as you are running the machine. And that's something unique about this time multiplex implementation so that we can actually look at the dynamics. And one example that we have looked at is we can actually go through the transition off going from top A logical to the to the standard nontrivial. I'm sorry to the trivial behavior of the network. You can then look at the edge states and you can also see the trivial and states and the technological at states actually showing up in this network. We have just recently implement on a two D, uh, network with Harper Hofstadter model and when you don't have the results here. But we're one of the other important characteristic of time multiplexing is that you can go to higher and higher dimensions and keeping that flexibility and dynamics, and we can also think about adding non linearity both in a classical and quantum regimes, which is going to give us a lot of exotic, no classical and quantum, non innate behaviors in these networks. Yeah, So I told you about the linear side. Mostly let me just switch gears and talk about the nonlinear side of the network. And the biggest thing that I talked about so far in the icing machine is this face transition that threshold. So the low threshold we have squeezed state in these. Oh, pios, if you increase the pump, we go through this intensity driven phase transition and then we got the face stays above threshold. And this is basically the mechanism off the computation in these O pos, which is through this phase transition below to above threshold. So one of the characteristics of this phase transition is that below threshold, you expect to see quantum states above threshold. You expect to see more classical states or coherent states, and that's basically corresponding to the intensity off the driving pump. So it's really hard to imagine that it can go above threshold. Or you can have this friends transition happen in the all in the quantum regime. And there are also some challenges associated with the intensity homogeneity off the network, which, for example, is if one opioid starts oscillating and then its intensity goes really high. Then it's going to ruin this collective decision making off the network because of the intensity driven face transition nature. So So the question is, can we look at other phase transitions? Can we utilize them for both computing? And also can we bring them to the quantum regime on? I'm going to specifically talk about the face transition in the spectral domain, which is the transition from the so called degenerate regime, which is what I mostly talked about to the non degenerate regime, which happens by just tuning the phase of the cavity. And what is interesting is that this phase transition corresponds to a distinct phase noise behavior. So in the degenerate regime, which we call it the order state, you're gonna have the phase being locked to the phase of the pump. As I talked about non degenerate regime. However, the phase is the phase is mostly dominated by the quantum diffusion. Off the off the phase, which is limited by the so called shallow towns limit, and you can see that transition from the general to non degenerate, which also has distinct symmetry differences. And this transition corresponds to a symmetry breaking in the non degenerate case. The signal can acquire any of those phases on the circle, so it has a you one symmetry. Okay, and if you go to the degenerate case, then that symmetry is broken and you only have zero pie face days I will look at. So now the question is can utilize this phase transition, which is a face driven phase transition, and can we use it for similar computational scheme? So that's one of the questions that were also thinking about. And it's not just this face transition is not just important for computing. It's also interesting from the sensing potentials and this face transition, you can easily bring it below threshold and just operated in the quantum regime. Either Gaussian or non Gaussian. If you make a network of Opio is now, we can see all sorts off more complicated and more interesting phase transitions in the spectral domain. One of them is the first order phase transition, which you get by just coupling to Opio, and that's a very abrupt face transition and compared to the to the single Opio phase transition. And if you do the couplings right, you can actually get a lot of non her mission dynamics and exceptional points, which are actually very interesting to explore both in the classical and quantum regime. And I should also mention that you can think about the cup links to be also nonlinear couplings. And that's another behavior that you can see, especially in the nonlinear in the non degenerate regime. So with that, I basically told you about these Opio networks, how we can think about the linear scheme and the linear behaviors and how we can think about the rich, nonlinear dynamics and non linear behaviors both in the classical and quantum regime. I want to switch gear and tell you a little bit about the miniaturization of these Opio networks. And of course, the motivation is if you look at the electron ICS and what we had 60 or 70 years ago with vacuum tube and how we transition from relatively small scale computers in the order of thousands of nonlinear elements to billions of non elements where we are now with the optics is probably very similar to 70 years ago, which is a table talk implementation. And the question is, how can we utilize nano photonics? I'm gonna just briefly show you the two directions on that which we're working on. One is based on lithium Diabate, and the other is based on even a smaller resonate er's could you? So the work on Nana Photonic lithium naive. It was started in collaboration with Harvard Marko Loncar, and also might affair at Stanford. And, uh, we could show that you can do the periodic polling in the phenomenon of it and get all sorts of very highly nonlinear processes happening in this net. Photonic periodically polls if, um Diabate. And now we're working on building. Opio was based on that kind of photonic the film Diabate. And these air some some examples of the devices that we have been building in the past few months, which I'm not gonna tell you more about. But the O. P. O. S. And the Opio Networks are in the works. And that's not the only way of making large networks. Um, but also I want to point out that The reason that these Nana photonic goblins are actually exciting is not just because you can make a large networks and it can make him compact in a in a small footprint. They also provide some opportunities in terms of the operation regime. On one of them is about making cat states and Opio, which is, can we have the quantum superposition of the zero pie states that I talked about and the Net a photonic within? I've It provides some opportunities to actually get closer to that regime because of the spatial temporal confinement that you can get in these wave guides. So we're doing some theory on that. We're confident that the type of non linearity two losses that it can get with these platforms are actually much higher than what you can get with other platform their existing platforms and to go even smaller. We have been asking the question off. What is the smallest possible Opio that you can make? Then you can think about really wavelength scale type, resonate er's and adding the chi to non linearity and see how and when you can get the Opio to operate. And recently, in collaboration with us see, we have been actually USC and Creole. We have demonstrated that you can use nano lasers and get some spin Hamilton and implementations on those networks. So if you can build the a P. O s, we know that there is a path for implementing Opio Networks on on such a nano scale. So we have looked at these calculations and we try to estimate the threshold of a pos. Let's say for me resonator and it turns out that it can actually be even lower than the type of bulk Pip Llano Pos that we have been building in the past 50 years or so. So we're working on the experiments and we're hoping that we can actually make even larger and larger scale Opio networks. So let me summarize the talk I told you about the opium networks and our work that has been going on on icing machines and the measurement feedback. And I told you about the ongoing work on the all optical implementations both on the linear side and also on the nonlinear behaviors. And I also told you a little bit about the efforts on miniaturization and going to the to the Nano scale. So with that, I would like Thio >>three from the University of Tokyo. Before I thought that would like to thank you showing all the stuff of entity for the invitation and the organization of this online meeting and also would like to say that it has been very exciting to see the growth of this new film lab. And I'm happy to share with you today of some of the recent works that have been done either by me or by character of Hong Kong. Honest Group indicates the title of my talk is a neuro more fic in silica simulator for the communities in machine. And here is the outline I would like to make the case that the simulation in digital Tektronix of the CME can be useful for the better understanding or improving its function principles by new job introducing some ideas from neural networks. This is what I will discuss in the first part and then it will show some proof of concept of the game and performance that can be obtained using dissimulation in the second part and the protection of the performance that can be achieved using a very large chaos simulator in the third part and finally talk about future plans. So first, let me start by comparing recently proposed izing machines using this table there is elected from recent natural tronics paper from the village Park hard people, and this comparison shows that there's always a trade off between energy efficiency, speed and scalability that depends on the physical implementation. So in red, here are the limitation of each of the servers hardware on, interestingly, the F p G, a based systems such as a producer, digital, another uh Toshiba beautification machine or a recently proposed restricted Bozeman machine, FPD A by a group in Berkeley. They offer a good compromise between speed and scalability. And this is why, despite the unique advantage that some of these older hardware have trust as the currency proposition in Fox, CBS or the energy efficiency off memory Sisters uh P. J. O are still an attractive platform for building large organizing machines in the near future. The reason for the good performance of Refugee A is not so much that they operate at the high frequency. No, there are particular in use, efficient, but rather that the physical wiring off its elements can be reconfigured in a way that limits the funding human bottleneck, larger, funny and phenols and the long propagation video information within the system. In this respect, the LPGA is They are interesting from the perspective off the physics off complex systems, but then the physics of the actions on the photos. So to put the performance of these various hardware and perspective, we can look at the competition of bringing the brain the brain complete, using billions of neurons using only 20 watts of power and operates. It's a very theoretically slow, if we can see and so this impressive characteristic, they motivate us to try to investigate. What kind of new inspired principles be useful for designing better izing machines? The idea of this research project in the future collaboration it's to temporary alleviates the limitations that are intrinsic to the realization of an optical cortex in machine shown in the top panel here. By designing a large care simulator in silicone in the bottom here that can be used for digesting the better organization principles of the CIA and this talk, I will talk about three neuro inspired principles that are the symmetry of connections, neural dynamics orphan chaotic because of symmetry, is interconnectivity the infrastructure? No. Next talks are not composed of the reputation of always the same types of non environments of the neurons, but there is a local structure that is repeated. So here's the schematic of the micro column in the cortex. And lastly, the Iraqi co organization of connectivity connectivity is organizing a tree structure in the brain. So here you see a representation of the Iraqi and organization of the monkey cerebral cortex. So how can these principles we used to improve the performance of the icing machines? And it's in sequence stimulation. So, first about the two of principles of the estimate Trian Rico structure. We know that the classical approximation of the car testing machine, which is the ground toe, the rate based on your networks. So in the case of the icing machines, uh, the okay, Scott approximation can be obtained using the trump active in your position, for example, so the times of both of the system they are, they can be described by the following ordinary differential equations on in which, in case of see, I am the X, I represent the in phase component of one GOP Oh, Theo f represents the monitor optical parts, the district optical Parametric amplification and some of the good I JoJo extra represent the coupling, which is done in the case of the measure of feedback coupling cm using oh, more than detection and refugee A and then injection off the cooking time and eso this dynamics in both cases of CNN in your networks, they can be written as the grand set of a potential function V, and this written here, and this potential functionally includes the rising Maccagnan. So this is why it's natural to use this type of, uh, dynamics to solve the icing problem in which the Omega I J or the eyes in coping and the H is the extension of the icing and attorney in India and expect so. Not that this potential function can only be defined if the Omega I j. R. A. Symmetric. So the well known problem of this approach is that this potential function V that we obtain is very non convicts at low temperature, and also one strategy is to gradually deformed this landscape, using so many in process. But there is no theorem. Unfortunately, that granted conventions to the global minimum of There's even Tony and using this approach. And so this is why we propose, uh, to introduce a macro structures of the system where one analog spin or one D O. P. O is replaced by a pair off one another spin and one error, according viable. And the addition of this chemical structure introduces a symmetry in the system, which in terms induces chaotic dynamics, a chaotic search rather than a learning process for searching for the ground state of the icing. Every 20 within this massacre structure the role of the er variable eyes to control the amplitude off the analog spins toe force. The amplitude of the expense toe become equal to certain target amplitude a uh and, uh, and this is done by modulating the strength off the icing complaints or see the the error variable E I multiply the icing complaint here in the dynamics off air d o p. O. On then the dynamics. The whole dynamics described by this coupled equations because the e I do not necessarily take away the same value for the different. I thesis introduces a symmetry in the system, which in turn creates security dynamics, which I'm sure here for solving certain current size off, um, escape problem, Uh, in which the X I are shown here and the i r from here and the value of the icing energy showing the bottom plots. You see this Celtics search that visit various local minima of the as Newtonian and eventually finds the global minimum? Um, it can be shown that this modulation off the target opportunity can be used to destabilize all the local minima off the icing evertonians so that we're gonna do not get stuck in any of them. On more over the other types of attractors I can eventually appear, such as limits I contractors, Okot contractors. They can also be destabilized using the motivation of the target and Batuta. And so we have proposed in the past two different moderation of the target amateur. The first one is a modulation that ensure the uh 100 reproduction rate of the system to become positive on this forbids the creation off any nontrivial tractors. And but in this work, I will talk about another moderation or arrested moderation which is given here. That works, uh, as well as this first uh, moderation, but is easy to be implemented on refugee. So this couple of the question that represent becoming the stimulation of the cortex in machine with some error correction they can be implemented especially efficiently on an F B. G. And here I show the time that it takes to simulate three system and also in red. You see, at the time that it takes to simulate the X I term the EI term, the dot product and the rising Hamiltonian for a system with 500 spins and Iraq Spain's equivalent to 500 g. O. P. S. So >>in >>f b d a. The nonlinear dynamics which, according to the digital optical Parametric amplification that the Opa off the CME can be computed in only 13 clock cycles at 300 yards. So which corresponds to about 0.1 microseconds. And this is Toby, uh, compared to what can be achieved in the measurements back O C. M. In which, if we want to get 500 timer chip Xia Pios with the one she got repetition rate through the obstacle nine narrative. Uh, then way would require 0.5 microseconds toe do this so the submission in F B J can be at least as fast as ah one g repression. Uh, replicate pulsed laser CIA Um, then the DOT product that appears in this differential equation can be completed in 43 clock cycles. That's to say, one microseconds at 15 years. So I pieced for pouring sizes that are larger than 500 speeds. The dot product becomes clearly the bottleneck, and this can be seen by looking at the the skating off the time the numbers of clock cycles a text to compute either the non in your optical parts or the dog products, respect to the problem size. And And if we had infinite amount of resources and PGA to simulate the dynamics, then the non illogical post can could be done in the old one. On the mattress Vector product could be done in the low carrot off, located off scales as a look at it off and and while the guide off end. Because computing the dot product involves assuming all the terms in the product, which is done by a nephew, GE by another tree, which heights scarce logarithmic any with the size of the system. But This is in the case if we had an infinite amount of resources on the LPGA food, but for dealing for larger problems off more than 100 spins. Usually we need to decompose the metrics into ah, smaller blocks with the block side that are not you here. And then the scaling becomes funny, non inner parts linear in the end, over you and for the products in the end of EU square eso typically for low NF pdf cheap PGA you the block size off this matrix is typically about 100. So clearly way want to make you as large as possible in order to maintain this scanning in a log event for the numbers of clock cycles needed to compute the product rather than this and square that occurs if we decompose the metrics into smaller blocks. But the difficulty in, uh, having this larger blocks eyes that having another tree very large Haider tree introduces a large finding and finance and long distance start a path within the refugee. So the solution to get higher performance for a simulator of the contest in machine eyes to get rid of this bottleneck for the dot product by increasing the size of this at the tree. And this can be done by organizing your critique the electrical components within the LPGA in order which is shown here in this, uh, right panel here in order to minimize the finding finance of the system and to minimize the long distance that a path in the in the fpt So I'm not going to the details of how this is implemented LPGA. But just to give you a idea off why the Iraqi Yahiko organization off the system becomes the extremely important toe get good performance for similar organizing machine. So instead of instead of getting into the details of the mpg implementation, I would like to give some few benchmark results off this simulator, uh, off the that that was used as a proof of concept for this idea which is can be found in this archive paper here and here. I should results for solving escape problems. Free connected person, randomly person minus one spring last problems and we sure, as we use as a metric the numbers of the mattress Victor products since it's the bottleneck of the computation, uh, to get the optimal solution of this escape problem with the Nina successful BT against the problem size here and and in red here, this propose FDJ implementation and in ah blue is the numbers of retrospective product that are necessary for the C. I am without error correction to solve this escape programs and in green here for noisy means in an evening which is, uh, behavior with similar to the Cartesian mission. Uh, and so clearly you see that the scaring off the numbers of matrix vector product necessary to solve this problem scales with a better exponents than this other approaches. So So So that's interesting feature of the system and next we can see what is the real time to solution to solve this SK instances eso in the last six years, the time institution in seconds to find a grand state of risk. Instances remain answers probability for different state of the art hardware. So in red is the F B g. A presentation proposing this paper and then the other curve represent Ah, brick a local search in in orange and silver lining in purple, for example. And so you see that the scaring off this purpose simulator is is rather good, and that for larger plant sizes we can get orders of magnitude faster than the state of the art approaches. Moreover, the relatively good scanning off the time to search in respect to problem size uh, they indicate that the FPD implementation would be faster than risk. Other recently proposed izing machine, such as the hope you know, natural complimented on memories distance that is very fast for small problem size in blue here, which is very fast for small problem size. But which scanning is not good on the same thing for the restricted Bosman machine. Implementing a PGA proposed by some group in Broken Recently Again, which is very fast for small parliament sizes but which canning is bad so that a dis worse than the proposed approach so that we can expect that for programs size is larger than 1000 spins. The proposed, of course, would be the faster one. Let me jump toe this other slide and another confirmation that the scheme scales well that you can find the maximum cut values off benchmark sets. The G sets better candidates that have been previously found by any other algorithms, so they are the best known could values to best of our knowledge. And, um or so which is shown in this paper table here in particular, the instances, uh, 14 and 15 of this G set can be We can find better converse than previously known, and we can find this can vary is 100 times faster than the state of the art algorithm and CP to do this which is a very common Kasich. It s not that getting this a good result on the G sets, they do not require ah, particular hard tuning of the parameters. So the tuning issuing here is very simple. It it just depends on the degree off connectivity within each graph. And so this good results on the set indicate that the proposed approach would be a good not only at solving escape problems in this problems, but all the types off graph sizing problems on Mexican province in communities. So given that the performance off the design depends on the height of this other tree, we can try to maximize the height of this other tree on a large F p g a onda and carefully routing the components within the P G A and and we can draw some projections of what type of performance we can achieve in the near future based on the, uh, implementation that we are currently working. So here you see projection for the time to solution way, then next property for solving this escape programs respect to the prime assize. And here, compared to different with such publicizing machines, particularly the digital. And, you know, 42 is shown in the green here, the green line without that's and, uh and we should two different, uh, hypothesis for this productions either that the time to solution scales as exponential off n or that the time of social skills as expression of square root off. So it seems, according to the data, that time solution scares more as an expression of square root of and also we can be sure on this and this production show that we probably can solve prime escape problem of science 2000 spins, uh, to find the rial ground state of this problem with 99 success ability in about 10 seconds, which is much faster than all the other proposed approaches. So one of the future plans for this current is in machine simulator. So the first thing is that we would like to make dissimulation closer to the rial, uh, GOP oh, optical system in particular for a first step to get closer to the system of a measurement back. See, I am. And to do this what is, uh, simulate Herbal on the p a is this quantum, uh, condoms Goshen model that is proposed described in this paper and proposed by people in the in the Entity group. And so the idea of this model is that instead of having the very simple or these and have shown previously, it includes paired all these that take into account on me the mean off the awesome leverage off the, uh, European face component, but also their violence s so that we can take into account more quantum effects off the g o p. O, such as the squeezing. And then we plan toe, make the simulator open access for the members to run their instances on the system. There will be a first version in September that will be just based on the simple common line access for the simulator and in which will have just a classic or approximation of the system. We don't know Sturm, binary weights and museum in term, but then will propose a second version that would extend the current arising machine to Iraq off F p g. A, in which we will add the more refined models truncated, ignoring the bottom Goshen model they just talked about on the support in which he valued waits for the rising problems and support the cement. So we will announce later when this is available and and far right is working >>hard comes from Universal down today in physics department, and I'd like to thank the organizers for their kind invitation to participate in this very interesting and promising workshop. Also like to say that I look forward to collaborations with with a file lab and Yoshi and collaborators on the topics of this world. So today I'll briefly talk about our attempt to understand the fundamental limits off another continues time computing, at least from the point off you off bullion satisfy ability, problem solving, using ordinary differential equations. But I think the issues that we raise, um, during this occasion actually apply to other other approaches on a log approaches as well and into other problems as well. I think everyone here knows what Dorien satisfy ability. Problems are, um, you have boolean variables. You have em clauses. Each of disjunction of collaterals literally is a variable, or it's, uh, negation. And the goal is to find an assignment to the variable, such that order clauses are true. This is a decision type problem from the MP class, which means you can checking polynomial time for satisfy ability off any assignment. And the three set is empty, complete with K three a larger, which means an efficient trees. That's over, uh, implies an efficient source for all the problems in the empty class, because all the problems in the empty class can be reduced in Polian on real time to reset. As a matter of fact, you can reduce the NP complete problems into each other. You can go from three set to set backing or two maximum dependent set, which is a set packing in graph theoretic notions or terms toe the icing graphs. A problem decision version. This is useful, and you're comparing different approaches, working on different kinds of problems when not all the closest can be satisfied. You're looking at the accusation version offset, uh called Max Set. And the goal here is to find assignment that satisfies the maximum number of clauses. And this is from the NPR class. In terms of applications. If we had inefficient sets over or np complete problems over, it was literally, positively influenced. Thousands off problems and applications in industry and and science. I'm not going to read this, but this this, of course, gives a strong motivation toe work on this kind of problems. Now our approach to set solving involves embedding the problem in a continuous space, and you use all the east to do that. So instead of working zeros and ones, we work with minus one across once, and we allow the corresponding variables toe change continuously between the two bounds. We formulate the problem with the help of a close metrics. If if a if a close, uh, does not contain a variable or its negation. The corresponding matrix element is zero. If it contains the variable in positive, for which one contains the variable in a gated for Mitt's negative one, and then we use this to formulate this products caused quote, close violation functions one for every clause, Uh, which really, continuously between zero and one. And they're zero if and only if the clause itself is true. Uh, then we form the define in order to define a dynamic such dynamics in this and dimensional hyper cube where the search happens and if they exist, solutions. They're sitting in some of the corners of this hyper cube. So we define this, uh, energy potential or landscape function shown here in a way that this is zero if and only if all the clauses all the kmc zero or the clauses off satisfied keeping these auxiliary variables a EMS always positive. And therefore, what you do here is a dynamics that is a essentially ingredient descend on this potential energy landscape. If you were to keep all the M's constant that it would get stuck in some local minimum. However, what we do here is we couple it with the dynamics we cooperated the clothes violation functions as shown here. And if he didn't have this am here just just the chaos. For example, you have essentially what case you have positive feedback. You have increasing variable. Uh, but in that case, you still get stuck would still behave will still find. So she is better than the constant version but still would get stuck only when you put here this a m which makes the dynamics in in this variable exponential like uh, only then it keeps searching until he finds a solution on deer is a reason for that. I'm not going toe talk about here, but essentially boils down toe performing a Grady and descend on a globally time barren landscape. And this is what works. Now I'm gonna talk about good or bad and maybe the ugly. Uh, this is, uh, this is What's good is that it's a hyperbolic dynamical system, which means that if you take any domain in the search space that doesn't have a solution in it or any socially than the number of trajectories in it decays exponentially quickly. And the decay rate is a characteristic in variant characteristic off the dynamics itself. Dynamical systems called the escape right the inverse off that is the time scale in which you find solutions by this by this dynamical system, and you can see here some song trajectories that are Kelty because it's it's no linear, but it's transient, chaotic. Give their sources, of course, because eventually knowledge to the solution. Now, in terms of performance here, what you show for a bunch off, um, constraint densities defined by M overran the ratio between closes toe variables for random, said Problems is random. Chris had problems, and they as its function off n And we look at money toward the wartime, the wall clock time and it behaves quite value behaves Azat party nominally until you actually he to reach the set on set transition where the hardest problems are found. But what's more interesting is if you monitor the continuous time t the performance in terms off the A narrow, continuous Time t because that seems to be a polynomial. And the way we show that is, we consider, uh, random case that random three set for a fixed constraint density Onda. We hear what you show here. Is that the right of the trash hold that it's really hard and, uh, the money through the fraction of problems that we have not been able to solve it. We select thousands of problems at that constraint ratio and resolve them without algorithm, and we monitor the fractional problems that have not yet been solved by continuous 90. And this, as you see these decays exponentially different. Educate rates for different system sizes, and in this spot shows that is dedicated behaves polynomial, or actually as a power law. So if you combine these two, you find that the time needed to solve all problems except maybe appear traction off them scales foreign or merely with the problem size. So you have paranormal, continuous time complexity. And this is also true for other types of very hard constraints and sexual problems such as exact cover, because you can always transform them into three set as we discussed before, Ramsey coloring and and on these problems, even algorithms like survey propagation will will fail. But this doesn't mean that P equals NP because what you have first of all, if you were toe implement these equations in a device whose behavior is described by these, uh, the keys. Then, of course, T the continue style variable becomes a physical work off. Time on that will be polynomial is scaling, but you have another other variables. Oxidative variables, which structured in an exponential manner. So if they represent currents or voltages in your realization and it would be an exponential cost Al Qaeda. But this is some kind of trade between time and energy, while I know how toe generate energy or I don't know how to generate time. But I know how to generate energy so it could use for it. But there's other issues as well, especially if you're trying toe do this son and digital machine but also happens. Problems happen appear. Other problems appear on in physical devices as well as we discuss later. So if you implement this in GPU, you can. Then you can get in order off to magnitude. Speed up. And you can also modify this to solve Max sad problems. Uh, quite efficiently. You are competitive with the best heuristic solvers. This is a weather problems. In 2016 Max set competition eso so this this is this is definitely this seems like a good approach, but there's off course interesting limitations, I would say interesting, because it kind of makes you think about what it means and how you can exploit this thes observations in understanding better on a low continues time complexity. If you monitored the discrete number the number of discrete steps. Don't buy the room, Dakota integrator. When you solve this on a digital machine, you're using some kind of integrator. Um and you're using the same approach. But now you measure the number off problems you haven't sold by given number of this kid, uh, steps taken by the integrator. You find out you have exponential, discrete time, complexity and, of course, thistles. A problem. And if you look closely, what happens even though the analog mathematical trajectory, that's the record here. If you monitor what happens in discrete time, uh, the integrator frustrates very little. So this is like, you know, third or for the disposition, but fluctuates like crazy. So it really is like the intervention frees us out. And this is because of the phenomenon of stiffness that are I'll talk a little bit a more about little bit layer eso. >>You know, it might look >>like an integration issue on digital machines that you could improve and could definitely improve. But actually issues bigger than that. It's It's deeper than that, because on a digital machine there is no time energy conversion. So the outside variables are efficiently representing a digital machine. So there's no exponential fluctuating current of wattage in your computer when you do this. Eso If it is not equal NP then the exponential time, complexity or exponential costs complexity has to hit you somewhere. And this is how um, but, you know, one would be tempted to think maybe this wouldn't be an issue in a analog device, and to some extent is true on our devices can be ordered to maintain faster, but they also suffer from their own problems because he not gonna be affect. That classes soldiers as well. So, indeed, if you look at other systems like Mirandizing machine measurement feedback, probably talk on the grass or selected networks. They're all hinge on some kind off our ability to control your variables in arbitrary, high precision and a certain networks you want toe read out across frequencies in case off CM's. You required identical and program because which is hard to keep, and they kind of fluctuate away from one another, shift away from one another. And if you control that, of course that you can control the performance. So actually one can ask if whether or not this is a universal bottleneck and it seems so aside, I will argue next. Um, we can recall a fundamental result by by showing harder in reaction Target from 1978. Who says that it's a purely computer science proof that if you are able toe, compute the addition multiplication division off riel variables with infinite precision, then you could solve any complete problems in polynomial time. It doesn't actually proposals all where he just chose mathematically that this would be the case. Now, of course, in Real warned, you have also precision. So the next question is, how does that affect the competition about problems? This is what you're after. Lots of precision means information also, or entropy production. Eso what you're really looking at the relationship between hardness and cost of computing off a problem. Uh, and according to Sean Hagar, there's this left branch which in principle could be polynomial time. But the question whether or not this is achievable that is not achievable, but something more cheerful. That's on the right hand side. There's always going to be some information loss, so mental degeneration that could keep you away from possibly from point normal time. So this is what we like to understand, and this information laws the source off. This is not just always I will argue, uh, in any physical system, but it's also off algorithm nature, so that is a questionable area or approach. But China gets results. Security theoretical. No, actual solar is proposed. So we can ask, you know, just theoretically get out off. Curiosity would in principle be such soldiers because it is not proposing a soldier with such properties. In principle, if if you want to look mathematically precisely what the solar does would have the right properties on, I argue. Yes, I don't have a mathematical proof, but I have some arguments that that would be the case. And this is the case for actually our city there solver that if you could calculate its trajectory in a loss this way, then it would be, uh, would solve epic complete problems in polynomial continuous time. Now, as a matter of fact, this a bit more difficult question, because time in all these can be re scared however you want. So what? Burns says that you actually have to measure the length of the trajectory, which is a new variant off the dynamical system or property dynamical system, not off its parameters ization. And we did that. So Suba Corral, my student did that first, improving on the stiffness off the problem off the integrations, using implicit solvers and some smart tricks such that you actually are closer to the actual trajectory and using the same approach. You know what fraction off problems you can solve? We did not give the length of the trajectory. You find that it is putting on nearly scaling the problem sites we have putting on your skin complexity. That means that our solar is both Polly length and, as it is, defined it also poorly time analog solver. But if you look at as a discreet algorithm, if you measure the discrete steps on a digital machine, it is an exponential solver. And the reason is because off all these stiffness, every integrator has tow truck it digitizing truncate the equations, and what it has to do is to keep the integration between the so called stability region for for that scheme, and you have to keep this product within a grimace of Jacoby in and the step size read in this region. If you use explicit methods. You want to stay within this region? Uh, but what happens that some off the Eigen values grow fast for Steve problems, and then you're you're forced to reduce that t so the product stays in this bonded domain, which means that now you have to you're forced to take smaller and smaller times, So you're you're freezing out the integration and what I will show you. That's the case. Now you can move to increase its soldiers, which is which is a tree. In this case, you have to make domain is actually on the outside. But what happens in this case is some of the Eigen values of the Jacobean, also, for six systems, start to move to zero. As they're moving to zero, they're going to enter this instability region, so your soul is going to try to keep it out, so it's going to increase the data T. But if you increase that to increase the truncation hours, so you get randomized, uh, in the large search space, so it's it's really not, uh, not going to work out. Now, one can sort off introduce a theory or language to discuss computational and are computational complexity, using the language from dynamical systems theory. But basically I I don't have time to go into this, but you have for heart problems. Security object the chaotic satellite Ouch! In the middle of the search space somewhere, and that dictates how the dynamics happens and variant properties off the dynamics. Of course, off that saddle is what the targets performance and many things, so a new, important measure that we find that it's also helpful in describing thesis. Another complexity is the so called called Makarov, or metric entropy and basically what this does in an intuitive A eyes, uh, to describe the rate at which the uncertainty containing the insignificant digits off a trajectory in the back, the flow towards the significant ones as you lose information because off arrows being, uh grown or are developed in tow. Larger errors in an exponential at an exponential rate because you have positively up north spawning. But this is an in variant property. It's the property of the set of all. This is not how you compute them, and it's really the interesting create off accuracy philosopher dynamical system. A zay said that you have in such a high dimensional that I'm consistent were positive and negatively upon of exponents. Aziz Many The total is the dimension of space and user dimension, the number off unstable manifold dimensions and as Saddam was stable, manifold direction. And there's an interesting and I think, important passion, equality, equality called the passion, equality that connect the information theoretic aspect the rate off information loss with the geometric rate of which trajectory separate minus kappa, which is the escape rate that I already talked about. Now one can actually prove a simple theorems like back off the envelope calculation. The idea here is that you know the rate at which the largest rated, which closely started trajectory separate from one another. So now you can say that, uh, that is fine, as long as my trajectory finds the solution before the projective separate too quickly. In that case, I can have the hope that if I start from some region off the face base, several close early started trajectories, they kind of go into the same solution orphaned and and that's that's That's this upper bound of this limit, and it is really showing that it has to be. It's an exponentially small number. What? It depends on the end dependence off the exponents right here, which combines information loss rate and the social time performance. So these, if this exponents here or that has a large independence or river linear independence, then you then you really have to start, uh, trajectories exponentially closer to one another in orderto end up in the same order. So this is sort off like the direction that you're going in tow, and this formulation is applicable toe all dynamical systems, uh, deterministic dynamical systems. And I think we can We can expand this further because, uh, there is, ah, way off getting the expression for the escaped rate in terms off n the number of variables from cycle expansions that I don't have time to talk about. What? It's kind of like a program that you can try toe pursuit, and this is it. So the conclusions I think of self explanatory I think there is a lot of future in in, uh, in an allo. Continue start computing. Um, they can be efficient by orders of magnitude and digital ones in solving empty heart problems because, first of all, many of the systems you like the phone line and bottleneck. There's parallelism involved, and and you can also have a large spectrum or continues time, time dynamical algorithms than discrete ones. And you know. But we also have to be mindful off. What are the possibility of what are the limits? And 11 open question is very important. Open question is, you know, what are these limits? Is there some kind off no go theory? And that tells you that you can never perform better than this limit or that limit? And I think that's that's the exciting part toe to derive thes thes this levian 10.
SUMMARY :
bifurcated critical point that is the one that I forget to the lowest pump value a. the chi to non linearity and see how and when you can get the Opio know that the classical approximation of the car testing machine, which is the ground toe, than the state of the art algorithm and CP to do this which is a very common Kasich. right the inverse off that is the time scale in which you find solutions by first of all, many of the systems you like the phone line and bottleneck.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Exxon Mobil | ORGANIZATION | 0.99+ |
Andy | PERSON | 0.99+ |
Sean Hagar | PERSON | 0.99+ |
Daniel Wennberg | PERSON | 0.99+ |
Chris | PERSON | 0.99+ |
USC | ORGANIZATION | 0.99+ |
Caltech | ORGANIZATION | 0.99+ |
2016 | DATE | 0.99+ |
100 times | QUANTITY | 0.99+ |
Berkeley | LOCATION | 0.99+ |
Tatsuya Nagamoto | PERSON | 0.99+ |
two | QUANTITY | 0.99+ |
1978 | DATE | 0.99+ |
Fox | ORGANIZATION | 0.99+ |
six systems | QUANTITY | 0.99+ |
Harvard | ORGANIZATION | 0.99+ |
Al Qaeda | ORGANIZATION | 0.99+ |
September | DATE | 0.99+ |
second version | QUANTITY | 0.99+ |
CIA | ORGANIZATION | 0.99+ |
India | LOCATION | 0.99+ |
300 yards | QUANTITY | 0.99+ |
University of Tokyo | ORGANIZATION | 0.99+ |
today | DATE | 0.99+ |
Burns | PERSON | 0.99+ |
Atsushi Yamamura | PERSON | 0.99+ |
0.14% | QUANTITY | 0.99+ |
48 core | QUANTITY | 0.99+ |
0.5 microseconds | QUANTITY | 0.99+ |
NSF | ORGANIZATION | 0.99+ |
15 years | QUANTITY | 0.99+ |
CBS | ORGANIZATION | 0.99+ |
NTT | ORGANIZATION | 0.99+ |
first implementation | QUANTITY | 0.99+ |
first experiment | QUANTITY | 0.99+ |
123 | QUANTITY | 0.99+ |
Army Research Office | ORGANIZATION | 0.99+ |
first | QUANTITY | 0.99+ |
1,904,711 | QUANTITY | 0.99+ |
one | QUANTITY | 0.99+ |
six | QUANTITY | 0.99+ |
first version | QUANTITY | 0.99+ |
Steve | PERSON | 0.99+ |
2000 spins | QUANTITY | 0.99+ |
five researcher | QUANTITY | 0.99+ |
Creole | ORGANIZATION | 0.99+ |
three set | QUANTITY | 0.99+ |
second part | QUANTITY | 0.99+ |
third part | QUANTITY | 0.99+ |
Department of Applied Physics | ORGANIZATION | 0.99+ |
10 | QUANTITY | 0.99+ |
each | QUANTITY | 0.99+ |
85,900 | QUANTITY | 0.99+ |
One | QUANTITY | 0.99+ |
one problem | QUANTITY | 0.99+ |
136 CPU | QUANTITY | 0.99+ |
Toshiba | ORGANIZATION | 0.99+ |
Scott | PERSON | 0.99+ |
2.4 gigahertz | QUANTITY | 0.99+ |
1000 times | QUANTITY | 0.99+ |
two times | QUANTITY | 0.99+ |
two parts | QUANTITY | 0.99+ |
131 | QUANTITY | 0.99+ |
14,233 | QUANTITY | 0.99+ |
more than 100 spins | QUANTITY | 0.99+ |
two possible phases | QUANTITY | 0.99+ |
13,580 | QUANTITY | 0.99+ |
5 | QUANTITY | 0.99+ |
4 | QUANTITY | 0.99+ |
one microseconds | QUANTITY | 0.99+ |
first step | QUANTITY | 0.99+ |
first part | QUANTITY | 0.99+ |
500 spins | QUANTITY | 0.99+ |
two identical photons | QUANTITY | 0.99+ |
3 | QUANTITY | 0.99+ |
70 years ago | DATE | 0.99+ |
Iraq | LOCATION | 0.99+ |
one experiment | QUANTITY | 0.99+ |
zero | QUANTITY | 0.99+ |
Amir Safarini Nini | PERSON | 0.99+ |
Saddam | PERSON | 0.99+ |
Rob High, IBM | IBM Think 2020
>>Yeah, >>from the Cube Studios in Palo Alto and Boston. It's the Cube covering IBM. Think brought to you by IBM. >>Welcome back, everybody. This is Dave Vellante of the Cube, and you're watching our continuous coverage of the IBM think Digital 2020 experience. And we're really pleased to have Rob High here. He's not only an IBM fellow bodies. He runs the vice president CTO of the IBM Edge Computing Initiative. Rob, thanks so much for coming on the Cube. Good to see you. Which we're face to face, but yeah, that time to be safe and healthy, I guess. And did so edge obviously hot topic. Everybody has this sort of point of view would be interested in how IBM looks at edge. You define it and what your thoughts are on. It's evolution. >>Yeah, well, you know, there's ah really kind of two fairly distinct ways of thinking about the edge of the telcos. Our, ah, you know, they're creating edge capabilities in their own network facilities. We call that the network edge on the other side of the edge they that I think matters a lot to our enterprise businesses is there's remote on premise locations where they actually perform the work that they do, where the majority of people are, where the data that actually gets created is first formed and where the actions that they need to operate on are being taken. That is a lot of interest, because if we can move work workloads, Iot workloads to where that data is being created, where those actions are being taken Uh, not only can we dramatically reduce the late and see to those decisions, uh, but we can also ensure continuous operations and the failed in the presence of perhaps network failures. We can manage the growth of increasing demand for network bandwidth as Maura born data gets created and we can optimize the efficiency of both the business operations as well as the I t operations before that. So for us edge computing at the end of the day is about movie work where the data and the actions are being taken >>well, so this work from home, you know, gives a result of this pandemic is kind of creating a new stresses on networks and people are putting, you know, pouring money actually into beefing up that infrastructure is sort of an extension of what we used to think about edge. But I wonder if you could talk about some of the industries and the use cases that you guys we are seeing and notwithstanding, though assay that >>work from home pivot. Yeah, absolutely. So I mean, look, we have seen ah, the need for placing workloads close to where it is being created and where actions have been picking in virtually every industry, the ones that are probably easier for us to think about and more common in terms of our mindset. Our is manufacturing. If you think about all the things that go on in a factory floor that need to be able to perform analytic in, uh, in the equipment and the processes that are performing in the affection for, If you think, for example, production quality. Uh, you know, if you've got a machine that's putting out parts and maybe it's welding seams on metal boxes, uh, you know, you want to be able to look at the quality of that seem at the moment that is being performed, so that if there are any problems, you can remediate that immediately rather than having that box move on down the line and find that you know the quality issues they were created earlier on now have exacerbated in other ways. Um, you know, so quality, productive quality. Ah, inspection production optimization in our world of Covic Cover 19 and worker safety and getting workers back to work and ensuring that you know people wearing the masks and are exercising social distancing. This is on the factory floor. Worker Insight is another major use case that we're seeing surface of lake with a lot of interest in using whether that's infrared cameras or Bluetooth beacons or infrared cameras. Any variety of devices that could be employed in the work area to help ensure that factories are operating efficiently, that workers are safe. Ah, and whether that's in a factor situation or even in an office situation or e a r in a warehouse or distribution center. And all these scenarios the the utility, the edge computing to bring to those use cases is tremendous. >>And a lot of these devices are unattended or infrequently attended. I always use the windmill example. Um, you know, you don't want to have to do a truck roll to figure out you know what the dynamics are going on, that at the windmill s, so I can instrument that. But what about the management of those devices you know from an autonomous standpoint? And and are you? What are you doing? Or are you doing anything in the autonomous managed space? >>Yeah. In fact, that's really kind of key here, because when you think about the scale, the diversity and the dynamic dynamism of equipment in these environments And as you point out, Dave, you know the lack of I t resource lack of skills on the factory floor, or even in the retail store or hotel or distribution center or any of these environments. The situation is very similar. You can't simply manage getting the right workloads to the right place at the right time. In sort of the traditional approach is, you have to really think about another autonomous approach to management and, you know, let the system the side for you. What software needs to be placed out there? Which software to put their If it's an analytic algorithm, what models to be associated with that software and getting to the right place at the right place at the right Time is a key Part of what we do in this thing that we call IBM Edge application manager is that product that we're really kind of bringing to market right now in the context of edge computing that facilitates this idea of autonomous management. >>You know, I wonder if you could comment Robb on just sort of the approach that you're taking with regard to providing products and services. I mean, we've seen a lot of, uh, situations where people are just essentially packing, packaging traditional, you know, compute and storage devices and sort of throwing it over the fence at the edge. Uh, and saying, Hey, here's our edge computing solution and another saying there's not a place for that. Maybe that will help flatten the network and, you know, provide Ah, gateway for storing on maybe processing information. But it seems to us that that that a bottoms up approach is going to be more appropriate. In other words, you've got engineers, you know who really understand operations, technology, people, maybe a new breed of developers emerging. How do you see the evolution you know of products and services and architectures at >>the edge? Yeah, so First of all, let me say IBM is taking a really pretty broad approach to edge computing we have. What I just described is IBM Edge Application Manager, which is the if you will the platform or the infrastructure on which we can manage the appointment of workloads out to the edge. But then add to that we do have a whole variety of edge and Nevil enabled applications that are being created are global service of practices and our AI applications business all are creating, um, variations of their product specific to address and exploit edge computing and to bring that advantage to the business. And of course, then we also have global services Consulting, which is a set of skilled resource, is who know we understand the transformations that business need to go through when they went, take advantage of edge computing and how to think about that in the context of both their journey to the cloud as well as now in this case, the edge. But also then how to go about implementing and delivering that, uh and then firmly further managing that now you know, coupled out then with at the end of the day you're also going to need the equipment, the devices, whether that is an intelligent automobile or other vehicle, whether that is an appellate, a robot or a camera, Um, or if those things are not intelligent. But you want to bring intelligence to them that how you augment that with servers and other forms of cluster computing that resides resident with the device. All of those are going to require participation from a very broad ecosystem. So we've been working with partners of whether that is vendors who create hardware and enabling that hardware in certifying that hardware to work with our management infrastructure or whether those are people who bring higher order services to the table that provide support for, let's, say, data cashing and facilitating the creation of applications, or whether those are device manufacturers that are embedding compute in their device equipment. All of that is part of our partnership ecosystem, Um, and then finally, you know, I need to emphasize that, you know, the world that we operate in is so vast and so large. There are so many edge devices in the marketplace, and that's growing so rapidly, and so many participants in that likewise There are a lot of other contributors to this ecosystem that we call edge computing. And so for all of those reasons, we have grounded IBM education manager on open source. We created an open source project called Open Rise, and we've been developing that, actually now, for about 4.5 years just recently, the Linux Foundation has adopted Stage one adoption of Open arising as part of its Lennox Foundation edge LF edge, uh, Reg X Foundry project. And so we think this is key to building out, Um, a ecosystem of partners who want to both contribute as well consumed value and create ecosystems around this common idea of how we manage the edge. >>Yeah, I'm glad you brought up the ecosystem, and it's too big for any one company toe to go it alone. But I want to tap your brain on just sort of architectures. And there's so many diverse use cases, you know, we don't necessarily see one uber architecture emerging, but there are some characteristics that we think are important at the edge you mentioned sort of real time or near real time. In many cases, it has to be real time you think about autonomous vehicles? Um, yeah. A lot of the data today is analog, and maybe it doesn't have to be digitized, but much of it will be, um, it's not all gonna be sent back to the cloud. It may not all have to be persisted. So we've envisioned this sort of purpose built, you know, architecture for certain use cases that can support real time. That maybe have, you know, arm based processors. Ah, or other alternative processors there that can do real time analytics at the edge and maybe sending portions of the data back. How do you see the architectures evolving from a technologist? >>Well, so certainly one of the things that we see at the edge is a tremendous premium being placed on things like energy consumption. So architectures they're able to operate efficiently with less power is ah is certainly an advantage to any of those architectures that are being brought aboard. Um, clearly, you know x 86 is a dominant architecture in any information technology endeavor. More specifically at the edge. We're seeing the emergence of lot of arm based architecture chips out there. In fact, I would guess that the majority of the edge devices today are not being created with, um, arm architectures, but it's the you know, but some of this is about the underlying architecture of the compute. But also then the augmentation of that compute the the compute Thea the CP use with other types of processing units. Whether those GPS, of course, we're seeing, you know, a number of deep use being created that are designed to be low power consuming, um, and have a tremendous amount of utility at the edge. There are alternate processing units, architectures that have been designed specifically for AI model based analytics. Uh, things like TP use and infuse and and, uh, and set around, which are very purpose built for certain kinds of intellect. And we think that those are starting to surface and become increasingly important. And then on the flip side of this is both the memory storage in network architectures which are sort of exotically different. But at least in terms of capacity, um have quite variability. Specifically, five G, though, is emerging and five g. While it's not necessarily the same computing, there is a lot of symbolism between edge and five G and the kinds of use cases that five G envisions are very similar to those that we've been talking about in the edge world as well. >>Rob, I want to ask you about sort of this notion of program ability at the edge. I mean, we've seen the success of infrastructure as code. Um, how do you see program ability occurring at the edge in terms of fostering innovation and maybe new developer bottles or maybe existing developer models at the edge? Yeah, >>we found a lot of utility in sort of leveraging what we now think of as cloud computing or cloud computing models. Uh, you know, the idea of continue ization extends itself very easily into the edge. Whether that is running a container in a docker runtime, let's say on an edge device which is, you know, resource constrained and purpose built and needs to focus on sort of a very small footprint or even edge clusters edge servers where we might be running a cluster of containers using our kubernetes platform called open shift. Um, you know the course of practices of continuous integration, continuous delivery. What we write a Otherwise think of his Dev ops. Ah, and, of course, the benefits they continue. Realization brings to the idea of component architectures. Three. Idea of loose coupling. The separation of concerns, the ability to mix and match different service implementations to be opposed. Your application are all ideas that were matured in the cloud world but have a lot of utility in the edge world. Now we actually call it edge native programming. But you can think of that as being mostly cloud native programming, with a further extension that there are certain things you have to be aware of what you're building for the edge. You have to recognize that resource is air limited. Unlike the cloud where we have this notion of infinite resource, you don't have that at the edge. Find and constrained resources. Be worried about, you know, Layton sees and the fact that there is a network that separates the different services and that network can be and reliable. It can introduce his own forms of Layton sees it, maybe bandwidth constrained and those air issues that you now have to factor into your thinking as you build out the logic of your application components. But I think by building on the cloud native programming about me paradigm. You know, we get to exercise sort of all of the skills that have been developing and maturing in the cloud world. Now, for the edge >>that makes sense. My last question is around security. I mean, I've often sort of tongue in cheek said, you know, building a moat around the castle doesn't work anymore. The queen i e. The data has left the castle. She's everywhere. So what about the security model? I mean, I feel like the edge is moving so fast you feel confident or what gives you confidence >>that we can secure the edge. You know, the edges does introduce some very interesting and challenging concerns with respect to security because, frankly, the compute is out there in the wild. You know, you've got computers in the store you've got, you know, people walking around the kiosks you have in the manufacturing site, you know, workers that are, you know, in the midst of all of this compute capability and so the attack surface is substantially bigger. And that's been a big focus for us, is how to the only way validate in 30 of the software that was But it also takes advantage of one of the key characters with edge computing to bring to the table, which is, if you think about it. You know, when you've got personal and private information being entered into quote system, the more often you move that personal private data around, and certainly the more that you move it to a central location and aggregate that with other data, the more of a target becomes more vulnerable, exposed that data becomes and by using edge computing, which moves the workloads out to the edge where that did has been created in some sense, you can process on it there and then move it back. They need central location, you don't have to aggregate it. And that actually in itself is a counterbalance of all of the other issues that we also describe about security by essentially not moving the personal privacy and in protecting by keeping it exactly where it began. >>You know, Rob, this is an exciting topic. Is a huge opportunity for IBM and Ginny in and talk about the trillion dollar opportunity and hybrid cloud and the Edge is a multi $1,000,000,000 opportunity for IBM and, uh So you just got to go get her done. But I really appreciate you coming on the Cube and sharing your insights. That awesome topic in the best interest of the David. Yeah. Thank you. Thank you for the thank you. Stay safe and thank you for watching everybody. This is Dave Volante for the Cube. This is our coverage of IBM. Think 2020 the digital. Think >>we'll be right back after this short break? >>Yeah, yeah, yeah, yeah.
SUMMARY :
Think brought to you by IBM. This is Dave Vellante of the Cube, and you're watching our continuous coverage of the IBM Yeah, well, you know, there's ah really kind of two fairly distinct ways of thinking about the edge industries and the use cases that you guys we are seeing and notwithstanding, that immediately rather than having that box move on down the line and find that you Um, you know, you don't want to have to do a truck roll to figure out you know what and, you know, let the system the side for you. You know, I wonder if you could comment Robb on just sort of the approach that you're taking with regard to and then finally, you know, I need to emphasize that, you know, the world that we operate In many cases, it has to be real time you think about autonomous vehicles? the you know, but some of this is about the underlying architecture of Rob, I want to ask you about sort of this notion of program ability at the edge. you know, Layton sees and the fact that there is a network that separates the different services and that I mean, I feel like the edge is moving so fast you the edge where that did has been created in some sense, you can process on it there and then But I really appreciate you coming on the Cube
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Dave | PERSON | 0.99+ |
Dave Vellante | PERSON | 0.99+ |
IBM | ORGANIZATION | 0.99+ |
30 | QUANTITY | 0.99+ |
Palo Alto | LOCATION | 0.99+ |
Rob | PERSON | 0.99+ |
David | PERSON | 0.99+ |
Boston | LOCATION | 0.99+ |
Dave Volante | PERSON | 0.99+ |
Rob High | PERSON | 0.99+ |
Rob High | PERSON | 0.99+ |
Linux Foundation | ORGANIZATION | 0.99+ |
both | QUANTITY | 0.98+ |
Lennox Foundation | ORGANIZATION | 0.98+ |
one | QUANTITY | 0.98+ |
today | DATE | 0.97+ |
Three | QUANTITY | 0.96+ |
IBM Edge Computing Initiative | ORGANIZATION | 0.95+ |
Think 2020 | COMMERCIAL_ITEM | 0.94+ |
Layton | ORGANIZATION | 0.94+ |
first | QUANTITY | 0.94+ |
Stage one | QUANTITY | 0.94+ |
Cube | COMMERCIAL_ITEM | 0.93+ |
$1,000,000,000 | QUANTITY | 0.93+ |
First | QUANTITY | 0.93+ |
Cube Studios | ORGANIZATION | 0.91+ |
Ginny | PERSON | 0.91+ |
86 | OTHER | 0.9+ |
about 4.5 years | QUANTITY | 0.89+ |
pandemic | EVENT | 0.88+ |
G | TITLE | 0.87+ |
two fairly distinct ways | QUANTITY | 0.85+ |
uber | ORGANIZATION | 0.84+ |
vice president | PERSON | 0.83+ |
trillion dollar | QUANTITY | 0.79+ |
five G | OTHER | 0.77+ |
Edge | TITLE | 0.77+ |
Cover 19 | COMMERCIAL_ITEM | 0.72+ |
CTO | PERSON | 0.72+ |
Edge Application Manager | TITLE | 0.71+ |
think Digital 2020 | EVENT | 0.7+ |
Nevil | TITLE | 0.61+ |
five g. | OTHER | 0.6+ |
Covic | COMMERCIAL_ITEM | 0.55+ |
Open Rise | TITLE | 0.54+ |
Layton | PERSON | 0.54+ |
Maura | ORGANIZATION | 0.47+ |
five | OTHER | 0.47+ |
key characters | QUANTITY | 0.46+ |
Cube | ORGANIZATION | 0.38+ |
Think 2020 | ORGANIZATION | 0.28+ |
Steve Canepa, IBM | IBM Think 2020
>> Announcer: From theCUBE Studios in Palo Alto and Boston, it's theCUBE! Covering IBM Think, brought to you by IBM. >> Hi everybody, welcome back to theCUBE's coverage of IBM 2020, it's the digital IBM 2020, the Think Event Experience. My name is Dave Vellante, and you are watching theCUBE. Steve Canepa is here, he's the global GM of Communications, of the Communications sector for IBM. Steve, how ya doing, good to have you on. >> Doing great Dave, thanks for having me. >> Yeah, you're very welcome. I mean, communications is sort of a broad term for the stuff you covered. Telco, Cable, Entertainment, Broadcast, Publishing, Satellite, Sports, Music, Games, I mean, Social, wow. You run the gamut. >> It's exciting times. >> Pretty big role, yeah, I'll say you've got exciting times. With so much going on in your space, and of course this pandemic is really, you know, hit the communications industry in so many different ways. Some tailwinds, some headwinds, and it's just crazy out there. What are you seeing and what are you guys doing to support clients? >> Well, first and importantly, our thoughts go out to everyone. As we're all dealing with this around the world. I have the opportunity to work with clients, in every geography, around the globe and each and everyone of them is busily dealing with how they make sure their employees are safe, how they're providing services to their customers. And, we're right there alongside them, helping them do that as well. For us in the telecommunication space, as you know, it's actually essential, it's an essential industry that's helping the world deal with this as we are all going virtual like this session we're having today. So we're working with clients to help them get their resources in place so that they can support their businesses, their network platforms, their media services in a way that they can keep the business running. Our telecommunications customers all around the globe had to get their resources and work at home environments, we work with many of them, in deploying real-time services. We also work with them in deploying call center chatbot capabilities so that they could answer questions from their customers, from other members of the community as they were coming in. So tremendous opportunity for us to help them respond to what's happening. >> It's actually quite amazing the response, when you think about telco, you think about telco infrastructure, what comes to mind is, it's hard and it's reliable, it works and all of a sudden you've got all these remote workers. The pace of the pivot has been actually quite astounding. I mean your thoughts on that. >> Yeah and it actually goes hand in glove in what way we've been preparing the industry for generally. I mean there's been this evolution that digital service providers that's been happening in the industry now for a number of years and in fact the center point of what we're doing now to help telcos virtualize and abstract those networks so that they're software based services platforms that can respond to these kinds of peak load demand issues. Not that anyone anticipated COVID, but the ability to have a platform, that can scale your business. And allow you to respond, move services where they need to be moved, be much more agile in the way you work. These are all playing in the ability to respond to it. >> Steve I want to ask you about something you said in a recent article in Forbes, you said, winners in the 5G and edge era will be those who embrace a hybrid multicloud approach." Well, first of all, I want to ask you, I mean five G can't get here fast enough, but still you're kind of predicting, my inference a five g and edge era coming this decade, like I said it can't happen soon enough. What are your thoughts on this coming era? >> In my view there's three fundamental things that are happening simultaneously. So first obviously, five g is emerging. It's showing up now. Most service providers around the world are starting to already deploy their private five g capabilities. We're seeing it show up in evolution form, in consumer marketplace. So five g is here and will continue to scale. The second key transformation that's happening is the telco network itself is becoming a hybrid cloud platform. What I mean by that is that just as when video abstracted as a service and it could be deployed over the top service platforms, enabling things like our interview that we're doing today to happen, that got loaded on top of now open IP platform. The same exact thing is happening in the network domain where the network services, data services, voice service, multimedia services are being put on an open platform architecture that allows you to respond. And then the third key thing that's happening in the market is this edge phenomenon. And this is all about the ability to move workloads, to move services out closer to where things happen and take advantage of those key five g features like ultra low latency, increased bandwidth, and of course the ability to slice the network down to dedicated to a specific application. This opens up a whole new set of services. >> Yeah I mean as I was sort of eluding to before, the reliability of telco networks has been the hallmark of that infrastructure. As we move to this more open sort of standardized environments Steve, I would imagine that one of the technical challenges is maintaining that level of reliability and predictability while at the same time being able to support remote workers, etc low latency workloads. Can you comment on that? >> Yeah so a couple of key points there. One is as you may know, IBM acquired Red Hat a little over a year ago. Red Hat has created an open platform for the telco's to modernize their core infrastructure. And the power of that is we can see is this enormous upstream community now and that community can help accelerate the rate pace of transformation is happening, bring innovation in. That's really powerful. The second is, once we go through an open platform, software based platform, we can infuse automation. Extreme levels of automation, and AI for intelligent predictive capability. And now think about the network becoming a living, breathing, responding platform where it's based on software. So we can deploy services and functions and we can automate those services and functions. That level of intelligence serves as the ability to then get out these services. >> So Steve, definitely we had I think a decent understanding of the Red Hat and the strategy around Open Shift and the container approach, hybrid multicloud. What I didn't realize is that there was specificity around the telco industry. Can you talk more specifically about what IBM is doing in that regard? >> Yeah, it's a great question. Red Hat has a very significant presence in 120 telcos around the globe. And so not only they're Red Hat Linux which is kind of a defacto standard in the marketplace, but their open stack architecture now we're moving after the Open Shift architecture. And as part of that the relationship with an enormous upstream community of talent, it's building on those platforms. And so we're able to really infuse into Red Hat the kind of requirements that are necessary for their software platform to serve as the platform, the open platform for the telcos as we go forward. It has been an incredible synergy. I think of it as kind of two puzzle pieces that fit together incredibly well. At IBM we've had the long standing relationship with all the service providers around the world and helping them transform their business and now with Red Hat we have the opportunity to really integrate what we're doing with automation and AI standpoint with all the power of that Red Hat Platform. >> So where do you see the edge fitting into this hybrid multicloud approach? Is it sort of an extension of cloud? Is it a new cloud? We know we are envisioning this seamless experience between on-prem, cloud, multicloud, and edge. >> Yeah I think of it in a kind of simple venn diagram where you have kind of this virtualized open software based telco network on one side and you have the edge on the other and in the middle you have this kind of combination where you do edge in partnership with the telco. And the idea here is that all industries are going to want to provide a next generation of insights to their customers and to their partners. The ability to move those workloads, so think about a manufacturing shop for an example. You know we've already had IoT centers, hundreds if not thousands of them. Now we can infuse video cameras and take a huge amount of data through the enhanced bandwidth of five g and bring that down to an edge platform and analyze that video data in real time, whether employees are in safe zones, maybe with COVID now even, whether or not they're taking the proper social distancing, and looking at actually everything that's coming off of that platform or manufacturing line, looking at the equipment itself and adding AI to that so that we can analyze it in real time. Edge allows us to take advantage of those five g attributes and to put it wherever that workload should run. Whether it's on the plant floor itself, in proximity to where that equipment is, or back at a central office location within the network of a telco. >> Well this is huge for the telcos because for years, I keep talking about their hardened network, but their cost per bit has been coming down. They're responsible for putting in that infrastructure, maintaining that infrastructure and then you got the over the top providers laying out content growing like crazy, has really disrupted that industry. This is going to change the way in which telcos are able to compete, is it not? >> It's a great point. Yes. If you think about the last generation of evolution you know when we went to four g and smartphones came out, think about the Apple App Store as an example. Folks started not going to the telcos anymore for those services, they went to that OTP capability to get those applications. Now think about about in this edge world as we essentially are creating platforms for innovation for businesses and all industries. And they can now innovate on those platforms and create incredible value in their business and the telcos now can add beyond just the transport capability, but artificial intelligence, automation, they can expose certain data capabilities, they can make those applications smarter, understanding proximity data, that could be applied to things like logistics or pricing or as I said operations like in manufacturing. So a tremendous new set of value in fact most analysts say a trillion dollars in value is going to be created here. And the opportunity I see is that the open network platform becomes a way for the service providers to not only capture value for themselves, but to accelerate the value for businesses in all industries. >> Well I think we're going to see some huge moves in the chess board. More M and A. I mean it's going to be a very exciting time and of course five g's at the heart of it, but Steve I wonder if you could give us IBM's point of view in terms of where we are with five g, I mean sometimes I see it pop up on my phone and I'm like come on, that's not real five g quite yet. We heard recently that Apple might somewhat delay it's new phones that maybe five g's involved in that, but it's going to take some time for that infrastructure to roll out but what's your point of view on sort of that time frame and the business impact that we can all expect? >> Yeah I know, it's a good question. And we will see it roll out over time. Some things are starting to roll out now. Think about stadiums or other venues where you have a manufacturing shop floor as an example, oil rig off the coast. I mean you have environments where you could create five g infrastructure in a private model today and then of course consumer models are going to roll out as cities continue to get deployed by the various service providers. But I think the important point which is what we've spoken about so far, is that as we start to create this platform capability around the edge and we start to transform those network themself to coincide telcos platform, we can start to capture those values today in a four g world and as five g comes along you just essentially evolve into the capabilities that that brings especially with regards to latency and bandwidth. Now some applications where slicing will be really important. Think about a medical operation where a doctor is consulting on a surgery in a remote location. Now if I know for sure that bandwidths going to be there, that doctor no longer has to be in the same location as that robotic equipment as an example. So the ability to have dedicated bandwidth which will come with five g, will be an important attribute that gets added. >> I mean the possibilities are really mind boggling. You mentioned stadiums. Now of course hopefully at some point we'll be able to go to football games again. But I mean the last decade was all about how big can you make the screen in the stadium versus this screen. This is where a lot of the action is going to be now. Replays and just the whole experience, ordering goods and services. And then of course hardened environments like oil rigs etc so really we're not just going to return to the last decade we've been talking about that a lot here. Go ahead please. >> An example that I like to mention just 'cause it kind of brings us all together, think about first responders. Now we're in the midst of the COVID thing but soon in California again unfortunately we'll probably get close to fire season. Think in a five g edge world what that might look like. So the minute that fire starts in some location in California, drones are in the air sending video down to an edge platform that's being analyzed to understand where that fire's going and importantly everything that's in it's path and how to best battle it. Sensors coming in from IoT centers in the area feeding in data. Our weather company app feeding in real time weather statistics, wind path, temperature changes, that are going to influence the way that that that fire performs. And now with the announcement we made Samsung just recently with our edge platform, the ability to have those first responders have sensors on them, Samsung devices that are measuring their vital signs and with the predictive models that are being built, we'll know whether that first responders' in distress or about to be in distress. The ability to scale our inbound communications capability digitally so that chat bots can handle this enormous increase in the amount of folks calling in to get information on what's happening in real time. And of course with the AI in that edge platform. Moving all of that physical equipment, the asset, humans, the first responders, in the optimal position at all times in order to get that fire out as soon as possible. I think it's a good example of how we can see these capabilities come together in a five g and edge world and allow us to get enormous value, saving lives, saving property, responding to an incident like that. >> I mean that's a great example of how you're going to put innovation into action 'cause you touched all points. Imagine the amount of data now that's being created and that example that you just gave, I mean it's just going exponential. Applying artificial intelligence, machine intelligence, and then the other phrase you used is real time. And we're talking about real time or near real time decisions actually being made potentially often times by the machines or in combination with humans so that these actions can be taken of course it's all occurring on an infrastructure that's sort of an expanding definition of cloud, not just on prem, not just hybrid, not just multicloud but now the edge. It's really going to be an exciting 10 years. >> You got it exactly right. And importantly, using that example, once that fire's put out, that edge platform can wind back down to where it was before the incident occurred. But all the intelligence that was gained during that, can be taken to the next incident has it happens. So this agility becomes really powerful 'cause we get the cumulative learning that happens in these models going forward. >> Amazing. So where can people go to get some more information on sort of IBM's edge approach? >> If you go to IBM.com, you'll see information on both on IBM edge solutions that we're putting forward into marketplace and what we're doing specifically with the telecommunication service providers to help them transform their networks to take advantage of this incredible opportunity. >> Well Steve, thanks so much for your time. Really great discussion. I appreciate you comin on and sharing with our community. >> My pleasure. Thank you. >> And thank you everybody. This is theCUBE's continuous coverage of IBM Think 2020, the Digital Event Experience. My name's Dave Vellante. Keep it right there, I'll be right back right after this short break. (relaxing music)
SUMMARY :
brought to you by IBM. of the Communications sector for IBM. for the stuff you covered. to support clients? in every geography, around the globe The pace of the pivot has been but the ability to have a platform, Steve I want to ask you the ability to slice the that one of the technical And the power of that is of the Red Hat and the And as part of that the the edge fitting into and bring that down to an This is going to change the that the open network platform in the chess board. So the ability to have But I mean the last decade the ability to have those first responders and that example that you just gave, But all the intelligence that was gained So where can people go to their networks to take I appreciate you comin on and My pleasure. the Digital Event Experience.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Steve Canepa | PERSON | 0.99+ |
Steve | PERSON | 0.99+ |
Dave Vellante | PERSON | 0.99+ |
IBM | ORGANIZATION | 0.99+ |
Apple | ORGANIZATION | 0.99+ |
California | LOCATION | 0.99+ |
Samsung | ORGANIZATION | 0.99+ |
Dave | PERSON | 0.99+ |
second | QUANTITY | 0.99+ |
Palo Alto | LOCATION | 0.99+ |
Boston | LOCATION | 0.99+ |
hundreds | QUANTITY | 0.99+ |
Red Hat | TITLE | 0.99+ |
telco | ORGANIZATION | 0.99+ |
thousands | QUANTITY | 0.99+ |
telcos | ORGANIZATION | 0.99+ |
third key | QUANTITY | 0.99+ |
10 years | QUANTITY | 0.99+ |
first | QUANTITY | 0.99+ |
Telco | ORGANIZATION | 0.99+ |
today | DATE | 0.99+ |
theCUBE | ORGANIZATION | 0.99+ |
120 telcos | QUANTITY | 0.98+ |
two puzzle pieces | QUANTITY | 0.98+ |
first responders | QUANTITY | 0.98+ |
one | QUANTITY | 0.98+ |
One | QUANTITY | 0.98+ |
both | QUANTITY | 0.98+ |
theCUBE Studios | ORGANIZATION | 0.97+ |
last decade | DATE | 0.97+ |
one side | QUANTITY | 0.97+ |
Red Hat | ORGANIZATION | 0.96+ |
Red Hat Linux | TITLE | 0.95+ |
Think 2020 | COMMERCIAL_ITEM | 0.95+ |
five g | ORGANIZATION | 0.94+ |
each | QUANTITY | 0.94+ |
first responders' | QUANTITY | 0.91+ |
Think Event Experience | EVENT | 0.9+ |
a year ago | DATE | 0.88+ |
IBM 2020 | EVENT | 0.88+ |
five g | QUANTITY | 0.85+ |
IBM | EVENT | 0.84+ |
this decade | DATE | 0.83+ |
COVID | TITLE | 0.82+ |
Apple App Store | TITLE | 0.82+ |
trillion dollars | QUANTITY | 0.79+ |
three fundamental things | QUANTITY | 0.79+ |
COVID | OTHER | 0.79+ |
five g | TITLE | 0.75+ |
g | OTHER | 0.75+ |
four g | ORGANIZATION | 0.69+ |
DO NOT PUBLISH Nick Barcet, Red Hat | Red Hat Summit 2020
>>Hi and welcome back to Red Hat. Summit 2020. This is the Cube, and I'm your host. Stew minimum. We're talking so many topics. This event happening globally. We're treating our partners in the red hat executives where they are around the globe. And I guess right now is Nick Carr said, Who's the senior director of technology strategy with Red Hat, And Nic is coming to us. He's early in the Bahamas, speaking to us from his boat, though. Nick, pleasure to see you. And thanks so much for joining us. >>Very nice to meet you. Yeah, remote employees. And I enjoy that a lot. >>Absolutely. So we've been talking your team a lot. Of course. You know, many employees of Red Hat already were remote, but everyone now is working where they are. You're gonna be about a topic, of course, which is even more about riveted solutions. And where things are, we're going to talk about edge and five G before we get into the topic. It's a little bit about your background, how long you've been with red hat. And you know what? Your what your role is. >>So I joined right as a little more than five years ago after the acquisition. Off of all the companies that was working on open stack. Interesting technology. I've been in open source for the past 20 more years. Um, I was, uh, working miss of many distributions of Lennox over the years, so I consider myself in open source veteran. >>Excellent. I I remember that acquisition. We had the Cube at the open stack summit for many years on that, um, you know, new the company before the acquisition >>of the >>brand. And frankly, >>though, let's talk about it. First of all, you know, you talk about edge. Edge means different things to a >>lot of people >>are talking about it >>from a >>career perspective. You know, every customer in the Iot piece. Where does Red Hat into the whole notion of edge on? You know what kind of pieces of the portfolio? Yeah. >>So obviously, edge is about building an infrastructure that goes as far as possible to be as close as possible to where people are either producing or consuming data and building infrastructure as always, being the very heart off what Red Hat has been doing. And we've been growing. That's infrastructure capability. over time. So that means that today we feel the need to fulfill the requirements of those customers that want to extend their infrastructure to there. Because when we say the edge, we have to be countries that we're talking about. Like the layers of an onion more You dig into it. The more layers you find, the more particle case you have. There's no way there is a single. >>Yeah, no, you're absolutely right. So, you know, back in the open stack days, we talked a lot about in it, though Some of the barriers I know I've spoken to prizes. Who's, You know, we are of red Hat, though, you know, Maybe start there and help us understand. You know, where are we with the solution? Uh, talk about how five g fits into it. Of course. Everybody's talking about five feet. Well, that will take time, but help us understand where we are today. >>So, um, obviously for us, the edge years, just an extension of our open ivory clouds. Right? We have always been very vocal in saying that you need to be able to deploy the same workload in any place, and the edges are Justin extensions off these anyplace. So the same strategy that we've been developing first we use open stack, uh then with open shift and making open shift are both our development and our deployment platform for all types of workloads having open shift now, this report normally container based workloads, but also the visualization based workloads are exactly what we are doing at the edge. We want people to be able to deploy a single type of platform on various types of fruit brands managers globally. Ah is complete consistency so that there is no extra cost in maintaining those thousands, sometimes millions off added location into their existing infrastructure off course. In order to do that, we need to develop new tools to do the management to develop new AI or machine learning technology, to help people process not only the data coming from the platform, but also the management of the platform itself. We are reaching such scales that we wouldn't be able to do it. We've out. You are no from the platform yourself. >>Yeah, absolutely. And of course, scale is a relative before rise in. Yeah, I've talked to a couple of times. My understanding you've got news related. This that horizon went off? >>Yeah. This week Horizon has bean announcing ah, reinforce partnership between our two companies to help them heal their edge Platform. Ah, here we are talking about the first step in their edge platform which years? What we call the extension off the board we are talking about developing small data centers are going to be closer to the certainly. Um, And here we are talking about scales that, um can comprise to hundreds of data center, each having to 20 machines or more, um, to do all the processing of their future five g network and further, um, five g years, one off the enabler off edge. But it's also the reason for telcos to start deploying their edge network because the have a requirement to boot treatments off the information closer to where the five g antennas. And this is what we are developing. >>Alright. So, Nick, we talked. You've talked a minute ago about open stack and open fifth, help our audience understand a little bit. We've already talked a lot of customers. You don't. You can have one without the other, or you can layer off of the open stack when it comes to the the solution that you're talking about Verizon or ah, you know, other other service providers out there is it? Is it one is in both eyes that I've been there, Help us understand. >>So currently we have a complete shorts. We can do an edge platform. So Levi's open stack. You've got multiple customer doing that around the world. We can build an edge platform. We is open shift on top of the stack. But if we look at a future as we are, you know, designing it, we are looking at enabling simplicity and simplicity. Means deploying a single seeing open shift on to bare metal and have these bare metal platform deal we both vm and container so that you only have one AP I. You only have one management. You only have one thing to worry about. And since open shift and bark the OS, um, there is extreme simplicity in the methodology for updating or upgrading, and I think this is going to be a key point, making things simple, reducing the number of layers in your set. >>All right, that that really intrigued Nick, help us understand a little bit this ICO, Obviously any red hat doing is open source. It's how you're for that, you know, Red hat does. But you know how you're involved in the industry to help make the word that as edge solutions roll out that customers have flexibility in the first place. >>So you have multiple tee off partnership in this industry, you've got the partnership that are built around community and we are participating in numerous community, like the Lennox Foundation. Edge on many, many more. And this is where we are building the fundamental block off our future solutions we have. Partnership also is multiple vendor. Every time you're dealing with is a specific vertical. You will have a certain number of vendors that are going to be the one enabling 80% of the applications are going to be deployed, and that's okay for the edge. And then you have the partnership we made. We see our customers because the best source off requirements are always our customers. And that's something that we've now made a strong principle, which is to always find early adopters with when we are going to build a solution in a vertical sector on the horizon is one of them has been one of them. For what, a few years now and then replicate this success on to other customers of same sex. And we are reproducing this in the industry and manufacturing sector and in many other virtual. >>Excellent. Uh, you talked earlier about the open hybrid cloud. Obviously talk about they right, Wild help us understand, Nick. You know, edge and cloud. How do they actually go together? Many people. First of all, the people living article that was, you know, edge kills the cloud we've been talking about for a while. We know everything in i t is always additive. But how should customers on the surface but really be thinking about how edge cloud fit together >>in our design? The cloud and the edge is the same thing. You address the edge, you address the cloud, you should address your on premise art where the same way you use the same guy. And this driving FBI ease of communities, FBI, which we deliver through open ship. Um, soon. What is the difference? The difference is going to be who owns the edge, or we also machine running in your cloud who owns the machine running in your private data center. What network you're using, you're going to have Ah, a lot of constrained are going to be a bit more complex when you aren't yet. For example, you are sometimes going to go through the satellite connection. These huge delays in communication you're sometime going to put machines location that are absolutely not secure. So you need to have security layers. You're ensuring that nobody can remember these machines. These are you know it. But overall, once the deployment has done, we really, really on. People should consider that's their edge piece parts of their cloud or vice versa. >>Yeah, Nick, you brought up a lot of good points there. Security, of course. Critical. A one piece that I want to get your honest about. So we're spending a few years really looking at in a worker's process at the edge. What that's brought back core talk about AI work. Both generally understood praying things out at the edge. That's gonna happen. You know more of the core and then get out of the overall devices. What do you seeing where your customers But that overall, when it comes to their data. And >>from a technical perspective, data is the real real motivation about yet they are generating so much data that we are not able to process it anymore in a central location. So we have to process this data locally where it is generated. Or I suppose it's possible to where it is generated before sending, Let's say, a summary of these data or alerts or whatever the business process that pulls for to the center of operation. The use cases that we are demonstrating in this week, uh, that you can watch through the demo booth or you can watch increases. Ah, known presentation. Use the pays off manufacturer, which is installing sensors on many of the machine producing oh stuff. And when you have the right sensors like the vibration sensor or a temperature sensor, you can very easily develop knowledge off. Oh, this machine is going to break in a short amount of time. Maybe I should start scheduling some preventive maintenance on these machines, and you can do that by just actually leading the data and have humans read it. And you can do that a lot more efficiently. Training a machine learning algorithm This is what we are demonstrating that is processing the data and sending the alerts in real part when issues are discovered. Um, all this off course needs to be down in a very scalable fashion. Here we are talking about a use case where the customer may have 50 factories >>around the world. >>Are you updates all these machine learning models in all the factories when you have an update percent to learn about something you so data and data processing and now the eye. But big data are the heart off all of the use cases we, uh, discovered around old verticals for edge. And this is why we are now almost joining forces between the team working on AI. That's right out producing the open data hub and the team marking teams working on our solution. >>Yeah, I'm really glad you brought up manufacturing as the is one of the verticals. Look at their one of the turns and challenges we saw with all of that is yeah, some of the organization, Specifically, if you look at manufacturing, it could be an ot. Um, I'm curious is you're seeing solutions. Roll out your work, Aziz. How Customers are getting beyond those barriers. You know, some of the traditional silos where there was thoroughly collaborate. >>Well, it's always Ah, problem. Every time you introduce a change, you have to manage this in every project off, deploying something you anywhere well, fail if you do not account for the human factor and edge is no different in that. And when you're talking about the factory, if you're not directly talking with the people on the floor well, regarding their needs, you're only talking is a central guy. And you just arrived one day saying, Oh, everything is going to change. It's going to be a failure that the same way is a failure when the government make a decision without going through a consultative process before implementing it. So, um, nothing new, I would say. But as usual, And maybe because of the scale of edge, yeah, we will need to ensure that our customers are aware of those challenges that lay ahead of us. >>Alright, Well, next sounds Sounds like a lot of good progress. Been made definitely further breakout. What? From summit? You learn more. Thank you so much for joining. >>Thank you for having me >>all right. More coverage from the Cube at Red Hat Summit 2020. I'm screaming a man and as always what? Alright, Nick. Good stuff.
SUMMARY :
He's early in the Bahamas, speaking to us from his boat, And I enjoy that a lot. And you know what? Off of all the companies that was working on open stack. We had the Cube at the open stack summit for And frankly, you know, you talk about edge. You know, every customer in the Iot piece. the more particle case you have. So, you know, back in the open stack days, we talked a lot about in You are no from the Yeah, I've talked to a couple of times. one off the enabler off edge. or you can layer off of the open stack when it comes to the the And since open shift and bark the OS, um, there is extreme But you know how you're involved in the industry one enabling 80% of the applications are going to be deployed, First of all, the people living article that was, You address the edge, you address the cloud, you should address your on premise You know more of the core and then get out of the overall And when you have the right sensors like the vibration sensor and data processing and now the eye. some of the traditional silos where there was thoroughly collaborate. And you just arrived one day saying, Oh, everything is going to change. Thank you so much for joining. More coverage from the Cube at Red Hat Summit 2020.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Nick Carr | PERSON | 0.99+ |
Nick | PERSON | 0.99+ |
Nick Barcet | PERSON | 0.99+ |
20 machines | QUANTITY | 0.99+ |
two companies | QUANTITY | 0.99+ |
Red Hat | ORGANIZATION | 0.99+ |
FBI | ORGANIZATION | 0.99+ |
Bahamas | LOCATION | 0.99+ |
Verizon | ORGANIZATION | 0.99+ |
Nic | PERSON | 0.99+ |
50 factories | QUANTITY | 0.99+ |
80% | QUANTITY | 0.99+ |
thousands | QUANTITY | 0.99+ |
first step | QUANTITY | 0.99+ |
Lennox Foundation | ORGANIZATION | 0.99+ |
Lennox | ORGANIZATION | 0.99+ |
both eyes | QUANTITY | 0.99+ |
Levi | ORGANIZATION | 0.99+ |
millions | QUANTITY | 0.98+ |
one | QUANTITY | 0.98+ |
both | QUANTITY | 0.98+ |
today | DATE | 0.98+ |
one thing | QUANTITY | 0.98+ |
red hat | ORGANIZATION | 0.98+ |
first | QUANTITY | 0.97+ |
Aziz | PERSON | 0.97+ |
Both | QUANTITY | 0.97+ |
each | QUANTITY | 0.97+ |
this week | DATE | 0.97+ |
Summit 2020 | EVENT | 0.96+ |
First | QUANTITY | 0.96+ |
hundreds of data center | QUANTITY | 0.96+ |
one piece | QUANTITY | 0.96+ |
fifth | QUANTITY | 0.94+ |
Red Hat Summit 2020 | EVENT | 0.91+ |
single | QUANTITY | 0.89+ |
g | ORGANIZATION | 0.89+ |
open stack | EVENT | 0.88+ |
a minute ago | DATE | 0.88+ |
single type | QUANTITY | 0.87+ |
one day | QUANTITY | 0.86+ |
Cube | ORGANIZATION | 0.84+ |
five g | ORGANIZATION | 0.84+ |
ek Horizon | ORGANIZATION | 0.83+ |
five g | ORGANIZATION | 0.83+ |
Edge | ORGANIZATION | 0.82+ |
five feet | QUANTITY | 0.78+ |
five years ago | DATE | 0.73+ |
one management | QUANTITY | 0.72+ |
times | QUANTITY | 0.72+ |
telcos | ORGANIZATION | 0.69+ |
past 20 more years | DATE | 0.64+ |
couple | QUANTITY | 0.64+ |
edge | ORGANIZATION | 0.64+ |
more than | DATE | 0.6+ |
five | QUANTITY | 0.58+ |
hat | ORGANIZATION | 0.58+ |
Cube | PERSON | 0.56+ |
Red | TITLE | 0.53+ |
Justin | PERSON | 0.5+ |
Breaking Analysis: VMware Announces vSphere 7
>>from the Silicon Angle Media office in Boston, Massachusetts. It's the Cube now here's your host, Dave Vellante. >>Hello, everyone. And welcome to this breaking analysis. We're here to assess the VM Ware v Sphere seven announcement, which is the general availability of so called Project Pacific. VM Ware has called this the biggest change to V sphere in the last 10 years. Now Project Specific Pacific supports kubernetes and natively in VM Ware environments. Why is this important? This is critical for multi and hybrid cloud because Kubernetes and its surrounding orchestration enable application portability and management. Yeah, as we've been reporting, VM Ware is one of the big players eyeing multi cloud, along with a crowded field of aspirants that include IBM with Red hat, Microsoft, Cisco, Google and a host of specialists in the ecosystem. Like how she and rancher as well play. Some players have focused in their respective stack swim lanes like security and data protection, storage, networking, etcetera. And with me to dig into this announcement is stew. Minutemen's Do is a senior analyst at Wiki Bond and co host of The Cube is too good to see you and let's get into it great to talk about this state. Okay, so the Sphere seven, what is being announced? And why is it relevant? >>Yes. So, David, as you said in the open, this is the general availability of what they talked about at VM World 2019 as Project Pacific. So it really is integrating kubernetes into V sphere. The VM ware, of course, will position this is that they're now enabling, you know, the 90% of the data centers around the world that have VM ware. Hey, your kubernetes enabled. Congratulations. You're cloud native. Everything like that. Only being a little facetious here. But this is very important. How do we get from where we were to live in this more cloud? Native environments. So containers in general and kubernetes specifically are being a first class citizen. There's a lot of work, Dave, and my understanding this has been going on for a number of years. You know, it's not like they just started working at this six months ago. A overhaul to how this works. Because it's not just we're going to stick a couple of containers on top of, you know, the guest operating system in the virtual machine. But there is a supervisor cluster for kubernetes at the hyper visor level. And there's a lot of, you know, in the weeds things that we're all trying to understand and figure out because you've got you know, we've got a hyper visor and you've got VM. And now you've got the containers and kubernetes on. Some of them are living in my data center. Some VM ware, of course, lives on multiple clouds like the VM ware on AWS. Solutions of this will go there on and, you know, how do I manage that? How does this impact my operations? You know, how did this change my application portfolio? Because, you know, the early value proposition for VM Ware always was. Hey, you're gonna put VM ware on there. You don't need to touch your applications. Everything runs like it did before you were running windows APS on a physical server. You move into virtual. It's all great. There's a lot of nuance and complexity. So when VM Ware says this is the biggest change in a decade probably is, I think back to you know, I remember when the fx 2.0, rolled out in V motion really changed the landscape. That was big V balls. Move to really ah storage. To really understand that architecture and really fix storage was was a huge undertaking that took many years. This this definitely stacks up with some of those previous changes to really change the way that we think about VM Ware. I think the advertising you have even seen from being where some places is don't think of them as VM ware their cloud where our container ware with like because vm zehr still there. But VM Ware is much more than VMS today, >>so this feels like it's bm were trying to maintain its relevance in a cloud native world and really solidify its because, let's face it, VM Ware is a platform that Pat Gelsinger's has ride. The Waves tried many times in many angles to try to ride the cloud wave, and it's finally settled on the partnerships with AWS specifically. But others on DSO really Is this their attempt to become cloud native, not get left behind and be cloud naive? His many say >>Yeah, great question, David. Absolutely. There's the question as to you know what's happening with my applications, you know lots of customers. They say, Well, I'm just going to satisfy the environments. Watched the huge growth of companies like service now workday. Those applications, well, customers don't even know what they live on. Do they live on virtualization? Environment is a containers I don't need to worry about because SAS takes care of that. If I'm building modern applications, well, I'm probably not starting with VMS. Containers are the way that most people are doing that. Or they might even be going serverless now if we take these environments. So how does VM ware make sure that they have the broadest application support? Kubernetes really won the container orchestration wars on. And this is a way that VM ware now can enable customers to move down that path to modernize their environments on. And what they wanna have is really some consistency between what's happening in the cloud and happening in the environments that they control >>themselves. Vm ware saying that containers in our first class citizen within v sphere what does that mean? Why is that important? First of all, are they really And what does that mean? And why is that important? >>Yes. So, Dave, my understanding is, you know, absolutely. It's their, You know, the nuances that you will put there is. You know, we're not just running bare metal servers with Lennox and running containers on top of it. It is. You're still sitting on top of the hyper visors. One of the things I'm trying to understand when you dig down is you know what? The device driver level VM ware always looked a little bit like Linux. But the people that use it and operate it, they're not letting people Dave, these, you know, the OS. The number one os that always ran on VM ware was Windows and the traditional applications that ran there. So when we talk about containers and we're enabling that in a kubernetes environment, there are some questions about how do we make sure that my applications get certified? Dave, you got a lot of history knowing things like s ap and Oracle. I need to make sure that we've tested everything in this works. This is not what we were running traditionally in VM ware and VM ware. Just thanks. Hey, v Sphere seven, turn the crank. Everything certified Well, I would tell customers make sure you understand that your application has been tested, that your Eyes V has certified this environment because this is definitely, as VM Ware says, a huge architectural change. So therefore, there's some ripple effects to make sure that what I'm doing in this environment stays fully supported. Of course, I'm sure VM Ware is working with their huge ecosystem to make sure that all the pieces or environment you mentioned things like data protection. We absolutely know that VM Ware is making sure the day one the data protection plugs in and supported in these environments when you're using the kind of kubernetes persona or containers solutions in V sphere. >>Well, this brings me to my next question. I mean, we were talking to Bernard Golden the other day and he was saying, You know, Kubernetes is necessary for multi cloud, but it's insufficient. And so this seems to me to be a first step and, as I say, VM ware maintaining and growing its relevance. But there's gonna be a roadmap here that goes beyond just containers and portability. There's other management factors you mentioned security of enabling the ecosystem to plug in. So maybe talk about that a little bit in terms of what's necessary to really build this out over the next >>decade. And actually, it's a great point. So, first of all, you know, V. Sphere, of course, is the core of VM Ware's business. But there's only a piece of the overall portfolio said this lives in. I believe they would consider this part of what they call their Tansu family. Tando is their cloud native overarching piece of it, and one of the updates is their product hands admission control. Which of the existing product really came out of the Hep D Oh acquisition is how we can really manage any kubernetes anywhere, and this is pure software. Dave. I'm sure you saw the most recent earnings announcement from VM Ware, and you know what's going sass. What's going subscription? VM Ware is trying to build out some of their software portfolio that that isn't kind of the more traditional shrink wrap software, so Tan Xue can manage any kubernetes environment. So, of course, day one Hey, obviously or seven, it's a kubernetes distribution. Absolutely. It's going to manage this environment and but also if I've got Cooper days from azure kubernetes from Amazon communities from other environment. Tanja can manage across all of those environments. So when when you're what VM Ware has always done. If you think back in the early days of virtualization, I had a lot of different servers. How do I manage across those environments? Well, VM ware was a layer that lived across them. VM Ware is trying to do the same thing in the cloud. Talk about multi cloud. And how do I manage that? How do we get value across them? Well, there's certain pieces that you know VM Ware is looking to enable with their management software to go across them. But there are a lot of other companies, you know, Amazon Google actually not Amazon yet for multi cloud. But Microsoft and Google absolutely spent a lot of time talking about that in the last year. A swell as you mentioned. Companies like Rancher and Hashi Corp absolutely play across What Lots of these multi cloud. Well, >>let's talk about the competition. Who do you see is the number one competitors >>Well, so the number one competitor absolutely has to be red hat, Dave. So you know, when I've been in the kubernetes ecosystem for a number of years for many years. When I talk to practitioners, the number one, you know what kubernetes you're using? Well, the answer for many years was, Well, I'm grabbing it, you know, the open source and I'm building my own stack. And the reason customers did that was because there wasn't necessarily maturity, and this was kind of leading edge, bleeding edge customers in this space. The number two besides build my own was Red Hat was because I'm a red hat customer, a lot of Lennox tooling the way of building things the way my application developers do. Things fit in that environment. And therefore, that's why Red Hat has over 2000 open shift customers leading distribution for Kubernetes. And you know, this seems purely directly targeted at that market. That red hat did you know it was a big reason why IBM spent $34 billion on the Red Hat acquisition is to go after this multi cloud opportunity. So you know, absolutely this shot across the bow because Red Hat is a partner of VM Ware's, but absolutely is also a competitive >>Well, Maritz told me years ago that's true. We're with everybody and you could see that playing out. What if you look at what VM Ware could do and some of their options if they gave it away, that would really be a shot across the bow at open shift, wouldn't it? >>Yeah, absolutely, Dave, because kubernetes is not free if you're enabling kubernetes on my Google environment, I, you know, just within the last week's awesome things that were like, Okay, wait. If you're testing an environment, yes, it is free. But, you know, started talking about the hourly charges for the management layer of kubernetes. So you know kubernetes again. A color friend, Cory Quinn. Communities absolutely is not free, and he will give you an earful and his thoughts on it s o in Amazon or Google. And absolutely, Dave, it's an important revenue stream for red hat. So if I'm vm ware and you know, maybe for some period of time, you make it a line item, it's part of my l. A. You know, a good thing for customers to look out for is when you're renegotiating your l a toe, understand? If you're going to use this, what is the impact? Because absolutely, you know, from a financial standpoint, you know, Pat Gelsinger on the VM Ware team has been doing a lot of acquisitions. Many of those Dave have been targeted at this space. You know, not to step Geo, but a bit NAMI. And even the pivotal acquisition all fit in this environment. So they've spent billions of dollars. It shouldn't be a net zero revenue to the top line of what VM Ware is doing in the space. >>So that would be an issue from Wall Street's perspective. But at the same time, it's again, they're playing the long game here. Do we have any pricing data at this point? >>So I still have not gotten clear data as to how they're doing pricing now. >>Okay, Um, and others that are in there and in the mix. We talked about Red Hat. Certainly Microsoft is in there with Arc. I've mentioned many times Cisco coming at this from a networking perspective. But who else do you see and then Antos with Google? >>Yeah. And you know, Dave, all the companies we're talking about here, you know, Pat Gelsinger has had to leverage his intel experience to how to balance that line between a partner with everybody but slowly competing against everybody. So, you know, we've spent many hours talking about the VM Ware Amazon relationship. Amazon does not admit the multi cloud a solution yet and does not have a management tool for supporting all of the kubernetes environment. But absolutely Microsoft and Google do. Cisco has strong partnerships with all the cloud environment and is doing that hybrid solution and Dave Justice nothingto expand on a little bit there. If you talk about V sphere, you say, Okay, Visa or seven trolling out Well, how long will it take most of the customer base to roll to this environment? There will be some that absolutely want to take advantage of kubernetes and will go there. But we know that is typically a multi year process to get most of the install base over onto this. And if you extend that out to where VM Ware is putting their solution into cloud environments, there's that tension between, you know, Is there a match actually, between what I have in my data center and what is in the managed environment managed by VM Ware and Amazon, or manage for to support some of the other cloud environment. So the positioning always is that you're going to do VM Ware everywhere, and therefore it's going to be consistent everywhere. Well, the devil's in the details because I have control on what's in my data center, and I might have a little bit less control to some of those managed services that I'm consuming. So absolutely something to keep a close eye on. And not just for VM, where everybody is having these concerns. Even if you talk about the native kubernetes distributions, most of the kubernetes services from the cloud providers are not, you know, immediately on the latest revision of kubernetes, >>right, So Okay, well, let's let's talk about that. Remember when open Stack first came out? It was a Hail Mary against Amazon. Yeah, well, the new Hail Mary and looks like it has more teeth is kubernetes right, because it allows portability and and and of course, you know Amazon doesn't publicly say this, but it's not. That's not good for Amazon. If you're reporting things, applications, moving things around, moving them out of the Amazon cloud, and that makes it easier. Of course, Amazon does support kubernetes right, But you've got >>alternatives. So, David, it's fascinating. So I've talked to many practitioners that have deployed kubernetes and one of the top reasons that they say that why they're using Kubernetes is so they have options with the cloud. When you also ask them what cloud they're running, they're running Amazon. Did they have planned to move off of it? Well, probably not. I had a great customer that I didn't interview with that one of the Cube con shows, and they actually started out with Azure just because it was a little further head with kubernetes and then for the services they wanted. They ended up moving to AWS and Dave. It's not a click a button and you move from one kubernetes to another. You need toe match up and say, Okay, here's the five or six services I'm using. What are the equivalent? What changes do I need to make? Multi cloud is not simple. Today, I mentioned Hashi Corp is one of those companies that help people across these environments. If you have haji solution and you're managing across multiple clouds, you look in the code and you understand that there's a lot of difference between those different clouds, and they simplify that. But don't eliminate it. Just it is not. There is not a way today. This is not a utility when you talk about the public cloud. So you know Kubernetes absolutely is existentially a little bit of a threat to Amazon but Amazon still going strong in that space. And you know that the majority of customers that have deployed kubernetes in the public cloud are doing it on Amazon just because of their position in the marketplace and what they're. >>So let's double click on that. So Jassy, an exclusive interview with John Furrier before last year's re invent, said, Look, we understand there's a lot of reasons why people might choose multiple clouds, you know, go through them in a developer preference. And I think I think, you know, people want o optionality and reduce lock in potentially. But I've always said, by the way, just as an aside, that that the risk of lock in it is far down on the list relative to business value, people will choose business value over over, you know, no lock in every time. About 15% of the customers you might not agree. Nonetheless, Jassy claimed that typically when you get into a multiple cloud environment, he didn't use the term multi cloud that it's it's not a 50 50. It's a premier primary cloud supplier. So might be 70 30 or 80 20 or even 90 10. But it's really that kind of, you know, imbalance. First of all, do you see that? And then what does that mean for how they approach of this space? Multi cloud and in particular. >>So I'm sorry. You're asking how Amazon should approach the space. And you've said that I don't think they'll >>eventually enter this market place. >>Yeah, you know, absolutely, Dave. You know, first of all, in general, yes, I do agree. It is not. There are certain financial companies that, you know, have always chosen two of everything. Because for regulation and you know certain we need to protect ourselves. We're gonna have to suppliers. We're going to keep them as even as possible. But that is a corner case. Most customers I have a primary cloud. That's what I'm doing. That what I t tries to get everybody on and you need to have Is there a reason why you want to use a secondary or tertiary cloud because there's a service that they need. Of course, Google. You often run it. It's like, Oh, well, there's certain data services that they're doing well And, of course, the business productivity solutions that Microsoft's doing where the relationship with Oracle that are driving people towards Microsoft. But just as we saw Amazon soften on their hybrid solutions, we spent a lot of time at re invent talking about all the various hybrid solutions. Um, since their customers are going to have multiple clouds on and even you take most of their customers that have M and a involved you buy another company, they might be using another cloud. As Microsoft's position in the marketplace has grown, you would expect that Amazon would have not just migration services but management services to match what customers need, especially in this kubernetes environment, seems that it seems a natural fit for them. It's possible they might just leverage, you know, partnerships with red hat VM ware, you know, in some of the other players for the time being. But if the market gets big enough and customers are asking for it, that's usually when Amazon response >>So let's let's wrap with what this means to the customer. And I've said that last decade really multi cloud was a symptom of multi vendor and not so much of the strategy that's changing. You know, clearly, jokes CIOs are being called in to clean up the crime scene on do you know, put in edicts corporate edicts around security and governance and compliance and so forth. So it started to become a complicated situation for a lot of companies. We've said that multi cloud is gonna it's gonna be they're going. People are going to put the right war load and the right cloud, etcetera, and this advantages to certain clouds. But what should customers be thinking specifically as it relates to v. Sphere seven? >>Yes. So, Dave, the biggest thing I would say that people need to look at it is that understanding in your organization that that boundary and line between infrastructure and application people have often looked at you looked at the ascendancy of VM Ware, Andi V. M's and then what's happening with cloud and containers. And we think of it from an infrastructure standpoint that I'm just changing the underlying pieces. This is where it lives and where I put things. But the really important thing is it's about my data and my applications, Dave. So if I'm moving an application to a new environment, how do I take advantage of it? You know, we don't just move it to a new environment and run it the same way we were doing it. I need to take advantage of those new environments. Kubernetes is involved in infrastructure, but the real piece is how I have my application, my developers, my app. Dev's working on this environment and therefore it might be that if VM Ware's the right environment, I'm doing a lot of it that the development team says, Hey, I need you to give me a pool and provisioned this for me and I can have my sandbox where I can move really fast. But VM Ware helped initially customers when they went from physical to virtual, move faster. From an infrastructure standpoint, what it needs to do to really enable this environment is help me move faster on the application side. And that's a big gap from VM. Ware's history is where the pivotal people and hefty O people and bit NAMI and all the new people are helping along to help that whole cloud native team. But that is a big shift from customers. So for this to be successful, it's not just, oh, the virtualization admin. He upgraded to the new thing. He made some changes and said, Okay, hey, I can give you a kubernetes cluster when you need it. It's really understanding what's going to happen on the application side in a lot of that is going to be very similar to what you're doing in cloud environments. And I think this is Dave often where your customers, they say, Oh, well, I did that cloud and it was too expensive and it was too hard, and I repatriated. Everything else is, well, you probably didn't plan properly and you didn't understand what you're getting yourself into. And you jumped into the deep end of the pool and oh, wait, I forgot how to learn how to swim. So you know, that is where we are. You know, Dave, you know the technology parts. Always the easiest piece. It's getting all of the organizational and political things sorted out. And you know the developer we know how important that is, we're seeing. It's great to see VM Ware pushing faster in this environment. Kudos to them for how fast they moved. Project Pacific to G. A. That is really impressive to see and can't wait to hear the customers roll out because if this is successful, we should be hearing great transformation stories from customers as to how this is enabling their business, enabling them to move faster on. You know, that has been what, one of the favorite stories that I've been telling with customers on the Cube last couple of years. >>The vast majority of VM Ware's business, of course, is on print, and essentially they're doing here is enabling developers in their customer base and the half a 1,000,000 customers to really develop in a cloud native manner. The question is, you know, from a ah, from a cultural standpoint, is that actually gonna happen? Or the developers gonna reject the organ and say, No, I want to develop in AWS or Microsoft in the cloud. I think VM Ware would say, We're trying to embrace no matter where they want to develop, but they're still going to be. That's interesting organizational tension or developer attention in terms of what their primary choices is. They're not. >>Yeah, Dave, Absolutely. We've been saying for years. That cloud is not a location. It is an operating model. So this is helping to enable that operating model more in the data center. There's still questions and concerns, of course around, you know, consumption on demand versus you know, whether whether you've bought the entire thing as more and more services become available in the public cloud, are those actually enabled to be able to be used, you know, in my data center hosted environment. So you know, this story is not completed, but we're definitely ready. I believe we're saying it's the multi clouds Chapter three of what? We've been watching >>you and you're seeing a major tam expansion yet again from VM Ware that started with the NSX. And then, of course, went in tow networking and storage. And now they've got a cloud security division. We're talking about the the cloud native capabilities here and and on and on, it goes to thanks for helping us break this VC seven announcement down and good job fixed. All right. And thank you for watching everybody. This is Dave Volante for stew Minimum. We'll see you next time on the Cube. >>Yeah,
SUMMARY :
It's the Cube now VM Ware has called this the biggest change to V sphere in the I think back to you know, I remember when the fx 2.0, rolled out in V motion many times in many angles to try to ride the cloud wave, and it's finally settled on the partnerships There's the question as to First of all, are they really And what does that mean? One of the things I'm trying to understand when you dig And so this seems to me to be a So, first of all, you know, V. Sphere, of course, is the core of Who do you see is the number one competitors When I talk to practitioners, the number one, you know what kubernetes you're using? and you could see that playing out. you know, started talking about the hourly charges for the management layer of kubernetes. But at the same time, But who else do you see and are not, you know, immediately on the latest revision of kubernetes, because it allows portability and and and of course, you know Amazon doesn't publicly This is not a utility when you talk about the public cloud. But it's really that kind of, you know, You're asking how Amazon should approach the space. you know, partnerships with red hat VM ware, you know, on do you know, put in edicts corporate edicts around security and governance and compliance and And you know the developer we know how important that is, The question is, you know, So this is helping to enable that operating model more in the data center. And thank you for watching everybody.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
David | PERSON | 0.99+ |
Pat Gelsinger | PERSON | 0.99+ |
Amazon | ORGANIZATION | 0.99+ |
Dave Vellante | PERSON | 0.99+ |
five | QUANTITY | 0.99+ |
Dave | PERSON | 0.99+ |
Microsoft | ORGANIZATION | 0.99+ |
ORGANIZATION | 0.99+ | |
Cisco | ORGANIZATION | 0.99+ |
Dave Volante | PERSON | 0.99+ |
90% | QUANTITY | 0.99+ |
AWS | ORGANIZATION | 0.99+ |
Oracle | ORGANIZATION | 0.99+ |
Cory Quinn | PERSON | 0.99+ |
Jassy | PERSON | 0.99+ |
IBM | ORGANIZATION | 0.99+ |
Maritz | PERSON | 0.99+ |
Rancher | ORGANIZATION | 0.99+ |
Bernard Golden | PERSON | 0.99+ |
Red Hat | ORGANIZATION | 0.99+ |
John Furrier | PERSON | 0.99+ |
VM Ware | TITLE | 0.99+ |
VM Ware | TITLE | 0.99+ |
$34 billion | QUANTITY | 0.99+ |
six services | QUANTITY | 0.99+ |
VMware | ORGANIZATION | 0.99+ |
Windows | TITLE | 0.99+ |
Hashi Corp | ORGANIZATION | 0.99+ |
Today | DATE | 0.99+ |
Hashi Corp | ORGANIZATION | 0.99+ |
two | QUANTITY | 0.99+ |
Boston, Massachusetts | LOCATION | 0.99+ |
last year | DATE | 0.99+ |
Wiki Bond | ORGANIZATION | 0.99+ |
VM World 2019 | EVENT | 0.99+ |
Dave Justice | PERSON | 0.99+ |
one | QUANTITY | 0.99+ |
six months ago | DATE | 0.99+ |
SAS | ORGANIZATION | 0.99+ |
VM Ware | ORGANIZATION | 0.99+ |
One | QUANTITY | 0.99+ |
Linux | TITLE | 0.99+ |
David Piester, Io-Tahoe & Eddie Edwards, Direct Energy | AWS re:Invent 2019
>>long from Las Vegas. It's the Q covering a ws re invent 2019. Brought to you by Amazon Web service is and in along with its ecosystem partners. >>Hey, welcome back to the cubes. Coverage of AWS 19 from Las Vegas. This is Day two of our coverage of three days. Two sets, lots of cute content. Lisa Martin here with Justin Warren, founder and chief analyst. A pivot nine. Justin and I are joined by a couple of guests New to the Cube. We've got David Meister next to meet Global head of sales for Io Tahoe. Welcome. Eddie Edwards with a cool name. Global Data Service is director from Direct Energy. Welcome, Eddie. Thank you. Okay, So, David, I know we had somebody from Io Tahoe on yesterday, but I'd love for you to give her audience an overview of Io Tahoe, and then you gotta tell us what the name means. >>Okay. Well, day pie stir. Io Tahoe thinks it's wonderful event here in AWS and excited to be here. Uh, I, oh, Tahoe were located in downtown on Wall Street, New York on and I Oh, Tahoe. Well, there's a lot of different meanings, but mainly Tahoe for Data Lake Input output into the lake is how it was originally meant So But ah, little background on Io Tahoe way are 2014. We came out way started in stealth came out of stealth in 2017 with two signature clients. When you're going to hear from in a moment direct energy, the other one g e and we'll speak to those in just a moment I owe Tahoe takes a unique approach way have nine machine learning machine learning algorithms 14 future sets that interrogates the data. At the data level, we go past metadata, so solving that really difficult data challenge and I'm gonna let Eddie describe some of the use cases that were around data migration, P II discovery, and so over to you >>a little bit about direct energy. What, you where you're located, What you guys do and how data is absolutely critical to your business. Yeah, >>sure. So direct energy. Well, it's the largest residential energy supplier in the er us around 5000 employees. Loss of this is coming from acquisitions. So as you can imagine, we have a vast amount of data that we need some money. Currently, I've got just under 1700 applications in my portfolio. Onda a lot. The challenges We guys are around the cost, driving down costs to serve so we can pass that back onto our consumers on the challenge that with hard is how best to gain that understanding. Where I alter whole came into play, it was vainly around off ability to use the products quickly for being able to connect to our existing sources to discover the data. What, then, that Thio catalog that information to start applying the rules around whether it be legislation like GDP, are or that way gets a lot of cases where these difference between the states on the standings and definitions so the product gives us the ability to bring a common approach So that information a good success story, would be about three months ago, we took the 30 and applications for our North America home business. We were able to running through the product within a week on that gave us the information to them, consolidate the estate downwards, working with bar business colleagues Thio, identify all the data we don't see the archival retention reels on, bring you no more meaning to the data on actually improve ourselves opportunities by highlights in that rich information that was not known >>previously. Yes, you mentioned that you growing through acquisition. One thing that people tend to underestimate around I t. Is that it's not a heterogeneous. It's not a homogeneous environments hatred genius. Like as soon as you buy another company, you've got another. You got another silent. You got another day to say. You got something else. So walk us through how iota who actually deals with that very disparity set of data that you've night out inherited from just acquiring all of these different companies? >>Yeah, so exactly right. You know, every time we a private organization, they would have various different applications that were running in the estate. Where would be an old article? I say, Hey, sequel tap environment. What we're able to do is use the products to plug in a name profile to understand what's inside knowledge they have around their customer base and how we can number in. That's in to build up a single view and offer additional products value adding products or rewards for customers, whether that be, uh on our hay truck side our heat in a ventilation and air con unit, which again we have 4600 engineers in that space. So it's opening up new opportunities and territories to us. >>Go ahead, >>say additionally to that, we're across multiple sectors, but the problem death by Excel was in the financial service is we're located on Wall Street. As I mentioned on this problem of legacy to spirit, data, sources and understanding, and knowing your data was a common problem, banks were just throwing people at the problem. So his use case with 1700 applications, a lot of them legacy is fits right into what we d'oh and cataloging is he mentioned. We catalogue with that discover in search engine that we have. We enable search cross enterprise. But Discovery we auto tag and auto classify the sensitive data into the catalog automatically, and that's a key part of what we do. And it >>was that Dave is something in thinking of differentiation, wanting to know what is unique about Iota. What was the opportunity that you guys saw? But is the cataloging and the sensitive information one of the key things that makes it a difference >>Way enabled data governance. So it's not just sensitive information way catalog, entire data set multiple data sets. And what makes us what differentiates us is that the machine learning way Interrogate in brute force The data So every single so metadata beyond so 1,000,000,000 rose. 100,000 columns. Large, complex data sets way. Interrogate every field value. And we tell you what this looks like A phone number. This looks like an address. This looks like a first name. This looks like the last name and we tagged at to the catalog. And then anything that sensitive in nature will color coded red green, highly sensitive, sensitive. So that's our big differentiator. >>So is that like 100% visibility into the granularity of what is in this data? >>Yes, that's that's one of the issues is who were here ahead of us. We're finding a lot of folks are wanting to go to the cloud, but they can't get access to the data. They don't know their data. They don't understand it. On DSO where that bridge were a key strategic partner for aws Andi we're excited about the opportunity that's come about in the last six months with AWS because we're gonna be that key geese for migration to the cloud >>so that the data like I love the name iota, How But in your opinion, you know, you could hear so many different things about Data Lake Data's turning into data Swamp is there's still a lot of value and data lakes that customers just like you're saying before, you just don't know what they have. >>Well, what's interesting in this transition to one of other clients? But on I just want to make a note that way actually started in the relational world. So we're already a mess. We're across header genius environment so but Tahoe does have more to do with Lake. But at a time a few years back, everybody was just dumping data into the lake. They didn't understand what what was in there, and it's created in this era of privacy, a big issue, and Comcast had this problem. The large Terry Tate instance just dumping into the lake, not understanding data flows, how they're data's flowing, not understanding what's in the lake, sensitivity wise, and they want to start, you know they want enable b I. They want they want to start doing analytics, but you gotta understand and know the data, right? So for Comcast, we enable data ops for them automatically with our machine learning. So that was one of the use cases. And then they put the information and we integrated with Apache Atlas, and they have a large JW aws instance, and they're able to then better govern their data on S O N G. Digital. One other customer very complex use case around their data. 36 e. R. P s being migrated toe one virtually r p in the lake. And think about finance data How difficult that is to manage and understand. So we were a key piece in helping that migration happen in weeks rather than months. >>David, you mentioned cloud. Clearly weird. We're at a cloud show, but you mentioned knowing your data. One of the aspect of that cloud is that it moves fast, and it's a much bigger scale than what we've been used to. So I'm interested. Maybe, Eddie, you can. You can fill us in here as well about the use of a tool to help you know your data when we're not creating any less stated. There's just more and more data. So at this speed and this scale, how important is it that you actually have tooling to provide to the to the humans who have to go on that operate on all of this data >>building on what David was saying around the speed in the agility side, you know, now all our information I would know for North America home business is in AWS Hold on ns free bucket. We are already starting work with AWS connect on the call center side. Being able to stream that information through so we're getting to the point now is an organization where we're able to profile the data riel. Time on. Take that information Bolts predict what the customers going going to do is part that machine learning side. So we're starting to trial where we will interject into a call to say, Well, you know, a customer might be on your digital site trying to do a journey. You can see the challenges around data, and you could Then they go in with a chop using, say, the new AWS trap that's just coming through at the moment. So >>one of the things that opportunities I'm here. Sorry, Eddie is the opportunity to leverage the insights into the data to deliver more. You mentioned like customer words, are more personalized experience or a call center agent. Knowing this is the problem of this customer is experiencing this way. Have tried X, y and Z to resolve, or this customer is loyal to pay their bills on time. They should be eligible for some sort of reward program. I think consumers that I think amazon dot com has created us this demanding consumer that way expect you to know us. I expect you to serve us up things that you think we want. Talk to me about the opportunity that I owe Ty was is giving your business to be able to delight customers in ways that you probably couldn't even have predicted? >>Well, they touched on the tagging earlier, you know, survive on the stunned in the data that's coming through. Being able to use the data flow technology on dhe categorizing were able than telling kidding with wider estate. So David mentioned Comcast around 36 e. R. P. You know, we've just gone through the same in other parts of our organization. We're driving the additional level of value, turning away from being a manually labor intensive task. So I used to have 20 architects that daily goal through trying to build an understanding the relationship. I do not need that now. I just have a couple of people that are able to take the outputs and then be able to validate the information using the products. >>And I like that. There's just so much you mentioned customer 360. Example at a call centre. There's so much data ops that has to happen to make that happen on. That's the most difficult challenge to solve. And that's where we come in. And after you catalogue the data, I just want to touch on this. We enable search for the enterprise so you're now connected to 50 115 100 sources with our software. Now you've catalogued it. You profiled it. Now you can search Karen Kim Kim Smith, So your your your engineers, your architect, your data stewards influences your business analysts. This is folks can now search anything they want and find anything sensitive. Find that person find an invoice, and that helps enable. But you mentioned the customer >>360. But I can Also. What I'm hearing is, as it has the potential to enable a better relationship between I t in the business. >>Absolutely. It brings those both together because they're so siloed. In this day and age, your data siloed and your business is siloed in a different business unit. So this helps exactly collaborate crowdsource, bring it all together. One platform >>and how many you so 1700 applications. How many you mentioned the 36 or so air peace. What percentage? If you can guess who have you been able to reduce duplicate triplicate at center applications? And what are some of the overarching business benefits that direct energy is achieving? >>So incentive the direct senator, decide that we're just at the beginning about journey. We're about four months in what? We've already decommissioned 12. The applications I was starting to move out to the wider side in terms of benefits are oh, I probably around 300% of the moment >>in a 300% r A y in just a few months. >>Just now, you know you've got some of the basic savings around the story side. We're also getting large savings from some of the existing that support agreements that we have in place. David touched on data Rob's. I've been able to reduce the amount of people that are required to support the team. There is now a more common on the standing within the organization and have money to turn it more into a self care opportunity with the business operations by pushing the line from being a technical problem to a business challenge. And at the end of the day, they're the experts. They understand the data better than any IittIe fault that sat in a corner, right? So I'm >>gonna ask you one more question. What gave you the confidence that I Oh, Tahoe was the right solution for you >>purely down Thio three Open Soul site. So we come from a you know I've been using. I'll tell whole probably for about two years in parts of the organization. We were very early. Adopters are over technologies in the open source market, and it was just the ability thio on the proof of concept to be able to turn it around iTunes, where you'll go to a traditional vendor, which would take a few months large business cases. They need any of that. We were able to show results within 24 48 hours on now buys the confidence. And I'm sure David would take the challenge of being able to plug in some day. It says on to show you the day. >>Cool stuff, guys. Well, thank you for sharing with us what you guys are doing. And I have a Iot Tahoe keeping up data Lake Blue and the successes that you're cheating in such a short time, but direct energy. I appreciate your time, guys. Thank you. Excellent. Our pleasure. >>No, you'll day. >>Exactly know your data. My guests and my co host, Justin Warren. I'm Lisa Martin. I'm gonna go often. Learn my data. Now you've been watching the Cube and AWS reinvent 19. Thanks for watching
SUMMARY :
Brought to you by Amazon Web service Justin and I are joined by a couple of guests New to the Cube. P II discovery, and so over to you critical to your business. the products quickly for being able to connect to our existing sources to discover You got another day to say. That's in to build up a single view and offer but the problem death by Excel was in the financial service is we're But is the cataloging and the sensitive information one of the key things that makes it And we tell you what this looks like A phone number. in the last six months with AWS because we're gonna be that key geese for so that the data like I love the name iota, How But in does have more to do with Lake. So at this speed and this scale, how important is it that you actually have tooling into a call to say, Well, you know, a customer might be on your digital site Sorry, Eddie is the opportunity to leverage I just have a couple of people that are able to take the outputs and then be on. That's the most difficult challenge to solve. What I'm hearing is, as it has the potential to enable So this helps exactly How many you mentioned the 36 or so So incentive the direct senator, decide that we're just at the beginning about journey. reduce the amount of people that are required to support the team. Tahoe was the right solution for you It says on to show you the day. Well, thank you for sharing with us what you guys are doing. Exactly know your data.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
David | PERSON | 0.99+ |
Justin Warren | PERSON | 0.99+ |
Comcast | ORGANIZATION | 0.99+ |
Lisa Martin | PERSON | 0.99+ |
Eddie | PERSON | 0.99+ |
David Meister | PERSON | 0.99+ |
Justin | PERSON | 0.99+ |
Eddie Edwards | PERSON | 0.99+ |
AWS | ORGANIZATION | 0.99+ |
2017 | DATE | 0.99+ |
Las Vegas | LOCATION | 0.99+ |
David Piester | PERSON | 0.99+ |
100% | QUANTITY | 0.99+ |
2014 | DATE | 0.99+ |
Karen Kim Kim Smith | PERSON | 0.99+ |
Dave | PERSON | 0.99+ |
North America | LOCATION | 0.99+ |
three days | QUANTITY | 0.99+ |
20 architects | QUANTITY | 0.99+ |
Two sets | QUANTITY | 0.99+ |
300% | QUANTITY | 0.99+ |
4600 engineers | QUANTITY | 0.99+ |
1,000,000,000 | QUANTITY | 0.99+ |
Rob | PERSON | 0.99+ |
1700 applications | QUANTITY | 0.99+ |
One platform | QUANTITY | 0.99+ |
North America | LOCATION | 0.99+ |
Io-Tahoe | PERSON | 0.99+ |
30 | QUANTITY | 0.99+ |
Direct Energy | ORGANIZATION | 0.99+ |
Excel | TITLE | 0.99+ |
100,000 columns | QUANTITY | 0.98+ |
Wall Street | LOCATION | 0.98+ |
36 | QUANTITY | 0.98+ |
yesterday | DATE | 0.98+ |
Global Data Service | ORGANIZATION | 0.98+ |
iTunes | TITLE | 0.98+ |
amazon dot com | ORGANIZATION | 0.98+ |
one | QUANTITY | 0.98+ |
12 | QUANTITY | 0.98+ |
first name | QUANTITY | 0.98+ |
both | QUANTITY | 0.97+ |
Io Tahoe | ORGANIZATION | 0.97+ |
aws | ORGANIZATION | 0.97+ |
Day two | QUANTITY | 0.97+ |
14 future sets | QUANTITY | 0.97+ |
around 5000 employees | QUANTITY | 0.96+ |
two signature clients | QUANTITY | 0.96+ |
around 300% | QUANTITY | 0.96+ |
under 1700 applications | QUANTITY | 0.96+ |
One | QUANTITY | 0.96+ |
one more question | QUANTITY | 0.95+ |
about two years | QUANTITY | 0.95+ |
24 48 hours | QUANTITY | 0.95+ |
2019 | DATE | 0.95+ |
Amazon Web | ORGANIZATION | 0.94+ |
Thio | ORGANIZATION | 0.94+ |
Terry Tate | PERSON | 0.94+ |
a week | QUANTITY | 0.94+ |
One thing | QUANTITY | 0.94+ |
about four months | QUANTITY | 0.94+ |
Discovery | ORGANIZATION | 0.91+ |
nine | QUANTITY | 0.91+ |
last six months | DATE | 0.9+ |
Andi | PERSON | 0.89+ |
Iota | TITLE | 0.89+ |
Tahoe | ORGANIZATION | 0.89+ |
Data Lake Data | ORGANIZATION | 0.88+ |
DSO | ORGANIZATION | 0.88+ |
Wall Street, New York | LOCATION | 0.86+ |
Nicholas Gerasimatos, Red Hat | Microsoft Ignite 2019
>>live from Orlando, Florida It's the cue covering Microsoft Ignite Brought to you by Cho He City >>Welcome back, everyone. And welcome to the cubes live coverage of Microsoft Ignite Here in Orlando, I'm your host, Rebecca Night, along with my co host Stew Minimum. We're joined by Nicholas Djerassi. Moto's He is a cloud computing evangelist at Red Hat. Thank you so much for coming on the Cube. It's a pleasure. Thank you. So tell us a little bit about what you do at Red Hat. >>So I work with a lot of red, have partners really trying to foster the ecosystem and build red have products and solutions that can actually be deployable, repeatable for different customers. So different verticals. Financial health care doesn't really matter. For the most part, I try and just focus on cloud computing and really just evangelizing a lot of our technologies that we have. >>Okay, so So what are the kinds of things you're doing here at ignite? >>So I've been spending a lot of time actually working with some of the partners, like a center IBM. We've been doing a bunch of different webinars a little bit of hands on workshops that kind of educating people about distributed computing edge computing on dhe some of the technologies that we've been working along with Microsoft. So, uh, co engineering of sequel server The man is service offering that we're doing with open shift, which is our enterprise great kubernetes platform along many other >>different things. So So, Nicholas, you know, it's been a couple of years now that we've gotten over some of the gas. Wait. Microsoft has not said that, you know, we're killing the penguins, you know, off on the side. I was in Boston for Red Hat Summit. Tatiana Della's up on stage there, you know, Red hat. You know he's not hiding at the show. So bring us inside. You know where customers deployments are happening where engineering efforts are working together. You know, we know we've been hearing for years red hats in all of the clouds and partnering all of the merit. So what? What, you know, different or special, about the Microsoft relationship? >>I mean, honestly, I think the relationship is just evolving and growing because our customers were asking for it right there, going towards hybrid and multi cloud type of strategies. They want to be able to take advantage of, you know, running rail within their own data. Centers were running rails specifically on top of Microsoft Azure, but they're also looking at other club service providers. I think it's gonna be mandated eventually at some point in time where customers are gonna start looking at diversification when it comes to running applications, wherever it makes sense, taking advantage of different you know, cloud end of service is different providers. So we've been getting a lot of time like understanding what their needs are and then trying to build the engineering to actually address those needs. I think a lot of that has really come from the co engineering that we have going on. So we have a red head engineer sitting alongside bikers, off engineers, spending a lot of time building things like the Windows distraction layer wsl things along those lines, All >>right, so I'll be a Q Khan in a couple of weeks and kubernetes still, a lot of people don't really understand where it fits Way have been saying in a Cuban eight is gonna be baked into every platform. Red hat, of course, is not really a major contributor but has a lot of customers on open shift. We had Microsoft, you know, this week, talking about as your arc is in preview. But you know, they're they're the David Taunton who does partnership, Engagement says. You know, this does not mean that we will not continue to partner with open shift in the best place to run open shift is on azure. It's the most secure. It's the best. So help us understand his toe. You know where this fits In the overall discussion of that multi hybrid cloud that we were talking about earlier. I >>think everybody wants kind of a single pane of glass for manageability. They want ability to actually look and see where their infrastructure is being deployed. One of the pitfalls of moving to the cloud is the fact that it's so easy to spend a resource is that a lot of times we lose track of where these resource is. Our or individuals leave companies, and when they leave, cos they leave behind a lot of leftover items and instances, and that becomes really costly over a period of time. Maybe not so bad if you have, you know, 100 or 500 instances. But when you talk to some of these enterprise customers that are running 110,000 instances and spending millions of dollars a month, it could get very costly. And not only that, but it could also be a security risk is well, >>so let's talk about security. What kinds of conversations are you having with regard to security and data protection at this conference? >>So you know, one of the biggest things that we've had a lot of customers asking about his redhead insights so ready in sizes away it's a smart management application that actually ties into looking at either workloads or configuration management. It could actually tell you if you have a drift. So, for example, let's say you install sequel server on well, and you miss configure it. You leave the admin account running on it, it can actually alert you and make recommendations for remediation. Or maybe in general, you're using you know, S E. Lennox is disabled. The things along those lines so insights can actually look into, uh, the operating system or the applications and tell you if there's miss configurations all right, >>a lot of discussion about developers here, You know, day to keynote was all about, you know, AP Dev And, like Sathya have been a lot of time talking about the citizen developer. Seems like that would be an intersection between what red hats doing in and Microsoft. >>Um, so I would say, you know, we're obviously very developer first focused right when we built things like Open Shift Way kind of. We're thinking about developers. Before you were thinking about operations, and later on, we actually had to build more of the operations aspects into it. Now, like, for example, in open shift, there's two different portals. There's one for the developer Focus and one for the I T admin focus with operations groups because they want to see what's going on. Developers don't really care specifically about seeing the distraction of where things are. They just want to deploy their code, get it out the door as quickly as they can, and they're really just not too concerned about the infrastructure component pieces. But all of these developers, they want to be ableto right there, applications right there code and deploy it essentially anywhere and everywhere and having the easiest process and We're really just trying to make that as simple as possible, like visual studio plug ins that we have for open shift, you know, Eclipse G and other things. So really, I mean, Red has always been very developer focused first, >>so does that seeing Microsoft Satya Nadella up on the stage talking about this developer first attitude that Microsoft is really embracing the developer. And, as you said at development for all that does seem like a bit of a cultural shift for Microsoft much more aligned with the red hat way and sort of open source. So are you talking about that within without your cut with your colleagues? That red hat, about the change that you've seen the evolution of Microsoft? >>Absolutely. I mean, if you look at, like Microsoft, the contributions that they're putting towards, like kubernetes or even contribution towards open shift, it's It's amazing, right? I mean, it's like the company's gonna complete 1 80 from the way that they used to be. There's so much more open the acquisition of Like Get Hub, for example, all these different changes, it's it's amazing. He's done amazing things with the company. I can't say enough positive things about all the wonderful things that he's done. So >>all right, so Nicholas Red Hat has an interesting position in the marketplace because you do partner with all of the clouds on the environment. While IBM is now the parent owner of Red Hat and they have a cloud, your customers touch all of them. I'm not gonna ask you to competitively analyze them. But when you're talking to customers that are choosing Azure, is there anything that calling out as to why they're choosing Microsoft where you know they have, you know, a advantage of the marketplace or what is drawing customers to them on then? Of course, redhead. With that, >>I think Microsoft is more advanced when it comes to artificial intelligence and machine learning. A, I and ML and computing. I think they're light years ahead of everyone else at this point in time. I think you know, Amazon and Google are kind of playing a little bit of catch up there, Um, and it's showing right. If you look at the power platform, for example, customers are embracing that. It's just it's fantastic looking at a lot of the changes that they've implemented and I think it's very complimentary toe the way that people are starting to build their applications. Moving towards distributed infrastructures, Micro Service's and then obviously cloud native service is as well >>in terms of the future will be. We are really just scratching the surface when it comes to to the cloud. What do you see 5 10 years from now in terms of growth rates and also in terms of the ways in which companies are using the cloud. >>So I kind of like Thio equate it towards, like, the progression that we've had with cars. I know it sounds so simple, but, you know, we went from steam engine to regular piston engines, and now we've gotten to a point where we have electric cars and there's gonna be self driving cars. I think we're gonna get to a point where code is gonna be autonomous in a sense, right self correcting ability to actually just write code and deploy it. Not really having to worry about that entire infrastructure layer. Everybody's calling it server lists. There's always gonna be a server per se, but I think we're gonna have a point where next 5 to 10 years that all of that is gonna be completely abstracted away. It's just gonna be focused on writing the code and machine learning is gonna help us actually evolve that code and make it run faster and make it run better. We're already seeing huge benefits. And when it comes to machine learning and the big data analytics and things on those lines, it's just natural progression. All right, >>love, you know what's top of mine from the customers that you're talking to Earth event. Any new learning is that you've had or, you know, things that have kind of caught your attention. >>I think the biggest thing, honestly, is really been them. The multi cloud Polly Cloud methodology that everybody seems to be embracing. It seems like every customer I'm talking to is looking at trying to avoid that vendor lock and per se, but still have that flexibility to deploy their applications wherever and still utilize cloud Native Service's without actually specifically having to, you know, go completely open source >>and one of the challenges there is every cloud. I need different skills to be able to do them. If I'm deploying it, it's the people and being able to do that. You know, we all lived through that era of trying to do multi vendor, and often it was challenges. So have we learned from what we've done in the past? Can multi cloud actually be more valuable to a company than the sum of its parts? >>I think so. And I think that's the reason why I, like Microsoft, is investing in art. For example, I think those methodologies way No multi clouds, tough. It's never gonna be easy. And so these companies need to start building in developing platforms for it. There needs to be be great if there were standard AP ice and such right, but they're never gonna do something along those lines. But I think the investments that they're putting forth now are gonna make Multiplied and Polly Cloud a lot easier in the future. And I think customers are asking for it. Customers ask for it, they're gonna build it. >>What does this mean for the workforce, though? In in terms of the kinds of candidates that cos they're going to hire because, as we said, it does require different skills and and different capabilities. So how what's your advice to the young computer scientists coming up in terms of what they should be learning. And then also, how do you think companies are making sensible of this? >>So I know from a company respectable. It's challenging a lot of companies. Especially, for example, I was talking to a very large financial institution, and they were saying that their biggest issue right now is hiring talented people to deal with Micro Service's kubernetes. Any time to hire someone, they end up getting poached by the big cloud companies. So you know, it's one of those things where people are gonna have to start diversifying their talents and look at the future. So I mean, obviously, Micro Service's are here. They're gonna continue to be here. I would say people should invest in that. But also look a server Lis, you know, I definitely think serverless these days towards the future. And then when it comes to like learning skills of multi club, I think cloud competing, that's just the number one growing in general. >>So since you didn't bring up server Lis, you know, today I hear serverless and most customers that I talked to that means a W s number two in the space probably is Microsoft, but there's efforts in to try to help, you know, give a little bit of open source and standardization there. Where's Red Hat? Stand on this. What do you see? What from Microsoft? What are you hearing from customers? >>Were heavily contribute all the different, you know, projects, trying to make server lists like easier to use and not so much specific vendors, Right? So whether that's, you know, Apache, spar or whatever you want to consider it to be, were trying to invest. Invest in those different types of technologies. I think the main issue we serve earless right now is we still don't really know how to utilize it effectively. And it's still kind of this gray area in a sense, right? It's cutting edge, bleeding edge emerging technologies. And it's just, in my opinion, it's not perfectly ready for prime time. But I think that's specifically because there's just not enough people that are actually invested in it. This point in time. So >>So what are you gonna take back with you when you head back to Phoenix from from this conference? What are the things that have sparked your interest the most. >>Gosh, I live, I would probably have to say, Really digging in deep on the Ark announcement. I think that's the thing that I'm most interested in, understanding how how we can actually contribute to that and maybe make that plug double for things like open Shift. You know, whether it's open shift on premise, open shit, running in the cloud on another, Well, architecture's, you know, things like insights. Being able to plug into that, I really see us trying to work with Microsoft to start building those things. >>Well, Nicholas, thank you so much for coming on. The cubit was really fabulous conversation. Thank you. I'm Rebecca Knight for Sue minimum. Stay tuned for more of the cubes. Live coverage from Microsoft ignite.
SUMMARY :
So tell us a little bit about what you do at Red Hat. For the most part, I try and just focus on cloud computing and really just evangelizing a lot of our technologies that computing edge computing on dhe some of the technologies that we've been working along with Microsoft. we're killing the penguins, you know, off on the side. taking advantage of different you know, cloud end of service is different providers. We had Microsoft, you know, this week, talking about as your arc is in is the fact that it's so easy to spend a resource is that a lot of times we lose track of where these resource is. What kinds of conversations are you having with regard to security So you know, one of the biggest things that we've had a lot of customers asking about his redhead insights so ready you know, AP Dev And, like Sathya have been a lot of time talking about the citizen developer. like visual studio plug ins that we have for open shift, you know, Eclipse G and other things. So are you talking about that within I mean, if you look at, like Microsoft, the contributions that they're putting towards, all right, so Nicholas Red Hat has an interesting position in the marketplace because you do partner with all of the clouds I think you know, Amazon and Google are kind of playing a little bit of catch up there, We are really just scratching the surface when it comes to to I know it sounds so simple, but, you know, we went from steam engine to regular piston engines, love, you know what's top of mine from the customers that you're talking to Earth event. Native Service's without actually specifically having to, you know, go completely open If I'm deploying it, it's the people and being able to do that. And I think that's the reason why I, like Microsoft, is investing in art. In in terms of the kinds of candidates that cos they're going to hire because, So you know, but there's efforts in to try to help, you know, give a little bit of open Were heavily contribute all the different, you know, projects, trying to make server lists like easier So what are you gonna take back with you when you head back to Phoenix from from this conference? open shit, running in the cloud on another, Well, architecture's, you know, things like insights. Well, Nicholas, thank you so much for coming on.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Amazon | ORGANIZATION | 0.99+ |
Nicholas Djerassi | PERSON | 0.99+ |
Nicholas Gerasimatos | PERSON | 0.99+ |
Rebecca Knight | PERSON | 0.99+ |
IBM | ORGANIZATION | 0.99+ |
ORGANIZATION | 0.99+ | |
Nicholas | PERSON | 0.99+ |
Microsoft | ORGANIZATION | 0.99+ |
Tatiana Della | PERSON | 0.99+ |
David Taunton | PERSON | 0.99+ |
Rebecca Night | PERSON | 0.99+ |
110,000 instances | QUANTITY | 0.99+ |
Boston | LOCATION | 0.99+ |
Satya Nadella | PERSON | 0.99+ |
Phoenix | LOCATION | 0.99+ |
Red Hat | ORGANIZATION | 0.99+ |
Orlando, Florida | LOCATION | 0.99+ |
today | DATE | 0.99+ |
Stew Minimum | PERSON | 0.99+ |
500 instances | QUANTITY | 0.99+ |
one | QUANTITY | 0.99+ |
Earth | LOCATION | 0.99+ |
first | QUANTITY | 0.99+ |
Sathya | PERSON | 0.99+ |
this week | DATE | 0.99+ |
Apache | ORGANIZATION | 0.98+ |
100 | QUANTITY | 0.98+ |
Red Hat Summit | EVENT | 0.98+ |
Orlando | LOCATION | 0.98+ |
red | ORGANIZATION | 0.97+ |
Eclipse G | TITLE | 0.96+ |
One | QUANTITY | 0.96+ |
red hat | PERSON | 0.96+ |
10 years | QUANTITY | 0.94+ |
Red hat | ORGANIZATION | 0.93+ |
5 | QUANTITY | 0.93+ |
single pane | QUANTITY | 0.92+ |
Cuban | OTHER | 0.91+ |
two different portals | QUANTITY | 0.91+ |
Red Hat | PERSON | 0.91+ |
millions of dollars a month | QUANTITY | 0.89+ |
S E. Lennox | PERSON | 0.89+ |
Windows | TITLE | 0.87+ |
red hats | ORGANIZATION | 0.86+ |
Thio | PERSON | 0.85+ |
AP | ORGANIZATION | 0.83+ |
Sue minimum | PERSON | 0.77+ |
Nicholas Red Hat | PERSON | 0.76+ |
5 10 years | QUANTITY | 0.74+ |
spar | ORGANIZATION | 0.74+ |
Azure | TITLE | 0.71+ |
1 80 | QUANTITY | 0.69+ |
Get Hub | ORGANIZATION | 0.68+ |
Red | ORGANIZATION | 0.68+ |
open shift | TITLE | 0.66+ |
redhead | PERSON | 0.65+ |
double | QUANTITY | 0.65+ |
Red Hat | TITLE | 0.65+ |
Cho He City | ORGANIZATION | 0.61+ |
2019 | DATE | 0.55+ |
Multiplied | ORGANIZATION | 0.52+ |
Polly Cloud | ORGANIZATION | 0.5+ |
two | QUANTITY | 0.48+ |
eight | QUANTITY | 0.48+ |
couple | QUANTITY | 0.46+ |
Ark | ORGANIZATION | 0.46+ |
Lars Toomre, Brass Rat Capital | MIT CDOIQ 2019
>> from Cambridge, Massachusetts. It's the Cube covering M I T. Chief data officer and information quality Symposium 2019. Brought to you by Silicon Angle Media. >> Welcome back to M I. T. Everybody. This is the Cube. The leader in live coverage. My name is David wanted. I'm here with my co host, Paul Gill, in this day to coverage of the M I t cdo I Q conference. A lot of acronym stands for M I. T. Of course, the great institution. But Chief Data officer information quality event is his 13th annual event. Lars to Maria's here is the managing partner of Brass Rat Capital. Cool name Lars. Welcome to the Cube. Great. Very much. Glad I start with a name brass around Capitol was That's >> rat is reference to the M I t school. Okay, Beaver? Well, he is, but the students call it a brass rat, and I'm third generation M i t. So it's just seen absolutely appropriate. That is a brass rods and capital is not a reference to money, but is actually referenced to the intellectual capital. They if you have five or six brass rats in the same company, you know, we Sometimes engineers arrive and they could do some things. >> And it Boy, if you put in some data data capital in there, you really explosions. We cause a few problems. So we're gonna talk about some new regulations that are coming down. New legislation that's coming down that you exposed me to yesterday, which is gonna have downstream implications. You get ahead of this stuff and understand it. You can really first of all, prepare, make sure you're in compliance, but then potentially take advantage for your business. So explain to us this notion of open government act. >> Um, in the last five years, six years or so, there's been an effort going on to increase the transparency across all levels of government. Okay, State, local and federal government. The first of federal government laws was called the the Open Data Act of 2014 and that was an act. They was acted unanimously by Congress and signed by Obama. They was taking the departments of the various agencies of the United States government and trying to roll up all the expenses into one kind of expense. This is where we spent our money and who got the money and doing that. That's what they were trying to do. >> Big picture type of thing. >> Yeah, big picture type thing. But unfortunately, it didn't work, okay? Because they forgot to include this odd word called mentalities. So the same departments meant the same thing. Data problem. They have a really big data problem. They still have it. So they're to G et o reports out criticizing how was done, and the government's gonna try and correct it. Then in earlier this year, there was another open government date act which said in it was signed by Trump. Now, this time you had, like, maybe 25 negative votes, but essentially otherwise passed Congress completely. I was called the Open as all capital O >> P E >> n Government Data act. Okay, and that's not been implemented yet. But there's live talking around this conference today in various Chief date officers are talking about this requirement that every single non intelligence defense, you know, vital protection of the people type stuff all the like, um, interior, treasury, transportation, those type of systems. If you produce a report these days, which is machine, I mean human readable. You must now in two years or three years. I forget the exact invitation date. Have it also be machine readable. Now, some people think machine riddle mil means like pdf formats, but no, >> In fact, what the government did is it >> said it must be machine readable. So you must be able to get into the reports, and you have to be able to extract out the information and attach it to the tree of knowledge. Okay, so we're all of sudden having context like they're currently machine readable, Quote unquote, easy reports. But you can get into those SEC reports. You pull out the net net income information and says its net income, but you don't know what it attaches to on the tree of knowledge. So, um, we are helping the government in some sense able, machine readable type reporting that weaken, do machine to machine without people being involved. >> Would you say the tree of knowledge You're talking about the constant >> man tick semantic tree of knowledge so that, you know, we all come from one concept like the human is example of a living thing living beast, a living Beeston example Living thing. So it also goes back, and they're serving as you get farther and farther out the tree, there's more distance or semantic distance, but you can attach it back to concept so you can attach context to the various data. Is this essentially metadata? That's what people call it. But if I would go over see sale here at M I t, they would turn around. They call it the Tree of Knowledge or semantic data. Okay, it's referred to his semantic dated, So you are passing not only the data itself, but the context that >> goes along with the data. Okay, how does this relate to the financial transparency? >> Well, Financial Transparency Act was introduced by representative Issa, who's a Republican out of California. He's run the government Affairs Committee in the House. He retired from Congress this past November, but in 2017 he introduced what's got referred to his H R 15 30 Um, and the 15 30 is going to dramatically change the way, um, financial regulators work in the United States. Um, it is about it was about to be introduced two weeks ago when the labor of digital currency stuff came up. So it's been delayed a little bit because they're trying to add some of the digital currency legislation to that law. >> A front run that Well, >> I don't know exactly what the remember soul coming out of Maxine Waters Committee. So the staff is working on a bunch of different things at once. But, um, we own g was asked to consult with them on looking at the 15 30 act and saying, How would we improve quote unquote, given our technical, you know, not doing policy. We just don't have the technical aspects of the act. How would we want to see it improved? So one of the things we have advised is that for the first time in the United States codes history, they're gonna include interesting term called ontology. You know what intelligence? Well, everyone gets scared by the word. And when I read run into people, they say, Are you a doctor? I said, no, no, no. I'm just a date. A guy. Um, but an intolerant tea is like a taxonomy, but it had order has important, and an ontology allows you to do it is ah, kinda, you know, giving some context of linking something to something else. And so you're able Thio give Maur information with an intolerant that you're able to you with a tax on it. >> Okay, so it's a taxonomy on steroids? >> Yes, exactly what? More flexible, >> Yes, but it's critically important for artificial intelligence machine warning because if I can give them until ology of sort of how it goes up and down the semantics, I can turn around, do a I and machine learning problems on the >> order of 100 >> 1000 even 10,000 times faster. And it has context. It has contacts in just having a little bit of context speeds up these problems so dramatically so and it is that what enables the machine to machine? New notion? No, the machine to machine is coming in with son called SP R M just standard business report model. It's a OMG sophistication of way of allowing the computers or machines, as we call them these days to get into a standard business report. Okay, so let's say you're ah drug company. You have thio certify you >> drugged you manufactured in India, get United States safely. Okay, you have various >> reporting requirements on the way. You've got to give extra easy the FDA et cetera that will always be a standard format. The SEC has a different format. FERC has a different format. Okay, so what s p r m does it allows it to describe in an intolerant he what's in the report? And then it also allows one to attach an ontology to the cells in the report. So if you like at a sec 10 Q 10 k report, you can attach a US gap taxonomy or ontology to it and say, OK, net income annual. That's part of the income statement. You should never see that in a balance sheet type item. You know his example? Okay. Or you can for the first time by having that context you can say are solid problem, which suggested that you can file these machine readable reports that air wrong. So they believe or not, There were about 50 cases in the last 10 years where SEC reports have been filed where the assets don't equal total liabilities, plus cheryl equity, you know, just they didn't add >> up. So this to, >> you know, to entry accounting doesn't work. >> Okay, so so you could have the machines go and check scale. Hey, we got a problem We've >> got a problem here, and you don't have to get humans evolved. So we're gonna, um uh, Holland in Australia or two leaders ahead of the United States. In this area, they seem dramatic pickups. I mean, Holland's reporting something on the order of 90%. Pick up Australia's reporting 60% pickup. >> We say pick up. You're talking about pickup of errors. No efficiency, productivity, productivity. Okay, >> you're taking people out of the whole cycle. It's dramatic. >> Okay, now what's the OMG is rolling on the hoof. Explain the OMG >> Object Management Group. I'm not speaking on behalf of them. It's a membership run organization. You remember? I am a >> member of cold. >> I'm a khalid of it. But I don't represent omg. It's the membership has to collectively vote that this is what we think. Okay, so I can't speak on them, right? I have a pretty significant role with them. I run on behalf of OMG something called the Federated Enterprise Risk Management Group. That's the group which is focusing on risk management for large entities like the federal government's Veterans Affairs or Department offense upstairs. I think talking right now is the Chief date Officer for transportation. OK, that's a large organization, which they, they're instructed by own be at the, um, chief financial officer level. The one number one thing to do for the government is to get an effective enterprise worst management model going in the government agencies. And so they come to own G let just like NIST or just like DARPA does from the defense or intelligence side, saying we need to have standards in this area. So not only can we talk thio you effectively, but we can talk with our industry partners effectively on space. Programs are on retail, on medical programs, on finance programs, and so they're at OMG. There are two significant financial programs, or Sanders, that exist once called figgy financial instrument global identifier, which is a way of identifying a swap. Its way of identifying a security does not have to be used for a que ce it, but a worldwide. You can identify that you know, IBM stock did trade in Tokyo, so it's a different identifier has different, you know, the liberals against the one trading New York. Okay, so those air called figgy identifiers them. There are attributes associated with that security or that beast the being identified, which is generally comes out of 50 which is the financial industry business ontology. So you know, it says for a corporate bond, it has coupon maturity, semi annual payment, bullets. You know, it is an example. So that gives you all the information that you would need to go through to the calculation, assuming you could have a calculation routine to do it, then you need thio. Then turn around and set up your well. Call your environment. You know where Ford Yield Curves are with mortgage backed securities or any portable call. Will bond sort of probabilistic lee run their numbers many times and come up with effective duration? Um, And then you do your Vader's analytics. No aggregating the portfolio and looking at Shortfalls versus your funding. Or however you're doing risk management and then finally do reporting, which is where the standardized business reporting model comes in. So that kind of the five parts of doing a full enterprise risk model and Alex So what >> does >> this mean for first? Well, who does his impact on? What does it mean for organizations? >> Well, it's gonna change the world for basically everyone because it's like doing a clue ends of a software upgrade. Conversion one's version two point. Oh, and you know how software upgrades Everyone hates and it hurts because everyone's gonna have to now start using the same standard ontology. And, of course, that Sarah Ontology No one completely agrees with the regulators have agreed to it. The and the ultimate controlling authority in this thing is going to be F sock, which is the Dodd frank mandated response to not ever having another chart. So the secretary of Treasury heads it. It's Ah, I forget it's the, uh, federal systemic oversight committee or something like that. All eight regulators report into it. And, oh, if our stands is being the adviser Teff sock for all the analytics, what these laws were doing, you're getting over farm or more power to turn around and look at how we're going to find data across the three so we can come up consistent analytics and we can therefore hopefully take one day. Like Goldman, Sachs is pre payment model on mortgages. Apply it to Citibank Portfolio so we can look at consistency of analytics as well. It is only apply to regulated businesses. It's gonna apply to regulated financial businesses. Okay, so it's gonna capture all your mutual funds, is gonna capture all your investment adviser is gonna catch her. Most of your insurance companies through the medical air side, it's gonna capture all your commercial banks is gonna capture most of you community banks. Okay, Not all of them, because some of they're so small, they're not regularly on a federal basis. The one regulator which is being skipped at this point, is the National Association Insurance Commissioners. But they're apparently coming along as well. Independent federal legislation. Remember, they're regulated on the state level, not regularly on the federal level. But they've kind of realized where the ball's going and, >> well, let's make life better or simply more complex. >> It's going to make life horrible at first, but we're gonna take out incredible efficiency gains, probably after the first time you get it done. Okay, is gonna be the problem of getting it done to everyone agreeing. We use the same definitions >> of the same data. Who gets the efficiency gains? The regulators, The companies are both >> all everyone. Can you imagine that? You know Ah, Goldman Sachs earnings report comes out. You're an analyst. Looking at How do I know what Goldman? Good or bad? You have your own equity model. You just give the model to the semantic worksheet and all turn around. Say, Oh, those numbers are all good. This is what expected. Did it? Did it? Didn't you? Haven't. You could do that. There are examples of companies here in the United States where they used to have, um, competitive analysis. Okay. They would be taking somewhere on the order of 600 to 7. How 100 man hours to do the competitive analysis by having an available electronically, they cut those 600 hours down to five to do a competitive analysis. Okay, that's an example of the type of productivity you're gonna see both on the investment side when you're doing analysis, but also on the regulatory site. Can you now imagine you get a regulatory reports say, Oh, there's they're out of their way out of whack. I can tell you this fraud going on here because their numbers are too much in X y z. You know, you had to fudge numbers today, >> and so the securities analyst can spend Mme. Or his or her time looking forward, doing forecasts exactly analysis than having a look back and reconcile all this >> right? And you know, you hear it through this conference, for instance, something like 80 to 85% of the time of analysts to spend getting the data ready. >> You hear the same thing with data scientists, >> right? And so it's extent that we can helped define the data. We're going thio speed things up dramatically. But then what's really instinct to me, being an M I t engineer is that we have great possibilities. An A I I mean, really great possibilities. Right now, most of the A miles or pattern matching like you know, this idea using face shield technology that's just really doing patterns. You can do wonderful predictive analytics of a I and but we just need to give ah lot of the a m a. I am a I models the contact so they can run more quickly. OK, so we're going to see a world which is gonna found funny, But we're going to see a world. We talk about semantic analytics. Okay. Semantic analytics means I'm getting all the inputs for the analysis with context to each one of the variables. And when I and what comes out of it will be a variable results. But you also have semantics with it. So one in the future not too distant future. Where are we? We're in some of the national labs. Where are you doing it? You're doing pipelines of one model goes to next model goes the next mile. On it goes Next model. So you're gonna software pipelines, Believe or not, you get them running out of an Excel spreadsheet. You know, our modern Enhanced Excel spreadsheet, and that's where the future is gonna be. So you really? If you're gonna be really good in this business, you're gonna have to be able to use your brain. You have to understand what data means You're going to figure out what your modeling really means. What happens if we were, You know, normally for a lot of the stuff we do bell curves. Okay, well, that doesn't have to be the only distribution you could do fat tail. So if you did fat tail descriptions that a bell curve gets you much different results. Now, which one's better? I don't know, but, you know, and just using example >> to another cut in the data. So our view now talk about more about the tech behind this. He's mentioned a I What about math? Machine learning? Deep learning. Yeah, that's a color to that. >> Well, the tech behind it is, believe or not, some relatively old tech. There is a technology called rd F, which is kind of turned around for a long time. It's a science kind of, ah, machine learning, not machine wearing. I'm sorry. Machine code type. Fairly simplistic definitions. Lots of angle brackets and all this stuff there is a higher level. That was your distracted, I think put into standard in, like, 2000 for 2005. Called out. Well, two point. Oh, and it does a lot at a higher level. The same stuff that already f does. Okay, you could also create, um, believer, not your own special ways of a communicating and ontology just using XML. Okay, So, uh, x b r l is an enhanced version of XML, okay? And so some of these older technologies, quote unquote old 20 years old, are essentially gonna be driving a lot of this stuff. So you know you know Corbett, right? Corba? Is that what a maid omg you know, on the communication and press thing, do you realize that basically every single device in the world has a corpus standard at okay? Yeah, omg Standard isn't all your smartphones and all your computers. And and that's how they communicate. It turns out that a lot of this old stuff quote unquote, is so rigidly well defined. Well done that you can build modern stuff that takes us to the Mars based on these old standards. >> All right, we got to go. But I gotta give you the award for the most acronyms >> HR 15 30 fi G o m g s b r >> m fsoc tarp. Oh, fr already halfway. We knew that Owl XML ex brl corba, Which of course >> I do. But that's well done. Like thanks so much for coming. Everyone tried to have you. All right, keep it right there, everybody, We'll be back with our next guest from M i t cdo I Q right after this short, brief short message. Thank you
SUMMARY :
Brought to you by A lot of acronym stands for M I. T. Of course, the great institution. in the same company, you know, we Sometimes engineers arrive and they could do some things. And it Boy, if you put in some data data capital in there, you really explosions. of the United States government and trying to roll up all the expenses into one kind So they're to G et o reports out criticizing how was done, and the government's I forget the exact invitation You pull out the net net income information and says its net income, but you don't know what it attaches So it also goes back, and they're serving as you get farther and farther out the tree, Okay, how does this relate to the financial and the 15 30 is going to dramatically change the way, So one of the things we have advised is that No, the machine to machine is coming in with son Okay, you have various So if you like at a sec Okay, so so you could have the machines go and check scale. I mean, Holland's reporting something on the order of 90%. We say pick up. you're taking people out of the whole cycle. Explain the OMG You remember? go through to the calculation, assuming you could have a calculation routine to of you community banks. gains, probably after the first time you get it done. of the same data. You just give the model to the semantic worksheet and all turn around. and so the securities analyst can spend Mme. And you know, you hear it through this conference, for instance, something like 80 to 85% of the time You have to understand what data means You're going to figure out what your modeling really means. to another cut in the data. on the communication and press thing, do you realize that basically every single device But I gotta give you the award for the most acronyms We knew that Owl Thank you
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Paul Gill | PERSON | 0.99+ |
Obama | PERSON | 0.99+ |
Trump | PERSON | 0.99+ |
IBM | ORGANIZATION | 0.99+ |
Lars | PERSON | 0.99+ |
India | LOCATION | 0.99+ |
2017 | DATE | 0.99+ |
David | PERSON | 0.99+ |
five | QUANTITY | 0.99+ |
Goldman | ORGANIZATION | 0.99+ |
Issa | PERSON | 0.99+ |
Federated Enterprise Risk Management Group | ORGANIZATION | 0.99+ |
80 | QUANTITY | 0.99+ |
600 hours | QUANTITY | 0.99+ |
Financial Transparency Act | TITLE | 0.99+ |
Congress | ORGANIZATION | 0.99+ |
60% | QUANTITY | 0.99+ |
Maxine Waters Committee | ORGANIZATION | 0.99+ |
Silicon Angle Media | ORGANIZATION | 0.99+ |
Tokyo | LOCATION | 0.99+ |
90% | QUANTITY | 0.99+ |
20 years | QUANTITY | 0.99+ |
United States | LOCATION | 0.99+ |
Maria | PERSON | 0.99+ |
600 | QUANTITY | 0.99+ |
National Association Insurance Commissioners | ORGANIZATION | 0.99+ |
Brass Rat Capital | ORGANIZATION | 0.99+ |
California | LOCATION | 0.99+ |
Citibank | ORGANIZATION | 0.99+ |
Goldman Sachs | ORGANIZATION | 0.99+ |
Excel | TITLE | 0.99+ |
FERC | ORGANIZATION | 0.99+ |
Lars Toomre | PERSON | 0.99+ |
15 30 | TITLE | 0.99+ |
2005 | DATE | 0.99+ |
two leaders | QUANTITY | 0.99+ |
Cambridge, Massachusetts | LOCATION | 0.99+ |
SEC | ORGANIZATION | 0.99+ |
Australia | LOCATION | 0.99+ |
three years | QUANTITY | 0.99+ |
three | QUANTITY | 0.99+ |
7 | QUANTITY | 0.99+ |
NIST | ORGANIZATION | 0.99+ |
Open Data Act of 2014 | TITLE | 0.99+ |
25 negative votes | QUANTITY | 0.99+ |
85% | QUANTITY | 0.99+ |
today | DATE | 0.99+ |
50 | QUANTITY | 0.99+ |
two years | QUANTITY | 0.99+ |
Sarah | PERSON | 0.99+ |
yesterday | DATE | 0.99+ |
Veterans Affairs | ORGANIZATION | 0.99+ |
five parts | QUANTITY | 0.99+ |
both | QUANTITY | 0.98+ |
first time | QUANTITY | 0.98+ |
Republican | ORGANIZATION | 0.98+ |
one | QUANTITY | 0.98+ |
two weeks ago | DATE | 0.98+ |
one concept | QUANTITY | 0.98+ |
DARPA | ORGANIZATION | 0.98+ |
10,000 times | QUANTITY | 0.98+ |
first | QUANTITY | 0.98+ |
New York | LOCATION | 0.98+ |
Alex | PERSON | 0.98+ |
United States government | ORGANIZATION | 0.98+ |
Vader | PERSON | 0.98+ |
one day | QUANTITY | 0.98+ |
about 50 cases | QUANTITY | 0.98+ |
Treasury | ORGANIZATION | 0.97+ |
government Affairs Committee | ORGANIZATION | 0.97+ |
Mars | LOCATION | 0.97+ |
Object Management Group | ORGANIZATION | 0.97+ |
Government Data act | TITLE | 0.96+ |
earlier this year | DATE | 0.96+ |
OMG | ORGANIZATION | 0.96+ |
Teff | PERSON | 0.96+ |
100 | QUANTITY | 0.96+ |
six years | QUANTITY | 0.96+ |
Beaver | PERSON | 0.95+ |
two significant financial programs | QUANTITY | 0.94+ |
two point | QUANTITY | 0.94+ |
third generation | QUANTITY | 0.94+ |
Moritz Mann, Open Systems AG | CUBEConversations, July 2019
>> from our studios in the heart of Silicon Valley, Palo Alto, California. It is a cute conversation. >> Everyone. Welcome to this Special Cube conversation here at the Palo Alto Cube Studios. I'm John for a host of Cuba here. Moritz man is the head of the product management team at Open Systems A G. Great to see you again. Thanks for coming in. >> Hey, John. Thanks for having me. >> So last time we spoke, you had your event in Las Vegas. You guys are launching. You have a new headquarters here in Silicon Valley. Opened up this past spring. Congratulations. Thank you. >> Yeah, it's a great, great venue to start, and we set foot on the Silicon Valley ground. So to make our way to >> I know you've been super busy with the new building and rolling out, expanding heavily here in the Valley. But you guys were in the hottest area that we're covering Security Cloud security on premise, security. The combination of both has been the number one conversation pretty much in the cloud world right now. Honestly, besides a normal cloud, native cloud I t hybrid versus multi cloud out. See, that continues to be the discussion I think there's no more debate around multi cloud in hybrid public clouds. Great people gonna still keep their enterprises. But the security equation still is changing this new requirements. What's the latest that you guys are seeing with respect to security? >> Yeah. So, John, what we see is actually that cloud adoption had happens at different speeds. So you have usually the infrastructure of the service. Adoption would happens in a quite controlled way because there's a lift in shift. Do you have your old data center? You you take it and you transferred into azure I W S O G C P. But then there's also uncontrolled at option, which is in the SAS space. And I think this is where a lot off data risk occur, especially the wake off GDP are on where we see that this adoption happens. Maurin a sometimes control, but sometimes in a very uncontrolled way, >> explain that the uncontrolled and controlled expansion of of how security and multi cloud and cloud is going because this interesting control means this this plan's to do stuff uncontrolled means it's just by other forces explain uncontrolled versus controls >> eso controlled specifically means the IittIe team takes as a project plan and aches servers and workloads and moves them in a controlled fashion or in a dedicated project to the cloud. But what happened in the business world of business I t is actually did use those share content at any time with any device at any at any time and in all locations. So this is called the Mobile Enterprise on the Cloud First Enterprise. So it means that the classical security perimeter and the controls in that are my past, actually, by the path of least resistance or the shortest path >> available. And this is the classic case. People use Dropbox with some, you know, personal things. They're at home, they're at work, a p I based software. That's what you're getting at the >> and the issue of this is that that the data that has bean, like contained an pera meters where, you know, as it Caesar, where your data is. This has bean deployed too many edge devices, too many mobile devices, and it's get it gets shared, a nun controlled way. >> We'll get a couple talk tracks would like to drill down on that, because I think this is the trend. We're seeing a pea eye's dominant. The perimeter on the infrastructure has gone away. It's only getting bigger and larger. You got I, O. T and T Edge just and the networks are controlled and also owned by different people. So the packets of moving on it that's crazy so that that's the reality. First, talk track is the security challenge. What is the security challenge? How does a customer figure out what to do from an architectural standpoint when they're dealing with hybrid and multi cloud? So first of >> all, um, customers or BC enterprises try need to re think their infrastructure infrastructure centric view off the architecture's. So the architecture that had been built around data send us needs to become hybrid and multi cloud aware. So that means they need to define a new way off a perimeter, which is in cloud but also in the covering. Still the old, so to say, legacy hyper data center set up, which has the data still in the old data center and at the same time, they need to open up and become the cloud themselves, so to say, and but still draw a perimeter around their data and they users and not and their applications and not so much anymore around the physical infrastructure. >> So taking, changing their view of what a security product is, Is that really what you're getting at? >> Yeah, So the issues with the product point solution was that they fixed a certain part off off a tactile issue. So if you take a firewall in itself, firewall back then it was like a entry door to a big building, and you could could decide who comes out goes in. Now. If the the kind of the walls of the building are vanishing or arm or more FIC, you need to come over the more integrated concept. So having these stacked appliance and stacked security solutions trying to work together and chain them doesn't work anymore. So we think and we see that, >> Why is that? Why doesn't it work? Because in >> the end, it's it's it's hardly two to operate them. Each of those points solutions have their own end off life. They have their own life cycle. They have their own AP eyes. They have their own TCO, as all that needs to be covered. And then there's the human aspect where you have the knowledge pools around >> those technologies. So as an enterprise you have to content to continuously keep the very scar security experts to maintain content continues the depreciating assets running right, >> and they're also in it. We weren't built for tying into a holistic kind of platform. >> Yeah, What we see is that that enterprises now realize we have data centers and it's not accepted reality that you can abstracted with the cloud. So you have You don't own your own servers and buildings anymore. So you have a PAX model to subscribe to Cloud Service is and we think that this has to happen to security to so shift from cap ex to our pecs and the same way also for operational matters >> securities. The service is a crepe is a small I want to ask you on that front you mentioned mobile users. How do you secure the mobile uses when they use cloud collaboration? Because this is really what uses expect, and they want How do you secure it? >> So be secured by by actually monitoring the data where it actually gravitates, and this is usually in the cloud. So we enforce the data that is in transit through, ah, proxies and gators towards the cloud from the endpoint devices, but also then looking by AP eyes in the cloud themselves to look for threats, data leakage and also sandbox. Certain activities that happened. There >> are the next talk talk I want to get into is the expansion to hybrid and multi cloud so that you guys do from a product standpoint, solution for your customers. But in general, this is in the industry conversation as well. How how do you look at this from a software standpoint? Because, you know, we've heard Pat Gelsinger of'em were talking about somewhere to find Data Center S d n. Everything's now software based. You talk about the premiere goes away. You guys were kind of bring up a different approaches. A software perimeter? Yeah, what is the challenge for expanding to multi cloud and hybrid cloud? >> So So the challenge for enterprise and customers we talked to is that they have to run their old business. Gardner once called it by motile business, and it's still adopting not one cloud, but we see in our surveys. And this is also what market research confirms is that customers end up with 2 to 3 loud vendors. So there were will be one or two platforms that will be the primary to their major majority of applications and data gravity. But they will end up and become much more flexible with have running AWS, the old Davis Center. But it was the G, C, P and Azure, or Ali Baba glowed even side by side, right tow cover the different speeds at what their own and the price runs. And >> so I gotta ask you about Cloud Needed was one of the things that you're bringing up that just jumps in my head. And when I got to ask, because this is what I see is a potential challenge. It might be a current challenges when you have kubernetes growing such a rapid rate. You see the level of service is coming online much higher rate. So okay, people, mobile users, they're using the drop boxes, the boxes and using all these FBI service's. But that's just those wraps. As a hundreds and thousands of micro service is being stood up and Tauron down in there, you guys are taking, I think, an approach of putting a perimeter software premieres around these kinds of things, but they get turned on enough. How do you know what's clean? It's all done automatically, so this is becoming a challenge. So is this what you guys mean when you say software perimeter that you guys could just put security around things at any time? Is that explain this? >> Yeah, So? So if you talk about the service match so really mashing cloudy but native functions, I think it's still in the face where it's, I would say, chaos chaotic when you have specific projects that are being ramped up them down. So we draw a perimeter in that specific contact. So let's say you have You're ramping up a lot off cloud a function AWS. We can build a pyramid around this kind off containment and look especially for threats in the activity locks off. The different component is containers, but from from a design perspective, this needs to be, uh, we need to think off the future because if you look at Mike soft on AWS strategy, those containers will eventually move Also back to the edge. Eso were in preparing that to support those models also cover. Bring these functions closer back again to the edge on We call that not any longer the when, ej but it will become a cloud at at actually. So it's not an extension of the land that comes to the data. It's actually the data and the applications coming back to the user and much closer. >> Yeah. I mean, in that case, you could define the on premises environment has an edge, big edge, because this is all about moving, were close and data around. This is what the new normal is. Yeah, So okay, I gotta ask the next question, which is okay, If that's true, that means that kubernetes becomes a critical part of all this. And containers. How do you guys play with that at all? >> So we play with us by by actually looking at data coming from that at the moment. We're looking at this from a from a data transit perspective. We But we will further Maur integrate into their eighties AP eyes and actually become part off the C I C D. Process that building then actually big become a security function in approval and rolling out a cannery to certain service mesh. And we can say, Well, this is safe for this is unsafe This is, I think, the eventual goal to get there. But But for now, it's It's really about tracking the locks of each of those containers and actually having a parent her and segmentation around this service mash cloud. So to say, >> I think you guys got a good thing going on when you talk about this new concept that's of softer to find perimeter. You can almost map that to anything you get. Really think everything has its own little perimeter workload. Could be moving around still in these three secure. So I gotta ask on the next talk Trek is this leads into hybrid cloud. This is the hottest topic. Hybrid cloud to me is the same as multi cloud. Just kind of get together a little bit different. But hybrid cloud means you're operating both on premises and in the cloud. This is becoming a channel most si si SOS Chief admission Security officers. I don't want to fork their teams and have multiple people coding different stacks. They don't want the vendor lock in, and so you're seeing a lot of people pulling back on premises building their own stacks, deploying in the cloud and having a seamless operation. What is your definition of hybrid? Where do you see hybrid going? And how important is it? Have a hybrid strategy. >> So I think the key successfactors of a hybrid strategy is that standards standardization is a big topic. So we think that a service platform that to secure that like the SD when secure service platform rebuilt, needs to be standardized on operational level, but also from a baseline security and detection level. And this means that if you run and create your own work, those on Prem you need to have the same security and standard security and deployment standard for the clout and have the seamless security primary perimeter and level off security no matter where these these deployments are. And the second factor of this is actually how do you ensure a secure data transfer between those different workloads? And this is where S T win comes into play, which acts as a fabric together with when backbone, where we connect all those pieces together in a secure fashion >> where it's great to have you on the Q and sharing your insight on the industry. Let's get into your company. Open systems. You guys provide an integrated solution for Dev Ops and Secure Service and Security Platform. Take a minute to talk about the innovations that you guys were doing because you guys talk a lot about Casby. Talk a lot about integrated esti when but first define what Casby is for. The audience doesn't know what Casby is. C. A S B. It's kicked around all of the security conscious of your new to security. It's an acronym that you should pay attention to so defined casby and talk about your solution. >> Eso casby isn't theory. Aviation means cloud access security we broker. So it's actually becoming this centralized orchestrator that that allows and defines access based on a trust level. So saying, um, first of all, it's between networks saying I have a mobile workforce accessing SAS or I s applications. Can't be it in the middle to provide security and visibility about Where's my data moving? Where's married? Where do I have exposure off off GDP, our compliance or P C. I or he power risks And where is it exposed to, Which is a big deal on it's kind of the lowest level to start with, But then it goes further by. You can use the Casby to actually pull in data that that is about I s were close to toe identified data that's being addressed and stored. So are there any incidentally, a shared data artifacts that are actually critical to the business? And are they shared with extra resource is and then going one step further, where we then have a complete zero trust access model where we say we know exactly who can talkto which application at any time on give access to. But as everything this needs to be is in embedded in an evolution >> and the benefit ultimately goes to the SAS applications toe, have security built in. >> That's the first thing that you need to tackle. Nowadays, it's get your sass, cloud security or policy enforced on, but without disrupting service on business on to actually empower business and not to block and keep out the business >> can make us the classic application developer challenge, which is? They love to co they love the build applications, and what cloud did with Dev Ops was abstracted away the infrastructure so that they didn't have to do all this configuration. Sister. Right? APs You guys air enabling that for security? >> Exactly. Yeah. So coming back to this multi protein product cloud would, which is not keeping up anymore with the current reality and needs of a business. So we took the approach and compared death ops with a great service platform. So we have engineers building the platform. That's Integrated Security Service Platform, which promotes Esti Wen managed Detection response and Caspi Service is in one on the one platform which is tightly integrated. But in the in the customer focus that we provide them on or Pecs model, which is pretty, very predictable, very transparent in their security posture. Make that a scalable platform to operate and expand their business on. >> And that's great. Congratulations. I wanna go back for the final point here to round up the interview for the I T. Folks watching or, um, folks who have to implement multi cloud and hybrid cloud they're sitting there could be a cloud architect that could be an I T. Operations or 90 pro. They think multi cloud this in hybrid club. This is the environment. They have to get their arms around. How? What >> should they >> be thinking about? Around multi cloud and hybrid cloud. What is it, really? What's the reality now? What >> should they be considering for evaluation? What are some of the key things that that should be on their mind when they're dealing with hybrid cloud and all the opportunity around it? >> So I think they're they're like, four key pieces. Oneness. Um, they think they still have to start to think strategic. So what? It's a platform and a partner That helps them to plan ahead for the next 3 to 5 years in a way that they can really focus on what their business needs are. This is the scalability aspect. Secondly, it's a do. We have a network on security, our architecture that allows me to grow confidently and go down different venues to to actually adopt multi clouds without worrying about the security implication behind it. Too much, uh, and to implement it. And third is have this baseline and have this standardized security posture around wherever the data is moving, being at Mobil's being it SAS or being on Prem and in clouds workloads, the fourth pieces again, reading, thinking off where did you spend most of my time? Where do I create? Create value by by defining this framework so it really can create a benefit and value for the enterprise? Because if you do it not right your not right. You will have a way. You will end up with a an architecture that will break the business and not accelerated. >> Or it's made head of product that open systems here inside the Cube studios. Um, great job. Must love your job. You got the keys. A lot of pressure. Security being a product. Head of product for security companies. A lot of pressure before we wrap up. Just give a quick plug for the company. You guys hiring you have a new office space here in Redwood City. Looks beautiful. Give a quick shared play for the company. >> Yeah. So open systems the great company to work with. We're expanding in the U. S. On also, Amy, uh, with all the work force. So we're hiring. So go on our website. We have a lot off open positions, exciting challenges in a growth or into workspace. Andi. Yeah. As you said, security at the moment, it's one of the hottest areas to be in, especially with all the fundamental changes happening in the enterprise and architecture. I d landscape. So yeah, >> and clouds securing specifically. Not just in point. The normal stuff that people used to classify as hot as hot as Hades could be right now. But thanks for coming on. Strong insights. I'm jumping with Cuba here in Palo Alto with more Morris Man is the head of product management for open systems. Thanks for watching.
SUMMARY :
from our studios in the heart of Silicon Valley, Palo Alto, A G. Great to see you again. So last time we spoke, you had your event in Las Vegas. So to make our way to What's the latest that you guys are seeing with respect to security? So you have usually the infrastructure of the service. So it means that the classical People use Dropbox with some, you know, personal things. and the issue of this is that that the data that has bean, So the packets of moving on it that's crazy so that that's the reality. So that means they need to define a new way off a perimeter, So if you take a firewall in itself, firewall back then it was like a entry where you have the knowledge pools around So as an enterprise you have to content to continuously keep and they're also in it. So you have You don't own your own servers and buildings The service is a crepe is a small I want to ask you on that front you mentioned mobile users. So be secured by by actually monitoring the data are the next talk talk I want to get into is the expansion to hybrid and multi cloud so that you guys do So So the challenge for enterprise and customers we talked to is that they have to So is this what you guys mean when you say software perimeter that you guys could just put security So it's not an extension of the land that comes to the data. Yeah, So okay, I gotta ask the next question, which is okay, If that's true, that means that kubernetes So to say, So I gotta ask on the next talk Trek is this leads into hybrid cloud. And the second factor of this is actually how do you ensure Take a minute to talk about the innovations that you guys were doing because you guys Can't be it in the middle to provide security That's the first thing that you need to tackle. and what cloud did with Dev Ops was abstracted away the infrastructure so that they didn't have to do But in the in the customer focus This is the environment. What's the reality now? This is the scalability aspect. Or it's made head of product that open systems here inside the Cube studios. We're expanding in the U. The normal stuff that people used to classify as hot as hot
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
John | PERSON | 0.99+ |
one | QUANTITY | 0.99+ |
Silicon Valley | LOCATION | 0.99+ |
Palo Alto | LOCATION | 0.99+ |
Amy | PERSON | 0.99+ |
2 | QUANTITY | 0.99+ |
AWS | ORGANIZATION | 0.99+ |
Las Vegas | LOCATION | 0.99+ |
Redwood City | LOCATION | 0.99+ |
Moritz Mann | PERSON | 0.99+ |
Silicon Valley | LOCATION | 0.99+ |
Pat Gelsinger | PERSON | 0.99+ |
July 2019 | DATE | 0.99+ |
U. S. | LOCATION | 0.99+ |
second factor | QUANTITY | 0.99+ |
hundreds | QUANTITY | 0.99+ |
third | QUANTITY | 0.99+ |
two platforms | QUANTITY | 0.99+ |
Cuba | LOCATION | 0.99+ |
First | QUANTITY | 0.99+ |
fourth pieces | QUANTITY | 0.98+ |
Each | QUANTITY | 0.98+ |
Mike soft | PERSON | 0.98+ |
Moritz | PERSON | 0.98+ |
both | QUANTITY | 0.98+ |
two | QUANTITY | 0.98+ |
S T win | TITLE | 0.98+ |
FBI | ORGANIZATION | 0.98+ |
Dropbox | ORGANIZATION | 0.98+ |
T Edge | ORGANIZATION | 0.97+ |
Morris Man | PERSON | 0.97+ |
Palo Alto, California | LOCATION | 0.97+ |
Secondly | QUANTITY | 0.97+ |
Andi | PERSON | 0.96+ |
first | QUANTITY | 0.96+ |
Dev Ops | TITLE | 0.96+ |
Davis Center | ORGANIZATION | 0.96+ |
first thing | QUANTITY | 0.95+ |
each | QUANTITY | 0.94+ |
Data Center | ORGANIZATION | 0.94+ |
one platform | QUANTITY | 0.93+ |
5 years | QUANTITY | 0.93+ |
Open Systems AG | ORGANIZATION | 0.93+ |
Mobil | ORGANIZATION | 0.92+ |
3 loud vendors | QUANTITY | 0.92+ |
O. T | ORGANIZATION | 0.92+ |
one cloud | QUANTITY | 0.9+ |
3 | QUANTITY | 0.88+ |
SAS | ORGANIZATION | 0.88+ |
G | ORGANIZATION | 0.88+ |
Open Systems A G. | ORGANIZATION | 0.87+ |
Maur | PERSON | 0.84+ |
Gardner | PERSON | 0.84+ |
Palo Alto Cube Studios | ORGANIZATION | 0.83+ |
Tauron | PERSON | 0.81+ |
Chief admission Security officers | PERSON | 0.81+ |
eighties | DATE | 0.78+ |
four key pieces | QUANTITY | 0.76+ |
death | TITLE | 0.75+ |
Pecs | ORGANIZATION | 0.75+ |
Cloud | TITLE | 0.74+ |
past spring | DATE | 0.74+ |
one step | QUANTITY | 0.73+ |
zero | QUANTITY | 0.73+ |
three | QUANTITY | 0.72+ |
Cube | ORGANIZATION | 0.65+ |
Casby | ORGANIZATION | 0.63+ |
Hades | PERSON | 0.63+ |
C | ORGANIZATION | 0.62+ |
Maurin | LOCATION | 0.61+ |
SOS | PERSON | 0.61+ |
Casby | TITLE | 0.59+ |
Prem | ORGANIZATION | 0.58+ |
Ali | TITLE | 0.57+ |
Baba | PERSON | 0.56+ |
Dev | TITLE | 0.54+ |
Eso | ORGANIZATION | 0.54+ |
micro service | QUANTITY | 0.52+ |
CUBEConversations | EVENT | 0.51+ |
Azure | ORGANIZATION | 0.5+ |
thousands | QUANTITY | 0.5+ |
90 | QUANTITY | 0.49+ |
ops | ORGANIZATION | 0.48+ |
pro. | ORGANIZATION | 0.45+ |
Caspi | TITLE | 0.44+ |
Jason Gartner, IBM | IBM Think 2019
>> Live from San Francisco, it's theCUBE covering IBM Think 2019, brought to you by IBM. >> Hey, welcome back everyone. We're here live at theCUBE in Moscone North in San Francisco, for IBM Think 2019. I'm John Furrier with Stu Miniman, talking to all the top executives, top people here at IBM, getting the scoop on cloud and AI. Our next guest, Jason Gardner, Vice President of Worldwide Sales for Hybrid Cloud at IBM, manages key product, which is part of the IBM Cloud Private, big part of the announcements, big Cloud story here. It's multi-cloud, it's hybrid. Welcome back. >> It's hybrid multi-cloud. Thank you, for having me back. >> CUBE Alumni been on as early, going back as 2012. Now, one big event. >> I can't believe it's been that long. But yeah, I'm happy to be back and I can't believe I've been on theCUBE for so long. >> Talk about your new role, and you had previous roles within IBM dealing with the kind of clients and integration. Your role now is worldwide sales. You're taking this Cloud Private offering, bringing the customers, being as the linchpin for integration. Talk about what you do and some of the engagements you have. >> Yeah, previously, I was really focused in on development and offering management on, point products and how they help clients move to the Cloud. Things such as our Pure Business, our Spare Business, and now I've actually been able to move into a much more horizontal role, where I have the portfolio across the Hybrid Cloud integration side, so everything from our Websphere family, which includes IBM Cloud Private, straight to the integration challenges that that brings as well as our digital business automation portfolio. >> Yeah, I have a personal joy. Stu knows I'm fanatic about Kubernetes, and when I heard Ginni Rometty say Kubernetes twice in a CNBC interview you know it's made it. >> Yes. >> Kubernetes is a big part of cloud native containers, really now has created the connective tissue to make cloud and multi cloud viable. This is a key part of it. I want you to talk about the context of these trends and unpack this Cloud Private offering. Because it's instrumental in seems in the news. >> It is, it is. >> What is it about? >> It is, it really creates that ubiquitous layer I think that we've all been searching for. That next generation of virtualization and connective tissue as you call it. And as you begin to unpack that it really kind of starts with the rise of microservices and the need to be able to pack them very tightly into containers. That's really the birth of Kubernetes, was the ability to orchestrate those containers. So Kubernetes becomes that ubiquitous layer in there. But, IBM Cloud Private takes that and takes it to the next level, right. And, really what it is, it's the services on top of that, the cloud services which enable those containers to work together. And, it is a lot of open source capabilities such as Helm, Prometheus, Kibana and some of those core services that those microservices require in order to be able to run efficiently. >> So, Jason, we know it's a multicloud world. Everybody out there would love to say, oh yes, there's one cloud, I can simplify it. I'd like to get to a nice scalable model that's simple. But, the reality is customers choose lots of different solutions because they have different needs. The Private Cloud piece is not really well understood. I'd love you to take us inside your users. Because they say okay, I'm using Amazon, I'm using Microsoft Business Services. There are certain data things that Google has. IBM has AI and business productivity and database offerings. That Cloud Private, what are the services, what are the use cases, what are the reasons why I'm buying this and being part of my overall portfolio. >> Yeah, Ginni called it Cloud 2.0, right. 1.0 was about lifting shift, it was about cloud native, and that really got us about 20% of the way there. It's at 80%, that's the real challenge, that's really where the complication comes into play. That's really what Private Cloud is about. Because not everybody can be able to take their applications, throw them away, build cloud native, or lift and shift them. If you think of big regulated industries like banking, insurance, healthcare, government. They really need to be able to have that level of security and assurances that they need within there. And, that's really where private cloud comes into play, is those really tough, challenging problems in the industry. >> Yeah, I love that. A trend I've heard from a number of customers, you talk about them getting to containerization and multifactor services, is, step one is, I've got to modernize the platform-- >> Absolutely. >> Then I can modernize the applications on top it. Is that the trend you're seeing? >> Yeah, definitely. We've been building on microservices and modernization, it's a journey right, and it's a journey of discovery I think for a lot of clients out there. And, we'd all love to be able to say, OK this is my platform and now I'm going to work on the applications. But really, sometimes the starting point may be one or the another, and it usually comes in a space of a digital requirement, and so they begin to out modernize the application and then realize, jeez! I need to be able to manage all of this, I need to be able to deploy it all, and that's when the platform comes into play and all the other services, I should say, that come along with it. >> Stu, I think you coined the term Private Cloud. I think wasn't it? >> The true private cloud. >> True private cloud. So the private cloud, again, it's all cloud operations, so I kind of disagree on this whole point about one cloud or multi-cloud. Because I think, yes multi-cloud, but you see people use cloud for workloads, right? So pick the right cloud for the right application. So this basically says, okay, if you want to use Amazon, use Amazon if that's what you want, but if you are going to use 365, maybe use Azure. >> Yep. >> If you are going to use G Suite, use Google. You guys kind of have the business apps nailed down. >> Right. >> So If you're going to use your business apps, maybe IBM. This is your opportunity. >> This is our opportunity. >> Talk about specifically the kinds of apps that you guys will power with your cloud, because multi-cloud certainly makes sense for you guys. It's multi-cloud, you won't that portability and interoperability, but the apps that you're going to power with IBM Cloud. Talk about what they are, how-- >> Yeah, if you look at, from a language perspective over the last, jeez it's been 23 years I think, since the rise of Java, right? And 1995, when the first app servers came out. Those app servers, that is really where ore applications really run on top of. And, it's those core Java applications, that are now needing that facelift, right? They need to be able to be injected with new forms of AI, new types of integrations, new types of personalization of that digital transformation that's driving it, and that's really the core suite, right? And if I look at that core suite in there, and then what do you do to modernize a Java application, and what kind of tools are available to you. How do you then manage, how do you distribute, and how do you scale those applications. It's very important. >> What is the adoption of the private cloud or the Cloud Private product. >> Yeah. >> Talk about some of the trends, how is it being used, be specific on how customers are using it. What are some of the use cases? >> Yeah, so the primary use case is to increase the agility, lower cost on the overall managing of them. But it's the increase in the agility, which is really hard to measure. Because clients want to be able to react very fast to it. And so as they build up microservices, microservices then become independent with one another. You can then update ones, very quickly and easily. They manage and they run independently, and they scale independently, and so Cloud Private provides you with all those services to able to run those microservices as containers, but then be able to tie them together in a much more comprehensive enterprise suite. You know, a core technology like Helm, I'm waiting for Ginni to say that one on stage. But a core technology like Helm, really provides that robust, enterprise class distribution for scalability and high availability of a microservice based application. >> Jason, can you bring us inside the organization of the customers your selling to? It used to be, it was the refresh cycle. It's like OK, my X86 refresh, or you know, the budget cycles that I had. Cloud is quite a bit different. >> It is. >> Private Cloud is kind of straddling between the old world and the new world. What are the dynamics you're seeing as to who controls the purse strings? Are they moving faster to that opex model. >> You know, there's no one person who owns the purse strings on it, but it does float between the infrastructure team, knows that they need to do something different, the developers or the application development team, and really the strategy, the Chief Strategy Officer, in that IT organization is really where it's coming together. Because one thing I think that we've all learned is that developers will find the easiest, fastest way to do something. No matter what rules or policies we put down. And this is about providing them with an environment that has guardrails, for them to be able to innovate as fast as they want, use the tools that they want, that their most comfortable with. Really, it's a grass roots kind of movement into these microservices, led by the developers. But the purse strings are still held at the CTO side. >> That's always a fascinating interest, because the developers they're going to go do it, but they're not usually the ones with the budget. >> That's right. >> But when do the ops people get involved, the business people, to make sure that IT manages it, gets rid of like stealth IT? >> And a lot of clients have learned to listen to the developers, because the early days of cloud, they didn't, and developers found ways through it, no matter what. And so that's really what it's about. It's like a game of bumper cars, right? You got to make sure they stay within the ring of what's safe. And, especially in this day and age of the security requirements that are out there, it's more important today than ever before. >> Jason, can you share some data around some observations that you've noticed on trends around industry uptake or is there any patterns in terms of the customer base? Obviously, people aren't going to going to cloud operations. Just, Ginni mentioned 60/40, 80/20, the ratios. What does that all mean? And, just share the trend data around adoption and patterns? >> Probably the biggest onE in there, is the 80/20, right? That there's still 80% of the applications left in the world are still locked behind the brick and mortar. That's probably our biggest piece of our opportunity, and providing clients with a way to lift them up and be able to modernize them. I think is where the huge opportunity is. But then looking at where do they land, it's not all going to public cloud, right. So private cloud it's a huge business. I think a lot of us underestimated how large that business really is, and depending on the industry, you'll see 50/50, 60/40, 40/60 split, depending on the regulations within that industry, that country, the geography, of where they really want to go to. And, a lot of our clients are asking us for solutions around that private side, but yet be able to have the flexibility to be able to-- >> So you're seeing friction on the public cloud, mainly that's inherent from either regulatory compliance, or just technical challenges. Is that kind of the vibe? >> That's probably the first one. I think there's still that regulatory requirements of data residency, and how do I get my data to application. I can build all the applications I want in the cloud, but how do I get my data there? How do I synchronize it? My lineage of my data. So they really challenged her on that. But, then on the other side of it, is around the cost, right. And, if you wanted to rebuild all of your applications, as true cloud native, from scratch. It will take you a very long time and be very, very expensive. And so, there's also a cost element and speed. You can modernize something much more quickly, and be able to get it to that same level of service, without having to start over. >> We had Arvind on earlier, yesterday, and I want to get your thoughts on the impact of the Red Hat acquisition news, because if you look at what Open Shift is doing with Cloud Private. Arvind was saying yesterday that, Arvind Krishna, he's like, this is really enabling a lot of the acceleration for the modernization of the new cloud stuff, and keeping the legacy stuff and/or transition out on different timetables. Your thought on that? >> Absolutely right, Open Shift is going to be a critical component for our overall hybrid strategy. I'm very excited about it and really looking forward to it. And, Cloud Private and the services that I talked about, run in Open Shift today. That was part of our partnership agreement. I think that you guys were at, that Arvind talked about at that time. But, it provides the platform, for all of those traditional applications, which we've modernized. And the interesting thing is that we've actually modernized ourselves. We've modernized our middle-ware. We've modernized some of those products that are you know, 10, 20 years old. Everything from WebSphere, to MQ, to BPM. They've all been modernized in that same fashion. >> Yeah, Jason, speaking of modernization. Bring us inside you're sales force a little bit. How do they keep up, and what's the skill set that you're looking for, on your team to sell on this. You know, they need to understand Helm and Kubernetes, and all these microservice architecture, where five years ago, it was a totally different world. >> Absolutely, you know I think that if I look at a, it's not a skill, it's passion, right? It's that never give up type of mentality, I think that we look for, in a sales force and I never give up attitude really provides you with that foundation, for never stop learning, right. If anything that you've guys have noticed here over the last ten years in your guys' journey, is that this industry just changes so repidly, all the time. And, so as a sales force, you can't just acquire skills. You don't go out and hire skills. You hire people and you hire passion, and you hire people with that never give up attitude. I've been going around. We've been doing our sales kick-offs. I've done two out of the three now, so far. I tell you they are energized. They love it. They are energized about the Red Hat Acquisition. It shows that IBM really gets it. They've been telling me, does IBM really get it? And now they're like wow, we really do get it? And, they're really energized, because all of the pieces are falling into place, around this modernization, and clients, and we're hitting the timeing. >> It's time to hit that pedal to the metal, put the gas on-- >> They always say, there's no speed limit on sales. >> (laughs) Exactly. OK, first of all great, great conversation, and thanks for waiting out our journey. Stu, I would say that the salespeople got to watch all theCube videos, because all of the best content is coming out of theCube here, and great to have you on. But, quick plug, I'll give you the last word. What's the pitch, share the pitch for the Hybrid Cloud, what your team is offering? What's the, the core pitch for your customers, when you go to them? >> I think the core pitch is around modernization. It's the journey that clients are on, from application development, to how you build your apps, and how you build the microservices. How you integrate those applications, what's your API strategy, how do you move that data around securely, and then how do you manage all of those pieces together in that new modern world. And then, really looking your overall processes, and can you modernize your overall processes, add AI capabilities into that. So, it's that modernization journey. That's really what I talk to them about, and you don't have to do everything, right? Start small, start as a pinpointed piece, and we'll help you along that journey. And it becomes a journey of self-discovery, but we're there the whole way. We're a partner, that's really what it's about. >> Jason Gardner, Vice President of Worldwide Sales with Hybrid Cloud at IBM. TheCube, bringing all the data here, from IBM Think 2019. This is day three, of four days of coverage, here in Moscone live in San Francisco. We'll be right back with more, after this short break. (upbeat music)
SUMMARY :
brought to you by IBM. big part of the announcements, It's hybrid multi-cloud. CUBE Alumni been on as I can't believe it's been that long. of the engagements you have. and now I've actually been able to move in a CNBC interview you know it's made it. in seems in the news. That's really the birth of are the reasons why I'm buying about 20% of the way there. I've got to modernize the platform-- Is that the trend you're seeing? and all the other services, I should say, the term Private Cloud. So the private cloud, again, You guys kind of have the This is your opportunity. and interoperability, but the apps and that's really the core suite, right? of the private cloud What are some of the use cases? But it's the increase in the agility, of the customers your selling to? What are the dynamics you're seeing as and really the strategy, the ones with the budget. of the security requirements And, just share the trend data that country, the geography, Is that kind of the vibe? I can build all the applications of the acceleration for the modernization And, Cloud Private and the services You know, they need to because all of the pieces They always say, there's and great to have you on. to how you build your apps, TheCube, bringing all the data
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Jason Gardner | PERSON | 0.99+ |
Jason | PERSON | 0.99+ |
Arvind | PERSON | 0.99+ |
IBM | ORGANIZATION | 0.99+ |
Jason Gartner | PERSON | 0.99+ |
John Furrier | PERSON | 0.99+ |
Jason Gardner | PERSON | 0.99+ |
Stu Miniman | PERSON | 0.99+ |
San Francisco | LOCATION | 0.99+ |
2012 | DATE | 0.99+ |
ORGANIZATION | 0.99+ | |
80% | QUANTITY | 0.99+ |
10 | QUANTITY | 0.99+ |
Amazon | ORGANIZATION | 0.99+ |
two | QUANTITY | 0.99+ |
Ginni Rometty | PERSON | 0.99+ |
23 years | QUANTITY | 0.99+ |
yesterday | DATE | 0.99+ |
G Suite | TITLE | 0.99+ |
Ginni | PERSON | 0.99+ |
Java | TITLE | 0.99+ |
four days | QUANTITY | 0.99+ |
first one | QUANTITY | 0.99+ |
1995 | DATE | 0.99+ |
Arvind Krishna | PERSON | 0.99+ |
today | DATE | 0.99+ |
CNBC | ORGANIZATION | 0.98+ |
Kubernetes | TITLE | 0.98+ |
three | QUANTITY | 0.98+ |
Moscone | LOCATION | 0.98+ |
Moscone North | LOCATION | 0.97+ |
Stu | PERSON | 0.97+ |
first app | QUANTITY | 0.96+ |
twice | QUANTITY | 0.96+ |
Helm | ORGANIZATION | 0.96+ |
Red Hat | ORGANIZATION | 0.96+ |
about 20% | QUANTITY | 0.96+ |
X86 | COMMERCIAL_ITEM | 0.96+ |
BPM | ORGANIZATION | 0.95+ |
five years ago | DATE | 0.94+ |
Open Shift | ORGANIZATION | 0.94+ |
Cloud 2.0 | TITLE | 0.92+ |
one cloud | QUANTITY | 0.91+ |
MQ | ORGANIZATION | 0.9+ |
365 | TITLE | 0.89+ |
Vice President | PERSON | 0.88+ |
one thing | QUANTITY | 0.87+ |
Azure | TITLE | 0.87+ |
Think 2019 | EVENT | 0.87+ |
IBM Think 2019 | EVENT | 0.86+ |
Cloud Private | TITLE | 0.82+ |
CUBE | ORGANIZATION | 0.82+ |
day three | QUANTITY | 0.81+ |
20 years old | QUANTITY | 0.81+ |
Microsoft Business | ORGANIZATION | 0.81+ |
WebSphere | ORGANIZATION | 0.78+ |
theCube | ORGANIZATION | 0.78+ |
one big event | QUANTITY | 0.78+ |
Cloud Private | ORGANIZATION | 0.78+ |
Melvin Hillsman, OpenLab | OpenStack Summit 2018
>> (Narrator) Live from Vancouver, Canada, it's The Cube, covering OpenStack Summit North America 2018, brought to you by Red Hat, the OpenStack Foundation, and its Ecosystem partners. >> Welcome back, I'm Stu Miniman with my co-host John Troyer and you're watching The Cube, worldwide leader in tech coverage, and this is OpenStack Summit 2018 in Vancouver. Happy to welcome to the program, first-time guest Melvin Hillsman, who's the governance board member of OpenLab, which we got to hear about in the keynote on Monday. Thanks so much for joining us. >> Thanks for having me. >> Alright, so Melvin, we were given, start us off with a little bit about your background, what brought you to the OpenStack community, and we'll go from there. >> Sure, yeah, so my background is in Linux system administration and my getting involved in OpenStack was more or less seeing the writing on the wall as it relates to virtualization and wanting to get an early start in understanding how things would pan out over the course of some years. So I probably started OpenStack maybe three or four so years ago. I was probably later to the party than I wanted to be, but through that process, started working at Rackspace first and that's how I really got more involved into OpenStack in particular. >> Yeah, you made a comment, though. The writing on the wall for virtualization. Explained that for a sec. >> So for me, I was at a shared hosting company and we weren't virtualizin' anything. We were using traditional servers, dedicated servers, installing hundreds of customers on those servers. And so, at one point, what we started doing was we would take a dedicated server, we would create a virtual machine on it, but we would use most of the resources of that dedicated server, and so what allowed that shared hosting was to tear stuff down and recreate it, but it was very manual process and so, of course, the infrastructure service and orchestration around that OpenStack was becoming the de facto standard and way of doing it, and so I didn't want to try to learn manually, or fix something up internally, I wanted to go where OpenStack was being highly developed a lot and people working on it in their day to day jobs, which is why I went to Rackspace. >> Okay, one of the things we look at, this is a community here, so it takes people from lots of different backgrounds, and some of them do it on their spare time, some of them are paid by larger companies to participate, so to tell us about OpenLab, itself, and how your company participates there. >> Sure, so I started, well I'm at Huawei now, but I was at Rackspace and that's kind of how I got more involved in the community and there I started working on testing things above the OpenStack ecosystem, so things that people want to build on top of OpenStack and during that process Huawei reached out to me and was like hey you know you're doing a great job here, and I was like yeah I would love to come and explore more of how we can increase this activity in the community at large. And so Oakland Lab was essentially born out of that, which the OpenStack community, they deliver the OpenStack API's, and they kind of stop there, you know. Everything above that is, you do that on your own, more or less, and so also, as a chair of the user committee, again, just being more concerned about the people who are using stuff, OpenLab was able, was available to facilitate me having access to hardware and access to people who are using things outside OverStack in use cases, et cetera, where we want to test out more integrated tools working with OpenStack and different versions of OpenStack. And so that's essentially what OpenLab is-- >> So in OpenLab, projects come together and it's basically, it's an Interop, boy, in the networking world, they've had the Interop plug and plug fest for a long time, but, in essence, projects come together and you integrate them and start, you invite them in and they integrate and start to test them. Starting with, I mean, I see, for this release, Terraform and Kubernetes. >> Yeah, so a lot of people want to to use Kubernetes, right? And as an OpenStack operator you essentially, you don't really want to go and learn all the bits of Kubernetes, necessarily, and so, but you want to use Kubernetes and you want to work seamlessly with OpenStack and you want to use the API's that you're used to using with OpenStack and so we work very heavily on the external cloud provider for OpenStack, enabling Cinder V3 for containers that you're spinning up in Kubernetes, so that they have seamless integration, you don't have to try to attach your volumes, they are automatically attached. You don't have to figure out what your load balancing is going to to look like. You use Octavia, which is load balancing service for OpenStack, very tightly integrated and things, you know, as you spin things up, they work as you as you would expect and so then all the other legacy applications and all the things you're used to doing with OpenStack, you bring on Kubernetes and you essentially do things the way you've been doing them before, with just an additional layer. >> Yeah, now I wonder if you can talk a little bit about the providers and the users, you know how do they get engaged, to and give us a little flavor around those. >> Yeah, so you get engaged, you go to OpenLabtesting.org and there's two options. One, is you can test out your applications and tools, by clicking get started, you fill that out. And what's great about open lab is that we actually reach out and we talk with you, we consult with you, per se, because we have a lot of variation in hardware that's available to us and so we want to figure out the right hardware that you need in order to do the tests that you want, so that we can get the output as it relates to that integration that will, of course, educate and inform the community at large of whether or not it's working and been validated. And, again, so as a person who wants to support OpenLab or for a provider, for example, who wants to support OpenLab, you click on the support OpenLab link, you fill out a form and you tell us you know, do you want to provide more infrastructure, do you want to talk with us about how clouds are being architected, integrations are being architected, things that you're seeing in the open source use cases that may not be getting the testing that they need and you're willing to work with engineers from other companies around that, so individual testers and then companies who may bring a number of testers together around a particular use case. >> Now, you're starting to publish some of the results of Interop testing and things like that. How is open lab, how does it produce its results, is it eventually going to be producing white papers and things like that or dashboards or what's your vision there? >> Yeah, so we produce a very archaic dashboard right now, but we're working with the CNCF to, if you go to CNCF.CI, and they have a very nice dashboard that kind of shows you a number of projects and whether or not they work together. And so it's open source, so what we want to do is work with that team to figure out how do we change the logos and the git repos, to how to driving those red and green, success or failure icons that are there, but they're relevant to the test that we're doing in OpenLab, so yeah. So we definitely want to have a dashboard that's very easy to decipher what tests are failing in or passing. >> Looking forward, what kinds of projects are you most interested in getting involved? >> Right now, very much Kubernetes, of course. We're really focusing on multi architecture, again, as a result of our work with Kubernetes and driving full conformance and multi architecture. That's kind of the wheelhouse at this time. We're open for folks to give us a lot of different use cases, like we were starting to look at some edge stuff, how can we participate there, we're starting looking at FPGA's and GPU's, so a lot different, we don't have a full integration in a lot of different areas, just yet, but we are having those conversations. >> So, actually, I spent a bunch of years, when I worked on the vendor side, living in an Interrupt lab, and the most valuable things were not figuring out what worked, but what broke, so what kind of things, you know, as you're working through this, what learnings back do you share with the community, both the providers and users? Big stumbling blocks that you can help people, give a red flag, or say you know, avoid these type of things. >> Yeah, exactly what you just said. You know, what's good is some of our stuff is geographically dispersed, so we can start to talk about if, what's the latency look like? You may, within that few square miles that you're operating and doing things, it works great, but when I'm sending something across the water how, is your product still moving quickly, is the latency too bad that we can't, I can't create a container over here because it takes too long, so one example of looking at something fail as it relates to that is we're talking with Octavia folks to see, if I spin up a lot of containers am I going to therefore create a lot of load balancers and if I create a lot of load balancers I'm creating a lot of VM's, or am I creating a lot of containers or are things breaking apart, so we need to dig a little bit further to understand what is and is not working with the integrations we're currently working on and then again we're exploring GPV, GPUs just landed more or less, that was a part of the keynote as well, and so now we're talking about, well, let's do some of that testing. The software, the code, is there but is it usable? And so that's one area we want to start playing around with. >> Okay, one of the other things in the keynote's got mentioned was Zul, the CIDT tool, how's that fitting into the OpenLab? >> Yeah, we use Zul as our gating, so what's great about Zul is that you can interac6t with projects from different SCM's, so we have some projects that live in github, some that utilize Garrote, some that utilize gitlab, and Zul has applicability where it can talk to different, it can talk across these different SCM's, and if you have a patch that depends on a patch in another another pod, so a patch on one project in one SCM can depend on a patch in another project, in a different SCM, and so what's great about Zul is that you can say, hey I'm depending on th6at, so before this patch lands, check to make sure this stuff works over there, so if it succeeds there and it's a dependency then you basically confirm that succeeds there and then now I can run the test here, and it passes here as well, so you know that you can use both of those projects together again, in an integration. Does it makes sense? Hopefully I'm making it very clear, the power there with the cross SCM integration. >> Yeah, Melvin, you've had a busy week, here, at the show. Any, you know, interesting things you learned this week or something that you heard from a customer that you thought, oh boy we got to, you know, get this into our lab or a road map or, you know-- >> The ARM story, the multi architecture is, I feel like that's really taking off. We've had discussions with quite a few folks around that, so yeah, that for me, that's the next thing that I think we're really going to concentrate a little bit harder on is, again, figuring out if there are some problems, because mostly it's been just x86, but we need to start exploring what's breaking as we add more to multi architecture. >> Melvin, no shortage of new things to test and play with, and every customer always brings some unique spins on things, so appreciate you giving us the update on OpenLab, thanks so much for joining us. >> You're Welcome. Thanks for having me. >> From John Troyer, I'm Stu Miniman, thanks so much for watching The Cube. (electronic music)
SUMMARY :
brought to you by Red Hat, and you're watching The Cube, Alright, so Melvin, we were given, and that's how I really got more involved Yeah, you made a comment, though. and so what allowed that shared hosting so to tell us about OpenLab, itself, and was like hey you know you're doing a great job here, and you integrate them and start, and you want to use the API's that you're used to and the users, you know how do they get engaged, and so we want to figure out the right hardware and things like that or dashboards and the git repos, to how to driving those red and green, so a lot different, we don't have a full integration so what kind of things, you know, and so now we're talking about, and if you have a patch that depends that you thought, oh boy we got to, you know, but we need to start exploring what's breaking so appreciate you giving us the update on OpenLab, Thanks for having me. thanks so much for watching The Cube.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
John Troyer | PERSON | 0.99+ |
Melvin Hillsman | PERSON | 0.99+ |
Melvin | PERSON | 0.99+ |
Stu Miniman | PERSON | 0.99+ |
Red Hat | ORGANIZATION | 0.99+ |
Huawei | ORGANIZATION | 0.99+ |
Monday | DATE | 0.99+ |
Vancouver | LOCATION | 0.99+ |
Vancouver, Canada | LOCATION | 0.99+ |
OpenStack | TITLE | 0.99+ |
OpenStack Foundation | ORGANIZATION | 0.99+ |
Linux | TITLE | 0.99+ |
OverStack | TITLE | 0.99+ |
Zul | TITLE | 0.99+ |
two options | QUANTITY | 0.99+ |
gitlab | TITLE | 0.99+ |
OpenStack | ORGANIZATION | 0.99+ |
One | QUANTITY | 0.98+ |
The Cube | TITLE | 0.98+ |
OpenStack Summit 2018 | EVENT | 0.98+ |
Garrote | TITLE | 0.98+ |
three | DATE | 0.98+ |
both | QUANTITY | 0.98+ |
github | TITLE | 0.98+ |
OpenLabtesting.org | OTHER | 0.98+ |
SCM | TITLE | 0.97+ |
OpenLab | TITLE | 0.97+ |
hundreds of customers | QUANTITY | 0.97+ |
Kubernetes | TITLE | 0.97+ |
Rackspace | ORGANIZATION | 0.96+ |
OpenStack Summit North America 2018 | EVENT | 0.96+ |
CNCF | ORGANIZATION | 0.96+ |
this week | DATE | 0.95+ |
one project | QUANTITY | 0.95+ |
first-time | QUANTITY | 0.95+ |
Oakland Lab | ORGANIZATION | 0.94+ |
OpenLab | ORGANIZATION | 0.93+ |
one | QUANTITY | 0.92+ |
one example | QUANTITY | 0.9+ |
one point | QUANTITY | 0.89+ |
four so years ago | DATE | 0.85+ |
lot of containers | QUANTITY | 0.85+ |
open lab | TITLE | 0.84+ |
CIDT | TITLE | 0.81+ |
every customer | QUANTITY | 0.78+ |
miles | QUANTITY | 0.77+ |
CNCF.CI | ORGANIZATION | 0.73+ |
first | QUANTITY | 0.7+ |
FPGA | ORGANIZATION | 0.69+ |
Kubernetes | ORGANIZATION | 0.65+ |
Interop | TITLE | 0.62+ |
Cinder V3 | COMMERCIAL_ITEM | 0.62+ |
OpenLab | EVENT | 0.61+ |
Red Hat Summit 2018 | Day 2 | PM Keynote
[Music] and y'all know that these [Music] ladies and gentlemen please take your seats and silence your cellphone's our program will begin shortly ladies and gentlemen please welcome Red Hat executive vice president and chief people officer dallisa Alexander an executive vice president and chief marketing officer Tim Layton [Music] hi everyone we're so excited to kick off this afternoon day 2 at the Red Hat summit we've got a stage full of stories about people making amazing contributions with open source well you know dallisa you and I both been coming to this event for a long long time so what keeps you coming back well you know the summit started as a tech conference an amazing tech conference but now it's expanded to be so much more this year I'm really thrilled that we're able to showcase the power of open source going way beyond the data center and beyond the cloud and I'm here also on a secret mission oh yes I'm here to make sure you don't make too many bad dad jokes so there's no such thing as a bad dad they're just dad jokes are supposed to be bad but I promise to keep it to my limit but I do have one okay I may appeal to the geeks in the audience okay so what do you call a serving tray full of empty beer cans yeah we container platform well that is your one just the one that's what I only got a budget of one all right well you know I have to say though in all seriousness I'm with you yeah I've been coming to the summit since its first one and I always love to hear what new directions people are scoring what ideas they're pursuing and the perspectives they bring and this afternoon for example you're gonna hear a host of different perspectives from a lot of voices you wouldn't often see on a technology mainstage in our industry and it's all part of our open source series live and I have to say there's been a lot of good buzz about this session all week and I'm truly honored and inspired to be able to introduce them all later this afternoon I can tell you over the course the last few weeks I've spent time with all of them and every single one of them is brilliant they're an innovator they're fearless and they will restore your faith in the next generation you know I can't wait to see all these stories all of that and we've got some special guests that are surprised in store for us you know one of the things that I love about the people that are coming on the stage today with us is that so many of them teach others how to code and they're also bringing more people that are very different in to our open-source communities helping our community is more innovative and impactful and speaking of innovative and impactful that's the purpose of our open brand project right that's right we're actually in the process of exploring a refresh of our mark and we'd really like your help as well because we're doing this all in the open we've we've been doing it already in the open and so please join us in our feedback zone booth at the summit to tell us what you think now it's probably obvious but I'm big into Red Hat swag I've got the shirt I've got my pen I've got the socks so this is really important to me personally especially that when my 15 year old daughter sees me in my full regalia she calls me adorable okay that joke was fed horrible as you're done it wasn't it wasn't like I got way more well Tim thanks for helping us at this stage for today it's time to get started with our first guest all right I'll be back soon thank you the people I'm about to bring on the stage are making outstanding contributions to open source in new and brave ways they are the winners of the 2018 women and open source Awards the women in open source awards was created to highlight the contributions that women are making to open source and to inspire new generations to join the movement our judges narrowed down the panel a very long list just ten finalists and then the community selected our two winners that were honoring today let's learn a little bit more about them [Music] a lot of people assume because of my work that I must be a programmer engineer when in fact I specifically chose and communications paths for my career but what's fascinating to me is I was able to combine my love of Communications and helping people with technology and interesting ways I'm able to not be bound by the assumptions that everybody has about what the technology can and should be doing and can really ask the question of what if it could be different I always knew I wanted to be in healthcare just because I feel like has the most impact in helping people a lot of what I've been working on is geared towards developing technology and the health space towards developing world one of the coolest things about open-source is bringing people together working with other people to accomplish amazing things there's so many different projects that you could get involved in you don't even have to be the smartest person to be able to make impact when you're actually developing for someone I think it's really important to understand the need when you're pushing innovation forward sometimes the cooler thing is not [Music] for both of us to have kind of a health care focus I think it's cool because so many people don't think about health care as being something that open-source can contribute to it took a while for it to even get to the stage where it is now where people can open-source develop on concepts and health and it's an untapped potential to moving the world for this award is really about highlighting the work of dozens of women and men in this open source community that have made this project possible so I'm excited for more people to kind of turn their open-source interest in healthcare exciting here is just so much [Music] I am so honored to be able to welcome to the stage some brilliant women and opensource first one of our esteemed judges Denise Dumas VP of software engineering at Red Hat she's going to come up and share her insights on the judging process Denise so you've been judging since the very beginning 2015 what does this judge this being a judge represents you what does the award mean to you you know every year it becomes more and more challenging to select the women an opensource winner because every year we get more nominees and the quality of the submissions well there are women involved in so many fabulous projects so the things that I look for are the things that I value an open source initiative using technology to solve real world problems a work ethic that includes sin patches and altruism and I think that you'll see that this year's nominees this year's winners really epitomize those qualities totally agree shall we bring them on let's bring them on let's welcome to the stage Zoe de gay and Dana Lewis [Music] [Applause] [Applause] [Music] alright let's take a seat [Applause] well you both have had an interesting path to open-source zuy you're a biomedical engineering student any of it you have a degree in public relations tell us what led to your involvement and open source yeah so coming to college I was new I was interested in science but I didn't want to be a medical doctor and I didn't want to get involved in wet lab research so through classes I was taking oh that's why I did biomedical engineering and through classes I was taking I found the classroom to be very dry and I didn't know how how can I apply what I'm learning and so I got involved in a lot of entrepreneurship on campus and through one of the projects I was asked to build a front end and I had no idea how to go about doing that and I had some basic rudimentary coding knowledge and what happened was I got and was digging deep and then found an open source library that was basically building a similar thing that I needed and that was where I learned about open source and I went from there now I'm really excited to be able to contribute to many communities and work on a variety of projects amazing contributions Dana tell us about your journey well I come from a non-traditional background but I was diagnosed with type 1 diabetes at the age of 14 and over the next couple years got really frustrated with the limitations of my own diabetes devices but felt like I couldn't change them because that wasn't my job as a patient but it was actually through social media I discovered someone who had solved one of the problems that I had been found having which was getting date off my diabetes device and that's how I learned about open source was when he was willing to share his code with me so when we turned around and made this hybrid closed-loop artificial pancreas system it was a no brainer to make our work open source as well that's right absolutely and we see using the hash tag we are not waiting can you tell us about that yeah so this hash tag was created actually before I even discovered the open source diabetes world but I loved it because it really illustrates exactly the fact that we have this amazing technology in our hands in our pockets and we can solve some of our most common problems so yes you could wait but waiting is now a choice with open source we have the ability to solve some of our hardest problems even problems dealing with life and death that's great so zuy with the vaccine carrier system that you helped to build how were you able to identify the need and where did you build it yes so I think before you even build anything first need to understand what is the problem that you're trying to solve and that really was the case when starting this project I got to collaborate with engineers in Kampala Uganda and travel there and actually interview stakeholders in the medical field medical doctors as well as pharmaceutical companies and from there I really got to understand the health system there as well as what is how do vaccines enter the country and how can we solve this problem and that's how we came up with the solution for an IOT based vaccine carrier tracking system I think it's really important especially today when products might be flashy to also understand what is the need behind it and how do we solve problems with these products yeah yeah it's so interesting how both of you have this interest in health care Dana how do you see open-source playing a role in healthcare but first before you answer that tell us about your shirt so this shirt has the code of my artificial pancreas on it and I love it as an illustration of no thank you I love it as an illustration of how open-source is more than we think it is I've just been blown away by the contributions of people in my open-source communities and I think that that is what we should apply to all of healthcare there's a lot of tools and technologies that are solving real world problems and I think if we take what we know in technology and apply it to healthcare we'll solve a lot of problems more quickly but it really needs to be recognizing everything an open source it's the documentation it's the collaboration it's the problem-solving it's working together to take technologies that we didn't previously think we're applicable and finding new ways to apply it it's a great answer Sooey yeah I think especially where healthcare is related to people and open-source is the right way to collaborate with people all over the world especially in the project I've been working on we're looking at vaccines in Uganda but the same system can be applied in any other country and then you can look at cross countries health systems there and from there it becomes bigger and bigger and I think it's really important for people who have an idea and want to take it further to know that open-source is a way that you could actually take your idea further whether you have a technical background or not so yeah stories are amazing you're just an inspiration for everyone in open-source I want to thank you so much for joining us here today let's give another round of applause to our winners [Applause] [Music] you know the tagline for the award is honor celebrate inspire and I feel like we've been doing that today very very well and I know that so many people have been inspired today especially the next generation who go on to do things we can't even dream of yet [Music] I think collabs important because we need to make sure we get younger children interested in technology so that they understand the value of it but also that there are a lot of powerful women in technology and they can be one of them I hope after this experience maybe we'll get some engineers and some girls working our hot so cool right well we have some special guests convite for the club stage now I'd like to invite Tim back and also introduce Red Hat's own Jamie Chappell along with our collab students please welcome Gabby tenzen Sofia lyric Camila and a Volyn [Applause] you've been waiting for this moment for a while we're so excited hear all about your experiences but Jamie first tell us about collab sure so collab is red hats way of teaching students about the power of open source and collaboration we kicked off a little over a year ago in Boston and that was so successful that we decided to embark on an East Coast tour so in October we made stops at middle schools in New York DC and Raleigh and these amazing people over here are from that tour and this week they have gone from student to teacher so they've hosted two workshops where they have taught Red Hat summit attendees how to turn raspberry pies into digital cameras they assigned a poem song of the open road by Walt Whitman and they've been working at the open source stories booth helping to curate photos for an installation we're excited to finish up tomorrow so amazing and welcome future women in open source we want to know all about your experiences getting involved can you tell us tenzen tell us about something you've learned so during my experience with collab I learned many things but though however the ones that I valued the most were open source and women empowerment I just I was just so fascinated about how woman were creating and inventing things for the development of Technology which was really cool and I also learned about how open source OH was free and how anyone could access it and so I also learned that many people could you know add information to it so that other people could you learn from it and use it as well and during Monday's dinner I got this card saying that the world needed more people like you and I realized through my experience with collab that the world does not only need people like me but also everyone else to create great technology so ladies you know as you were working on your cameras and the coding was there a moment in time that you had an AHA experience and I'm really getting this and I can do this yes there was an aha moment because midway through I kind of figured out well this piece of the camera went this way and this piece of the camera did it go that way and I also figured out different features that were on the camera during the camera build I had to aha moments while I was making my camera the first one was during the process of making my camera where I realized I was doing something wrong and I had to collaborate with my peers in order to troubleshoot and we realize I was doing something wrong multiple times and I had to redo it and redo it but finally I felt accomplished because I finished something I worked hard on and my second aha moment was after I finished building my camera I just stared at it and I was in shock because I built something great and it was so such a nice feeling so we talked a lot about collaboration when we were at the lab tell us about how learning about collaboration in the lab is different than in school so in school collaboration is usually few and far between so when we went to collab it allowed us to develop new skills of creativity and joining our ideas with others to make something bigger and better and also allowed us to practice lots of cooperation an example of this is in my group everybody had a different problem with their pie camera and we had to use our different strengths to like help each other out and everybody ended up assembling and working PI camera great great awesome collaboration in collab and the school is very different because in collab we were more interactive more hands-on and we had to work closer together to achieve our own goals and collaboration isn't just about working together but also combining different ideas from different people to get a product that is so much better than some of its parts so girls one other interesting observation this actually may be for the benefit of the folks in our audience but out here we have represented literally hundreds and hundreds of companies all of whom are going to be actually looking for you to come to work for them after today we get first dibs that's right but um you know if you were to have a chance to speak to these companies and say what is it that they could do to help inspire you know your your friends and peers and get them excited about open source what would you say to them well I'm pretty sure we all have app store and I'm pretty sure we've all downloaded an app on that App Store well instead of us downloading app State well the computer companies or the phone companies they could give us the opportunity to program our own app and we could put it on the App Store great idea absolutely I've got to tell you I have a 15 year old daughter and I think you're all going to be an inspiration to her for the same absolutely so much so I see you brought some cameras why don't we go down and take a picture let's do it [Applause] all right I will play my very proud collab moderator role all right so one two three collab okay one two three [Applause] yeah so we're gonna let leave you and let you tell us more open source stories all right well thank you great job thank you all and enjoy the rest of your time at Summit so appreciate it thanks thank you everyone pretty awesome pretty awesome and I would just like to say they truly are fedorable that's just um so if you would like to learn more as you heard the girls say they're actually Manning our open-source stories booth at the summit you know please come down and say hello the stories you've seen thus far from our women and open-source winners as well as our co-op students are really bringing to life the theme of this year's summit the theme of ideas worth exploring and in that spirit what we'd like to do is explore another one today and that is how open-source concepts thrive and expand in the neverending organic way that they do much like the universe metaphor that you see us using here it's expanding in new perspectives and new ideas with voices beyond their traditional all starting to make open-source much bigger than what it was originally started as fact open-source goes back a long way long before actually the term existed in those early days you know in the early 80s and the like most open-source projects were sort of loosely organized collections of self-interested developers who are really trying to build low-cost more accessible replicas of commercial software yet here we are 2018 the world is completely different the open-source collaborative development model is the font of almost all original new innovation in software and they're driven from communities communities of innovation RedHat of course has been very fortunate to have been able to build an extraordinary company you know whose development model is harnessing these open-source innovations and in turning them into technologies consumable by companies even for their most mission-critical applications the theme for today though is we see open-source this open source style collaboration and innovation moving beyond just software this collaborative community innovation is starting to impact many facets of society and you're starting to see that even with the talks we've had already too and this explosion of community driven innovation you know is again akin to this universe metaphor it expands in all directions in a very organic way so for red hat you know being both beneficiaries of this approach and stewards of the open collaboration model we see it important for us to give voice to this broader view of open source stories now when we say open source in this context of course will meaning much more than just technology it's the style of collaboration the style of interaction it's the application of open source style methods to the innovation process it's all about accelerating innovation and expanding knowledge and this can be applied to a whole range of human endeavors of course in education as we just saw today on stage in agriculture in AI as the open source stories we shared at last year's summit in emerging industries like healthcare as we just saw in manufacturing even the arts all these are areas that are now starting to benefit from collaboration in driving innovation but do we see this potentially applying to almost any area of human endeavor and it expands again organically expanding existing communities with the addition of new voices and new participants catalyzing new communities and new innovations in new areas as we were talking about and even being applied inside organizations so that individual companies and teams can get the same collaborative innovation effects and most profound certainly in my perspective is so the limitless bounds that exist for how this open collaboration can start to impact some of humankind's most fundamental challenges we saw a couple of examples in fact with our women and open-source winners you know that's amazing but it also potentially is just the tip of the iceberg so we think it's important that these ideas you know as they continue to expand our best told through storytelling because it's a way that you can embrace them and find your own inspirations and that's fundamentally the vision behind our open-source stories and it's all about you know building on what's come before you know the term we use often is stay the shoulders are giants for a lot of the young people that you've seen on this stage and you're about to see on this stage you all are those giants you're the reason and an hour appears around the world are the reasons that open-source continues to expand for them you are those giants the other thing is we all particularly in this room those of us have been around open-source we have an open-source story of our own you know how were you introduced the power of open-source how did you engage a community who inspired you to participate those are all interesting elements of our personal open-source stories and in most cases each of them are punctuated by you here my question to the girls on stage an aha moment or aha moments you know that that moment of realization that enlightens you and causes you to think differently and to illustrate I'm going to spend just a few minutes sharing my open-source story for for one fundamental reason I've been in this industry for 38 years I am a living witness to the entire life of open-source going back to the early 80s I've been doing this in the open-source corner of the industry since the beginning if you've listened to Sirhan's command-line heroes podcasts my personal open story will actually be quite familiar with you because my arc is the same as the first several podcast as she talked about I'm sort of a walking history lesson in fact of open source I wound up at most of the defining moments that should have changed how we did this not that I was particularly part of the catalyst I was just there you know sort of like the Forrest Gump of open-source I was at all these historical things but I was never really sure how it went up there but it sure was interesting so with that as a little bit of context I'm just gonna share my aha moment how did I come to be you know a 59 year old in this industry for 38 years totally passionate about not just open source driving software innovation but what open source collaboration can do for Humanity so in my experience I had three aha moments I just like to share with you the first was in the early 80s and it was when I was introduced to the UNIX operating system and by the way if you have a ha moment in the 80s this is what it looks like so 1982 mustache 19 where were you 2018 beard that took a long time to do all right so as I said my first aha moment was about the technology itself in those early days of the 80s I became a product manager and what at the time was digital equipment corporation's workstation group and I was immediately drawn to UNIX I mean certainly these this is the early UNIX workstation so the user interface was cool but what I really loved was the ability to do interactive programming via the shell but by a--basically the command line and because it was my day job to help figure out where we took these technologies I was able to both work and learn and play all from the same platform so that alone was was really cool it was a very accessible platform the other thing that was interesting about UNIX is it was built with networking and and engagement in mind had its own networking stack built in tcp/ip of course and actually built in a set of services for those who've been around for a while think back to things like news groups and email lists those were the first enablers for cross internet collaboration and that was really the the elements that really spoke to me he said AHA to me that you know this technology is accessible and it lets people engage so that was my first aha moment my second aha moment came a little bit later at this point I was an executive actually running Digital Equipment Corporation UNIX systems division and it was at a time where the UNIX wars were raging right all these companies we all compartmentalized Trump those of the community and in the end it became an existential threat to the platform itself and we came to the point where we realized we needed to actually do something we needed to get ahead of this or UNIX would be doomed the particular way we came together was something called cozy but most importantly the the technique we learned was right under our noses and it was in the area of distributed computing distributed client-server computing inherently heterogenous and all these same companies that were fierce competitors at the operating system level were collaborating incredibly well around defining the generation of client-server and distributed computing technologies and it was all being done in open source under actually a BSD license initially and Microsoft was a participant Microsoft joined the open group which was the converged standards body that was driving this and they participated to ensure there was interoperability with Windows and and.net at the time now it's no spoiler alert that UNIX lost right we did but two really important things came out of that that sort of formed the basis of my second aha moment the first is as an industry we were learning how to collaborate right we were leveraging open source licenses we realized that you know these complex technologies are best done together and that was a huge epiphany for the industry at that time and the second of course is that event is what opened the door for Linux to actually solve that problem so my second aha was all about the open collaboration model works now at this point to be perfectly candidates late 1998 well we've been acquired by compacts when I'm doing the basically same role at Compaq and I really had embraced what the potential impact of this was going to be to the industry Linux was gaining traction there were a lot of open source projects emerging in distributed computing in other areas so it was pretty clear to me that the in business impact was going to be significant and and that register for me but there was seem to be a lot more to it that I hadn't really dropped yet and that's when I had my third aha moment and that was about the passion of open-source advocates the people so you know at this time I'm running a big UNIX group but we had a lot of those employees who were incredibly passionate about about Linux and open source they're actively participating so outside of working a lot of things and they were lobbying more and more for the leadership to embrace open source more directly and I have to say their passion was contagious and it eventually spread to me you know they were they were the catalyst for my personal passion and it also led me to rethink what it is we needed to go do and that's a passion that I carry forward to this day the one driven by the people and I'll tell you some interesting things many of those folks that were with us at Compaq at the time have gone on to be icons and leaders in open-source today and many of them actually are involved with with Red Hat so I'll give you a couple of names that some of whom you will know so John and Mad Dog Hall work for me at the time he was the person who wrote the first edition of Linux for dummies he did that on his own time when he was working for us he he coined he was part of the small team that coined the term open source' some other on that team that inspired me Brian Stevens and Tim Burke who wrote the first version to rent out Enterprise Linux actually they did that in Tim Burke's garage and cost Tim's still with Red Hat today two other people you've already seen him on stage today Denise Dumas and Marko bill Peter so it was those people that I was fortunate enough to work with early on who had passion for open-source and much like me they carry it forward to this day so the punchline there is they ultimately convinced us to you know embrace open-source aggressively in our strategy and one of the interesting things that we did as a company we made an equity investment in Red Hat pre-ipo and a little funny sidebar here I had to present this proposal to the compact board on investing in Red Hat which was at that time losing money hand over fist and they said well Tim how you think they're gonna make money selling free software and I said well you know I don't really know but their customers seem to love them and we need to do this and they approve the investment on the spot so you know how high do your faith and now here we are at a three billion dollar run rate of this company pretty extraordinary so from me the third and final ha was the passion of the people in the way it was contagious so so my journey my curiosity led me first to open source and then to Red Hat and it's been you know the devotion of my career for over the last thirty years and you know I think of myself as pretty literate when it comes to open source and software but I'd be the first one to admit I would have never envisioned the extent to which open source style collaboration is now being brought to bear on some of the most interesting challenges in society so the broader realization is that open source and open can really unlock the world's potential when applied in the collaborative innovative way so what about you you know you many of you particular those have been around for a while you probably have an open source story of your own for those that maybe don't or they're new to open source are new to Red Hat your open source story may be a single inspiration away it may happen here at the summit we certainly hope so it's how we build the summit to engage you you may actually find it on this stage when I bring up some of the people who are about to follow me but this is why we tell open-source stories and open source stories live so each of you hopefully has a chance to think about you know your story and how it relates over source so please take advantage of all the things that are here at the summit and and find your inspiration if you if you haven't already so next thing is you know in a spirit of our telling open source stories today we're introducing our new documentary film the science of collective discovery it's really about citizen scientists using open systems to do serious science in their backyards and environmental areas and the like we're going to preview that I'm gonna prove it preview it today and then please come see it tonight later on when we preview the whole video so let's take a look I may not have a technical scientific background but I have one thing that the scientists don't have which is I know my backyard so conventional science happens outside of public view so it's kind of in this black box so most are up in the ivory tower and what's exciting about citizen science is that it brings it out into the open we as an environmental community are engaging with the physical world every day and you need tools to do that we needed to democratize that technology we need to make it lightweight we need to make it low-cost we needed to make it open source so that we could put that technology in the hands of everyday people so they go out and make those measurements where they live and where they breathe when you first hear about an environmental organization you mostly hear about planting trees gardens things like that you don't really think about things that are really going to affect you hey we're the air be more they'd hold it in their hand making sure not to cover the intake or the exhaust I just stand here we look at the world with forensic eyes and then we build what you can't see so the approach that we're really centered on puts humans and real issues at the center of the work and I think that's the really at the core of what open source is social value that underlies all of it it really refers to sort of the rights and responsibilities that anyone on the planet has to participate in making new discoveries so really awesome and a great story and you know please come enjoy the full video so now let's get on with our open stories live speakers you're going to really love the rest of the afternoon we have three keynotes and a demo built in and I can tell you without exaggeration that when you see and hear from the young people we're about to bring forward you know it's truly inspirational and it's gonna restore totally your enthusiasm for the future because you're gonna see some of the future leaders so please enjoy our open source stories live presentation is coming and I'll be back to join you in a little bit thanks very much please welcome code newbie founder Saran yep Eric good afternoon how y'all doing today oh that was pretty weak I think you could do better than that how y'all doing today wonderful much better I'm Saran I am the founder of code newbie we have the most supportive community of programmers and people learning to code this is my very first Red Hat summits I'm super pumped super excited to be here today I'm gonna give you a talk and I'm going to share with you the key to coding progress yes and in order to do that I'm gonna have to tell you a story so two years ago I was sitting in my hotel room and I was preparing for a big talk the next morning and usually the night before I give a big talk I'm super nervous I'm anxious I'm nauseous I'm wondering why I keep doing this to myself all the speakers backstage know exactly what I'm what I'm talking about and the night before my mom knows this so she almost always calls just to check in to see how I'm doing to see how I'm feeling and she called about midnight the night before and she said how are you how are you doing are you ready and I said you know what this time I feel really good I feel confident I think I'm gonna do a great job and the reason was because two months ago I'd already given that talk in fact just a few days prior they had published the video of that talk on YouTube and I got some really really good positive feedback I got feedback from emails and DMS and Twitter and I said man I know people really like this it's gonna be great in fact that video was the most viewed video of that conference and I said to my office said you know what let's see how many people loved my talk and still the good news is that 14 people liked it and a lot more people didn't and I saw this 8 hours before I'm supposed to give that exact same talk and I said mom I gotta call you back do you like how I did that to hang up the phone as if that's how cellphones work yeah and so I looked at this and I said oh my goodness clearly there's a huge disconnect I thought they were really liked they were I thought they were into it and this showed me that something was wrong what do you do what do you do when you're about to give that same talk in 8 hours how do you begin finding out what the problem is so you can fix it I have an idea let's read the comments you got to believe you gotta have some optimism come on I said let's read the comments because I'm sure we'll find some helpful feedback some constructive criticism some insights to help me figure out how to make this talk great so that didn't happen but I did find some really colorful language and some very creative ideas of what I could do with myself now there are some kids in the audience so I will not grace you with these comments but there was this one comment that did a really great job of capturing the sentiment of what everyone else was saying I can only show you the first part because the rest is not very family-friendly but it reads like this how do you talk about coding and not fake societal issues see the thing about that talk is it wasn't just a code talk it was a code and talk is about code and something else that talked touched on code and social justice I talked a lot about how the things that we build the way we build them affect real people and their problems and their struggles and that was absolutely not okay not okay we talk about code and code only not the social justice stuff it also talked about code and diversity yeah I think we all know the diversity is really about lowering the bar it forces us to talk about people and their issues and their problems in their history and we just don't do that okay absolutely inappropriate when it comes to a Tech Talk That Talk touched on code and feelings and feelings are squishy they're messy they're icky and a lot of us feel uncomfortable with feelings feelings have no place in technology no place in code we want to talk about code and code I want you to show me that API and when you show me that new framework that new tool that's gonna solve my problems that's all I care about I want to talk about code and give me some more code with it now I host a podcast called command line heroes it's an original podcast from Red Hat super excited about it if you haven't checked it out and totally should and what I love about this show as we talk about these really important moments and open swords these inflection points moments where we see progress we move forward and what I realized looking back at those episodes is all of those episodes have a code and something let's look at a few of those the first two episodes focused on the history of operating systems as a two-part episode part 1 and part 2 and there's lots of different ways we can talk about operating systems for these two episodes we started by talking about Windows and Mac OS and how these were two very powerful very popular operating systems but a lot of a lot of developers were frustrated with them they were closed you couldn't see inside you can see what it was doing and I the developer want to know what it's doing on my machine so we kind of had a little bit of a war one such developer who was very frustrated said I'm gonna go off and do my own thing my name is Linus this thing is Linux and I'm gonna rally all these other developers all these other people from all over the old to come together and build this new thing with me that is a code and moment in that case it was code and frustration it was a team of developers a world of developers literally old world of developers who said I'm frustrated I'm fed up I want something different and I'm gonna do something about it and what's really beautiful about frustration is it the sign of passion we're frustrated because we care because we care so much we love so deeply then we want to do something better next episode is the agile revolution this one was episode three now the agile revolution is a very very important moment in open-source and technology in general and this was in response to the way that we used to create products we used to give this huge stack of specs all these docs from the higher-ups and we'd take it and we go to our little corner and we lightly code and build and then a year with Pastor here's a pass a few years have passed and we'd finally burst forth with this new product and hope that users liked it and loved it and used it and I know something else will do that today it's okay no judgment now sometimes that worked and a lot of times it didn't but whether or not it actually worked it hurt it was painful these developers not enjoy this process so what happened a dozen developers got together and literally went off into their own and created something called the agile manifesto now this was another code and moment here it's code and anger these developers were so angry that they literally left civilization went off into a mountain to write the agile manifesto and what I love about this example is these developers did not work at the same company we're not on the same team they knew each other from different conferences and such but they really came from different survive and they agreed that they were so angry they were going to literally rewrite the way we created products next as an example DevOps tear down the wall this one is Episode four now this is a bit different because we're not talking about a piece of technology or even the way we code here we're talking about the way we work together the way that we collaborate and here we have our operations folks and our developers and we've created this new kind of weird place thing called DevOps and DevOps is interesting because we've gotten to a point where we have new tools new toys so that our developers can do a lot of the stuff that only the operations folks used to be able to do that thing that took days weeks months to set up I can do it with a slider it's kind of scary I can do it with a few buttons and here we have another code and moment and here that blink is fear for two reasons the operations focus is looking over the developer folks and thinking that was my job I used to be able to do that am I still valuable do I have a place in this future do I need to retrain there's also another fear which is those developers know what they're doing do they understand the security implications they appreciate how hard it is or something to scale and how to do that properly and I'm really interested in excited to see where we go with that where we take that emotion if we look at all of season one of the podcast we see that there's always a code and whether it's a code and frustration a code and anger or a code and fear it always boils down to code and feelings feelings are powerful in almost every single episode we see that that movement forward that progress is tied back to some type of Oshin and for a lot of us this is uncomfortable feelings make us feel weird and a lot of those YouTube commenters definitely do not like this whole feeling stuff don't be like those YouTube commenters there's one thing you take away from this whole talk let it be that don't be like these YouTube commenters feelings are incredibly powerful so the next time that you're working on a project you're having a conversation about a piece of software or a new piece of technology and you start to get it worked up you get angry you get frustrated maybe you get worried you get anxious you get scared I hope you recognize that feeling as a source of energy I hope you take that energy and you help us move forward I would take that to create the next inflection point that next step in the right direction feelings are your superpowers and I hope you use your powers for good thank you so much [Applause] please welcome jewel-box chief technology officer Sara Chipps [Music] Wow there's a lot of you out here how's it going I know there's a lot of you East Coasters here as well and I'm still catching up on that sleep so I hope you guys are having a great experience also my name is Sarah I'm here from New York I have been a software developer for 17 years it's longer than some of the people on stage today I've been alive big thanks to the folks at Red Hat for letting us come and tell you a little bit about jewel box so without further ado I'm gonna do exactly that okay so today we're gonna do a few things first I'm gonna tell you why we built jewel BOTS and why we think it's a really important technology I'm gonna show you some amazing magic and then we're gonna have one of the jewel bus experts come as a special guest and talk to you more about the deep technology behind what we're building so show hands in the audience who here was under 18 years old when they started coding it's hard for me to see you guys yep look around I'd have to say at least 50% of you have your hands up all right keep your hand up if you were under 15 when you started coding I think more hands up just what is it I don't know how that mouth works but awesome okay great yeah a little of I think about half of you half of you have your hands up that's really neat I've done a bunch of informal polls on the internet about this I found that probably about two-thirds of professional coders were under 18 when they started coding I myself was 11 I was a homeschooled kid so a little weird I'm part of the generation and some of you maybe as well is the reason we became coders is because we were lonely not because we made a lot of money so I was 11 this is before the internet was a thing and we had these things called BBS's and you would call up someone else's computer in your town and you would hang out with people and chat with them and play role-playing games with them it didn't have to be your town but if it wasn't your mom would yell at you for a long distance fees and I got really excited about computers and coding because of the community that I found online okay so this is sometimes the most controversial part of this presentation I promised you that they dominate our lives in many ways even if you don't even if you don't even know a 9 to 14 year old girl even if you just see them on the street sometimes they are deciding what you and I do on a regular basis hear me out for a second here so who here knows who this guy is okay you don't have to raise your hands but I think most people know who this guy is right so this guy used to be this guy and then teenage girls were like I think this guy has some talent to him I think that he's got a future and now he's a huge celebrity today what about this guy just got his first Oscar you know just kind of starting out well this guy used to be this guy and I'm proud to tell you that I am one of the many girls that discovered him and decided this guy has a future all right raise your hand if you listen to Taylor Swift just kidding I won't make you do it but awesome that's great so Taylor Swift we listen to Taylor Swift because these girls discovered Taylor Swift it wasn't a 35 year old that was like this Taylor Swift is pretty neat no one cares what we think but even bigger than that these huge unicorns that all of us some of us work for some of us wish we invented these were discovered by young teenage girls no one is checking to see what apps were using they're finding new communities in these thin in these platforms and saying this is how I want to commune with my friends things like Instagram snapchat and musically all start with this demographic and then we get our cues from them if you don't know what musically is I promise you ask your nearest 9 to 14 year old friend if you don't do that you'll hear about it in a few years but this demographic their futures are all at risk everyone here knows how much the field of software development is growing and how important technical literacy is to the future of our youth however just 18% of computer science graduates are girls just 19% of AP computer science test takers and just 15% of Google's tech force identify as female so we decided to do something about that we were inspired by platforms like MySpace and Geocities things like Neopets and minecraft all places where kids find something they love and they're like okay to make this better all I have to do is learn how to code I can totally do that and so we wanted to do that so we talked to 200 girls we went to schools we sat down with them and we were like what makes you tick what are you excited about and what we heard from them over and over again is their friends their friends and their community are pivotal to them and this time in their lives so when we started talking to them about a smart friendship bracelet that's when they started really freaking out so we built Jewel BOTS and Jewel BOTS has an active online community where girls can work together share code that they've built and learn from each other help each other troubleshoot sometimes the way they work is when you are near your friends your bracelets light up the same color and you can use them to send secret messages to each other and you can also code them so you can say things like when all my swimming friends are together in the same room all of our bracelets should go rainbow colors which is really fun you can even build games jewel BOTS started shipping about a year and a half ago about after a lot of work and we are about to ship our 12,000 jewel bot we're in 38 city sorry 38 countries and we're just getting started okay so now it's time for the magic and I have an important question does anyone here want to be my friend pick me all right someone today Gary oh I don't have many friends that's awesome I'm so glad that we'll be friends okay it's awesome so we just need to pair our jewel BA okay okay and in order to do that we're gonna hold the magic button in the middle down for two seconds so one locomotive two locomotive great and then we got a white flashing I'm gonna do yours again I did it wrong locomotive two locomotive it's we're adults we can't do it okay it's a good that are smart alright so now we get to pick our friendship color I'm gonna pick red hat red does that work for you sure okay great so now I just picked a red hat red and my jewel bot is saying alright Tim's jewel bot do you want to be my friend and imageable about it's like I'm thinking about it I think so okay now we're ready okay great so now we're red friends when we're together our bracelets are going to be red and I will send you a secret message when it's time for you to come out and trip and introduce the next guest awesome well thank you so much thank you tailor gun so glad we could be friends and if only people would start following me on Twitter it'd be a great day awesome alright so now you can see the not so technical part of jewel box they use bluetooth to sense when your friends are nearby so they would work in about a 30 meter hundred foot range but to tell you about the actual technology part I'm going to introduce is someone much more qualified than I am so Ellie is one of our jewel box ambassadors she's an amazing YouTube channel that I would please ask you to check out and subscribe she's le G Joel BOTS on YouTube she's an amazing coder and I'm really excited to introduce you today to Ellie Galloway come on out Ellie [Applause] hello my name is le gallais I'm gonna show you how I got coding and then show you some coding in action I first started coding at a6 when my dad helped me code a game soon after I program form a code for Minecraft then my dad had shown me jo bot I keep coding because it helps people for instance for instance you could code auto crack to make it a lot smarter so it can help make people stay run faster but what about something more serious what if you could help answer 911 calls and give alerts before we start I have three main steps to share with you I often use these steps to encoding my jaw bot and continue to use some of these now step one read the instructions and in other words this means for Jabba to memorize the colors and positions a way to memorize these because it's tricky is to remember all the colors and positions you O type will be capital and remember that the positions are either short for north west south west north east and south east step to learn the basic codes when it comes to coding you need to work your way up step 3 discover feel free to discover once you mastered everything now let's get to coding let's use or let's first use combining lights so under void loop I'm going to put LED turn on single s/w and blue and before we make sure that this works we got to put LED LED okay now let's type this again LED dot turn on single now let's do SW green now we have our first sketch so let's explain what this means led LED is a function that to control the LED lights LED turn on single SW blue tells that SW light to turn blue and green flashes so quickly with the blue it creates aqua now let's do another code lets you i'm going to use a more advanced command to make a custom color using RGB let's use a soft pink using 255 105 and 180 now let's type this in the button press function so let's do LED led LED dot set light and now we can do let's do position 3 255 105 and 180 now let's explain what this means the first one stands for the position the three others stand for red green and blue our GPS can only go up to 255 but there are 256 levels but if you count the first one as zero then get 255 so let's first before we move on let's show how this works so this is it before and now let's turn it on to see how our aqua turned out now let's see how our RGB light turned out so we are looking for a soft pink so let's see how it looks think about how much the code you write can help people all around the world these are ideas are just the beginning of opening a new world in technology a fresh start is right around the corner I hope this helped you learn a little bit about coding and even made you want to try it out for yourself thank you [Applause] alright alright alright I need your help for a second guys alright one second really really fascinating we're short on time today is Ellie's 11th birthday and I think we should give her the biggest present that she's gonna get today and it's something none of us have experienced and that is thousands of people saying happy birthday Elliott wants so when I say three can I get a happy birthday Elly one two three happy birthday Elly great job that's the best part of my job okay so those are that's two of us we're just getting started this numbers out Dana would almost shipped 12,000 jewel BOTS and what I'm really excited to tell you about is that 44% of our users don't just play with their jewel bots they code them and they're coding C do you even code C I don't know that you do but we have 8 to 14 year olds coding C for their jewel box we also have hundreds of events where kids come and they learn how to code for the first time here's how you can help we're open source so check out our github get involved our communities online you can see the different features that people's are asking for we're also doing events all over the world a lot of people are hosting them at their companies if you're interested in doing so reach out to us thank you so much for coming and learning about jewel box today enjoy the rest of your summit [Music] ladies and gentlemen please welcome hacker femme au founder Femi who Bois de Kunz [Music] good afternoon red hat summit 2018 i'm femi holiday combs founder of hacker femme Oh I started coding when I was 8 when I was 9 I set up South London raspberry jam through crowdfunding to share my passion for coding with other young people who might not otherwise be exposed to tech since then I've run hundreds of coding and robot workshops across the UK and globally in 2017 I was awarded an inaugural legacy Diana award by their Royal Highnesses Prince William and Prince Harry my service and community we welcome young people who have autism or like me tract syndrome because coding linked me up to a wider community of like-minded people and I'm trying to do the same for those who might also benefit from this I also deliver workshops to corporate companies and public organizations whilst feeding back ideas and resources into my community work we like to cascade our knowledge and experience to other young coders so that they can benefit too we're learning new tech every day we're starting to use github to document and manage our coding projects we've no dread we're using the terminal and beginning to really appreciate Linux as we explore cybersecurity and blockchain it's been quite a journey from South London to the world-famous Tate Modern museum to Bangladesh to this my first trip to the States and soon to China where I hope to translate my microwave workshops into Mandarin on this journey I'm noticed it is increasingly important for young coders to have collaborative and community led initiatives and enterprise and career ready skills so my vision now is to run monthly meetups and in collaboration with business partners help a hundred young disadvantaged people to get jobs in the digital services in fact out of all the lessons I've learned from teaching young coders they all have one thing in common the power of open source and the importance of developing community and today I want to talk about three of those lessons the value of reaching out and collaborating the importance of partnering event price and the ability to self organize and persist which translated into English means having a can-do attitude getting stuff done when you reach out when you show curiosity you realize you're not alone in this diverse community no matter who you are and where you're from from coding with minecraft to meeting other young people with jams I found there are people like me doing things I like doing I get to connect with them that's where open-source comes to the fourth second the open source community is so vast then it crosses continents it's so immersed perspectives that it can take you to amazing places out of space even that's my code running on the International Space Station's Columbus module let's take a lesson and playing was an audio representation for the frequencies recorded in space my team developed Python code to measure and store frequency readings from the space station and that was down linked back to earth to my email box Thomas who's 10 developed an audio file using audacity and importing it back into Python how cool is that Trulli collaboration can take you places you never thought possible because that's how the community works when you throw a dilemma a problem a tip the open source community comes back with answers when you give the community gives back tenfold that's how open source expands but in that vast starscape how do you know what to focus on there are so many problems to solve where do I start your world enterprice enterprise software is very good at solving problems what's the big problem how about helping the next generation be ready for the future I want to do more for the young coding community so I'm developing entrepreneurial business links to get that done this is a way to promote pathways to deal with future business problems whether in FinTech healthcare or supply chains a meeting the skill shortage it is a case for emerging in it's a case for investing in emerging communities and young change enablers throwing a wider net equates to being fully inclusive with a good representation of diversity you know under the shadow of the iconic show back in London there are pockets of deprivation where young people can't even get a job in a supermarket many of them are interested in tech in some way so my goal for the next three years is to encourage young people to become an active part of the coding community with open source we have the keys to unlock the potential for future innovation and technological development with young coders we have the people who have to face these problems working on them now troubleshooting being creative connecting with each other finding a community discovering their strengths along the way for me after running workshops in the community for a number of years when I returned from introducing coding to young street kids in Bangladesh I realized I had skills and experience so I set up my business hacker Famicom my first monetized fehmi's coding boot camp at Rice London Barclays Bank it was a sellout and a few weeks later shows my second I haven't looked back since but it works the opposite way - all the money raised enable me to buy robots for my community events and I was able to cascade my end price knowledge across to other young coders - when you focus on business problems you get active enthusiastic support from enterprise and then you can take on anything the support is great and we have tons of ideas but what does it really take to execute on those ideas to get things done can-do attitudes what open source needs you've seen it all this week we're all explorers ideator z' thinkers and doers open source needs people who can make the ideas happen get out there and see them through like I did setting up Safford and raspberry jam as an inclusive space to collaborate and learn together and that that led to organizing the young coders conference this was about organizing our own two-day event for our partners in industry to show they value young people and wanted to invest in our growth it doesn't stop there oh nice now I'm setting up monthly coding meetups and looking at ways to help other young people to access job opportunities in end price and digital services the underlying ethos remains the same in all I do promoting young people with the desire to explore collaborative problem-solving when coding digital making and building enterprise you fled having the confidence to define our journey and pathways always being inclusive always encouraging innovation and creativity being doers does more than get projects done makes us a pioneering force in the community dreaming and doing is how we will make exponential leaps my generation is standing on the shoulders of giants you the open-source pioneers and the technology you will built so I'd love to hear about your experiences who brought you into the open-source community who taught you as we go to upscale our efforts we encounter difficulties have you and how did you overcome them please do come to talk to me I'll be in the open-source stories booth both today and tomorrow giving workshops or visit the Red Hat page of my website hack Famicom I really value your insights in conclusion I'd like I'd like to ask you to challenge yourself you can do this by supporting young coders find the crowdfunding campaign kick-start their ideas into reality I'm proof that it works it's so awesome to be an active part of the next exponential leap together thank you [Applause] so unbelievable huh you know he reminds me of be at that age not even close and I can tell you I've spent a lot of time with Femi and his mom grace I mean what you see is what you get I mean he's incredibly passionate committed and all that stuff he's doing that long list of things he's doing he's going to do so hopefully today you get a sense of what's coming in the next generation the amazing things that people are doing with collaboration I'd also like to thank in addition to femi I'd like to thank Sauron Sarah and Ellie for equally compelling talks around the open source stories and again as I mentioned before any one of you can have an open source story that can be up here inspiring others and that's really our goal in telling these stories and giving voice to the things that you've seen today absolutely extraordinary things are happening out there and I encourage you to take every advantage you can hear this week and as is our theme for the summit please keep exploring thank you very much [Applause] [Music]
SUMMARY :
booth at the summit to tell us what you
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Tim Burke | PERSON | 0.99+ |
Jamie Chappell | PERSON | 0.99+ |
Denise Dumas | PERSON | 0.99+ |
Sarah | PERSON | 0.99+ |
Denise | PERSON | 0.99+ |
China | LOCATION | 0.99+ |
Elly | PERSON | 0.99+ |
Dana Lewis | PERSON | 0.99+ |
Brian Stevens | PERSON | 0.99+ |
BBS | ORGANIZATION | 0.99+ |
Tim Layton | PERSON | 0.99+ |
Denise Dumas | PERSON | 0.99+ |
Uganda | LOCATION | 0.99+ |
Ellie | PERSON | 0.99+ |
38 years | QUANTITY | 0.99+ |
Saran | PERSON | 0.99+ |
Elliott | PERSON | 0.99+ |
Raleigh | LOCATION | 0.99+ |
9 | QUANTITY | 0.99+ |
Thomas | PERSON | 0.99+ |
2017 | DATE | 0.99+ |
17 years | QUANTITY | 0.99+ |
Compaq | ORGANIZATION | 0.99+ |
October | DATE | 0.99+ |
Trump | PERSON | 0.99+ |
Bangladesh | LOCATION | 0.99+ |
Boston | LOCATION | 0.99+ |
Microsoft | ORGANIZATION | 0.99+ |
Ellie Galloway | PERSON | 0.99+ |
South London | LOCATION | 0.99+ |
Femi | PERSON | 0.99+ |
London | LOCATION | 0.99+ |
8 | QUANTITY | 0.99+ |
New York | LOCATION | 0.99+ |
two-day | QUANTITY | 0.99+ |
14 people | QUANTITY | 0.99+ |
Red Hat | ORGANIZATION | 0.99+ |
two winners | QUANTITY | 0.99+ |
dallisa Alexander | PERSON | 0.99+ |
2018 | DATE | 0.99+ |
Sara Chipps | PERSON | 0.99+ |
15 year old | QUANTITY | 0.99+ |
Python | TITLE | 0.99+ |
New York DC | LOCATION | 0.99+ |
two workshops | QUANTITY | 0.99+ |
App Store | TITLE | 0.99+ |
Eric | PERSON | 0.99+ |
Tim | PERSON | 0.99+ |
UNIX | TITLE | 0.99+ |
two seconds | QUANTITY | 0.99+ |
256 levels | QUANTITY | 0.99+ |
Digital Equipment Corporation | ORGANIZATION | 0.99+ |
200 girls | QUANTITY | 0.99+ |
today | DATE | 0.99+ |
UK | LOCATION | 0.99+ |
Linux | TITLE | 0.99+ |
two months ago | DATE | 0.99+ |
tomorrow | DATE | 0.99+ |
two episodes | QUANTITY | 0.99+ |
Dana | PERSON | 0.99+ |
18% | QUANTITY | 0.99+ |
Gary | PERSON | 0.99+ |
two | QUANTITY | 0.99+ |
zero | QUANTITY | 0.99+ |
Jamie | PERSON | 0.99+ |
first part | QUANTITY | 0.99+ |
John | PERSON | 0.99+ |
UNIX | ORGANIZATION | 0.99+ |
first sketch | QUANTITY | 0.99+ |
first | QUANTITY | 0.99+ |
two years ago | DATE | 0.99+ |
Bois de Kunz | PERSON | 0.99+ |
Minecraft | TITLE | 0.99+ |
Walt Whitman | PERSON | 0.99+ |
Red Hat | ORGANIZATION | 0.99+ |
first trip | QUANTITY | 0.99+ |
Radhesh Balakrishnan, Red Hat | Red Hat Summit 2018
[Music] from San Francisco it's the covering Red Hat summit 2018 brought to you by Red Hat everyone welcome back is the cubes live coverage here in San Francisco Red Hat summit 2018 I'm Sean furry co-host of the cube with my coasts analyst this week John Troyer who's the co-founder of tech reckoning advisory and Community Development firm our next guess is red hash Balakrishnan is the general manager of OpenStack for Red Hat welcome to the cube good to see you ready to be here so OpenStack is very hot obviously with the with the with the trends we've been covering from day one been phenomenal to watch that grow and change but with kubernetes you seeing cloud native to robust communities you got application developers and you got under the hood infrastructure so congratulations and you know what's what's the impact of that what is how is OpenStack impacted by the cloud native trend and what is Red Hat doing they're the best epidermis ation of that is openshift on OpenStack if you had caught the keynotes earlier today there was a demo that we did whereby they were spawning open shifts on bare metal using OpenStack and then you run open shift on power that's what we kind of see as the normed implementation for customers looking to get - I want an open infrastructure on Prem which is OpenStack and then eventually want to get to a multi cloud application platform on top of it that makes up the hybrid cloud right so it's a essential ingredient to the hybrid cloud that customers that are trying to get to and open shifts role in this is what I'm assuming we are asked about openshift ownerships will be multi cloud from a application platform perspective right so OpenStack is all about the infrastructure so as long as you're worrying about info or deployment management lifecycle that's going to be openstax remet once you're thinking about applications themselves the packaging of it the delivery of it and the lifecycle of it then you're in openshift land so how do you bring both these things together in a way that is easier simpler and long-standing is the opportunity and the challenge in front of us so the good news is customers are already taking us there and there's a lot of production workflow is happening on OpenStack but I got to ask the question that someone might ask who hasn't been paying attention in a year or so it was thick hey OpenStack good remember that was what's new with OpenStack what would you say that person if they asked you that question about what's new with OpenStack the answer would be something along the lines of boring is the new normal right we have taken the excitement out of OpenStack you know the conversations are on containers so OpenStack has now become the open infrastructure that customers can bring in with confidence right so that's kind of the boring Linux story but you know what that's what we thrive on right our job as reddit is to make sure that we take away the complexities involved in open source innovation and make it easy for production deployment right so that's what we're doing with OpenStack too and I'm glad that in five years we've been able to get here I definitely I think along with boring gos clarity right last year the cube was that OpenStack summit will be there again in two weeks so with you and I enjoy seeing you again for it the last year there was a lot of you know containers versus there was some confusion like where people got sorted out in their head oh this is the infrastructure layer and then this is the a play I think now people have gotten it sorted out in their head open open shipped on OpenStack very clear message so a meaning of the community in two weeks in any comments on the growth of the open OpenStack community the end users that are there the the depth of experience it seemed like last year was great everywhere for OpenStack on the edge it ended you know set top devices and pull top devices all the way to OpenStack in in private data centers and and for various security or logistical reasons where is OpenStack today yeah I think that he phrased would be workload optimization so OpenStack has now evolved to become optimized for various workloads so NFV was a workload that people were talking about now people are in when customers are in production across the globe you know beat Verizon or the some of the largest telcos that we have in any and a pack as well the fact that you can actually transform the network using OpenStack has become real today now the conversation is going from core of the data center to the edge which is radio networks so the fact that you can have a unified fabric which can transcend from data center all the way to a radio and that can be OpenStack is a you know great testament to the fact that a community has rallied around OpenStack and you know delivering on features that customers are demanding pouring is the new normal of that is boring implies reliable no-drama clean you know working if you had to kind of put a priority in a list of the top things just that it are still being worked on I see the job is never done with infrastructure always evolving about DevOps certainly shows that with programmability what are the key areas still on the table for OpenStack that are that are key discussion points where there's still innovation to be done and built upon I think the first one is it's like going from a car to a self-driving car how can we get that infrastructure to autonomously manage itself we were talking about network earlier even in that context how do you get to a implementation of OpenStack that can self manage itself so there's a huge opportunity to make sure that the tooling gets richer to be able to not just deploy manage but fine-tune the infrastructure itself as we go along so clearly you know you can call it AI machine learning implementation you on OpenStack to make sure that the benefit is occurring to the administrator that's an opportunity area the second thing is the containers and OpenStack that we taught touched upon earlier OpenShift on OpenStack in many ways is going to be the cookie cutter that we're gonna see everywhere there's going to be private cloud if you've got a private cloud it's gotta be an open shift or on OpenStack and if it's not I would like to know why right it's a it becomes a de-facto standard you start to have and they enablement skills training for a few folks as you talk to the IT consumer right the the IT admins out there you know what's the message in terms of upskilling and managing say an OpenStack installation and and what does Red Hat doing to help them come along yeah so those who are comfortable with Braille Linux skills are able to graduate easily over to OpenStack as well so we've been nationally focused on making sure that we are training the loyal Linux installed based customers and with the addition of the fact that now the learnings offerings that we have are not product specific but more at the level of the individual can get a subscription for all the products that reddit has you could get learning access to learning so that does help make sure that people are able to graduate or evolve from being able to manage Linux to manage a cloud and the and face the brave new world of hybrid cloud that's happening in front of our eyes but let's talk about the customer conversations you're having as the general manager of the stack red hat what what are the what's the nature of the conversations are they talking about high availability performance or is it more under the hood about open shift and containers or they range across the board depending upon the use cases whose they do range but the higher or the bit is that applications is where the focuses well closes where the focus is so the infrastructure in many ways needs to get out of the way to make sure that the applications can be moving from the speed of thought to execution right so that's where the customer conversations are going so which is kind of ties back to the boring is the new normal as well so if we can make sure that OpenStack is boring enough that all the energy is focused on developing applications that are needed for the enterprise then I think the job is done self-driving OpenStack it means when applications are just running and that self-healing concepts you were talking about automation is happening exactly that's the opportunity in front of us so you know it's by N's code by code we will get there I think I love the demo this morning which showed that off right bare metal stacks sitting there on stage from different vendors right actually you're the you know OpenStack is the infrastructure layer so it's it's out there with servers from Dell and HP II and others right and then booting up and then the demo with the with Amadeus showing you know OpenStack and public clouds with openshift all on top also showed how it fit into this whole multi cloud stack is it is it challenging to to be the layer with with the hardware hardware heterogeneous enough at this point that OpenStack can handle it are there any issues they're working with different OEMs and if you look at the history of red add that's what we've done right so the rel became rel because of the fact that we were able to abstract multi various innovation that was happening at the so being able to bring that for OpenStack is like we've got you know that's the right to swipe the you know employee card if you will right so I think the game is going back to what you were only talking about the game is evolving to now that you have the infrastructure which abstracts the compute storage networking etc how do you make sure that the capacity that you've created it's applied to where the need is most right for example if you're a telco and if you're enabling Phi G IOT you want to make sure that the capacity is closest to where the customer fool is right so being able to react to customer needs or you know the customers customers needs around where the capacity has to be for infrastructure is the programmability part that we've you know we can enable right so that's a fascinating place to get into I know you are technology users yourself right so clearly you can relate to the fact that if you can make available just enough technology for the right use case then I think we have a winner at hand yeah and taking as you said taking the complexity out of it also means automating away some of those administrative roles and moving to the operational piece of it which developers want to just run their code on it kind of makes things go a little faster and and so ok so I get that and I but I got to ask the question that's more Redhead specific that you could weigh in on this because this is a real legacy question around red hats business model you guys have been very strong with rel the the the record speaks for itself in terms of warranty and and serviceability you guys give like I mean how many years is it now like a zillion years that support for rel OpenStack is boring is Red Hat bringing that level of support now how many years because if I use it I'm gonna need to have support what's the Red Hat current model on support in terms of versioning xand the things that you guys do with customers thank you for bringing that up what have you been consciously doing is to make sure that we have lifecycle that is meeting two different customers segments that we are talking about one is customers who want to be with the latest and the greatest closer to the trunk so every six months there is an openstack released they want to be close enough they want to be consuming it but it's gotta be production ready in their environment the second set of customers are the ones who are saying hey look the infrastructure part needs to stay there cemented well and then every maybe a couple of years I'll take a real look at you know bringing in the new code to light up additional functionality or on storage or network etc so when you look at both the camps then the need is to have a dual life cycle so what we have done is with OpenStack platform 10 which is two years ago we have a up to five year lifecycle release so obvious that platform 10 was extensible up to five years and then every two releases from there 11 and 12 are for just one year alone and then we come back to again a major release which is OSP 13 which will be another five years I know it can be and they get the full Red Hat support that they're used to that's right so there are years that you're able to either stay at 10 or you could be the one who's going from 10 to 11 to 12 to 13 there are some customers were saying staying at 10 and then I won't go over to 13 and how do you do that we'll be a industry first and that's what we have been addressing from an engineering perspective is differentiated - I think that's a good selling point guy that's always a great thing about Red Hat you guys have good support give the customers confidence or not you guys aren't new to the enterprise and these kinds of customers so right - what are you doing here at the show red hat summit 2018 what's on your agenda what some of the hallway conversations you're hearing customer briefings obviously some of the keynote highlights were pretty impressive what going on for you it's a Volvo OpenShift on OpenStack that's where the current and the future is and it's not something that you have to wait for the reality is that when you're thinking about containers you might be starting very small but the reality is that you're going to have a reasonably sized farm that needs to power all the innovation that's going to happen in your organization so given that you need to have an infrastructure management solution thought through and implemented on day one itself so that's what OpenStack does so when you can roll out OpenStack and then on top of it bring in openshift then you not only have to you're not only taking care of today's needs but also as you scale and back to the point we were talking about moving the capacity where is needed you have a elastic infrastructure that can go where the workload is demanding the most attention so here's another question that might come up from when I asked you and you probably got this but I'll just bring it up anyway I'm a customer of OpenStack or someone kicking the tires learning about deploying up a stack I say ritesh what is all this cloud native stuff I see kubernetes out there what does that mean for me visa V OpenStack and all the efforts going on around kubernetes and above and the application pieces of the stack right let's say if you looked at the rear view mirror five years ago when we looked at cloud native as a contract the tendency was that hey look I need to be developing net new applications that's the only scenario where cloud native would be thought thought off now fast forward five years now what has happened is that cloud native and DevOps culture has become the default if you are a developer if you're not sort of in that ploughed native and DevOps then you are working on yesterday's problem in many ways so if digital transformation is urging organizations to drive - as cloud native applications then cloud native applications require an infrastructure that's fungible inelastic and that's how openshift on OpenStack again coming back to the point of that's the future that customers can build on today and moving forward so summarize I would say what I heard you saying periphery if I'm wrong open ship is a nice bridge layer or an up bridge layer but a connection point if you bet on open ship you're gonna have best of both worlds that that's a good summary and you gotta be you know betting on open first of all is the first order a bet that you should be making once you've bet on open then the question is you gotta bet on an infrastructure choice that's OpenStack and you gotta bet on an application platform choice that's open shift once you've got both of these I think then the question is what are you going to do with your spare time okay count all the cash you're making from all the savings but also choice is key you get all this choice and flexibility is a big upside I would imagine British thanks for coming on sharing your insight on the queue appreciate it thanks for letting us know what's going on and best of luck see you in Vancouver thank you for having okay so the cube live coverage here in San Francisco for Red Hat summit 2018 John four with John Troy you're more coverage after this short break
**Summary and Sentiment Analysis are not been shown because of improper transcript**
ENTITIES
Entity | Category | Confidence |
---|---|---|
John Troyer | PERSON | 0.99+ |
Radhesh Balakrishnan | PERSON | 0.99+ |
Vancouver | LOCATION | 0.99+ |
Verizon | ORGANIZATION | 0.99+ |
Dell | ORGANIZATION | 0.99+ |
Red Hat | ORGANIZATION | 0.99+ |
San Francisco | LOCATION | 0.99+ |
five years | QUANTITY | 0.99+ |
San Francisco | LOCATION | 0.99+ |
Linux | TITLE | 0.99+ |
one year | QUANTITY | 0.99+ |
Volvo | ORGANIZATION | 0.99+ |
last year | DATE | 0.99+ |
last year | DATE | 0.99+ |
second set | QUANTITY | 0.99+ |
OSP 13 | TITLE | 0.99+ |
ORGANIZATION | 0.98+ | |
five years ago | DATE | 0.98+ |
OpenStack | ORGANIZATION | 0.98+ |
John Troy | PERSON | 0.98+ |
OpenShift | TITLE | 0.98+ |
two different customers | QUANTITY | 0.98+ |
two years ago | DATE | 0.98+ |
two weeks | QUANTITY | 0.98+ |
second thing | QUANTITY | 0.97+ |
both | QUANTITY | 0.97+ |
yesterday | DATE | 0.97+ |
OpenStack | TITLE | 0.97+ |
first one | QUANTITY | 0.97+ |
Sean | PERSON | 0.97+ |
one | QUANTITY | 0.96+ |
both worlds | QUANTITY | 0.96+ |
platform 10 | TITLE | 0.96+ |
this week | DATE | 0.96+ |
telco | ORGANIZATION | 0.96+ |
Amadeus | ORGANIZATION | 0.96+ |
today | DATE | 0.96+ |
13 | DATE | 0.95+ |
10 | DATE | 0.95+ |
HP II | ORGANIZATION | 0.95+ |
first order | QUANTITY | 0.94+ |
John four | PERSON | 0.94+ |
Red Hat summit 2018 | EVENT | 0.93+ |
a year | QUANTITY | 0.93+ |
zillion years | QUANTITY | 0.92+ |
first | QUANTITY | 0.92+ |
Phi G IOT | TITLE | 0.91+ |
red hash | ORGANIZATION | 0.91+ |
up to five years | QUANTITY | 0.91+ |
Redhead | ORGANIZATION | 0.91+ |
Red Hat summit 2018 | EVENT | 0.9+ |
Red Hat Summit 2018 | EVENT | 0.9+ |
OpenStack | EVENT | 0.9+ |
DevOps | TITLE | 0.89+ |
Red Hat summit 2018 | EVENT | 0.89+ |
openshift | TITLE | 0.89+ |
11 | DATE | 0.89+ |
12 | DATE | 0.87+ |
up to five year | QUANTITY | 0.87+ |
folks | QUANTITY | 0.87+ |
every six months | QUANTITY | 0.87+ |
San | LOCATION | 0.86+ |
earlier today | DATE | 0.86+ |
Chen Goldberg, Google | Cloud Foundry Summit 2018
(electronic music) >> Announcer: From Boston, Massachusetts, it's theCUBE, covering Cloud Foundry Summit 2018. Brought to you by the Cloud Foundry Foundation. >> Welcome back, I'm Stu Miniman, and this is theCUBE's coverage of Cloud Foundry Summit 2018, here in Boston. Happy to welcome back to the program, Chen Goldberg, who's the Engineering Director at Google. Chen, thanks for joining me. >> Thank you, it's always a pleasure. >> So Chen, what are the big questions coming in? We talked to you at the KubeCon Show before. You know, Kubernetes, you know, Cloud Foundry, containers, serverless, all these things mashing up. You've been here at the show for about a day, what have you learned so far? How do all these kind of fit together in your mind? >> So actually, it was great being here for the last day, 24 hours so far, and just seeing how Cloud Foundry Community is really opening and welcoming influence from other communities in the cloud native space. And we see it in different ways. We see work that is being done on building some open standards, for example, and so working with the Cloud Foundry on things like OCI, the Open Container Initiative, and the CSI, which is the Container Storage Interface. But not only that, for example, we in Google have been working, last year, building Kubo, which then became the Cloud Foundry Container Runtime, and really bringing things together. And I think that's awesome because like any other technology, we need to know how we can take the best out of everything. And this is what really, user wants to know. They want to know that when they are making a decision or a choice of a technology, that technology can move with them forward. The last thing that we also see all of interest about the Open Service Broker and how you can really mesh things together with different platforms. >> Chen, I'm wondering if you can help us squint through this a little bit. And we've heard Google talking for a while about Open Cloud, and that means it doesn't beam all one source in the public cloud portability between clouds, public and private. Google's had many partnerships over the years with there. How do these pieces fit together in your mind? >> I think it all starts with what user wants. Okay, I always talk about the customer and what is their pain? And the pain, in reality is that they have a very complex environment, okay? They have on-prem. They want to use some of the cloud services. Sometimes they have some places, like we hear it from retail, they have some warehouses, that they don't have actually good connectivity, but they still want to serve, they still want to have the guild transformation. And, I think, that's the main thing that what we hear from users, that they want to have that flexibility over to run their business. Okay, because this is what they really have to do and they want to compete more effectively. So, think about that. The other piece which we hear about users is that they want to make sure like we talked about Cloud Foundry before. They want to make sure that the infrastructure they choose though, that the tools will allow them to evolve, and that can be in different ways. It can be about maybe having flexibility to choose different tools, but also not to be locked in to a specific vendor because that happened to them before, right? So, they want to make sure that they can continue and move forward because the technology we know today maybe, probably will change in the future. So, by having all of that together, that leads us to some of the pieces I've talked about in the keynote. And the first one is portability. We achieve it by open source. We believe in open source because it does bring the community together. We learn about users, partners. We have an amazing ecosystem. So that's one. The second piece is about its sensibility and this is where you can see how Cloud Foundry can actually integrate into Kubernetes. It's because of those extension points. We don't know where innovation will come from. What will be the next cool thing? And back in KubeCon, I talked about some serverless framework we see on top of Kubernetes. All of that is possible through those extensions. Open Service Broker is actually a combination of two. So Open Service Broker is an open standard. It allows you to consume services from different platforms. We saw, in the keynote, so Google is announcing, now in beta, the Google Managed Service Broker, supporting the Open Service Broker API. And you consume it out from any Kubernetes cluster that are using a catalog, service catalog. And it is available also through those extensions. So when we think about Open Hybrid Cloud, we think about that you can run it anywhere. And either you have interopabilities, so you can consume different tools and you can extend it and innovate on top of it. So that's our way of thinking. >> Yeah, I mean, we know the only thing that's constant in this industry today is change. >> Yes. >> One of the things we've been tracking is if I look at an application, it used to be I deploy an application, it takes me 12-18 months at least, and then, once I'm running it, gosh. Yeah, sure, were going to run it for three to five years but, no, no, actually, we're going to run it for 10-12 years. We're going to keep it longer. How does this kind of decomposability of applications and having things and more components? We talk about things like flexibility and speed but, you know, how do you hear from customers, really, from the application side of things? >> This is all about microservices? >> Yeah. >> Right? Just making sure that your application is architected in a way that allows you to change things. I think also that developers are now used to that cycle which is really fast. I'm talking about agility and how quickly you can deploy changes. You know, I keep talking with my engineering team, like don't get too attached (laughs) to anything because things do change and requirements change all the time, and if you're building your application right, you can do those changes. For example, again, going back to the Open Service Broker, you can use a service. First of all, maybe your own service, like your own SQL. But then you can use through a managed service like if you are running on G Key or having Cloud Foundry running on GCP, then you can use one of the managed services offered by Google. >> Okay, anything new you're hearing from users? What are some of their biggest challenges? What's exciting them these days? >> So it depends which user and also who you talk in that audience. Yeah, I think developers are still very excited about the opportunity and the different tools and open source and how quickly the technology is moving forward. When we talk with enterprise, they are very excited about consistency because it's hard. That complexity and managing all of it is really hard to train your operational teams and the developers on different tools. So they are very much concerned about that, their TCO. So they care about, of course, the cost of the infrastructure, but also the people. Right, we don't talk about how hard it is to train and change technology, technologies, all during a cultural change within an organization. So, they care about consistency and this is something that is really in the heart of the thing that we are building. So starting with Kubernetes, we talk about flexibility without compromising consistency. And you do it by building obstructions and letting everyone own a different piece. And there's always some excitement about Istio, in that sense, because what it allows you is to create an obstruction for managing services which is separated from the code that you build. So, let's say you want to, for example, deploy a new policy of access control to your services, you can do it through Istio, because you have proxies in front of all your services, regardless of what they run, by the way. You can have services on VMs, on Cloud Foundry, on a Google Kubernetes engine, or anything, anywhere else you actually would like to have them. And you have that consistent layer in front of all of them. You can do troubleshooting easier because you will have the same matrix and data and telometry on top of it. And so, moving into that direction, creating more obstructions that are creating less friction for the end-user, while still allowing just the platform to evolve, right? If you have this platform on top of it, you can still move services from running from one platform to another, but that person that is using the data, actually, their experience won't change. >> Alright, Chen, what should we be looking for from Google and Eureka's system for the rest of 2018? >> So, of course, we continue and invest a lot in Kubernetes and its ecosystem, and you can see it all the time. All the time, we are bringing more and more tools in open source, showing some of our best practices of how we manage development and production into the community. Some of it is in, like project, like developer experience project, like scaffold, and others that were announced in the last few months. So we will see more of those coming. And in some ways, it's also around the best practices. So, we have been delivering messages of how you should run your clusters or application more secured. And, of course, some of those offerings will be on GCP. But that's another area where we are heavily investing. We have a lot of experience and we are happy to share that. >> Well okay, last question I have for you, is the world becoming more Googly? Or is Google becoming more like the rest of the world? (Stu and Chen laugh) >> I want to say that the world becoming more Googly. (laughs) Being Googly means many things for people here in the, that maybe don't know what means. To me, being Googly is being nice and being kind, and also, being open to more ideas and that's what I would hope to see the world moving towards. But yes, but definitely Google, as part of it being Googly, is working, continuing to work with the community and get feedback, and that's great. >> Okay, well, Chen Goldberg, it's a pleasure to catch up with you again. We will have lots more Google content (Chen laughs) and Googly guests, not only here at the Cloud Foundry Summmit, we're going to be at KubeCon, Copenhagen, as well as KubeCon, Seattle, at the end of the year, and really excited to say that we will be at the Google Cloud Next Show >> Aww. >> this summer, so, look for lots more of theCUBE. >> Thank you, Chen, for joining me. >> That's exciting. >> I'm Stu Miniman. Thanks for watching theCUBE. (electronic music)
SUMMARY :
Brought to you by the Cloud Foundry Foundation. and this is theCUBE's coverage of We talked to you at the KubeCon Show before. about the Open Service Broker and how you can really Chen, I'm wondering if you can help us and this is where you can see how Cloud Foundry Yeah, I mean, we know the only thing that's constant One of the things we've been tracking But then you can use through a managed service of the thing that we are building. and you can see it all the time. and also, being open to more ideas and that's what and really excited to say that we will be I'm Stu Miniman.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Chen | PERSON | 0.99+ |
three | QUANTITY | 0.99+ |
Chen Goldberg | PERSON | 0.99+ |
ORGANIZATION | 0.99+ | |
Stu Miniman | PERSON | 0.99+ |
Boston | LOCATION | 0.99+ |
Cloud Foundry Foundation | ORGANIZATION | 0.99+ |
five years | QUANTITY | 0.99+ |
Eureka | ORGANIZATION | 0.99+ |
Seattle | LOCATION | 0.99+ |
second piece | QUANTITY | 0.99+ |
last year | DATE | 0.99+ |
Copenhagen | LOCATION | 0.99+ |
two | QUANTITY | 0.99+ |
10-12 years | QUANTITY | 0.99+ |
24 hours | QUANTITY | 0.99+ |
Boston, Massachusetts | LOCATION | 0.99+ |
Cloud Foundry Summit 2018 | EVENT | 0.98+ |
Stu | PERSON | 0.98+ |
first one | QUANTITY | 0.98+ |
one | QUANTITY | 0.98+ |
Googly | ORGANIZATION | 0.98+ |
one platform | QUANTITY | 0.97+ |
KubeCon | EVENT | 0.97+ |
G Key | TITLE | 0.97+ |
Open Service Broker | TITLE | 0.97+ |
theCUBE | ORGANIZATION | 0.96+ |
today | DATE | 0.96+ |
One | QUANTITY | 0.95+ |
12-18 months | QUANTITY | 0.95+ |
Cloud Foundry | TITLE | 0.94+ |
SQL | TITLE | 0.94+ |
2018 | DATE | 0.91+ |
Kubo | ORGANIZATION | 0.91+ |
First | QUANTITY | 0.9+ |
GCP | TITLE | 0.86+ |
Kubernetes | TITLE | 0.86+ |
Service Broker | TITLE | 0.84+ |
KubeCon Show | EVENT | 0.83+ |
Cloud Foundry | ORGANIZATION | 0.82+ |
this summer | DATE | 0.81+ |
one source | QUANTITY | 0.81+ |
Istio | TITLE | 0.8+ |
end | DATE | 0.79+ |
Kubernetes | ORGANIZATION | 0.78+ |
Foundry | TITLE | 0.77+ |
about a day | QUANTITY | 0.76+ |
last day | DATE | 0.73+ |
Cloud Next Show | EVENT | 0.7+ |
Kubernetes | PERSON | 0.69+ |
Container Storage Interface | OTHER | 0.68+ |
last | DATE | 0.61+ |
Open Container Initiative | OTHER | 0.57+ |
KubeCon | TITLE | 0.57+ |
year | DATE | 0.55+ |
Broker | TITLE | 0.54+ |
Istio | ORGANIZATION | 0.53+ |
OCI | ORGANIZATION | 0.52+ |
Cloud | ORGANIZATION | 0.51+ |
Patrick Chanezon, Docker | Open Source Summit 2017
(Upbeat Music) >> Announcer: Live from Los Angeles, it's theCUBE, covering Open Source Summit, North America, 2017, brought to you by the Linux Foundation and The Red Hat. >> Hey, welcome back everyone, live here in Los Angeles, California for theCUBE's exclusive coverage of Open Source Summit in North America. I'm John Furrrier, with my co-star Stu Miniman, Our next guest is Patrick Chanezan, who is a member of the technical docker, also on the governing board of the Cloud Native Compute Foundation, also known as CNCF, which is the hottest part of the open-source community right now. It's very fast, we're very trendy, a lot of people are on the bandwagon, a lot of contribution going on. Welcome back to theCUBE. Great to see you. >> Hey, thanks, John and Stu, it's very good to be back on theCUBE. >> Docker's been just a great company to follow since the beginning, the birth of Docker to the transformation from Dark Cloud to Docker. It's just a great team. We have a lot of respect for you guys. Congratulations. But the CNCF right now is the hottest thing, there's more platinum sponsors than I think maybe members. It seems to be very hot. Industry loves it, developer is going crazy about it, why is CNCF so hot? What's your perspective on that? >> What we're seeing right now is really the realization of adoption of containers, we talked about it two years ago. It was very early, and people were starting to use Docker and just covering containers. Today they're really putting them into production, and what we see at Docker with our customer base is that they are using it more and more to modernize traditional applications. So we see tremendous use of containers everywhere in enterprises, and the rise of CNCF is tied to that, I think. We're seeing more and more developers joining the bandwagon, more and more systems being built based on containers. And at Docker, we're playing a big role into that. >> Patrick, for a couple years, the chant was Docker, Docker, Docker, and sometimes people say, "Cubernetti's is where the hotness is." Well underneath that, there's containers. And a lot of those containers, Docker's involved there. Maybe you can help us understand the nuance a little bit as the Cubernetti's wave has grown, sure there was the Mezos, Docker Swarm, Cubernetti's war, if you will there, but what does this mean for Docker? What are you seeing from your customers? Give us the update on Docker itself. We'll probably need to get into the Mobi stuff, too, as we get into the interview. >> Sure, definitely. That's a big question, so let's start with the beginning. When enterprises adopt containers, what happens is that usually it starts with the wrappers who are adopting containers with Docker. So they download Docker for their Windows machine, or for their Mac, or on Linux, they start modernizing their applications. What we see is more and more enterprising wrappers, modernizing existing applications by Dockerizing them, and then the next step is that they want to put that into production. For that, you need the whole system. So at Docker, we have two systems. We have Docker C and Docker E, our enterprise version that has role-based controlled sequencing and all that good stuff. There are lots of different components that you need in order to have a production container system, and so Cuberneris, the orchestration engine is one piece of that. At Docker, we have swarm kits. But there are lots of other different components and lots of different layers to that system. So you have the infrastructure layer that you are using to deploy that inside the firewall or in different cloud providers. Many different solutions there. At Docker, we have one that's called infrakit, that we're using in our additions, to deploy it everywhere. Then on top of that, you need some version of Linux. At Docker Con in April, we released a project called Linuxkit, which helps you do that. On top of that, you need a container run-time. Traditionally, it's been Docker. Right now, we re-factored the Docker codebase to extract a core run-time component that's called container G, which we donated to CNCF. Container G is nearing one or better, so it would be one of them pretty soon. Then, on top of that, you need an orchestration engine. Docker E comes with its own orchestration based on swarm, Cuberneris is another orchestration engine that people like. Cuberneris, behind the scenes, is using Docker, and right now we are working very closely with theCUBE rneris community to implement CRI container G. So CRI is the container run-time interface in Cuberneris that lets you plug in different engines to plug container G in the place of Docker in there. >> Stu: There's a lot of pieces in here. We had too many interviews yesterday talking about the Open Container Initiative, or OCI, which really made sure we've got the 1.0 version of that done. What container format, seems like we're in agreement. We're not fighting over that kind of piece anymore. From the Cubernetti's community, I heard loud and clear, they're like, we've got container D. We've kind of got what we want. We're happy it's open-sourced. We're going. We were at Docker Con when you annouced Mobi, which is kind of open-source, and it felt like we were still trying to figure out all those pieces. Give us the update as to Mobi, you're talking at the open source show, you talk a little bit about CE and EE being the productized versions, but part of it is what we used to think of as Docker is now Mobi, and the company Docker versus the project. You kind of teased those apart a little bit, right? >> Yes. Exactly. And actually, that's what I came here at the Open Summit to talk about, to give people an update on the Mobi project. So what we announced back in April was the launch of the Mobi project, which is the end of a two year re-factoring of the Docker codebase into different components. So all these components on the stack that I told you about, we just tease them out from the Docker codebase so that it's a modular set of components that you can assemble together. Mobi is three things. It's an open source project where people can collaborate in container-based systems. It's also a tool that we're using to assemble our components into Mobi Corp, which is the upstream of Docker products. Then it's also a set of lots of components, like container G, Linux, Infrakit, Notary, and all the projects I talked about. One other thing we've started doing since April as well is we started proposing to donate some of these container projects to CNCF. So container G is already part of CNCF now. Recently, this summer, we proposed Infrakit, and they think it's a little bit too early for donation, because they want to see other, different projects in there. Right now we're in the process of donating and proposing Notary, so there's an active discussion in there, and I hope that the vote will happen probably next week or something like that. So Notary is the component that we're using for Docker, and we think that this could be used in lots of different Cloud Native systems, so it really has its place in the CNCF. >> So identity component for the container management, or what specifically is that going to address? >> So Notary is the piece that we're using in Docker Con Contrast to make sure that you can trust the images that you've built. A signed signature should be able to revoke all the signatures, all the kind of features that our customers love in Docker E. >> John: It's kind of like Stu and me on Twitter, he's verified, I'm not. But this is important, because now, this is a stamp of approval, if you will, that the community can look to. >> Yeah, definitely. So it's something that we implement in Docker, and now people building other containment systems who will be able to use it. And so Mobi saw a lot of traction for its different projects, some of them are going to CNCF, some of them are growing by themselves. On the Docker side, we made some progress prioritizing all that with Docker C and Docker E. We had a 1706 launch of Docker E recently, with lots of new role-based axis control, controls for enterprises, who are adopting it essentially to modernize their traditional apps. >> Take us through a kind of personal question. You were just at a board meeting with the CNCF. Did everyone show up or are people calling in? >> I think Alexi Richardson was the only one, maybe two people on the phone. >> John: Was Sam Redjay there? >> Sam was not there either, but Epona was standing for him. So the room was full, and to me it's really an impressive achievement, two years after we helped start the CNCF. The first meetings were 10, 15 people at Google deciding to create this foundation, and today, maybe we're twenty or thirty people around the table. An\d everybody-- >> Even before that Google meeting, we were covering theCUBE Con Cubernettis' movement early on from your event. So I think, out of Docker Con and some of the Linux Foundation events, the early momentum, we were there, Stu. Then it became the CNCF, and they decided, hey, let's get the Cloud Native Foundation. So it's interesting to me, seeing the growth from the beginning. And it's unique to have that opportunity to be in the front lines of an organically developing group. It wasn't really build the table and come, this was a realization. >> It was a realization and also a concerted effort to build something together to show customers where the containment systems were going in terms of architecture-- >> What were the factors beside, I mean Docker was big driver. Notably, you should get the credit for pioneering the space. But what were the drivers for this coalescing, this call to arms, if you will, or this organic formation of CNCF. What were the key drivers in your mind. Obviously, containers is one. What are the other ones? >> Yeah, to me, containers is a big one, because when you are starting to design your system with containers in mind, you need to change lots of things, how you're building them and things like that. And how you are architecting things together. There were lots of questions about how you do the balancing in that kind of system, how do you do monitoring, how do you do tracing. The CNCF was assembled so that all these components have a place where we can show our inter-repairability between them. So Docker is part of that, Mezos is part of that, as well as Cuberneris. There's a big inter-repairability work that's happening in there. We had a report in the board meeting today about the new CI Initiative that tests different CNCF projects together. >> John: What CI? >> Sorry, continuous integration. >> John: Got it, yeah. >> So there's the continuous integration-- >> John: Not conversion infrastructure. >> Oh, you're right, yeah. >> We always get acronym-ed up. But Chris Anazik was talking yesterday about the graduation path, still waiting to see something graduate from the process. What's going to graduate first? Any bets, what's the betting, what betting is going on? Do you guys actually make bets? Is there a fantasy drafting going on? >> I don't think that really matters, what matters is really adoption of the components. >> Okay, so what's happening on the graduation scale? What's coming out of the woodworks? What's next? What's going to graduate first? >> So one thing I'm curious about is whether Container G will graduate, because it's kind of mature now, it's reaching 1-0 with the CRI and soon integration in Docker, it may be a good candidate for graduation. For the others, I don't know which ones would be first into the graduation process. >> Well, we know it's a high bar, for sure. >> Patrick, the stuff that's getting mature. What about some of the roadmap there? From Docker and CNCF, something like serverless containers, first generation, are going to be important. We had too many interviews this week talking about, today, many of the containers we'll see in the future where serverless and open Faz and things like that go. So how does that all fit in? Can you give us a Docker and a CNCF view on that? >> Let's talk about the CNCF view first. CNCF is working on lots of different areas where there needs to be more definition about what Cloud Native means for storage, for example, with the CSI Initiative, container storage interface, CNI, container networking interface, and then there's the working group for CI, which is about integrating all these projects together, but the working group I'm most interested in is the serverless one. So we have a Docker rep at the serverless working group, and there we're trying to define what a portable, serverless stack looks like. And at Docker, we're naturally interested in this -- >> Of course, Serverless is a beautiful thing. >> Most of these projects are running on top of Docker, so open Faz for people-- >> I got to ask you, Patrick, because we love serverless, I have a love/hate relationship with the word serverless because technically it's a beautiful thing, but there's servers involved. I'm an old-school, so I kind of look at it differently. The younger generation, they want infrastructure as code. This is a clear obvious thing. It was once a dream, but now it's become a reality. What's your position on that? Where is it on the progress bar? How close are we to serverless? >> I'd say there's an initial adoption of serverless on one of the few stacks that exist out there today. So you have the hosted services, the Faz services, from Amazon, Microsoft, and Google, where I'm more interested, and I think customers are kind of looking for that, is a portable way of doing that. For example, in studying that on top of Docker platforms, so that's what projects like Open Faz is doing. Right now, I think we're really in the stage of discussions with CNCF of what a portable service layer would look like so that you could focus on your code, but be able to deploy on Prim, on top of Docker, or in different cloud providers. So that portability aspect to me is very important there. And I think it's important for customers as well. To me, also, I'm an old timer as well, I used to pitch a platform as a service at the beginning of it, Google App Engine, many years ago. To me, it's kind of a feeling of deja vu. We're kind of re-inventing that, but with containers and in a much more portable way. >> The beautiful thing about being an old-timer is we get to look back and, not so much to the young kids, get off my lawn, we had to walk to school with bare feet in the snow, build our own libraries. I was just talking to Eilene, she's like, "Oh, my low-level class was C and my high-level class was Python." I'm like, "Our low-level class was machine code "and high-level wasn't even C yet." >> Yesterday, at the party, I was discussing with one of the IBM engineers, who's working on Linux and containers on mainframe, and we were talking about GCL, and that's the type of feeling that we got. Like we're getting higher up in the stack, and I think for modern developers, it really helped them-- >> It's a beautiful thing right now. Just think about the young guns that are coming up. This is a beautiful library of options now. 90% of the code is leverage-able. That's like unbelievable. So it really allows the creativity of the developer to be a lot more about structural engineering code-base rather than just being very creative on the 10-20% of real intellectual property that they can bring to the table. >> I would add something, it's really about creating value, as opposed to building infrastructure. When we're getting up the stack, and serverless is an example of that, it's really about creating value for enterprises, and that's what these wrappers are about. >> When you start dreaming in code, you know you're doing good. Patrick, thanks so much for coming on theCUBE, and congratulations on all the success with CNCF, and certainty Docker. You guys continue to impress and do a great job. I know there's some changes over there we're looking for, some of the cool stuff graduating out of CNCF, more Docker container goodness from you guys. Thanks for coming on theCUBE. We appreciate it. I'm John Furrier, we're live in Los Angeles, California, for the Open Source Summit North America coverage with theCUBE. I'm John Furrier, Stu Miniman back with more after this short break.
SUMMARY :
brought to you by the Linux Foundation a lot of people are on the bandwagon, it's very good to be back on theCUBE. We have a lot of respect for you guys. and the rise of CNCF is tied to that, I think. the chant was Docker, Docker, Docker, So CRI is the container run-time interface in Cuberneris at the open source show, you talk a little bit So Notary is the component that we're using for Docker, So Notary is the piece that we're using in Docker Con that the community can look to. On the Docker side, we made some progress You were just at a board meeting with the CNCF. I think Alexi Richardson was the only one, So the room was full, and to me it's really and some of the Linux Foundation events, this call to arms, if you will, the balancing in that kind of system, how do you do about the graduation path, still waiting to see something I don't think that really matters, For the others, I don't know which ones would be first What about some of the roadmap there? is the serverless one. Serverless is a beautiful thing. Where is it on the progress bar? on one of the few stacks that exist out there today. is we get to look back and, not so much to the young kids, and that's the type of feeling that we got. So it really allows the creativity of the developer to be and that's what these wrappers are about. and congratulations on all the success with CNCF,
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
John | PERSON | 0.99+ |
Patrick | PERSON | 0.99+ |
Chris Anazik | PERSON | 0.99+ |
Patrick Chanezan | PERSON | 0.99+ |
John Furrrier | PERSON | 0.99+ |
twenty | QUANTITY | 0.99+ |
Sam | PERSON | 0.99+ |
Stu Miniman | PERSON | 0.99+ |
Stu | PERSON | 0.99+ |
Patrick Chanezon | PERSON | 0.99+ |
Amazon | ORGANIZATION | 0.99+ |
Cloud Native Compute Foundation | ORGANIZATION | 0.99+ |
John Furrier | PERSON | 0.99+ |
Microsoft | ORGANIZATION | 0.99+ |
Linux Foundation | ORGANIZATION | 0.99+ |
90% | QUANTITY | 0.99+ |
Docker | ORGANIZATION | 0.99+ |
April | DATE | 0.99+ |
IBM | ORGANIZATION | 0.99+ |
two people | QUANTITY | 0.99+ |
next week | DATE | 0.99+ |
two systems | QUANTITY | 0.99+ |
Eilene | PERSON | 0.99+ |
Cloud Native Foundation | ORGANIZATION | 0.99+ |
Alexi Richardson | PERSON | 0.99+ |
ORGANIZATION | 0.99+ | |
CNCF | ORGANIZATION | 0.99+ |
yesterday | DATE | 0.99+ |
Sam Redjay | PERSON | 0.99+ |
Docker | TITLE | 0.99+ |
Python | TITLE | 0.99+ |
thirty people | QUANTITY | 0.99+ |
today | DATE | 0.99+ |
two year | QUANTITY | 0.99+ |
North America | LOCATION | 0.99+ |
Los Angeles, California | LOCATION | 0.99+ |
Yesterday | DATE | 0.99+ |
Los Angeles | LOCATION | 0.99+ |
Today | DATE | 0.99+ |
Mobi Corp | ORGANIZATION | 0.99+ |
Docker Con | EVENT | 0.98+ |
Linux | TITLE | 0.98+ |
Open Source Summit | EVENT | 0.98+ |
two years ago | DATE | 0.98+ |
Docker E | TITLE | 0.98+ |
this week | DATE | 0.98+ |
first | QUANTITY | 0.98+ |
Epona | PERSON | 0.98+ |
Windows | TITLE | 0.98+ |
Mac | COMMERCIAL_ITEM | 0.97+ |
theCUBE | ORGANIZATION | 0.97+ |
Mezos | ORGANIZATION | 0.97+ |
this summer | DATE | 0.97+ |
one piece | QUANTITY | 0.97+ |
first meetings | QUANTITY | 0.96+ |
Cuberneris | ORGANIZATION | 0.96+ |
Elaine Yeung, Holberton School | Open Source Summit 2017
(upbeat music) >> Narrator: Live from Los Angeles it's The Cube covering Open Source Summit North America 2017. Brought to you by the Lennox Foundation and Red Hat. >> Welcome back, everyone. Live in Los Angeles for The Cube's exclusive coverage of the Open Source Summit North America. I'm John Furrier, your host, with my co-host, Stu Miniman. Our next guest is Elaine Yeung, @egsy on Twitter, check her out. Student at Holberton School? >> At Holberton School. >> Holberton School. >> And that's in San Francisco? >> I'm like reffing the school right here. (laughs) >> Looking good. You look great, so. Open Source is a new generation. It's going to go from 64 million libraries to 400 million by 2026. New developers are coming in. It's a whole new vibe. >> Elaine: Right. >> What's your take on this, looking at this industry right now? Looking at all this old, the old guard, the new guard's coming in, a lot of cool things happening. Apple's new ARKit was announced today. You saw VR and ARs booming, multimedia. >> Elaine: Got that newer home button. Right, like I-- >> It's just killer stuff happening. >> Stu: (laughs) >> I mean, one of the reason why I wanted to go into tech, and this is why I, like, when I told them that I applied to Holberton School, was that I really think at whatever next social revolution we have, technology is going to be somehow interval to it. It's probably not even, like, an existing technology right now. And, as someone who's just, like, social justice-minded, I wanted to be able to contribute in that way, so. >> John: Yeah. >> And develop a skillset that way. >> Well, we saw the keynote, Christine Corbett Moran, was talking really hardcore about code driving culture. This is happening. >> Elaine: Right. So this is not, like, you know, maybe going to happen, we're starting to see it. We're starting to see the culture being shaped by code. And notions of ruling classes and elites potentially becoming democratized 100% because now software, the guys and gals doing it are acting on it and they have a mindset-- >> Elaine: Right. >> That come from a community. So this is interesting dynamic. As you look at that, do you think that's closer to reality? Where in your mind's eye do you see it? 'Cause you're in the front lines. You're young, a student, you're immersed in that, in all the action. I wish I was in your position and all these great AI libraries. You got TensorFlow from Google, you have all this goodness-- >> Elaine: Right. >> Kind of coming in, I mean-- >> So you're, so let me make sure I am hearing your question right. So, you're asking, like, how do I feel about the democratization of, like, educ-- >> John: Yeah, yeah. Do you feel it? Are you there? Is it happening faster? >> Well, I mean, things are happening faster. I mean, I didn't have any idea of, like, how to use a terminal before January. I didn't know, like, I didn't know my way around Lennox or GitHub, or how to push a commit, (laughs) until I started at Holberton School, so. In that sense, I'm actually experiencing this democratization of-- >> John: Yeah. >> Of education. The whole, like, reason I'm able to go to this school is because they actually invest in the students first, and we don't have to pay tuition when we enroll. It's only after we are hired or actually, until we have a job, and then we do an income-share agreement. So, like, it's really-- >> John: That's cool. >> It's really cool to have, like, a school where they're basically saying, like, "We trust in the education that we're going to give you "so strongly that you're not going to pay up front. >> John: Yeah. >> "Because we know you're going to get a solid job and "you'll pay us at that point-- >> John: Takes a lot of pressure off, too. >> Yeah. >> John: 'Cause then you don't have to worry about that overhang. >> Exactly! I wrote about that in my essay as well. Yeah, just, like because who wants to, like, worry about student debt, like, while you're studying? So, now I can fully focus on learning C, learning Python (laughs) (mumbles) and stuff. >> Alright, what's the coolest thing that you've done, that's cool, that you've gotten, like, motivated on 'cause you're getting your hands dirty, you get the addiction. >> Stu: (laughs) >> Take us through the day in the life of like, "Wow, this is a killer." >> Elaine: I don't know. Normally, (laughs) I'm just kind of a cool person, so I feel like everything I-- no, no. (laughs) >> John: That's a good, that's the best answer we heard. >> (laughs) Okay, so we had a battle, a rap battle, at my school of programming languages. And so, I wrote a rap about Bash scripts and (laughs) that is somewhere on the internet. And, I'm pretty sure that's, like, one of the coolest things. And actually, coming out here, one of my school leaders, Sylvain, he told me, he was like, "You should actually put that, "like, pretty, like, front and center on your "like, LinkedIn." Or whatever, my profile. And what was cool, was when I meet Linus yesterday, someone who had seen my rap was there and it's almost like it was, like, set up because he was like, "Oh, are you the one "that was rapping Bash?" And, I was like, "Well, why yes, that was me." (laughs) >> John: (laughs) >> And then Linus said it was like, what did he say? He was like, "Oh, that's like Weird Al level." Like, just the fact that I would make up a rap about Bash Scripts. (laughs) >> John: That's so cool. So, is that on your Twitter handle? Can we find that on your Twitter handle? >> Yes, you can. I will-- >> Okay, E-G-S-Y. >> Yes. >> So, Elaine, you won an award to be able to come to this show. What's your take been on the show so far? What was exciting about you? And, what's your experience been so far? >> To come to the Summit. >> Stu: Yeah. >> Well, so, when I was in education as a dean, we did a lot of backwards planning. And so, I think for me, like, that's just sort of (claps hands). I was looking into the future, and I knew that in October I would need to, like, start looking for an internship. And so, one of my hopes coming out here was that I would be able to expand my network. And so, like that has been already, like that has happened like more than I even expected in terms of being able to meet new people, come out here and just, like, learn new things, but also just like hear from all these, everyone's experience in the industry. Everyone's been just super awesome (laughs) and super positive here. >> Yeah. We usually find, especially at the Open Source shows, almost everyone's hiring. You know, there's huge demand for software developers. Maybe tell us a little bit about Holberton school, you know, and how they're helping, you know, ramp people up and be ready for kind of this world? >> Yeah. So, it's a two-year higher education alternative, and it is nine months of programming. So, we do, and that's split up into three months low-level, so we actually we did C, where we, you know, programmed our own shell, we programmed printf. Then after that we followed with high-levels. So we studied Python, and now we're in our CIS Admin track. So we're finishing out the last three months. And, like, throughout it there's been a little bit, like, intermix. Like, we did binary trees a couple weeks ago, and so that was back in C. And so, I love it when they're, like, throwing, like, C at us when we've been doing Python for a couple weeks, and I'm like, "Dammit, I have to put semicolons (laughs) >> John: (laughs) >> "And start compiling. "Why do we have to compile this?" Oh, anyway, so, offtrack. Okay, so after those nine months, and then it's a six month internship, and after that it's nine months of specialization. And so there's different spec-- you can specialize in high-level, low-level, they'll work with you in whatever you, whatever the student, their interests are in. And you can do that either full-time student or do it part-time. Which most of the students that are in the first batch that started in January 2016, they're, most of them are, like, still working, are still working, and then they're doing their nine month specialization as, like, part-time students. >> Final question for you, Elaine. Share your personal thoughts on, as you're immersed in the coding and learning, you see the community, you meet some great people here, network expanding, what are you excited about going forward? As you look out there, as you finish it up and getting involved, what's exciting to you in the world ahead of you? What do you think you're going to jump into? What's popping out and revealing itself to you? >> I think coming to the conference and hearing Jim speak about just how diversity is important and also hearing from multiple speakers and sessions about the importance of collaboration and contributions, I just feel like Lennox and Open Source, this whole movement is just a really, it's a step in the right direction, I believe. And it's just, I think the recognition that by being diverse that we are going to be stronger for it, that is super exciting to me. >> John: Yeah. >> Yeah, and I just hope to be able to-- >> John: Yeah (mumbles) >> I mean, I know I'm going to be able to add to that soon. (laughs) >> Well, you certainly are. Thanks for coming on The Cube. Congratulations on your success. Thanks for coming, appreciate it. >> Elaine: Thank you, thank you. >> And this is The Cube coverage, live in LA, for Open Source Summit North America. I'm John Furrier, Stu Miniman. More live coverage after this short break. (upbeat music)
SUMMARY :
Brought to you by the Lennox Foundation and Red Hat. of the Open Source Summit North America. I'm like reffing the school It's going to go from 64 million libraries What's your take on this, Elaine: Got that newer I mean, one of the reason why I wanted to go into tech, Well, we saw the keynote, Christine Corbett Moran, you know, maybe going to happen, As you look at that, do you think that's closer to reality? so let me make sure I am hearing your question right. Do you feel it? I mean, I didn't have any idea of, like, and we don't have to pay tuition when we enroll. "so strongly that you're not going to pay up front. John: Takes a lot John: 'Cause then you don't have to worry (laughs) (mumbles) and stuff. you get the addiction. "Wow, this is a killer." Elaine: I don't know. that's the best answer we heard. and (laughs) that is somewhere on the internet. And then Linus said it was like, what did he say? So, is that on your Twitter handle? Yes, you can. So, Elaine, you won an award And so, like that has been already, you know, and how they're helping, you know, and so that was back in C. And you can do that either full-time student What do you think you're going to jump into? that by being diverse that we are going to be stronger for it, I mean, I know I'm going to Well, you certainly are. And this is The Cube coverage, live in LA,
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Elaine | PERSON | 0.99+ |
John | PERSON | 0.99+ |
Linus | PERSON | 0.99+ |
Elaine Yeung | PERSON | 0.99+ |
Stu Miniman | PERSON | 0.99+ |
January 2016 | DATE | 0.99+ |
Sylvain | PERSON | 0.99+ |
John Furrier | PERSON | 0.99+ |
Red Hat | ORGANIZATION | 0.99+ |
Jim | PERSON | 0.99+ |
San Francisco | LOCATION | 0.99+ |
October | DATE | 0.99+ |
nine months | QUANTITY | 0.99+ |
LA | LOCATION | 0.99+ |
two-year | QUANTITY | 0.99+ |
Christine Corbett Moran | PERSON | 0.99+ |
Apple | ORGANIZATION | 0.99+ |
100% | QUANTITY | 0.99+ |
Lennox Foundation | ORGANIZATION | 0.99+ |
six month | QUANTITY | 0.99+ |
Python | TITLE | 0.99+ |
Los Angeles | LOCATION | 0.99+ |
Holberton School | ORGANIZATION | 0.99+ |
GitHub | ORGANIZATION | 0.99+ |
three months | QUANTITY | 0.99+ |
nine month | QUANTITY | 0.99+ |
400 million | QUANTITY | 0.99+ |
Open Source Summit North America | EVENT | 0.99+ |
@egsy | PERSON | 0.99+ |
yesterday | DATE | 0.99+ |
Stu | PERSON | 0.99+ |
Lennox | ORGANIZATION | 0.98+ |
2026 | DATE | 0.98+ |
Open Source Summit | EVENT | 0.98+ |
Open Source Summit North America 2017 | EVENT | 0.98+ |
ORGANIZATION | 0.97+ | |
one | QUANTITY | 0.96+ |
Weird Al | PERSON | 0.95+ |
ARKit | TITLE | 0.95+ |
first | QUANTITY | 0.95+ |
first batch | QUANTITY | 0.94+ |
today | DATE | 0.93+ |
Open Source Summit 2017 | EVENT | 0.92+ |
64 million libraries | QUANTITY | 0.89+ |
The Cube | ORGANIZATION | 0.89+ |
Bash Scripts | TITLE | 0.88+ |
C | TITLE | 0.88+ |
ORGANIZATION | 0.87+ | |
Open | ORGANIZATION | 0.86+ |
couple weeks ago | DATE | 0.85+ |
North America | LOCATION | 0.81+ |
Holberton school | ORGANIZATION | 0.81+ |
ORGANIZATION | 0.78+ | |
TensorFlow | TITLE | 0.76+ |
C. | TITLE | 0.68+ |
Bash | TITLE | 0.68+ |
E-G-S-Y | TITLE | 0.65+ |
school | QUANTITY | 0.64+ |
last three months | DATE | 0.58+ |
Day 1 Wrap - DataWorks Summit Europe 2017 - #DWS17 - #theCUBE
(Rhythm music) >> Narrator: Live, from Munich, Germany, it's The Cube. Coverage, DataWorks Summit Europe, 2017. Brought to you by Hortonworks. >> Okay, welcome back everyone. We are live in Munich, Germany for DataWorks 2017, formally known as Hadoop Summit. This is The Cube special coverage of the Big Data world. I'm John Furrier my co-host Dave Vallente. Two days of live coverage, day one wrapping up. Now, Dave, we're just kind of reviewing the scene here. First of all, Europe is a different vibe. But the game is still the same. It's about Big Data evolving from Hadoop to full open source penetration. Puppy's now public in markets Hortonworks, Cloudera is now filing an S-1, Neosoft, Talon, variety of the other public companies. Alteryx. Hadoop is not dead, it's not dying. It certainly is going to have a position in the industry, but the Big Data conversation is front and center. And one thing that's striking to me is that in Europe, more than in the North America, is IOT is more centrally themed in this event. Europe is on the Internet of Things because of the manufacturing, smart cities. So this is a lot of IOT happening here, and I think this is a big discovery certainly, Hortonworks event is much more of a community event than Strata Hadoop. Which is much more about making money and modernization. This show's got a lot more engagement with real conversations and developers sessions. Very engaging audience. Well, yeah, it's Europe. So you've go a little bit different smaller show than North America but to me, IOT, Internet of Things, is bringing the other cloud world with Big Data. That's the forcing function. And real time data is the center of the action. I think is going to be a continuing theme as we move forward. >> So, in 2010 John, it was all about 'What is Hadoop?' With the middle part of that decade was all about Hadoop's got to go into the enterprise. It's gone mainstream in to the enterprise, and now it's sort of 'what's next?' Same wine new bottle. But I will say this, Hadoop, as you pointed out, is not dead. And I liken it to the early web. Web one dot O it was profound. It was a new paradigm. The profundity of Hadoop was that you could ship five megabytes of code to a petabyte of data. And that was the new model and that's spawned, that's catalyzed the Big Data movement. That is with us now and it's entrenched, and now you're seeing layers of innovation on top of that. >> Yeah, and I would just reiterate and reinforce that point by saying that Cloudera, the founders of this industry if you will, with Hadoop the first company to be commercially funded to do what Hortonworks came in after the fact out of Yahoo, came out of a web-scale world. So you have the cloud native DevOps culture, Amar Ujala's at Yahoo, Mike Olson, Jeff Hammerbacher, Christopher Vercelli. These guys were hardcore large-scale data guys. Again, this is the continuation of the evolution, and I think nothing is changed it that regard because those pioneers have set the stage for now the commercialization and now the conversation around operationalizing this cloud is big. And having Alan Nance, a practitioner, rock-star, talking about radical deployments that can drop a billion dollars at a cost savings to the bottom line. This is the kind of conversations we're going to see more of this is going to change the game from, you know, "Hey, I'm the CFO buyer" or "CIO doing IT", to an operational CEO, chief operating officer level conversation. That operational model of cloud is now coming into the view what ERP did in software, those kinds of megatrends, this is happening right now. >> As we talk about the open, the people who are going to make the real money on Big Data are the practitioners, those people applying it. We talked about Alan Nance's example of billion dollar, half a billion dollar cost-savings revenue opportunities, that's where the money's being made. It's not being made, yet anyway with these public companies. You're seeing it Splunk, Tableau, now Cloudera, Hortonworks, MapR. Is MapR even here? >> Haven't seen 'em. >> No I haven't seen MapR, they used to have pretty prominent display at the show. >> You brought up point I want to get back to. This relates to those guys, which is, profitless prosperity. >> Yeah. >> A term used for open source. I think there's a trend happening and I can't put a finger on it but I can kind of feel it. That is the ecosystems of open source are now going to a dimension where they're not yet valued in the classic sense. Most people that build platforms value ecosystems, that's where developers came from. Developer ecosystems fuel open source. But if you look at enterprise, at transformations over the decades, you'd see the successful companies have ecosystems of channel partners; ecosystems of indirect sales if you will. We're seeing the formation, at least I can start seeing the formation of an indirect engine of value creation, vis-Ã -vis this organic developer community where the people are building businesses and companies. Shaun Connolly pointed to Thintech as an example. Where these startups became financial services businesses that became Thintech suppliers, the banks. They're not in the banking business per se, but they're becoming as important as banks 'cuz they're the providers in Thintech, Thintech being financial tech. So you're starting to see this ecosystem of not "channel partners", resell my equipment or software in the classic sense as we know them as they're called channel partners. But if this continues to develop, the thousand flower blooming strategy, you could argue that Hortonworks is undervalued as a company because they're not realizing those gains yet or those gains can't be measured. So if you're an MBA or an investment banker, you've got to be looking at the market saying, "wow, is there a net-present value to an ecosystem?" It begs the question Dave. >> Dave: It's a great question John. >> This is a wealth creation. A rising tide floats all boats, in that rising tide is a ecosystem value number there. No one has their hands on that, no one's talked about that. That is the upshot in my mind, the silver-lining to what some are saying is the consolidation of Hadoop. Some are saying Cloudera is going to get a huge haircut off their four point one billion dollar value. >> Dave: I think that's inevitable. >> Which is some say, they may lose two to three billion in value, in the IPO. Post IPO which would put them in line with Hortonworks based on the numbers. You know, is that good or bad? I don't think it's bad because the value shifts to the ecosystem. Both Cloudera and Hortonworks both play in open source so you can be glass half-full on one hand, on the haircut, upcoming for Cloudera, two saying "No, the glass is half-full because it's a haircut in the short-term maybe", if that happens. I mean some said Pure Storage was going to get a haircut, they never really did Dave. So, again, no one yet has pegged the valuation of an ecosystem. >> Well, and I think that is a great point, personally I think, I've been sort of racking my brain, will this Big Data hike be realized. Like the internet. You remember the internet hyped up, then it crashed; no one wanted to own any of these companies. But it actually lived up to the hype. It actually exceeded the hype. >> You can get pet food online now, it's called amazon. [Co-Hosts Chuckle Together] All the e-commerce played out. >> Right, e-commerce played out. But I think you're right. But everybody's expecting sort of, was expecting a similar type of cycle. "Oh, this will replace that." And that's now what's going to happen. What's going to happen is the ecosystem is going to create a flywheel effect, is really what you're saying. >> Jeff: Yes. >> And there will be huge valuations that emerge out of this. But today, the guys that we know and love, the Hortonworks, the Clouderas, et cetera, aren't really on the winners list, I mean some of their founders maybe are. But who are the winners? Maybe the customers because they saw a big drop in cost. Apache's a big winner here. Wouldn't ya say? >> Yeah. >> Apache's looking pretty good, Apache Foundation. I would say AWS is a pretty big winner. They're drifting off of this. How about Microsoft and IBM? I mean I feel in a way IBM is sort of co-opted this Big Data meme, and said, "okay, cognitive." And layered all of it's stuff on top of it. Bought the weather company, repositioned the company, now it hasn't translated in to growth, but certainly has profitability implications. >> IBM plays well here, I'll tell you why. They're very big in open source, so that's positive. Two, they have huge track record and staff dealing with professional services in the enterprise. So if transformation is the journey conversation, IBM's right there. You can't ignore IBM on this one. Now, the stack might be different, but again, beauty is in the eye of the beholder because depending on what work clothes you have it depends. IBM is not going to leave you high and dry 'cuz they have a really you need for what they can do with their customers. Where people are going to get blindsided in my opinion, the IBMs and Oracles of the world, and even Microsoft, is what Alan Nance was talking about, the radical transformation around the operating model is going to force people to figure out when to start cannibalizing their own stacks. That's going to be a tell sign for winners and losers in the big game. Because if IBM can shift quickly and co-op the megatrends, make it their own, get out in front of that next wave as Pat Gelsinger would say, they could surf that wave and then tweak, and then get out in front. If they don't get behind that next wave, they're driftwood. It really is all about where you are in the spectrum, and analytics is one of those things in data where, you've got to have a cohesive horizontal strategy. You got to be horizontally scalable with data. You got to make data freely available. You have to have an abstraction layer of software that will allow free movement of data, across systems. That's the number one thing that comes out of seeing the Hortonwork's data platform for instance. Shaun Connolly called it 'connective tissue'. Cloudera is the same thing, they have to start figuring out ways to be better at the data across the horizontal view. Cloudera like IBM has an opportunity as well, to get out in front of the next wave. I think you can see that with AI and machine learning, clearly they're going to go after that. >> Just to finish off on the winners and losers; I mean, the other winner is systems integrators to service these companies. But I like what you said about cannibalizing stacks as an indicator of what's happening. So let's talk about that. Oracle clearly cannibalizing it's stacks, saying, "okay, we're going to the red stack to the cloud, go." Microsoft has made that decision to do that. IBM? To a large degree is cannibalizing it's stack. HP sold off it's stack, said, "we don't want to cannibalize our stack, we want to sell and try to retool." >> So, your question, your point? >> So, haven't they already begun to do that, the big legacy companies? >> They're doing their tweaking the collet and mog, as an example. At Oracle Open World and IBM Interconnect, all the shows we, except for Amazon, 'cuz they're pure cloud. All are taking the unique differentiation approach to their own stuff. IBM is putting stuff that's relate to IBM in their cloud. Oracle differentiates on their stack, for instance, I have no problem with Oracle because they have a huge database business. And, you're high as a kite if you think Oracle's going to lose that database business when data is the number one asset in the world. What Oracle's doing which I think is quite brilliant on Oracle's part is saying, "hey, if you want to run on premise with hardware, we got Sun, and oh by the way, our database is the fastest on our stuff." Check. Win. "Oh you want to move to the cloud? Come to the Oracle cloud, our database runs the fastest in our cloud", which is their stuff in the cloud. So if you're an Oracle customer you just can't lose there. So they created an inimitability around their own database. So does that mean they're going to win the new database war? Maybe not, but they can coexist as a system of records so that's a win. Microsoft Office 365, tightly coupling that with Azure is a brilliant move. Why wouldn't they do that? They're going to migrate their customer base to their own clouds. Oracle and Microsoft are going to migrate their customers to their own cloud. Differentiate and give their customers a gateway to the cloud. VVMware is partnering with Amazon. Brilliant move and they just sold vCloud Air which we reported at Silicon Angle last night, to a French company recently so vCloud Air is gone. Now that puts the VMware clearly in bed with Amazon web services. Great move for VMware, benefit to AWS, that's a differentiation for VMware. >> Dave: Somebody bought vCloud Air? >> I think you missed that last night 'cuz you were traveling. >> Chuckling: That's tongue-in-cheek, I mean what did they get for vCloud Air? >> OVH bought them, French company. >> More de-levering by Michael. >> Well, they're inter-clouding right? I mean de-leveraging the focus, right? So OVH, French company, has a very much coexisted... >> What'd they pay? >> ... strategy. It's undisclosed. >> Yeah, well why? 'Cuz it wasn't a big number. That's my point. >> Back to the other cloud players, Google. I think Google's differentiating on their technology. Great move, smart move. They just got to get, as someone who's been following them, and you know, you and I both love an enterprise experience. They got to speak the enterprise language and execute the language. Not through 19 year olds and interns or recent smart college grads ad and say, "we're instantly enterprise." There's a dis-economies of scale for trying to ramp up and trying to be too heavy on the enterprise. Amazon's got the same problem, you can't hire sales guy fast enough, and oh by the way, find me a sales guy that has ten 15 years executive selling experience to a complex strategic sales, like the enterprise where you now have stakeholders that are in multiple roles and changing roles as Alan Nance pointed out. So the enterprise game is very difficult. >> Yup. >> Very very difficult. >> Well, I think these dupe startups are seeing that. None of them are making money. Shaun Connolly basically said, "hey, it used to be growth they would pay for growth, but now their punishing you if you don't have growth plus profitability." By the way, that's not all totally true. Amazon makes no money, unless stock prices go through the roof. >> There is no self-service, there is no self-service business model for digital transformation for enterprise customers today. It doesn't exist. The value proposition doesn't resinate with customers. It works good for Shadow IT, and if you want to roll out G Suite in some pockets of your organization, but an ad-sense sales force doesn't work in the enterprise. Everyone's finding that out right now because they're basically transforming their enterprise. >> I think Google's going to solve their problem. I think Google has to solve their problem 'cuz... >> I think they will, but to me it's, buy a company, there's a zillion company out there they could buy tomorrow that are private, that have like 300 sales people that are senior people. Pay the bucks, buy a sales force, roll your stuff out and start speaking the language. I think Dianne Green gets this. So, I think, I expect to see Google ... >> Dave: Totally. >> do some things in that area. >> And I think, to you're point, I've always said the rich get richer. The traditional legacy companies, they're holding servant in this. They waited they waited they waited, and they said, "okay now we're going to go put our chips on the table." Oracle made it's bets. IBM made it's bets. HP, not really, betting on hardware. Okay. Fine. Cisco, Microsoft, they're all making their bets. >> It's all about bets on technology and profitability. This is what I'm looking at right now Dave. We talked about it on our intro. Shaun Connolly who's in charge of strategy at Hortonworks clarified it that clearly revenue, losing money is not going to solve the problem for credibility. Profitability matters. This comes back to the point we've said on The Cube multiple years ago and even just as recently as last year, that the world's flipping back down to credibility. Customers in the enterprise want to see credibility and track record. And they're going to evaluate the suppliers based upon key fundamentals in their business. Can they make money? Can they deliver SLAs? These are going to be key requirements, not the shiny new toy from Silicon Valley. Or the cool machine learning algorithm. It has to apply to their product, their value, and they're going to look to companies on the scoreboard and say, "are you profitable?" As a proxy for relevance. >> Well I want to keep it, but I do want to, we've been kind of critical of some of the Hadoop players. Cloudera and Hortonworks specifically. But I want to give them props 'cuz you remember well John, when the legacy enterprise guys started coming into the Hadoop market they all said that they had the same messaging, "we're going to make Hadoop enterprise ready." You remember that well, and I have to say that Hortonworks, Cloudera, I would say MapR as well and the ecosystem, have done a pretty good job of making Hadoop and Big Data enterprise ready. They were already working on it very hard, I think they took it seriously and I think that that's why they are in the mix and they are growing as they are. Shaun Connolly talked about them being operating cashflow positive. Eking out some plus cash. On the next earnings call, pressures on. But we want to see, you know, rocket ships. >> I think they've done a good job, I mean, I don't think anyone's been asleep at the switch. At all, enterprise ready. The questions always been "can they get there fast enough?" I think everyone's recognized that cost of ownership's down. We still solicit on the OpenStack ecosystem, and that they move right from the valley properties. So we'll keep an eye on it, tomorrow we'll be checking in. We got a great day tomorrow. Live coverage here in Munich, Germany for DataWorks 2017. More coverage tomorrow, stay with us. I'm John Furrier with Dave Vallente. Be right back with more tomorrow, day two. Keep following us.
SUMMARY :
Brought to you by Hortonworks. Europe is on the Internet of Things And I liken it to the early web. the founders of this industry if you will, on Big Data are the practitioners, prominent display at the show. This relates to those guys, which is, That is the ecosystems of open source the silver-lining to what some are saying on one hand, on the haircut, You remember the internet hyped up, All the e-commerce played out. the ecosystem is going to the Hortonworks, the Clouderas, et cetera, Bought the weather company, IBM is not going to leave you high and dry the red stack to the cloud, go." Now that puts the VMware clearly in bed I think you missed that last night I mean de-leveraging the focus, right? It's undisclosed. 'Cuz it wasn't a big number. like the enterprise where you now have By the way, that's not all totally true. and if you want to roll out G Suite I think Google has to start speaking the language. And I think, to you're point, that the world's flipping of some of the Hadoop players. We still solicit on the
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Dave Vallente | PERSON | 0.99+ |
Oracle | ORGANIZATION | 0.99+ |
Microsoft | ORGANIZATION | 0.99+ |
Cisco | ORGANIZATION | 0.99+ |
IBM | ORGANIZATION | 0.99+ |
Michael | PERSON | 0.99+ |
Dianne Green | PERSON | 0.99+ |
Amazon | ORGANIZATION | 0.99+ |
Dave | PERSON | 0.99+ |
Shaun Connolly | PERSON | 0.99+ |
Cloudera | ORGANIZATION | 0.99+ |
Jeff Hammerbacher | PERSON | 0.99+ |
Alan Nance | PERSON | 0.99+ |
Europe | LOCATION | 0.99+ |
two | QUANTITY | 0.99+ |
Pat Gelsinger | PERSON | 0.99+ |
AWS | ORGANIZATION | 0.99+ |
Hortonworks | ORGANIZATION | 0.99+ |
Jeff | PERSON | 0.99+ |
Apache | ORGANIZATION | 0.99+ |
John | PERSON | 0.99+ |
Yahoo | ORGANIZATION | 0.99+ |
tomorrow | DATE | 0.99+ |
Christopher Vercelli | PERSON | 0.99+ |
ORGANIZATION | 0.99+ | |
John Furrier | PERSON | 0.99+ |
Thintech | ORGANIZATION | 0.99+ |
HP | ORGANIZATION | 0.99+ |
billion dollar | QUANTITY | 0.99+ |
VVMware | ORGANIZATION | 0.99+ |
three billion | QUANTITY | 0.99+ |
last year | DATE | 0.99+ |
Silicon Valley | LOCATION | 0.99+ |
Sun | ORGANIZATION | 0.99+ |
Mike Olson | PERSON | 0.99+ |
Two days | QUANTITY | 0.99+ |
North America | LOCATION | 0.99+ |
2010 | DATE | 0.99+ |
Neosoft | ORGANIZATION | 0.99+ |
Talon | ORGANIZATION | 0.99+ |
Raejeanne Skillern | Google Cloud Next 2017
>> Hey welcome back everybody. Jeff Frick here with theCUBE, we are on the ground in downtown San Francisco at the Google Next 17 Conference. It's this crazy conference week, and arguably this is the center of all the action. Cloud is big, Google Cloud Platform is really coming out with a major enterprise shift and focus, which they've always had, but now they're really getting behind it. And I think this conference is over 14,000 people, has grown quite a bit from a few years back, and we're really excited to have one of the powerhouse partners with Google, who's driving to the enterprise, and that's Intel, and I'm really excited to be joined by Raejeanne Skillern, she's the VP and GM of the Cloud Platform Group, Raejeanne, great to see you. >> Thank you, thanks for having me. >> Yeah absolutely. So when we got this scheduled, I was thinking, wow, last time I saw you was at the Open Compute Project 2015, and we were just down there yesterday. >> Yesterday. And we missed each other yesterday, but here we are today. >> So it's interesting, there's kind of the guts of the cloud, because cloud is somebody else's computer that they're running, but there is actually a computer back there. Here, it's really kind of the front end and the business delivery to people to have the elastic capability of the cloud, the dynamic flexibility of cloud, and you guys are a big part of this. So first off, give us a quick update, I'm sure you had some good announcements here at the show, what's going on with Intel and Google Cloud Platform? >> We did, and we love it all, from the silicon ingredients up to the services and solutions, this is where we invest, so it's great to be a part of yesterday and today. I was on stage earlier today with Urs Holzle talking about the Google and Intel Strategic Alliance, we actually announced this alliance last November, between Diane Green and Diane Bryant of Intel. And we had a history, a decade plus long of collaborating on CPU level optimization and technology optimization for Google's infrastructure. We've actually expanded that collaboration to cover hybrid cloud orchestration, security, IOT edge to cloud, and of course, artificial intelligence, machine learning, and deep learning. So we still do a lot of custom work with Google, making sure our technologies run their infrastructure the best, and we're working beyond the infrastructure to the software and solutions with them to make sure that those software and solutions run best on our architecture. >> Right cause it's a very interesting play, with Google and Facebook and a lot of the big cloud providers, they custom built their solutions based on their application needs and so I would presume that the microprocessor needs are very specific versus say, a typical PC microprocessor, which has a more kind of generic across the board type of demand. So what are some of the special demands that cloud demands from the microprocessor specifically? >> So what we've seen, right now, about half the volume we ship in the public cloud segment is customized in some way. And really the driving force is always performance per dollar TCO improvement. How to get the best performance and the lowest cost to pay for that performance. And what we've found is that by working with the top, not just the Super Seven, we call them, but the Top 100, closely, understanding their infrastructure at scale, is that they benefit from more powerful servers, with performance efficiency, more capability, more richly configured platforms. So a lot of what we've done, these cloud service providers have actually in some cases pushed us off of our roadmap in terms of what we can provide in terms of performance and scalability and agility in their infrastructure. So we do a lot of tweaks around that. And then of course, as I mentioned, it's not just the CPU ingredients, we have to optimize in the software level, so we do a lot of co-engineering work to make sure that every ounce of performance and efficiency is seen in their infrastructure. And that's how they, their data center is their cost to sales, they can't afford to have anything inefficient. So we really try to partner to make sure that it is completely tailor-optimized for that environment. >> Right, and the hyperscale, like you said, the infrastructure there is so different than kind of classic enterprise infrastructure, and then you have other things like energy consumption, which, again, at scale, itty bitty little improvements >> It's expensive. >> Make a huge impact. And then application far beyond the cloud service providers, so many of the applications that we interact with now today on a day to day basis are cloud-based applications, whether it is the G Suite for documents or this or that, or whether it's Salesforce, or whether we just put in Asana for task tracking, and Slack, and so many of these things are now cloud-based applications, which is really the way we work more and more and more on our desktops. >> Absolutely. And one of the things we look at is, applications really have kind of a gravity. Some applications are going to have a high affinity to public cloud. You see Tustin Dove, you see email and office collaboration already moving into the public cloud. There are some legacy applications, complex, some of the heavier modeling and simulation type apps, or big huge super computers that might stay on premise, and then you have this middle ground of applications, that, for various reasons, performance, security, data governance, data gravity, business need or IP, could go between the public cloud or stay on premise. And that's why we think it's so important that the world recognizes that this really is about a hybrid cloud. And it's really nice to partner with Google because they see that hybrid cloud as the end state, or they call it the Multi Cloud. And their Kubernetes Orchestration Platform is really designed to help that, to seamlessly move those apps from on a customer's premise into the Google environment and have that flow. So it's a very dynamic environment, we expect to see a lot of workloads kind of continue to be invested and move into the public cloud, and people really optimizing end-to-end. >> So you've been in the data center space, we talked a little bit before we went live, you've been in the data center space for a long, long time. >> Long time. >> We won't tell you how long. (laughing) >> Both: Long time. >> So it must be really exciting for you to see this shift in computing. There's still a lot of computing power at the edge, and there's still a lot of computing power now in our mobile devices and our PCs, but so much more of the heavy lift in the application infrastructure itself is now contained in the data center, so much more than just your typical old-school corporate data centers that we used to see. Really fun evolution of the industry, for you. >> Absolutely, and the public cloud is now one of the fastest growing segments in the enterprise space, in the data center space, I should say. We still have a very strong enterprise business. But what I love is it's not just about the fact that the public cloud is growing, this hybrid really connects our two segments, so I'm really learning a lot. It's also, I've been at Intel 23 years, most of it in the data center, and last year, we reorganized our company, we completely restructured Intel to be a cloud and IoT company. And from a company that for multiple decades was a PC or consumer-based client device company, it is just amazing to have data center be so front and center and so core to the type of infrastructure and capability expansion that we're going to see across the industry. We were talking about, there isn't going to be an industry left untouched by technology. Whether it's agriculture, or industrial, or healthcare, or retail, or logistics. Technology is going to transform them, and it all comes back to a data center and a cloud-based infrastructure that can handle the data and the scale and the processing. >> So one of the new themes that's really coming on board, next week will it be a Big Data SV, which has grown out of Hadoop and the old big data conversation. But it's really now morphing into the next stage of that, which is machine learning, deep learning, artificial intelligence, augmented reality, virtual reality, so this whole 'nother round that's going to eat up a whole bunch of CPU capacity. But those are really good cloud-based applications that are now delivering a completely new level of value and application sophistication that's driven by power back at the data center. >> Right. We see, artificial intelligence has been a topic since the 50s. But the reality is, the technology is there today to both capture and create the data, and compute on the data. And that's really unlocking this capabilities. And from us as a company, we see it as really something that is going to not just transform us as a business but transform the many use cases and industries we talked about. Today, you or I generate about a gig and a half of data, through our devices and our PC and tablet. A smart factory or smart plane or smart car, autonomous car, is going to generate terabytes of data. Right, and that is going to need to be stored. Today it's estimated only about 5% of the data captured is used for business insight. The rest just sits. We need to capture the data, store the data efficiently, use the data for insights, and then drive that back into the continuous learning. And that's why these technologies are so amazing, what they're going to be able to do, because we have the technology and the opportunity in the business space, whether it's AI for play or for good or for business, AI is going to transform the industry. >> It's interesting, Moore's Law comes up all the time. People, is Moore's Law done, is Moore's Law done? And you know, Moore's Law is so much more than the physics of what he was describing when he first said that in the first place, about number of transistors on a chip. It's really about an attitude, about this unbelievable drive to continue to innovate and iterate and get these order of magnitude of increase. We talked to David Floyer at OCP yesterday, and he's talking about it's not only the microprocessors and the compute power, but it's the IO, it's the networking, it's storage, it's flash storage, it's the interconnect, it's the cabling, it's all these things. And he was really excited that we're getting to this massive tipping point, of course in five years we'll look back and think it's archaic, of these things really coming together to deliver low latency almost magical capabilities because of this combination of factors across all those different, kind of the three horseman of computing, if you will, to deliver these really magical, new applications, like autonomous vehicles. >> Absolutely. And we, you'll hear Intel talk about Jevons Paradox, which is really about, if you take something and make it cheaper and easier to consume, people will consume more of it. We saw that with virtualization. People predicted oh everything's going to slow down cause you're going to get higher utilization rates. Actually it just unlocked new capabilities and the market grew because of it. We see the same thing with data. Our CEO will talk about, data is the new oil. It is going to transform, it's going to unlock business opportunity, revenue growth, cost savings in environment, and that will cause people to create more services, build new businesses, reach more people in the industry, transform traditional brick and mortar businesses to the digital economy. So we think we're just on the cusp of this transformation, and the next five to 10 years is going to be amazing. >> So before we let you go, again, you've been doing this for 20 plus years, I wasn't going to say anything, she said it, I didn't say it, and I worked at Intel the same time, so that's good. As you look forward, what are some of your priorities for 2017, what are some of the things that you're working on, that if we get together, hopefully not in a couple years at OCP, but next year, that you'll be able to report back that this is what we worked on and these are some of the new accomplishments that are important to me? >> So I'm really, there's a number of things we're doing. You heard me mention artificial intelligence many, many times. In 2016, Intel made a number of significant acquisitions and investments to really ensure we have the right technology road map for artificial intelligence. Machine learning, deep learning, training and inference. And we've really shored up that product portfolio, and you're going to see these products come to market and you're going to see user adoption, not just in my segment, but transforming multiple segments. So I'm really excited about those capabilities. And a lot of what we'll do, too, will be very vertical-based. So you're going to see the power of the technology, solving the health care problem, solving the retail problem, solving manufacturing, logistics, industrial problems. So I like that, I like to see tangible results from our technology. The other thing is the cloud is just growing. Everybody predicted, can it continue to grow? It does. Companies like Google and our other partners, they keep growing and we grow with them, and I love to help figure out where they're going to be two or three years from now, and get our products ready for that challenge. >> Alright, well I look forward to our next visit. Raejeanne, thanks for taking a few minutes out of your time and speaking to us. >> It was nice to see you again. >> You too. Alright, she's Raejeanne Skillern and I'm Jeff Frick, you're watching theCUBE, we're at the Google Cloud Next Show 2017, thanks for watching. (electronic sounds)
SUMMARY :
of the Cloud Platform Group, Raejeanne, great to see you. the Open Compute Project 2015, and we were just And we missed each other yesterday, but here we are today. and the business delivery to people to have the best, and we're working beyond the infrastructure and a lot of the big cloud providers, about half the volume we ship in the public cloud segment so many of the applications that we interact with And one of the things we look at is, we talked a little bit before we went live, We won't tell you how long. is now contained in the data center, and a cloud-based infrastructure that can handle the data and the old big data conversation. Right, and that is going to need to be stored. and the compute power, but it's the IO, and the next five to 10 years is going to be amazing. of the new accomplishments that are important to me? and investments to really ensure we have the right and speaking to us. to see you again. we're at the Google Cloud Next Show 2017,
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Diane Bryant | PERSON | 0.99+ |
Raejeanne | PERSON | 0.99+ |
Diane Green | PERSON | 0.99+ |
David Floyer | PERSON | 0.99+ |
ORGANIZATION | 0.99+ | |
Jeff Frick | PERSON | 0.99+ |
Raejeanne Skillern | PERSON | 0.99+ |
2016 | DATE | 0.99+ |
2017 | DATE | 0.99+ |
yesterday | DATE | 0.99+ |
Urs Holzle | PERSON | 0.99+ |
ORGANIZATION | 0.99+ | |
Intel | ORGANIZATION | 0.99+ |
Yesterday | DATE | 0.99+ |
OCP | ORGANIZATION | 0.99+ |
next year | DATE | 0.99+ |
next week | DATE | 0.99+ |
20 plus years | QUANTITY | 0.99+ |
today | DATE | 0.99+ |
23 years | QUANTITY | 0.99+ |
Today | DATE | 0.99+ |
G Suite | TITLE | 0.99+ |
Both | QUANTITY | 0.99+ |
Intel Strategic Alliance | ORGANIZATION | 0.99+ |
last year | DATE | 0.99+ |
five years | QUANTITY | 0.99+ |
two segments | QUANTITY | 0.99+ |
two | QUANTITY | 0.99+ |
Cloud Platform Group | ORGANIZATION | 0.98+ |
last November | DATE | 0.98+ |
over 14,000 people | QUANTITY | 0.98+ |
first | QUANTITY | 0.98+ |
one | QUANTITY | 0.97+ |
about 5% | QUANTITY | 0.96+ |
both | QUANTITY | 0.96+ |
three years | QUANTITY | 0.96+ |
Tustin Dove | PERSON | 0.96+ |
Asana | TITLE | 0.94+ |
50s | DATE | 0.93+ |
Google Next 17 Conference | EVENT | 0.93+ |
Open Compute Project 2015 | EVENT | 0.92+ |
Top 100 | QUANTITY | 0.89+ |
first place | QUANTITY | 0.89+ |
Kubernetes Orchestration Platform | TITLE | 0.88+ |
Slack | TITLE | 0.87+ |
three horseman | QUANTITY | 0.87+ |
Google Cloud Next | TITLE | 0.86+ |
Google Cloud Platform | TITLE | 0.86+ |
earlier today | DATE | 0.85+ |
Moore | PERSON | 0.85+ |
10 years | QUANTITY | 0.83+ |
Salesforce | TITLE | 0.81+ |
Jevons Paradox | ORGANIZATION | 0.81+ |
theCUBE | ORGANIZATION | 0.8+ |
about half | QUANTITY | 0.79+ |
five | QUANTITY | 0.77+ |
San Francisco | LOCATION | 0.77+ |
Moore's Law | TITLE | 0.73+ |
Cloud Platform | TITLE | 0.73+ |
a decade | QUANTITY | 0.72+ |
terabytes | QUANTITY | 0.67+ |
few years back | DATE | 0.67+ |
Seven | TITLE | 0.65+ |
Hadoop | TITLE | 0.63+ |
couple years | QUANTITY | 0.56+ |
Lisa Spelman, Intel - Google Next 2017 - #GoogleNext17 - #theCUBE
(bright music) >> Narrator: Live from Silicon Valley. It's theCUBE, covering Google Cloud Next 17. >> Okay, welcome back, everyone. We're live in Palo Alto for theCUBE special two day coverage here in Palo Alto. We have reporters, we have analysts on the ground in San Francisco, analyzing what's going on with Google Next, we have all the great action. Of course, we also have reporters at Open Compute Summit, which is also happening in San Hose, and Intel's at both places, and we have Intel senior manager on the line here, on the phone, Lisa Spelman, vice president and general manager of the Xeon product line, product manager responsibility as well as marketing across the data center. Lisa, welcome to theCUBE, and thanks for calling in and dissecting Google Next, as well as teasing out maybe a little bit of OCP around the Xeon processor, thanks for calling. >> Lisa: Well, thank you for having me, and it's hard to be in many places at once, so it's a busy week and we're all over, so that's that. You know, we'll do this on the phone, and next time we'll do it in person. >> I'd love to. Well, more big news is obviously Intel has a big presence with the Google Next, and tomorrow there's going to be some activity with some of the big name executives at Google. Talking about your relationship with Google, aka Alphabet, what are some of the key things that you guys are doing with Google that people should know about, because this is a very turbulent time in the ecosystem of the tech business. You saw Mobile World Congress last week, we've seen the evolution of 5G, we have network transformation going on. Data centers are moving to a hybrid cloud, in some cases, cloud native's exploding. So all new kind of computing environment is taking shape. What is Intel doing here at Google Next that's a proof point to the trajectory of the business? >> Lisa: Yeah, you know, I'd like to think it's not too much of a surprise that we're there, arm in arm with Google, given all of the work that we've done together over the last several years in that tight engineering and technical partnership that we have. One of the big things that we've been working with Google on is, as they move from delivering cloud services for their own usage and for their own applications that they provide out to others, but now as they transition into being a cloud service provider for enterprises and other IT shops as well, so they've recently launched their Google Cloud platform, just in the last week or so. Did a nice announcement about the partnership that we have together, and how the Google Cloud platform is now available and running and open for business on our latest next generation Intel Xeon product, and that's codenamed Skylake, but that's something that we've been working on with them since the inception of the design of the product, so it's really nice to have it out there and in the market, and available for customers, and we very much value partnerships, like the one we have with Google, where we have that deep technical engagement to really get to the heart of the workload that they need to provide, and then can design product and solution around that. So you don't just look at it as a one off project or a one time investment, it's an ongoing continuation and evolution of new product, new features, new capabilities to continue to improve their total cost of ownership and their customer experience. >> Well, Lisa, this is your baby, the Xeon, codename Skylake, which I love that name. Intel always has great codenames, by the way, we love that, but it's real technology. Can you share some specific features of what's different around these new workloads because, you know, we've been teasing out over the past day and we're going to be talking tomorrow as well about these new use cases, because you're looking at a plethora of use cases, from IoT edge all the way down into cloud native applications. What specific things is Xeon doing that's next generation that you could highlight, that points to this new cloud operating system, the cloud service providers, whether it's managed services to full blown down and dirty cloud? >> Lisa: So it is my baby, I appreciate you saying that, and it's so exciting to see it out there and starting to get used and picked up and be unleashing it on the world. With this next generation of Xeon, it's always about the processor, but what we've done has gone so much beyond that, so we have a ton of what we call platform level innovation that is coming in, we really see this as one of our biggest kind of step function improvements in the last 10 years that we've offered. Some of the features that we've already talked about are things like AVX-512 instructions, which I know just sounds fun and rolls of the tongue, but really it's very specific workload acceleration for things like high performance computing workloads. And high performance computing is something that we see more and more getting used in access in cloud style infrastructure. So it's this perfect marrying of that workload specifically deriving benefit from the new platforms, and seeing really strong performance improvements. It also speaks to the way with Intel and Xeon families, 'cause remember, with Xeon, we have Xeon Phi, you've got standard Xeon, you've got Xeon D. You can use these instructions across the families and have workloads that can move to the most optimized hardware for whatever you're trying to drive. Some of the other things that we've talked about announced is we'll have our next generation of Intel Resource Director technology, which really helps you manage and provide quality of service within you application, which is very important to cloud service providers, giving them control over hardware and software assets so that they can deliver the best customer experience to their customers based on the service level agreement they've signed up for. And then the other one is Intel Omni-Path architecture, so again, fairly high performance computing focused product, Omni-Path is a fabric, and we're going to offer that in an integrated fashion with Skylake so that you can get even higher level of performance and capability. So we're looking forward to a lot more that we have to come, the whole of the product line will continue to roll out in the middle of this year, but we're excited to be able to offer an early version to the cloud service providers, get them started, get it out in the market and then do that full scale enterprise validation over the next several months. >> So I got to ask you the question, because this is something that's coming up, we're seeing a transition, also the digital transformation's been talked about for a while. Network transformation, IoTs all around the corner, we've got autonomous vehicles, smart cities, on and on. But I got to ask you though, the cloud service providers seems to be coming out of this show as a key storyline in Google Next as the multi cloud architectures become very clear. So it's become clear, not just this show but it's been building up to this, it's pretty clear that it's going to be a multi cloud world. As well as you're starting to see the providers talk about their SaaS offerings, Google talking about G Suite, Microsoft talks about Office 365, Oracle has their apps, IBM's got Watson, so you have this SaaSification. So this now creates a whole another category of what cloud is. If you include SaaS, you're really talking about Salesforce, Adobe, you know, on and on the list, everyone is potentially going to become a SaaS provider whether they're unique cloud or partnering with some other cloud. What does that mean for a cloud service provider, what do they need for applications support requirements to be successful? >> So when we look at the cloud service provider market inside of Intel, we are talking about infrastructure as a service, platform as a service and software as a service. So cutting across the three major categories, I give you like, up until now, infrastructure of the service has gotten a lot of the airtime or focus, but SaaS is actually the bigger business, and that's why you see, I think, people moving towards it, especially as enterprise IT becomes more comfortable with using SaaS application. You know, maybe first they started with offloading their expense report tool, but over time, they've moved into more sophisticated offerings that free up resources for them to do their most critical or business critical applications the they require to stay in more of a private cloud. I think that's evolution to a multi cloud, a hybrid cloud, has happened across the entire industry, whether you are an enterprise or whether you are a cloud service provider. And then the move to SaaS is logical, because people are demanding just more and more services. One of the things through all our years of partnering with the biggest to the smallest cloud service providers and working so closely on those technical requirements that we've continued to find is that total cost of ownership really is king, it's that performance per dollar, TCO, that they can provide and derive from their infrastructure, and we focused a lot of our engineering and our investment in our silicon design around providing that. We have multi generations that we've provided even just in the last five years to continue to drive those step function improvements and really optimize our hardware and the code that runs on top of it to make sure that it does continue to deliver on those demanding workloads. The other thing that we see the providers focusing on is what's their differentiation. So you'll see cloud service providers that will look through the various silicon features that we offer and choose, they'll pick and choose based on whatever their key workload is or whatever their key market is, and really kind of hone in and optimize for those silicon features so that they can have a differentiated offering into the market about what capabilities and services they'll provide. So it's an area where we continue to really focus our efforts, understand the workload, drive the TCO down, and then focus in on the design point of what's going to give that differentiation and acceleration. >> It's interesting, the definition's also where I would agree with you, the cloud service provider is a huge market when you even look at the SaaS. 'Cause whether you're talking about Uber or Netflix, for instance, examples people know about in real life, you can't ignore these new diverse use cases coming out. For instance, I was just talking with Stu Miniman, one of our analysts here, Wikibon, and Riot Games could be considered a cloud, right, I mean, 'cause it's a SaaS platform, it's gaming. You're starting to see these new apps coming out of the woodwork. There seems to be a requirement for being agile as a cloud provider. How do you enable that, what specifically can you share, if I'm a cloud service provider, to be ready to support anything that's coming down the pike? >> Lisa: You know, we do do a lot of workload and market analysis inside of Intel and the data center group, and then if you have even seen over the past five years, again, I'll just stick with the new term, how much we've expanded and broadened our product portfolio. So again, it will still be built upon that foundation of Xeon and what we have there, but we've gone to offer a lot of varieties. So again, I mentioned Xeon Phi. Xeon Phi at the 72 cores, bootable Xeon but specific workload acceleration targeted at high performance computing and other analytics workloads. And then you have things at the other end. You've got Xeon D, which is really focused at more frontend web services and storage and network workloads, or Atom, which is even lower power and more focused on cold and warm storage workloads, and again, that network function. So you could then say we're not just sticking with one product line and saying this is the answer for everything, we're saying here's the core of what we offer, and the features people need, and finding options, whether they range from low power to high power high performance, and kind of mixed across that whole kind of workload spectrum, and then we've broadened around the CPU into a lot of other silicon innovation. So I don't know if you guys have had a chance to talk about some of the work that we're doing with FPGAs, with our FPGA group and driving and delivering cloud and network acceleration through FPGAs. We've also introduced new products in the last year like Silicon Photonics, so dealing with network traffic crossing through-- >> Well, is FPGA, that's the Altera stuff, we did talk with them, they're doing the programmable chips. >> Lisa: Exactly, so it requires a level of sophistication and understanding what you need the workload to accelerate, but once you have it, it is a very impressive and powerful performance gain for you, so the cloud service providers are a perfect market for that, as are the cloud service providers because they have very sophisticated IT and very technically astute engineering teams that are able to really, again, go back to the workload, understand what they need and figure out the right software solution to pair with it. So that's been a big focus of our targeting. And then, like I said, we've added all these different things, different new products to the platform that start to, over time, just work better and better together, so when you have things like Intel SSD there together with Intel CPUs and Intel Ethernet and Intel FPGA and Intel Silicon Photonics, you can start to see how the whole package, when it's designed together under one house, can offer a tremendous amount of workload acceleration. >> I got to ask you a question, Lisa, 'cause this comes up, while you're talking, I'm just in my mind visualizing a new kind of virtual computer server, the cloud is one big server, so it's a design challenge. And what was teased out at Mobile World Congress that was very clear was this new end to end architecture, you know, re-imagined, but if you have these processors that have unique capabilities, that have use case specific capabilities, in a way, you guys are now providing a portfolio of solutions so that it almost can be customized for a variety of cloud service providers. Am I getting that right, is that how you guys see this happening where you guys can just say, "Hey, just mix and match what you want and you're good." >> Lisa: Well, and we try to provide a little bit more guidance than as you wish, I mean, of course, people have their options to choose, so like, with the cloud service providers, that's what we have, really tight engineering engagement, so that we can, you know, again, understand what they need, what their design point is, what they're honing in on. You might work with one cloud service provider that is very facilities limited, and you might work with another one that is, they're face limited, the other one's power limited, and another one has performance is king, so you can, we can cut some SKUs to help meet each of those needs. Another good example is in the artificial intelligence space where we did another acquisition last year, a company called Nervana that's working on optimized silicon for a neural network. And so now we have put together this AI portfolio, so instead of saying, "Oh, here's one answer "for artificial intelligence," it's, "Here's a multitude of answers where you've got Xeon," so if you have, I'm going to utilize capacity, and are starting down your artificial intelligence journey, just use your Xeon capacity with an optimized framework and you'll get great results and you can start your journey. If you are monetizing and running your business based on what AI can do for you and you are leading the pack out there, you've got the best data scientists and algorithm writers and peak running experts in the world, then you're going to want to use something like the silicon that we acquired from the Nervana team, and that codename is Lake Crest, speaking of some lakes there. And you'll want to use something like Xeon with Lake Crest to get that ultimate workload acceleration. So we have the whole portfolio that goes from Xeon to Xeon Phi to Xeon with FPGAs or Xeon with Lake Crest. Depending on what you're doing, and again, what your design point is, we have a solution for you. And of course, when we say solution, we don't just mean hardware, we mean the optimized software frameworks and the libraries and all of that, that actually give you something that can perform. >> On the competitive side, we've seen the processor landscape heat up on the server and the cloud space. Obviously, whether it's from a competitor or homegrown foundry, whatever fabs are out there, I mean, so Intel's always had a great partnership with cloud service providers. Vis-a-vis the competition and context to that, what are you guys doing specifically and how you'd approach the marketplace in light of competition? >> Lisa: So we do operate in a highly competitive market, and we always take all competitors seriously. So far we've seen the press heat up, which is different than seeing all of the deployments, so what we look for is to continue to offer the highest performance and lowest total cost of ownership for all our customers, and in this case, the cloud service providers, of course. And what do we do is we kind of stick with our game plan of putting the best silicon in the world into the market on a regular beat rate and cadence, and so there's always news, there's always an interesting story, but when you look at having had eight new products and new generations in market since the last major competitive x86 product, that's kind of what we do, just keep delivering so that our customers know that they can bet on us to always be there and not have these massive gaps. And then I also talked to you about portfolio expansion, we don't bet on just one horse, we give our customers the choice to optimize for their workloads, so you can go up to 72 cores with Xeon Phi if that's important, you can go as low as two cores with Atom, if that's what works for you. Just an example of how we try to kind of address all of our customer segments with the right product at the right time. >> And IoT certainly brings a challenge too, when you hear about network edge, that's a huge, huge growth area, I mean, you can't deny that that's going to be amazing, you look at the cars are data centers these days, right? >> Lisa: A data center on wheels. >> Data center on wheels. >> Lisa: That's one of the fun things about my role, even in the last year, is that growing partnership, even inside of Intel with our IoT team, and just really going through all of the products that we have in development, and how many of them can be reused and driven towards IoT solution. The other thing is, if you look into the data center space, I genuinely believe we have the world's best ecosystem, you can't find an ISV that we haven't worked with to optimize their solution to run best on Intel architecture and get that workload acceleration. And now we have the chance to put that same playbook into play in the IoT space, so it's a growing, somewhat nascent but growing market with a ton of opportunity and a ton of standards to still be built, and a lot of full solution kits to be put together. And that's kind of what Intel does, you know, we don't just throw something out to the market and say, "Good luck," we actually put the ecosystem together around it so that it performs. But I think that's kind of what you see with, I don't know if you guys saw our Intel GO announcement, but it's really like the software development kit and the whole product offering for what you need for truly delivering automated vehicles. >> Well, Lisa, I got to say, so you guys have a great formula, why fix what's not broken, stay with Moore's law, keep that cadence going, but what's interesting is you are listening and adapting to the architectural shifts, which is smart, so congratulations and I think, as the cloud service provider world changes, and certainly in the data center, it's going to be a turbulent time, but a lot of opportunity, and so good to have that reliability and, if you can make the software go faster then they can write more software faster, so-- >> Lisa: Yup, and that's what we've seen every time we deliver a step function improvement in performance, we see a step function improvement in demand, and so the world is still hungry for more and more compute, and we see this across all of our customer bases. And every time you make that compute more affordable, they come up with new, innovative, different ways to do things, to get things done and new services to offer, and that fundamentally is what drives us, is that desire to continue to be the backbone of that industry innovation. >> If you could sum up in a bumper sticker what that step function is, what is that new step function? >> Lisa: Oh, when we say step functions of improvements, I mean, we're always looking at targeting over 20% performance improvement per generation, and then on top of that, we've added a bunch of other capabilities beyond it. So it might show up as, say, a security feature as well, so you're getting the massive performance improvement gen to gen, and then you're also getting new capabilities like security features added on top. So you'll see more and more of those types of announcements from us as well where we kind of highlight the, not just the performance but that and what else comes with it, so that you can continue to address, you know, again, the growing needs that are out there, so all we're trying to say is, day a step ahead. >> All right, Lisa Spelman, VP of the GM, the Xeon product family as well as marketing and data center. Thank you for spending the time and sharing your insights on Google Next, and giving us a peak at the portfolio of the Xeon next generation, really appreciate it, and again, keep on bringing that power, Moore's law, more flexibility. Thank you so much for sharing. We're going to have more live coverage here in Palo Alto after this short break. (bright music)
SUMMARY :
Narrator: Live from Silicon Valley. maybe a little bit of OCP around the Xeon processor, and it's hard to be in many places at once, of the tech business. partnerships, like the one we have with Google, that you could highlight, that points to and it's so exciting to see it out there So I got to ask you the question, and really optimize our hardware and the code is a huge market when you even look at the SaaS. and the data center group, and then if you have even seen Well, is FPGA, that's the Altera stuff, the right software solution to pair with it. I got to ask you a question, Lisa, so that we can, you know, again, understand what they need, Vis-a-vis the competition and context to that, And then I also talked to you about portfolio expansion, and the whole product offering for what you need and so the world is still hungry for more and more compute, with it, so that you can continue to address, you know, at the portfolio of the Xeon next generation,
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Lisa Spelman | PERSON | 0.99+ |
ORGANIZATION | 0.99+ | |
Nervana | ORGANIZATION | 0.99+ |
Lisa | PERSON | 0.99+ |
Palo Alto | LOCATION | 0.99+ |
San Francisco | LOCATION | 0.99+ |
Alphabet | ORGANIZATION | 0.99+ |
two cores | QUANTITY | 0.99+ |
Oracle | ORGANIZATION | 0.99+ |
Adobe | ORGANIZATION | 0.99+ |
IBM | ORGANIZATION | 0.99+ |
Intel | ORGANIZATION | 0.99+ |
Uber | ORGANIZATION | 0.99+ |
last year | DATE | 0.99+ |
Silicon Photonics | ORGANIZATION | 0.99+ |
Netflix | ORGANIZATION | 0.99+ |
Microsoft | ORGANIZATION | 0.99+ |
72 cores | QUANTITY | 0.99+ |
two day | QUANTITY | 0.99+ |
last week | DATE | 0.99+ |
San Hose | LOCATION | 0.99+ |
one | QUANTITY | 0.99+ |
G Suite | TITLE | 0.99+ |
Office 365 | TITLE | 0.99+ |
Stu Miniman | PERSON | 0.99+ |
Open Compute Summit | EVENT | 0.98+ |
Mobile World Congress | EVENT | 0.98+ |
Xeon | ORGANIZATION | 0.98+ |
tomorrow | DATE | 0.98+ |
both places | QUANTITY | 0.98+ |
Altera | ORGANIZATION | 0.98+ |
Riot Games | ORGANIZATION | 0.97+ |
One | QUANTITY | 0.97+ |
Wikibon | ORGANIZATION | 0.97+ |
Watson | TITLE | 0.96+ |
over 20% | QUANTITY | 0.95+ |
SaaS | TITLE | 0.95+ |
first | QUANTITY | 0.95+ |
one horse | QUANTITY | 0.94+ |
Silicon Valley | LOCATION | 0.94+ |
one product | QUANTITY | 0.94+ |
each | QUANTITY | 0.94+ |
one answer | QUANTITY | 0.94+ |
eight new products | QUANTITY | 0.93+ |
one time | QUANTITY | 0.92+ |
Xeon | COMMERCIAL_ITEM | 0.92+ |
GM | ORGANIZATION | 0.91+ |
one house | QUANTITY | 0.91+ |
Google Cloud | TITLE | 0.91+ |
Dr. Amr Awadallah - Interview 2 - Hadoop World 2011 - theCUBE
Yeah, I'm Aala, They're the co-founder back to back. This is the cube silicon angle.com, Silicon angle dot TV's production of the cube, our flagship telecasts. We go out to the event. That was a great conversation. I was really just, just cool. I could have, we could have probably hit on a few more things, obviously well read. Awesome. Co-founder of Cloudera a. You were, you did a good job teaming up with that co-founder, huh? Not bad on the cube, huh? He's not bad on the cube, isn't he? He, >>He reads the internet. >>That's what I'm saying. >>Anything is going on. >>He's a cube star, you know, And >>Technology. Jeff knows it. Yeah. >>We, we tell you, I'm smarter just by being in Cloudera all those years. And I actually was following what he was saying, Sad and didn't dust my brain. So, Okay, so you're back. So we were talking earlier with Michaels and about the relational database thing. So I kind of pick that up where we left off with you around, you know, he was really excited. It's like, you know, hey, we saw that relational database movement happen. He was part of that. Yeah, yeah. That generation. And then, but things were happening or kind of happening the same way in a similar way, still early. So I was trying to really peg with him, how early are we, like, so, you know, as the curve, you know, this is 1400, it's not the Javit Center yet. Maybe the Duke world, you know, next year might be at the Javit Center, 35,000 just don't go to Vegas. So I'm trying to figure out where we are on that curve. Yeah. And we on the upwards slope, you know, down here, not even hitting that, >>I think, I think, I think we're moving up quicker than previous waves. And actually if you, if you look for example, Oracle, I think it took them 15, 20 years until they, they really became a mature company, VM VMware, which started about, what, 12, 13 years ago. It took them about maybe eight years to, to be a big company, met your company, and I'm hoping we're gonna do it in five. So a couple more years. >>Highly accelerated. >>Yes. But yeah, we see, I mean, I'm, I'm, I've been surprised by the growth. I have been, Right? I've been told, warned about enterprise software and, and that it takes long for production to take place. >>But the consumerization trend is really changing that. I mean, it seems to be that, yeah, the enterprises always last. Why the shorter >>Cycle? I think the shorter cycle is coming from having the, the, the, the right solution for the right problem at the right time. I think that's a big part of it. So luck definitely is a big part of this. Now, in terms of why this is changing compared to a couple of dec decades ago, why the adoption is changing compared to a couple of decades ago. I, I think that's coming just because of how quickly the technology itself, the underlying hardware is evolving. So right now, the fact that you can buy a single server and it has eight cores to 16 cores has 12 hards to terabytes. Each is, is something that's just pushing the, the, the, the limits what you can do with the existing systems and hence making it more likely for new systems to disrupt them. >>Yeah. We can talk about a lot. It's very easy for people to actually start a, a big data >>Project. >>Yes. For >>Example. Yes. And the hardest part is, okay, what, what do I really, what problem do I need to solve? How am I gonna, how am I gonna monetize it? Right? Those are the hard parts. It's not the, not the underlying >>Technology. Yes, Yes, that's true. That's true. I mean, >>You're saying, eh, you're saying >>Because, because I'm seeing both so much. I'm, I'm seeing both. I'm seeing both. And like, I'm seeing cases where you're right. There's some companies that was like, Oh, this Hadoop thing is so cool. What problem can I solve with it? And I see other companies, like, I have this huge problem and, and, and they don't know that HA exists. It's so, And once they know, they just jump on it right away. It's like, we know when you have a headache and you're searching for the medicine in Espin. Wow. It >>Works. I was talking to Jeff Hiba before he came on stage and, and I didn't even get to it cuz we were so on a nice riff there. Right. Bunch of like a musicians playing the guitar together. But like he, we talked about the it and and dynamics and he said something that I thoughts right. On money and SAP is talking the same thing and said they're going to the lines of business. Yes. Because it is the gatekeeper that's, it's like selling mini computers to a mainframe selling client servers from a mini computer team. Yeah. >>There's not, we're seeing, we're seeing both as well. So more likely the, the former one meaning, meaning that yes, line of business and departments, they adopt the technology and then it comes in and they see there's already these five different departments having it and they think, okay, now we need to formalize this across the organization. >>So what happens then? What are you seeing out there? Like when that happens, that mean people get their hands on, Hey, we got a problem to solve. Yeah. Is that what it comes down to? Well, Hadoop exist. Go get Hadoop. Oh yeah. They plop it in there and I what does it do? They, >>So they pop it into their, in their own installation or on the, on the cloud and they show that this actually is working and solving the problem for them. Yeah. And when that happens, it's a very, it's a very easy adoption from there on because they just go tell it, We need this right now because it's solving this problem and it's gonna make, make us much >>More money moving it right in. Yes. No problems. >>Is is that another reason why the cycle's compressed? I mean, you know, you think client server, there was a lot of resistance from it and now it's more much, Same thing with mobile. I mean mobile is flipped, right? I mean, so okay, bring it in. We gotta deal with it. Yep. I would think the same thing. We, we have a data problem. Let's turn it into an >>Opportunity. Yeah. In my, and it goes back to what I said earlier, the right solution for the right problem at the right time. Like when they, when you have larger amounts of unstructured data, there isn't anything else out there that can even touch what had, can >>Do. So Amar, I need to just change gears here a minute. The gaming stuff. So we have, we we're featured on justin.tv right now on the front page. Oh wow. But the numbers aren't coming in because there's a competing stream of a recently released Modern Warfare three feature. Yes. Yes. So >>I was looking for, we >>Have to compete with Modern Warfare three. So can you, can we talk about Modern Warfare three for a minute and share the folks what you think of the current version, if any, if you played it. Yeah. So >>Unfortunately I'm waiting to get back home. I don't have my Xbox with me here. >>A little like a, I'm talking about >>My lines and business. >>Boom. Water warfares like a Christmas >>Tree here. Sorry. You know, I love, I'm a big gamer. I'm a big video gamer at Cloudera. We have every Thursday at five 30 end office, we, we play Call of of Beauty version four, which is modern world form one actually. And I challenge, I challenge people out there to come challenge our team. Just ping me on Twitter and we'll, we'll do a Cloudera versus >>Let's, let's, let's reframe that. Let team out. There am Abalas company. This is the geeks that invent the future. Jeff Haer Baer at Facebook now at Cloudera. Hammerer leading the charge. These guys are at gamers. So all the young gamers out there am are saying they're gonna challenge you. At which version? >>Modern Warfare one. >>Modern Warfare one. Yes. How do they fire in? Can you set up an >>External We'll >>We'll figure it out. We'll figure it out. Okay. >>Yeah. Just p me on Twitter and We'll, >>We can carry it live actually we can stream that. Yeah, >>That'd be great. >>Great. >>Yeah. So I'll tell you some of our best Hadooop committers and Hadoop developers pitch >>A picture. Modern Warfare >>Three going now Model Warfare three. Very excited about the game. I saw the, the trailers for it looks, graphics look just amazing. Graphics are amazing. I love the Sirius since the first one that came out. And I'm looking forward to getting back home to playing the game. >>I can't play, my son won't let me play. I'm such a fumbler with the Hub. I'm a keyboard controller. I can't work the Xbox controller. Oh, I have a coordination problem my age and I'm just a gluts and like, like Dad, sorry, Charity's over. I can I play with my friends? You the box. But I'm around big gamer. >>But, but in terms of, I mean, something I wanted to bring up is how to link up gaming with big data and analysis and so on. So like, I, I'm a big gamer. I love playing games, but at the same time, whenever I play games, I feel a little bit guilty because it's kind of like wasted time. So it's like, I mean, yeah, it's fun and I'm getting lots of enjoyment on it makes my life much more cheerful. But still, how can we harness all of this, all of these hours that gamers spend playing a game like Modern Warfare three, How can we, how can we collect instrument, all of the data that's coming from that and coming up, for example, with something useful with predicted. >>This is exactly, this is exactly the kind of application that's mainstream is gaming. Yeah. Yeah. Danny at Riot G is telling me, we saw him at Oracle Open World. He's up there for the Java one. He said that they, they don't really have a big data platform and their business is about understanding user behavior rep tons of data about user playing time, who they're playing with. Yeah, Yeah. How they want us to get into currency trading, You know, >>Buy, I can't, I can't mention the names, but some of the biggest giving companies out there are using Hadoop right now. And, and depending on CDH for doing exactly that kind of thing, creating >>A good user experience >>Today, they're doing it for the purpose of enhancing the user experience and improving retention. So they do track everything. Like every single bullet, you fire everything in best Ball Head, you get everything home run, you do. And, and, and in, in a three >>Type of game consecutive headshot, you get >>Everything, everything is being Yeah. Headshot you get and so on. But, but as you said, they are using that information today to sell more products and, and, and retain their users. Now what I'm suggesting is that how can you harness that energy for the good as well? I mean for making money, money is good and everything, but how can you harness that for doing something useful so that all of this entertainment time is also actually productive time as well. I think that'd be a holy grail in this, in this environment if we >>Can achieve that. Yeah. It used to be that corn used to be the telegraph of the future of about, of applications, but gaming really is, if you look at gaming, you know, you get the headset on. It's a collaborative environment. Oh yeah. You got unified communications. >>Yeah. And you see our teenager kids, how, how many hours they spend on these things. >>You got play as a play environments, very social collaborative. Yeah. You know, some say, you know, we we're saying, what I'm saying is that that's the, that's the future work environment with Skype evolving. We're our multiplayer game's called our job. Right? Yeah. You know, so I'm big on gaming. So all the gamers out there, a has challenged you. Yeah. Got a big data example. What else are we seeing? So let's talk about the, the software. So we, one of the things you were talking about that I really liked, you were going down the list. So on Mike's slide he had all the new features. So around the core, can you just go down the core and rattle off your version of what, what it means and what it is. So you start off with say H Base, we talked about that already. What are the other ones that are out there? >>So the projects that we have right there, >>The projects that are around those tools that are being built. Cause >>Yeah, so the foundational, the foundational one as we mentioned before, is sdfs for storage map use for processing. Yeah. And then the, the immediate layer above that is how to make MAP reduce easier for the masses. So how can, not everybody knows how to learn map, use Java, everybody knows sql, right? So, so one of the most successful projects right now that has the highest attach rate, meaning people usually when they install had do installed as well is Hive. So Hive takes sequel and so Jeff Harm Becker, my co-founder, when he was at Facebook, his team built the Hive system. Essentially Hive takes sql so you don't have to learn a new language, you already know sql. And then converts that into MAP use for you. That not only expands the developer base for how many people can use adu, but also makes it easier to integrate Hadoop through all DBC and JDBC integrated with BI tools like MicroStrategy and Tableau and Informatica, et cetera, et cetera. >>You mentioned R too. You mentioned R Program R >>As well. Yeah, R is one of our best partnerships. We're very, very happy with them. So that's, that's one of the very key projects is Hive assisted project to Hive ISS called Pig. A pig Latin is a language that ya invented that you have to learn the language. It's very easy, it's very easy to learn compared to map produce. But once you learn it, you can, you can specify very deep data pipelines, right? SQL is good for queries. It's not good for data pipelines because it becomes very convoluted. It becomes very hard for the, the human brain to understand it. So Pig is much more natural to the human. It's more like Pearl very similar to scripting kind of languages. So with Peggy can write very, very long data pipelines, again, very successful projects doing very, very well. Another key project is Edge Base, like you said. So Edge Base allows you to do low latencies. So you can do very, very quick lookups and also allows you to do transactions. So you can do updates in inserts and deletes. So one of the talks here that had World we try to recommend people watch when the videos come out is the Talk by Jonathan Gray from Facebook. And he talked about how they use Edge Base, >>Jonathan, something on here in the Cube later. Yeah. So >>Drill him on that. So they use Edge Base now for many, many things within Facebook. They have a big team now committed to building an improving edge base with us and with the community at large. And they're using it for doing their online messaging system. The live mail system in Facebook is powered by Edge Base right now. Again, Pro and eBay, The Casini project, they gave a keynote earlier today at the conference as well is using Edge Base as well. So Edge Base is definitely one of the projects that's growing very, very quickly right now within the Hudu system. Another key project that Jeff alluded to earlier when he was on here is Flum. So Flume is very instrumental because you have this nice system had, but Hadoop is useless unless you have data inside it. So how do you get the data inside do? >>So Flum essentially is this very nice framework for having these agents all over your infrastructure, inside your web servers, inside your application servers, inside your mobile devices, your network equipment that collects all of that data and then reliably and, and materializes it inside Hado. So Flum does that. Another good project is Uzi, so many of them, I dunno how, how long you want me to keep going here, But, but Uzi is great. Uzi is a workflow processing system. So Uzi allows you to define a series of jobs. Some of them in Pig, some of them in Hive, some of them in map use. You can define a series of them and then link them to each other and say, only start this job when these other jobs, two jobs finish because I'm waiting for the input from them before I can kick off and so on. >>So Uzi is a very nice framework that will will do that. We'll manage the whole graph of jobs for you and retry things when they fail, et cetera, et cetera. Another good project is where W H I R R and where allows you to very easily start ADU cluster on top of Amazon. Easy two on top of Rackspace, virtualized environ. It's more for kicking off, it's for kicking off Hadoop instances or edge based instances on any virtual infrastructure. Okay. VMware, vCloud. So that it supports all of the major vCloud, sorry, all of the me, all of the major virtualized infrastructure systems out there, Eucalyptus as well, and so on. So that's where W H I R R ARU is another key project. It's one, it's duck cutting's main kind of project right now. Don of that gut cutting came on stage with you guys has, So Aru ARO is a project about how do we encode with our files, the schema of these files, right? >>Because when you open up a text file and you don't know how to what the columns mean and how to pars it, it becomes very hard to work for it. So ARU allows you to do that much more easily. It's also useful for doing rrp. We call rtc remove procedure calls for having different services talk to each other. ARO is very useful for that as well. And the list keeps going on and on Maha. Yeah. Which we just, thanks for me for reminding me of my house. We just added Maha very recently actually. What is that >>Adam? I'm not >>Familiar with it. So Maha is a data mining library. So MAHA takes some of the most popular data mining algorithms for doing clustering and regression and statistical modeling and implements them using the map map with use model. >>They have, they have machine learning in it too or Yes, yes. So that's the machine learning. >>So, So yes. Stay vector to machines and so on. >>What Scoop? >>So Scoop, you know, all of them. Thanks for feeding me all the names. >>The ones I don't understand, >>But there's so many of them, right? I can't even remember all of them. So Scoop actually is a very interesting project, is short for SQL to Hadoop, hence the name Scoop, right? So SQ from SQL and Oops from Hadoop and also means Scoop as in scooping up stuff when you scoop up ice cream. Yeah. And the idea for Scoop is to make it easy to move data between relational systems like Oracle metadata and it is a vertical and so on and Hadoop. So you can very simply say, Scoop the name of the table inside the relation system, the name of the file inside Hadoop. And the, the table will be copied over to the file and Vice and Versa can say Scoop the name of the file in Hadoop, the name of the table over there, it'll move the table over there. So it's a connectivity tool between the relational world and the Hadoop world. >>Great, great tutorial. >>And all of these are Apache projects. They're all projects built. >>It's not part of your, your unique proprietary. >>Yes. But >>These are things that you've been contributing >>To, We're contributing to the whole ecosystem. Yes. >>And you understand very well. Yes. And >>And contribute to your knowledge of the marketplace >>And Absolutely. We collaborate with the, with the community on creating these projects. We employ committers and founders for many of these projects. Like Duck Cutting, the founder of He works in Cloudera, the founder for that UIE project. He works at Calera for zookeeper works at Calera. So we have a number of them on stuff >>Work. So we had Aroon from Horton Works. Yes. And and it was really good because I tell you, I walk away from that conversation and I gotta say for the folks out there, there really isn't a war going on in Apache. There isn't. And >>Apache, there isn't. I mean isn't but would be honest. Like, and in the developer community, we are friends, we're working together. We want to achieve the, there's >>No war. It's all Kumbaya. Everyone understands the rising tide floats, all boats are all playing nice in the same box. Yes. It's just a competitive landscape in Horton. Works >>In the business, >>Business business, competitive business, PR and >>Pr. We're trying to be friendly, as friendly as we can. >>Yeah, no, I mean they're, they're, they're hying it up. But he was like, he was cool. Like, Hey, you know, we know each other. Yes. We all know each other and we're just gonna offer free Yes. And charge with support. And so are they. And that's okay. And they got other things going on. Yes. But he brought up the question. He said they're, they're launching a management console. So I said, Tyler's got a significant lead. He kind of didn't really answer the question. So the question is, that's your core bread and butter, That's your yes >>And no. Yes and no. I mean if you look at, if you look at Cloudera Enterprise, and I mentioned this earlier and when we talked in the morning, it has two main things in it. Cloudera Enterprise has the management suite, but it also has the, the the the support and maintenance that we provide to our customers and all the experience that we have in our team part That subscription. Yes. For a description. And I, I wanna stress the point that the fact that I built a sports car doesn't mean that I'm good at running that sports car. The driver of the car usually is much better at driving the car than the guy who built the car, right? So yes, we have many people on staff that are helping build had, but we have many more people on stuff that helped run Hado at large scale, at at financial indu, financial industry, retail industry, telecom industry, media industry, health industry, et cetera, et cetera. So that's very, very important for our customer. All that experience that we bring in on how to run the system technically Yeah. Within these verticals. >>But their strategies clear. We're gonna create an open source project within Apache for a management consult. Yes. And we sell support too. Yes. So there'll be a free alternative to management. >>So we have to see, But I mean we look at the product, I mean our products, >>It's gotta come down to product differentiation. >>Our product has been in the market for two years, so they just started building their products. It's >>Alpha, It's just Alpha. The >>Product is Alpha in Alpha right now. Yeah. Okay. >>Well the Apache products, it is >>Apache, right? Yeah. The Apache project is out. So we'll see how it does it compare to ours. But I think ours is way, way ahead of anything else out there. Yeah. Essentially people to try that for themselves and >>See essentially, John, when I asked Arro why does the world need Hortonwork? You know, eventually the answer we got was, well it's free. It needs to be more open. Had needs to be more open. >>No, there's, >>It's going to be, That's not really the reason why Warton >>Works. >>No, they want, they want to go make money. >>Exactly. We wasn't >>Gonna say them you >>When I kept pushing and pushing and that's ultimately the closest we can get cuz you >>Just listens. Not gonna >>12 open source projects. Yes. >>I >>Mean, yeah, yeah. You can't get much more open. Yeah. Look >>At management >>Consult, but Airs not shooting on all those. I mean, I mean not only we are No, no, not >>No, no, we absolutely >>Are. No, you are contributing. You're not. But that's not all your projects. There's other people >>Involved. Yeah, we didn't start, we didn't start all of these projects. Yeah, that's >>True. You contributing heavily to all of them. >>Yes, we >>Are. And that's clear. Todd Lipkin said that, you know, he contributed his first patch to HPAC in 2008. Yes. So I mean, you go back through the ranks >>Of your people and Todd now is a committer on Edge base is a committer on had itself. So on a number >>Of you clearly the lead and, and you know, and, but >>There is a concern. But we, we've heard it and I wanna just ask you No, no. So there's a concern that if I build processes around a proprietary management console, Yes. I'm gonna end up being locked into that proprietary management CNA all over again. Now this is so far from ca Yes. >>Right. >>But that's a concern that some people have expressed. And, and, and I think one of the reasons why Port Works is getting so much attention. So Yes. >>Talk about that. It's, it's a very good, it's a very good observation to make. Actually, >>There there is two separate things here. There's the platform where all the data sets and then there's this management parcel beside the platform. Now why did we make the management console why the cloud didn't make the management console? Because it makes our job for supporting the customers much more achievable. When a customer calls in and says, We have a problem, help us fix this problem. When they go to our management console, there is a button they click that gives us a dump of the state, of the cluster. And that's what allows us to very quickly debug what's going on. And within minutes tell them you need to do this and you to do that. Yeah. Without that we just can't offer the support services. There's >>Real value there. >>Yes. So, so now a year from, But, but, but you have to keep in mind that the, the underlying platform is completely open source and free CBH is completely a hundred percent open source, a hundred percent free, a hundred percent Apache. So a year from now, when it comes time to renew with us, if the customer is not happy with our management suite is not happy with our support data, they can, they can go to work >>And works. People are afraid >>Of all they can go to ibm. >>The data, you can take the data that >>You don't even need to take the data. You're not gonna move the data. It's the same system, the same software. Every, everything in CDH is Apache. Right? We're not putting anything in cdh, which is not Apache. So a year from now, if you're not happy with our service to you and the value that we're providing, you can switch. There is no lock in. There is no lock. And >>Your, your argument would be the switching costs to >>The only lock in is happiness. The only lock in is which >>Happiness inspection customer delay. Which by, by the way, we just wrote a piece about those wars and we said the risk of lockin is low. We made that statement. We've got some heat for it. Yes. And >>This is sort of at scale though. What the, what the people are saying, they're throwing the tomatoes is saying if this is, again, in theory at scale, the customers are so comfortable with that, the console that they don't switch. Now my argument was >>Yes, but that means they're happy with it. That means they're satisfied and happy >>With it. >>And it's more economical for them than going and hiding people full-time on stuff. Yeah. >>So you're, you're always on check as, as long as the customer doesn't feel like Oracle. >>Yeah. See that's different. Oracle is very, Oracle >>Is like different, right? Yeah. Here it's like Cisco routers, they get nested into the environment, provide value. That's just good competitive product strategy. Yes. If it they're happy. Yeah. It's >>Called open washing with >>Oracle, >>I mean our number one core attribute on the company, the number one value for us is customer satisfaction. Keeping our people Yeah. Our customers happy with the service that we provide. >>So differentiate in the product. Yes. Keep the commanding lead. That's the strategist. That's the, that's what's happening. That's your goal. Yes. >>That's what's happening. >>Absolutely. Okay. Co-founder of Cloudera, Always a pleasure to have you on the cube. We really appreciate all the hospitality over the beer and a half. And wanna personally thank you for letting us sit in your office and we'll miss you >>And we'll miss you too. We'll >>See you at the, the Cube events off Swing by, thanks for coming on the cube and great to see you and congratulations on all your success. >>Thank >>You. And thanks for the review on Modern Warfare three. Yeah, yeah. >>Love me again. If there any gaming stuff, you know, I.
SUMMARY :
Yeah, I'm Aala, They're the co-founder back to back. Yeah. So I kind of pick that up where we left off with you around, you know, he was really excited. So a couple more years. takes long for production to take place. But the consumerization trend is really changing that. So right now, the fact that you can buy a single server and it It's very easy for people to actually start a, a big data Those are the hard parts. I mean, It's like, we know when you have a headache and you're On money and SAP is talking the same thing and said they're going to the lines of business. the former one meaning, meaning that yes, line of business and departments, they adopt the technology and What are you seeing out there? So they pop it into their, in their own installation or on the, on the cloud and they show that this actually is working and Yes. I mean, you know, you think client server, there was a lot of resistance from for the right problem at the right time. Do. So Amar, I need to just change gears here a minute. of the current version, if any, if you played it. I don't have my Xbox with me here. And I challenge, I challenge people out there to come challenge our team. So all the young gamers out there am are saying they're gonna challenge you. Can you set up an We'll figure it out. We can carry it live actually we can stream that. Modern Warfare I love the Sirius since the first one that came out. You the box. but at the same time, whenever I play games, I feel a little bit guilty because it's kind of like wasted time. Danny at Riot G is telling me, we saw him at Oracle Open World. Buy, I can't, I can't mention the names, but some of the biggest giving companies out there are using Hadoop So they do Now what I'm suggesting is that how can you harness that energy for the good as well? but gaming really is, if you look at gaming, you know, you get the headset on. So around the core, can you just go down the core and rattle off your version of what, The projects that are around those tools that are being built. Yeah, so the foundational, the foundational one as we mentioned before, is sdfs for storage map use You mentioned R too. So one of the talks here that had World we Jonathan, something on here in the Cube later. So Edge Base is definitely one of the projects that's growing very, very quickly right now So Uzi allows you to define a series of So that it supports all of the major vCloud, So ARU allows you to do that much more easily. So MAHA takes some of the most popular data mining So that's the machine learning. So, So yes. So Scoop, you know, all of them. And the idea for Scoop is to make it easy to move data between relational systems like Oracle metadata And all of these are Apache projects. To, We're contributing to the whole ecosystem. And you understand very well. So we have a number of them on And and it was really good because I tell you, Like, and in the developer community, It's all Kumbaya. So the question is, the experience that we have in our team part That subscription. So there'll be a free alternative to management. Our product has been in the market for two years, so they just started building their products. Alpha, It's just Alpha. Product is Alpha in Alpha right now. So we'll see how it does it compare to ours. You know, eventually the answer We wasn't Not gonna Yes. Yeah. I mean, I mean not only we are No, But that's not all your projects. Yeah, we didn't start, we didn't start all of these projects. So I mean, you go back through the ranks So on a number But we, we've heard it and I wanna just ask you No, no. So there's a concern that So Yes. It's, it's a very good, it's a very good observation to make. And within minutes tell them you need to do this and you to do that. So a year from now, when it comes time to renew with us, if the customer is And works. It's the same system, the same software. The only lock in is which Which by, by the way, we just wrote a piece about those wars and we said the risk of lockin is low. the console that they don't switch. Yes, but that means they're happy with it. And it's more economical for them than going and hiding people full-time on stuff. Oracle is very, Oracle Yeah. I mean our number one core attribute on the company, the number one value for us is customer satisfaction. So differentiate in the product. And wanna personally thank you for letting us sit in your office and we'll miss you And we'll miss you too. you and congratulations on all your success. Yeah, yeah. If there any gaming stuff, you know, I.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Jeff | PERSON | 0.99+ |
Jeff Hiba | PERSON | 0.99+ |
Todd Lipkin | PERSON | 0.99+ |
2008 | DATE | 0.99+ |
Cisco | ORGANIZATION | 0.99+ |
Oracle | ORGANIZATION | 0.99+ |
John | PERSON | 0.99+ |
Mike | PERSON | 0.99+ |
Modern Warfare three | TITLE | 0.99+ |
Apache | ORGANIZATION | 0.99+ |
Danny | PERSON | 0.99+ |
Jonathan Gray | PERSON | 0.99+ |
Jeff Haer Baer | PERSON | 0.99+ |
15 | QUANTITY | 0.99+ |
two years | QUANTITY | 0.99+ |
Calera | ORGANIZATION | 0.99+ |
Modern Warfare | TITLE | 0.99+ |
16 cores | QUANTITY | 0.99+ |
Jeff Harm Becker | PERSON | 0.99+ |
Todd | PERSON | 0.99+ |
eight cores | QUANTITY | 0.99+ |
Jonathan | PERSON | 0.99+ |
both | QUANTITY | 0.99+ |
ORGANIZATION | 0.99+ | |
Amazon | ORGANIZATION | 0.99+ |
Java | TITLE | 0.99+ |
next year | DATE | 0.99+ |
Skype | ORGANIZATION | 0.99+ |
two jobs | QUANTITY | 0.99+ |
Vegas | LOCATION | 0.99+ |
Michaels | PERSON | 0.99+ |
Cloudera | ORGANIZATION | 0.99+ |
one | QUANTITY | 0.99+ |
Hadoop | TITLE | 0.99+ |
hundred percent | QUANTITY | 0.99+ |
35,000 | QUANTITY | 0.99+ |
Horton Works | ORGANIZATION | 0.99+ |
Today | DATE | 0.99+ |
Peggy | PERSON | 0.99+ |
eBay | ORGANIZATION | 0.99+ |
Horton | LOCATION | 0.99+ |
12 hards | QUANTITY | 0.99+ |
Each | QUANTITY | 0.99+ |
vCloud | TITLE | 0.99+ |
HPAC | ORGANIZATION | 0.99+ |
Aala | PERSON | 0.99+ |
Adam | PERSON | 0.99+ |
Tyler | PERSON | 0.98+ |
UIE | ORGANIZATION | 0.98+ |
Hadoop World | TITLE | 0.98+ |
first one | QUANTITY | 0.98+ |
12 open source projects | QUANTITY | 0.98+ |
Edge Base | TITLE | 0.98+ |
W H I R R | TITLE | 0.98+ |
five | QUANTITY | 0.98+ |
Hammerer | PERSON | 0.98+ |
Xbox | COMMERCIAL_ITEM | 0.98+ |
Port Works | ORGANIZATION | 0.98+ |
Hive | TITLE | 0.98+ |
Amar | PERSON | 0.98+ |
five different departments | QUANTITY | 0.98+ |
today | DATE | 0.98+ |
Christmas | EVENT | 0.98+ |
SQL | TITLE | 0.97+ |
Silicon angle dot TV | ORGANIZATION | 0.97+ |
Tableau | TITLE | 0.97+ |
two | QUANTITY | 0.97+ |
W H I R R | TITLE | 0.97+ |