Image Title

Search Results for Liz:

Liz Rice, Isovalent | CloudNativeSecurityCon 23


 

(upbeat music) >> Hello, everyone, from Palo Alto, Lisa Martin here. This is The Cube's coverage of CloudNativeSecurityCon, the inaugural event. I'm here with John Furrier in studio. In Boston, Dave Vellante joins us, and our guest, Liz Rice, one of our alumni, is joining us from Seattle. Great to have everyone here. Liz is the Chief Open Source officer at Isovalent. She's also the Emeritus Chair Technical Oversight Committee at CNCF, and a co-chair of this new event. Everyone, welcome Liz. Great to have you back on theCUBE. Thanks so much for joining us today. >> Thanks so much for having me, pleasure. >> So CloudNativeSecurityCon. This is the inaugural event, Liz, this used to be part of KubeCon, it's now its own event in its first year. Talk to us about the importance of having it as its own event from a security perspective, what's going on? Give us your opinions there. >> Yeah, I think security was becoming so- at such an important part of the conversation at KubeCon, CloudNativeCon, and the TAG security, who were organizing the co-located Cloud Native Security Day which then turned into a two day event. They were doing this amazing job, and there was so much content and so much activity and so much interest that it made sense to say "Actually this could stand alone as a dedicated event and really dedicate, you know, all the time and resources of running a full conference, just thinking about cloud native security." And I think that's proven to be true. There's plenty of really interesting talks that we're going to see. Things like a capture the flag. There's all sorts of really good things going on this week. >> Liz, great to see you, and Dave, great to see you in Boston Lisa, great intro. Liz, you've been a CUBE alumni. You've been a great contributor to our program, and being part of our team, kind of extracting that signal from the CNCF cloud native world KubeCon. This event really kind of to me is a watershed moment, because it highlights not only security as a standalone discussion event, but it's also synergistic with KubeCon. And, as co-chair, take us through the thought process on the sessions, the experts, it's got a practitioner vibe there. So we heard from Priyanka early on, bottoms up, developer first. You know KubeCon's shift left was big momentum. This seems to be a breakout of very focused security. Can you share the rationale and the thoughts behind how this is emerging, and how you see this developing? I know it's kind of a small event, kind of testing the waters it seems, but this is really a directional shift. Can you share your thoughts? >> Yeah I'm just, there's just so many different angles that you can consider security. You know, we are seeing a lot of conversations about supply chain security, but there's also runtime security. I'm really excited about eBPF tooling. There's also this opportunity to talk about how do we educate people about security, and how do security practitioners get involved in cloud native, and how do cloud native folks learn about the security concepts that they need to keep their deployments secure. So there's lots of different groups of people who I think maybe at a KubeCon, KubeCon is so wide, it's such a diverse range of topics. If you really just want to focus in, drill down on what do I need to do to run Kubernetes and cloud native applications securely, let's have a really focused event, and just drill down into all the different aspects of that. And I think that's great. It brings the right people together, the practitioners, the experts, the vendors to, you know, everyone can be here, and we can find each other at a smaller event. We are not spread out amongst the thousands of people that would attend a KubeCon. >> It's interesting, Dave, you know, when we were talking, you know, we're going to bring you in real quick, because AWS, which I think is the bellweather for, you know, cloud computing, has now two main shows, AWS re:Invent and re:Inforce. Security, again, broken out there. you see the classic security events, RSA, Black Hat, you know, those are the, kind of, the industry kind of mainstream security, very wide. But you're starting to see the cloud native developer first with both security and cloud native, kind of, really growing so fast. This is a major trend for a lot of the ecosystem >> You know, and you hear, when you mention those other conferences, John you hear a lot about, you know, shift left. There's a little bit of lip service there, and you, we heard today way more than lip service. I mean deep practitioner level conversations, and of course the runtime as well. Liz, you spent a lot of time obviously in your keynote on eBPF, and I wonder if you could share with the audience, you know, why you're so excited about that. What makes it a more effective tool compared to other traditional methods? I mean, it sounds like it simplifies things. You talked about instrumenting nodes versus workloads. Can you explain that a little bit more detail? >> Yeah, so with eBPF programs, we can load programs dynamically into the kernel, and we can attach them to all kinds of different events that could be happening anywhere on that virtual machine. And if you have the right knowledge about where to hook into, you can observe network events, you can observe file access events, you can observe pretty much anything that's interesting from a security perspective. And because eBPF programs are living in the kernel, there's only one kernel shared amongst all of the applications that are running on that particular machine. So you don't- you no longer have to instrument each individual application, or each individual pod. There's no more need to inject sidecars. We can apply eBPF based tooling on a per node basis, which just makes things operationally more straightforward, but it's also extremely performant. We can hook these programs into events that typically very lightweight, small programs, kind of, emitting an event, making a decision about whether to drop a packet, making a decision about whether to allow file access, things of that nature. There's super fast, there's no need to transition between kernel space and user space, which is usually quite a costly operation from performance perspective. So eBPF makes it really, you know, it's taking the security tooling, and other forms of tooling, networking and observability. We can take these tools into the kernel, and it's really efficient there. >> So Liz- >> So, if I may, one, just one quick follow up. You gave kind of a space age example (laughs) in your keynote. When, do you think a year from now we'll be able to see, sort of, real world examples in in action? How far away are we? >> Well, some of that is already pretty widely deployed. I mean, in my keynote I was talking about Cilium. Cilium is adopted by hundreds of really big scale deployments. You know, the users file is full of household names who've been using cilium. And as part of that they will be using network policies. And I showed some visualizations this morning of network policy, but again, network policy has been around, pretty much since the early days of Kubernetes. It can be quite fiddly to get it right, but there are plenty of people who are using it at scale today. And then we were also looking at some runtime security detections, seeing things like, in my example, exfiltrating the plans to the Death Star, you know, looking for suspicious executables. And again, that's a little bit, it's a bit newer, but we do have people running that in production today, proving that it really does work, and that eBPF is a scalable technology. It's, I've been fascinated by eBPF for years, and it's really amazing to see it being used in the real world now. >> So Liz, you're a maintainer on the Cilium project. Talk about the use of eBPF in the Cilium project. How is it contributing to cloud native security, and really helping to change the dials on that from an efficiency, from a performance perspective, as well as a, what's in it for me as a business perspective? >> So Cilium is probably best known as a networking plugin for Kubernetes. It, when you are running Kubernetes, you have to make a decision about some networking plugin that you're going to use. And Cilium is, it's an incubating project in the CNCF. It's the most mature of the different CNIs that's in the CNCF at the moment. As I say, very widely deployed. And right from day one, it was based on eBPF. And in fact some of the people who contribute to the eBPF platform within the kernel, are also working on the Cilium project. They've been kind of developed hand in hand for the last six, seven years. So really being able to bring some of that networking capability, it required changes in the kernel that have been put in place several years ago, so that now we can build these amazing tools for Kubernetes operators. So we are using eBPF to make the networking stack for Kubernetes and cloud native really efficient. We can bypass some of the parts of the network stack that aren't necessarily required in a cloud native deployment. We can use it to make these incredibly fast decisions about network policy. And we also have a sub-project called Tetragon, which is a newer part of the Cilium family which uses eBPF to observe these runtime events. The things like people opening a file, or changing the permissions on a file, or making a socket connection. All of these things that as a security engineer you are interested in. Who is running executables who is making network connections, who's accessing files, all of these operations are things that we can observe with Cilium Tetragon. >> I mean it's exciting. We've chatted in the past about that eBPF extended Berkeley Packet Filter, which is about the Linux kernel. And I bring that up Liz, because I think this is the trend I'm trying to understand with this event. It's, I hear bottoms up developer, developer first. It feels like it's an under the hood, infrastructure, security geek fest for practitioners, because Brian, in his keynote, mentioned BIND in reference the late Dan Kaminsky, who was, obviously found that error in BIND at the, in DNS. He mentioned DNS. There's a lot of things that's evolving at the silicone, kernel, kind of root levels of our infrastructure. This seems to be a major shift in focus and rightfully so. Is that something that you guys talk about, or is that coincidence, or am I just overthinking this point in terms of how nerdy it's getting in terms of the importance of, you know, getting down to the low level aspects of protecting everything. And as we heard also the quote was no software secure. (Liz chuckles) So that's up and down the stack of the, kind of the old model. What's your thoughts and reaction to that? >> Yeah, I mean I think a lot of folks who get into security really are interested in these kind of details. You know, you see write-ups of exploits and they, you know, they're quite often really involved, and really require understanding these very deep detailed technical levels. So a lot of us can really geek out about the details of that. The flip side of that is that as an application developer, you know, as- if you are working for a bank, working for a media company, you're writing applications, you shouldn't have to be worried about what's happening at the kernel level. This might be kind of geeky interesting stuff, but really, operationally, it should be taken care of for you. You've got your work cut out building business value in applications. So I think there's this interesting, kind of dual track going on almost, if you like, of the people who really want to get involved in those nitty gritty details, and understand how the underlying, you know, kernel level exploits maybe working. But then how do we make that really easy for people who are running clusters to, I mean like you said, nothing is ever secure, but trying to make things as secure as they can be easily, and make things visual, make things accessible, make things, make it easy to check whether or not you are compliant with whatever regulations you need to be compliant with. That kind of focus on making things usable for the platform team, for the application developers who deliver apps on the platform, that's the important (indistinct)- >> I noticed that the word expert was mentioned, I mentioned earlier with Priyanka. Was there a rationale on the 72 sessions, was there thinking around it or was it kind of like, these are urgent areas, they're obvious low hanging fruit. Was there, take us through the selection process of, or was it just, let's get 72 sessions going to get this (Liz laughs) thing moving? >> No, we did think quite carefully about how we wanted to, what the different focus areas we wanted to include. So we wanted to make sure that we were including things like governance and compliance, and that we talk about not just supply chain, which is clearly a very hot topic at the moment, but also to talk about, you know, threat detection, runtime security. And also really importantly, we wanted to have space to talk about education, to talk about how people can get involved. Because maybe when we talk about all these details, and we get really technical, maybe that's, you know, a bit scary for people who are new into the cloud native security space. We want to make sure that there are tracks and content that are accessible for newcomers to get involved. 'Cause, you know, given time they'll be just as excited about diving into those kind of kernel level details. But everybody needs a place to start, and we wanted to make sure there were conversations about how to get started in security, how to educate other members of your team in your organization about security. So hopefully there's something for everyone. >> That education piece- >> Liz, what's the- >> Oh sorry, Dave. >> What the buzz on on AI? We heard Dan talk about, you know, chatGPT, using it to automate spear phishing. There's always been this tension between security and speed to market, but CISOs are saying, "Hey we're going to a zero trust architecture and that's helping us move faster." Will, in your, is the talk on the floor, AI is going to slow us down a little bit until we figure it out? Or is it actually going to be used as an offensive defensive tool if I can use that angle? >> Yeah, I think all of the above. I actually had an interesting chat this morning. I was talking with Andy Martin from Control Plane, and we were talking about the risk of AI generated code that attempts to replicate what open source libraries already do. So rather than using an existing open source package, an organization might think, "Well, I'll just have my own version, and I'll have an AI write it for me." And I don't, you know, I'm not a lawyer so I dunno what the intellectual property implications of this will be, but imagine companies are just going, "Well you know, write me an SSL library." And that seems terrifying from a security perspective, 'cause there could be all sorts of very slightly different AI generated libraries that pick up the same vulnerabilities that exist in open source code. So, I think we're going to go through a pretty interesting period of vulnerabilities being found in AI generated code that look familiar, and we'll be thinking "Haven't we seen these vulnerabilities before? Yeah, we did, but they were previously in handcrafted code and now we'll see the same things being generated by AI." I mean, in the same way that if you look at an AI generated picture and it's got I don't know, extra fingers, or, you know, extra ears or something that, (Dave laughs) AI does make mistakes. >> So Liz, you talked about the education, the enablement, the 72 sessions, the importance of CloudNativeSecurityCon being its own event this year. What are your hopes and dreams for the practitioners to be able to learn from this event? How do you see the event as really supporting the growth, the development of the cloud native security community as a whole? >> Yeah, I think it's really important that we think of it as a Cloud Native Security community. You know, there are lots of interesting sort of hacker community security related community. Cloud native has been very community focused for a long time, and we really saw, particularly through the tag, the security tag, that there was this growing group of people who were, really wanted to work at that intersection between security and cloud native. And yeah, I think things are going really well this week so far, So I hope this is, you know, the first of many additions of this conference. I think it will also be interesting to see how the balance between a smaller, more focused event, compared to the giant KubeCon and cloud native cons. I, you know, I think there's space for both things, but whether or not there will be other smaller focus areas that want to stand alone and justify being able to stand alone as their own separate conferences, it speaks to the growth of cloud native in general that this is worthwhile doing. >> Yeah. >> It is, and what also speaks to, it reminds me of our tagline here at theCUBE, being able to extract the signal from the noise. Having this event as a standalone, being able to extract the value in it from a security perspective, that those practitioners and the community at large is going to be able to glean from these conversations is something that will be important, that we'll be keeping our eyes on. >> Absolutely. Makes sense for me, yes. >> Yeah, and I think, you know, one of the things, Lisa, that I want to get in, and if you don't mind asking Dave his thoughts, because he just did a breaking analysis on the security landscape. And Dave, you know, as Liz talking about some of these root level things, we talk about silicon advances, powering machine learning, we've been covering a lot of that. You've been covering the general security industry. We got RSA coming up reinforced with AWS, and as you see the cloud native developer first, really driving the standards of the super cloud, the multicloud, you're starting to see a lot more application focus around latency and kind of controlling that, These abstraction layer's starting to see a lot more growth. What's your take, Dave, on what Liz and- is talking about because, you know, you're analyzing the horses on the track, and there's sometimes the old guard security folks, and you got open source continuing to kick butt. And even on the ML side, we've been covering some of these foundation models, you're seeing a real technical growth in open source at all levels and, you know, you still got some proprietary machine learning stuff going on, but security's integrating all that. What's your take and your- what's your breaking analysis on the security piece here? >> I mean, to me the two biggest problems in cyber are just the lack of talent. I mean, it's just really hard to find super, you know, deep expertise and get it quickly. And I think the second is it's just, it's so many tools to deal with. And so the architecture of security is just this mosaic and a mess. That's why I'm excited about initiatives like eBPF because it does simplify things, and developers are being asked to do a lot. And I think one of the other things that's emerging is when you- when we talk about Industry 4.0, and IIoT, you- I'm seeing a lot of tools that are dedicated just to that, you know, slice of the world. And I don't think that's the right approach. I think that there needs to be a more comprehensive view. We're seeing, you know, zero trust architectures come together, and it's going to take some time, but I think that you're going to definitely see, you know, some rethinking of how to architect security. It's a game of whack-a-mole, but I think the industry is just- the technology industry is doing a really really good job of, you know, working hard to solve these problems. And I think the answer is not just another bespoke tool, it's a broader thinking around architectures and consolidating some of those tools, you know, with an end game of really addressing the problem in a more comprehensive fashion. >> Liz, in the last minute or so we have your thoughts on how automation and scale are driving some of these forcing functions around, you know, taking away the toil and the muck around developers, who just want stuff to be code, right? So infrastructure as code. Is that the dynamic here? Is this kind of like new, or is it kind of the same game, different kind of thing? (chuckles) 'Cause you're seeing a lot more machine learning, a lot more automation going on. What's, is that having an impact? What's your thoughts? >> Automation is one of the kind of fundamental underpinnings of cloud native. You know, we're expecting infrastructure to be written as code, We're expecting the platform to be defined in yaml essentially. You know, we are expecting the Kubernetes and surrounding tools to self-heal and to automatically scale and to do things like automated security. If we think about supply chain, you know, automated dependency scanning, think about runtime. Network policy is automated firewalling, if you like, for a cloud native era. So, I think it's all about making that platform predictable. Automation gives us some level of predictability, even if the underlying hardware changes or the scale changes, so that the application developers have something consistent and standardized that they can write to. And you know, at the end of the day, it's all about the business applications that run on top of this infrastructure >> Business applications and the business outcomes. Liz, we so appreciate your time talking to us about this inaugural event, CloudNativeSecurityCon 23. The value in it for those practitioners, all of the content that's going to be discussed and learned, and the growth of the community. Thank you so much, Liz, for sharing your insights with us today. >> Thanks for having me. >> For Liz Rice, John Furrier and Dave Vellante, I'm Lisa Martin. You're watching the Cube's coverage of CloudNativeSecurityCon 23. (electronic music)

Published Date : Feb 2 2023

SUMMARY :

Great to have you back on theCUBE. This is the inaugural event, Liz, and the TAG security, kind of testing the waters it seems, that you can consider security. the bellweather for, you know, and of course the runtime as well. of the applications that are running You gave kind of a space exfiltrating the plans to the Death Star, and really helping to change the dials of the network stack that in terms of the importance of, you know, of the people who really I noticed that the but also to talk about, you know, We heard Dan talk about, you know, And I don't, you know, I'm not a lawyer for the practitioners to be you know, the first of many and the community at large Yeah, and I think, you know, hard to find super, you know, Is that the dynamic here? so that the application developers all of the content that's going of CloudNativeSecurityCon 23.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Dan KaminskyPERSON

0.99+

BrianPERSON

0.99+

Dave VellantePERSON

0.99+

DavePERSON

0.99+

Lisa MartinPERSON

0.99+

Liz RicePERSON

0.99+

Andy MartinPERSON

0.99+

Liz RicePERSON

0.99+

SeattleLOCATION

0.99+

LizPERSON

0.99+

Palo AltoLOCATION

0.99+

BostonLOCATION

0.99+

DanPERSON

0.99+

LisaPERSON

0.99+

JohnPERSON

0.99+

John FurrierPERSON

0.99+

AWSORGANIZATION

0.99+

two dayQUANTITY

0.99+

72 sessionsQUANTITY

0.99+

PriyankaPERSON

0.99+

eBPFTITLE

0.99+

CNCFORGANIZATION

0.99+

CloudNativeSecurityConEVENT

0.99+

Control PlaneORGANIZATION

0.99+

KubeConEVENT

0.99+

todayDATE

0.99+

CloudNativeConEVENT

0.99+

Cloud Native Security DayEVENT

0.99+

CUBEORGANIZATION

0.99+

CiliumTITLE

0.99+

secondQUANTITY

0.99+

Boston LisaLOCATION

0.99+

oneQUANTITY

0.99+

each individual applicationQUANTITY

0.98+

bothQUANTITY

0.98+

firstQUANTITY

0.98+

CloudNativeSecurityCon 23EVENT

0.98+

hundredsQUANTITY

0.97+

each individual podQUANTITY

0.97+

both thingsQUANTITY

0.97+

first yearQUANTITY

0.97+

TetragonTITLE

0.97+

BINDORGANIZATION

0.96+

this weekDATE

0.96+

AWS Heroes Panel feat. Mark Nunnikhoven & Liz Rice | AWS Startup Showcase S2 E4 | Cybersecurity


 

(upbeat music) >> Hello, welcome everyone to "theCUBE" presentation of the AWS Startup Showcase, this is Season Two, Episode Four of the ongoing series covering exciting startups from the AWS ecosystem. Here to talk about Cyber Security. I'm your host John Furrier here joined by two great "CUBE" alumnus, Liz Rice who's the chief open source officer at Isovalent, and Mark Nunnikhoven who's the distinguished cloud strategist at Lacework. Folks, thanks for joining me today. >> Hi. Pleasure. >> You're in the U.K. Mark, welcome back to the U.S, I know you were overseas as well. Thanks for joining in this panel to talk about set the table for the Cybersecurity Showcase. You guys are experts out in the field. Liz we've had many conversations with the rise of open source, and all the innovations coming from out in the open source community. Mark, we've been going and covering the events, looking at all the announcements we're kind of on this next generation security conversation. It's kind of a do over in progress, happening every time we talk security in the cloud, is what people are are talking about. Amazon Web Services had reinforced, which was more of a positive vibe of, Hey, we're all on it together. Let's participate, share information. And they talk about incidents, not breaches. And then, you got Black Hat just happened, and they're like, everyone's getting hacked. It's really interesting as we report that. So, this is a new market that we're in. People are starting to think differently, but still have to solve the same problems. How do you guys see the security in the cloud era unfolding? >> Well, I guess it's always going to be an arms race. Isn't it? Everything that we do to defend cloud workloads, it becomes a new target for the bad guys, so this is never going to end. We're never going to reach a point where everything is completely safe. But I think there's been a lot of really interesting innovations in the last year or two. There's been a ton of work looking into the security of the supply chain. There's been a ton of new tooling that takes advantage of technology that I'm really involved with and very excited about called eBPF. There's been a continuation of this new generation of tooling that can help us observe when security issues are happening, and also prevent malicious activities. >> And it's on to of open source activity. Mark, scale is a big factor now, it's becoming a competitive advantage on one hand. APIs have made the cloud great. Now, you've got APIs being hacked. So, all the goodness of cloud has been great, but now we've got next level scale, it's hard to keep up with everything. And so, you start to see new ways of doing things. What's your take? >> Yeah, it is. And everything that's old is new again. And so, as you start to see data and business workloads move into new areas, you're going to see a cyber crime and security activity move with them. And I love, Liz calling out eBPF and open source efforts because what we've really seen to contrast that sort of positive and negative attitude, is that as more people come to the security table, as more developers, as more executives are aware, and the accessibility of these great open source tools, we're seeing that shift in approach of like, Hey, we know we need to find a balance, so let's figure out where we can have a nice security outcome and still meet our business needs, as opposed to the more, let's say to be polite, traditional security view that you see at some other events where it's like, it's this way or no way. And so, I love to see that positivity and that collaboration happening. >> You know, Liz, this brings up a good point. We were talking at our Super Cloud Event we had here when we were discussing the future of how cloud's emerging. One of the conversations that Adrian Cockcroft brought up, who's now retired from AWS, former with Netflix. Adrian being open source fan as well. He was pointing out that every CIO or CISO will buy an abstraction layer. They love the dream. And vendors sell the dream, so to speak. But the reality it's not a lot of uptake because it's complex, And there's a lot of non-standard things per vendor. Now, we're in an era where people are looking for some standardization, some clean, safe ways to deploy. So, what's the message to CSOs, and CIOs, and CXOs out there around eBPF, things like that, that are emerging? Because it's almost top down, was the old way, now as bottoms up with open source, you're seeing the shift. I mean, it's complete flipping the script of how companies are buying? >> Yeah. I mean, we've seen with the whole cloud native movement, how people are rather than having like ETF standards, we have more of a defacto collaborative, kind of standardization process going on. So, that things like Kubernetes become the defacto standard that we're all using. And then, that's helping enterprises be able to run their workloads in different clouds, potentially in their own data centers as well. We see things like EKS anywhere, which is allowing people to run their workloads in their data center in exactly the same way as they're running it in AWS. That sort of leveling of the playing field, if you like, can help enterprises apply the same tooling, and that's going to always help with security if you can have a consistent approach wherever you are running your workload. >> Well, Liz's take a minute to explain eBPF. The Berkeley packet filtering technology, people know from Trace Dumps and whatnot. It's kind of been around for a while, but what is it specifically? Can you take a minute to explain eBPF, and what does that mean for the customer? >> Yeah. So, you mentioned the packet filtering acronym. And honestly, these days, I tell people to just forget that, because it means so much more for. What eBPF allows you to do now, is to run custom programs inside the kernel. So, we can use that to change the way that the kernel behaves. And because the kernel has visibility over every process that's running across a machine, a virtual machine or a bare metal machine, having security tooling and observability tooling that's written using eBPF and sitting inside the kernel. It has this great perspective and ability to observe and secure what's happening across that entire machine. This is like a step change in the capabilities really of security tooling. And it means we don't have to rely on things like kernel modules, which traditionally people have been quite worried about with good reason. eBPF is- >> From a vulnerability standpoint, you mean, right? From a reliability. >> From a vulnerability standpoint, but even just from the point of view that kernel modules, if they have bugs in them, a bug in the kernel will bring the machine to a halt. And one of the things that's different with eBPF, is eBPF programs go through a verification process that ensures that they're safe to run that, but happens dynamically and ensures that the program cannot crash, will definitely run to completion. All the memory access is safe. It gives us this very sort of reassuring platform to use for building these kernel-based tools. >> And what's the bottom line for the customer and the benefit to the organization? >> I think the bottom line is this new generation of really powerful tools that are very high performance. That have this perspective across the whole set of workloads on a machine. That don't need to rely on things like a CCAR model, which can add to a lot of complexity that was perfectly rational choice for a lot of security tools and observability tools. But if you can use an abstraction that lives in the kernel, things are much more efficient and much easier to deploy. So, I think that's really what that enterprise is gaining, simpler to deploy, easier to manage, lower overhead set of tools. >> That's the dream they want. That's what they want. Mark, this is whether the trade offs that comes up. We were talking about the supercloud, and all kinds. Even at AWS, you're going to have supercloud, but you got super hackers as well. As innovation happens on one side, the hackers are innovating on the other. And you start to see a lot of advances in the lower level, AWS with their Silicon and strategies are continuing to happen and be stronger, faster, cheaper, better down the lower levels at the network lay. All these things are innovating, but this is where the hackers are going too, right? So, it's a double edge sword? >> Yeah, and it always will be. And that's the challenge of technology, is sort of the advancement for one, is an advancement for all. But I think, while Liz hit the technical aspects of the eBPF spot on, what I'm seeing with enterprises, and in general with the market movement, is all of those technical advantages are increasing the confidence in some of this security tooling. So, the long sort of anecdote or warning in security has always been things like intrusion prevention systems where they will look at network traffic and drop things they think bad. Well, for decades, people have always deployed them in detect-only mode. And that's always a horrible conversation to have with the board saying, "Well, I had this tool in place that could have stopped the attack, but I wasn't really confident that it was stable enough to turn on. So, it just warned me that it had happened after the fact." And with the stability and the performance that we're seeing out of things based on technologies like eBPF, we're seeing that confidence increase. So, people are not only deploying this new level of tooling, but they're confident that it's actually providing the security it promised. And that's giving, not necessarily a leg up, but at least that level of parody with that push forward that we're seeing, similar on the attack side. Because attackers are always advancing as well. And I think that confidence and that reliability on the tooling, can't be underestimated because that's really what's pushing things forward for security outcomes. >> Well, one of the things I want get your both perspective on real quick. And you kind of segue into this next set of conversations, is with DevOps success, Dev and Ops, it's kind of done, right? We're all happy. We're seeing DevOps being so now DevSecOps. So, CSOs were like kind of old school. Buy a bunch of tools, we have a vendor. And with cloud native, Liz, you mentioned this earlier, accelerating the developers are even driving the standards more and more. So, shifting left is a security paradigm. So, tooling, Mark, you're on top of this too, it's tooling versus how do I organize my team? What are the processes? How do I keep the CICD pipeline going, higher velocity? How can I keep my app developers programming faster? And as Adrian Cockcroft said, they don't really care about locking, they want to go faster. It's the ops teams that have to deal with everything. So, and now security teams have to deal with the speed and velocity. So, you're seeing a new kind of step function, ratchet game where ops and security teams who are living DevOps, are still having to serve the devs, and the devs need more help here. So, how do you guys see that dynamic in security? Because this is clearly the shift left's, cloud native trend impacting the companies. 'Cause now it's not just shifting left for developers, it has a ripple effect into the organization and the security posture. >> We see a lot of organizations who now have what they would call a platform team. Which is something similar to maybe what would've been an ops team and a security team, where really their role is to provide that platform that developers can use. So, they can concentrate on the business function that they don't have to really think about the underlying infrastructure. Ideally, they're using whatever common definition for their applications. And then, they just roll it out to a cloud somewhere, and they don't have to think about where that's operating. And then, that platform team may have remit that covers, not just the compute, but also the networking, the common set of tooling that allows people to debug their applications, as well as securing them. >> Mark, this is a big discussion because one, I love the team, process collaboration. But where's the team? We've got a skills gap going on too, right? So, in all this, there's a lot of action happening. What's your take on this dynamic of tooling versus process collaboration for security success? >> Yeah, it's tough. And I think what we're starting to see, and you called it out spot on, is that the developers are all about dynamic change and rapid change, and operations, and security tend to like stability, and considered change in advance. And the business needs that needle to be threaded. And what we're seeing is sort of, with these new technologies, and with the ideas of finally moving past multicloud, into, as you guys call supercloud, which I absolutely love is a term. Let's get the advantage of all these things. What we're seeing, is people have a higher demand for the outputs from their tooling, and to find that balance of the process. I think it's acknowledged now that you're not going to have complete security. We've gotten past that, it's not a yes or no binary thing. It's, let's find that balance in risk. So, if we are deploying tooling, whether that's open source, or commercial, or something we built ourselves, what is the output? And who is best to take action on that output? And sometimes that's going to be the developers, because maybe they can just fix their architecture so that it doesn't have a particular issue. Sometimes that's going to be those platform teams saying like, "Hey, this is what we're going to apply for everybody, so that's a baseline standard." But the good news, is that those discussions are happening. And I think people are realizing that it's not a one size-fits-all. 10 years ago was sort of like, "Hey, we've got a blueprint and everyone does this." That doesn't work. And I think that being out in the open, really helps deliver these better outcomes. And because it isn't simple, it's always going to be an ongoing discussion. 'Cause what we decide today, isn't going to be the same thing in a week from now when we're sprint ahead, and we've made a whole bunch of changes on the platform and in our code. >> I think the cultural change is real. And I think this is hard for security because you got so much current action happening that's really important to the business. That's hard to just kind of do a reset without having any collateral damage. So, you kind of got to mitigate and manage all the current situation, and then try to build a blueprint for the future and transform into a kind of the next level. And it kind of reminds me of, I'm dating myself. But back in the days, you had open source was new. And the common enemy was proprietary, non-innovative old guard, kind of mainframe mini computer kind of proprietary analysis, proprietary everything. Here, there is no enemy. The clouds are doing great, right? They're leaning in open source is at all time high and not stopping, it's it's now standard. So, open is not a rebel. It's not the rebel anymore, it's the standard. So, you have the innovation happening in open source, Liz, and now you have large scale cloud. And this is a cultural shift, right? How people are buying, evaluating product, and implementing solutions. And I when I say new, I mean like new within the decades or a couple decades. And it's not like open source is not been around. But like we're seeing new things emerge that are pretty super cool in the sense that you have projects defining standards, new things are emerging. So, the CIO decision making process on how to structure teams and how to tackle security is changing. Why IT department? I mean, just have a security department and a Dev team. >> I think the fact that we are using so much more open source software is a big part of this cultural shift where there are still a huge ecosystem of vendors involved in security tools and observability tools. And Mark and I both represent vendors in those spaces. But the rise of open source tools, means that you can start with something pretty powerful that you can grow with. As you are experimenting with the security tooling that works for you, you don't have to pay a giant sum to get a sort of black box. You can actually understand the open source elements of the tooling that you are going to use. And then build on that and get the enterprise features when you need those. And I think that cultural change makes it much easier for people to work security in from the get go, and really, do that shift left that we've been talking about for the last few years. >> And I think one of the things to your point, and not only can you figure out what's in the open source code, and then build on top of it, you can also leave it too. You can go to something better, faster. So, the switching costs are a lot lower than a lock in from a vendor, where you do all the big POCs and the pilots. And, Mark, this is changing the game. I mean, I would just be bold enough to say, IT is going to be irrelevant in the sense of, if you got DevOps and it works, and you got security teams, do you really need IT 'cause the DevOps is the IT? So, if everyone goes to the cloud operations, what does IT even mean? >> Yeah, and it's a very valid point. And I think what we're seeing, is where IT is still being successful, especially in large companies, is sort of the economy of scale. If you have enough of the small teams doing the same thing, it makes sense to maybe take one tool and scale it up because you've got 20 teams that are using it. So, instead of having 20 teams run it, you get one team to run it. On the economic side, you can negotiate one contract if it's a purchase tool. There is still a place for it, but I think what we're seeing and in a very positive way, is that smaller works better when it comes to this. Because really what the cloud has done and what open source continues to do, is reduce the barrier to entry. So, a team of 10 people can build something that it took a 1000 people, a decade ago. And that's wonderful. And that opens up all these new possibilities. We can work faster. But we do need to rethink it at reinforce from AWS. They had a great track about how they're approaching it from people side of things with their security champion's idea. And it's exactly about this, is embedding high end security talent in the teams who are building it. So, that changes the central role, and the central people get called in for big things like an incident response, right? Or a massive auditor reviews. But the day-to-day work is being done in context. And I think that's the real key, is they've got the context to make smarter security decisions, just like the developers and the operational work is better done by the people who are actually working on the thing, as opposed to somebody else. Because that centralized thing, it's just communication overhead most of the time. >> Yeah. I love chatting with you guys because here's are so much experts on the field. To put my positive hat on around IT, remember the old argument of, "Oh, automation's, technology's going to kill the bank teller." There's actually more tellers now than ever before. So, the ATM machine didn't kill that. So, I think IT will probably reform from a human resource perspective. And I think this is kind of where the CSO conversation comes full circle, Liz and Mark, because, okay, let's assume that this continues the trajectory to open source, DevOps, cloud scale, hybrid. It's a refactoring of personnel. So, you're going to have DevOps driving everything. So, now the IT team becomes a team. So, most CSOs we talk to are CXOs, is how do I deploy my teams? How do I structure things, my investment in people, and machines and software in a way that I get my return? At the end of the day, that's what they live for, and do it securely. So, this is the CISO's kind of thought process. How do you guys react to that? What's the message to CISOs? 'Cause they have a lot of companies to look at here. And in the marketplace, they got to spend some money, they got to get a return, they got to reconfigure. What's your advice? Liz, what's your take? Then we'll go to Mark. >> That's a really great question. I think cloud skills, cloud engineering skills, cloud security skills have never been more highly valued. And I think investing in training people to understand cloud that there are tons of really great resources out there to help ramp people up on these skills. The CNCF, AWS, there's tons of organizations who have really great courses and exams, and things that people can do to really level up their skills, which is fantastic right from a grassroots level, through to the most widely deployed global enterprise. I think we're seeing a lot of people are very excited, develop these skills. >> Mark, what's your take for the CSO, the CXO out there? They're scratching their head, they're going, "Okay, I need to invest. DevOps is happening. I see the open source, I'm now got to change over. Yeah, I lift and shift some stuff, now I got to refactor my business or I'm dead." What's your advice? >> I think the key is longer term thinking. So, I think where people fell down previously, was, okay, I've got money, I can buy tools, roll 'em out. Every tool you roll out, has not just an economic cost, but a people cost. As Liz said, those people with those skills are in high demand. And so, you want to make sure that you're getting the most value out of your people, but your tooling. So, as you're investing in your people, you will need to roll out tools. But they're not the answer. The answer is the people to get the value out of the tools. So, hold your tools to a higher standard, whether that's commercial, open source, or something from the CSP, to make sure that you're getting actionable insights and value out of them that your people can actually use to move forward. And it's that balance between the two. But I love the fact that we're finally rotating back to focus more on the people. Because really, at the end of the day, that's what's going to make it all work. >> Yeah. The hybrid work, people processes. The key, the supercloud brings up the conversation of where we're starting to see maturation into OPEX models where CapEx is a gift from the clouds. But it's not the end of bilk. Companies are still responsible for their own security. At the end of the day, you can't lean on AWS or Azure. They have infrastructure and software, but at the end of the day, every company has to maintain their own. Certainly, with hybrid and edge coming, it's here. So, this whole concept of IT, CXO, CIO, CSO, CSO, I mean, this is hotter than ever in terms of like real change. What's your reaction to that? >> I was just reading this morning that the cost of ensuring against data breaches is getting dramatically more expensive. So, organizations are going to have to take steps to implement security. You can't just sort of throw money at the problem, you're going to actually have to throw people and technology at the problem, and take security really seriously. There is this whole ecosystem of companies and folks who are really excited about security and here to help. There's a lot of people interested in having that conversation to help those CSOs secure their deployments. >> Mark, your reaction? >> Yeah. I think, anything that causes us to question what we're doing is always a positive thing. And I think everything you brought up really comes down to remembering that no matter what, and no matter where, your data is always your data. And so, you have some level of responsibility, and that just changes depending on what system you're using. And I think that's really shifting, especially in the CSO or the CSO mindset, to go back to the basics where it used to be information security and not just cyber security. So, whether that information and that data is sitting on my desk physically, in a system in our data center, or in the cloud somewhere. Looking holistically, and that's why we could keep coming back to people. That's what it's all about. And when you step back there, you start to realize there's a lot more trade offs. There's a lot more levers that you can work on, to deliver the outcome you want, to find that balance that works for you. 'Cause at the end of the day, security is just all about making sure that whatever you built and the systems you're working with, do what you want them to do, and only what you want them to do. >> Well, Liz and Mark, thank you so much for your expert perspective. You're in the trenches, and really appreciate your time and contributing with "theCUBE," and being part of our Showcase. For the last couple of minutes, let's dig into some of the things you're working on. I know network policies around Kubernetes, Liz, EKS anywhere has been fabulous with Lambda and Serverless, you seeing some cool things go on there. Mark, you're at Lacework, very successful company. And looking at a large scale observability, signaling and management, all kinds of cool things around native cloud services and microservices. Liz, give us an update. What's going on over there at Isovalent? >> Yeah. So, Isovalent is the company behind Cilium Networking Project. Its best known as a Kubernetes networking plugin. But we've seen huge amount of adoption of cilium, it's really skyrocketed since we became an incubating project in the CNCF. And now, we are extending to using eBPF to not just do networking, but incredibly in depth observability and security observability have a new sub project called Tetragon, that gives you this amazing ability to see out of policy behavior. And again, because it's using eBPF, we've got the perspective of everything that's happening across the whole machine. So, I'm really excited about the innovations that are happening here. >> Well, they're lucky to have you. You've been a great contributor to the community. We've been following your career for very, very long time. And thanks for everything that you do, really appreciate it. Thanks. >> Thank you. >> Mark, Lacework, we we've following you guys. What are you up to these days? You know, we see you're on Twitter, you're very prolific. You're also live tweeting all the events, and with us as well. What's going on over there at Lacework? And what's going on in your world? >> Yeah. Lacework, we're still focusing on the customer, helping deliver good outcomes across cloud when it comes to security. Really looking at their environments and helping them understand, from their data that they're generating off their systems, and from the cloud usage as to what's actually happening. And that pairs directly into the work that I'm doing, the community looking at just security as a practice. So, a lot of that pulling people out of the technology, and looking at the process and saying, "Hey, we have this tech for a reason." So, that people understand what they need in place from a skill set, to take advantage of the great work that folks like Liz and the community are doing. 'Cause we've got these great tools, they're outputting all this great insights. You need to be able to take actions on top of that. So, it's always exciting. More people come into security with a security mindset, love it. >> Well, thanks so much for this great conversation. Every board should watch this video, every CSO, CIO, CSO. Great conversation, thanks for unpacking and making something very difficult, clear to understand. Thanks for your time. >> Pleasure. >> Thank you. >> Okay, this is the AWS Startup Showcase, Season Two, Episode Four of the ongoing series covering the exciting startups from the AWS ecosystem. We're talking about cybersecurity, this segment. Every quarter episode, we do a segment around a category and we go deep, we feature some companies, and talk to the best people in the industry to help you understand that. I'm John Furrier your host. Thanks for watching. (upbeat music)

Published Date : Sep 7 2022

SUMMARY :

of the ongoing series and covering the events, it becomes a new target for the bad guys, So, all the goodness of and the accessibility of I mean, it's complete flipping the script and that's going to minute to explain eBPF. And because the kernel has you mean, right? bring the machine to a halt. that lives in the kernel, advances in the lower level, and that reliability on the and the security posture. and they don't have to think I love the team, process collaboration. is that the developers are But back in the days, you of the tooling that you are going to use. the things to your point, is reduce the barrier to entry. What's the message to CISOs? And I think investing in training people I see the open source, I'm And it's that balance between the two. At the end of the day, you morning that the cost of ensuring especially in the CSO or the CSO mindset, You're in the trenches, and that's happening across the whole machine. And thanks for everything that and with us as well. and from the cloud usage as clear to understand. of the ongoing series

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
MarkPERSON

0.99+

John FurrierPERSON

0.99+

Adrian CockcroftPERSON

0.99+

Liz RicePERSON

0.99+

Mark NunnikhovenPERSON

0.99+

LizPERSON

0.99+

Amazon Web ServicesORGANIZATION

0.99+

20 teamsQUANTITY

0.99+

LaceworkORGANIZATION

0.99+

AWSORGANIZATION

0.99+

IsovalentORGANIZATION

0.99+

20 teamsQUANTITY

0.99+

AdrianPERSON

0.99+

one teamQUANTITY

0.99+

eBPFTITLE

0.99+

U.K.LOCATION

0.99+

twoQUANTITY

0.99+

NetflixORGANIZATION

0.99+

U.SLOCATION

0.99+

1000 peopleQUANTITY

0.99+

one toolQUANTITY

0.99+

supercloudORGANIZATION

0.99+

CNCFORGANIZATION

0.99+

10 peopleQUANTITY

0.98+

todayDATE

0.98+

one contractQUANTITY

0.98+

10 years agoDATE

0.98+

bothQUANTITY

0.98+

last yearDATE

0.98+

oneQUANTITY

0.97+

OneQUANTITY

0.96+

multicloudORGANIZATION

0.96+

TetragonTITLE

0.96+

one sideQUANTITY

0.95+

DevOpsTITLE

0.95+

DevSecOpsTITLE

0.93+

a decade agoDATE

0.93+

Season TwoQUANTITY

0.92+

Cilium Networking ProjectORGANIZATION

0.91+

CapExORGANIZATION

0.9+

Startup ShowcaseEVENT

0.89+

Super Cloud EventEVENT

0.89+

Liz Dennett, AWS and Johan Krebbers, Shell | AWS Executive Summit 2020


 

>> Narrator: From around the globe, it's theCUBE. With digital coverage of AWS Reinvent Executive Summit 2020. Sponsored by Accenture and AWS. >> Welcome everyone to theCUBE virtual coverage of the Accenture Executive Summit part of AWS Re-invent 2020. I'm your host, Rebecca Knight. We are talking today about reinventing the energy data platform. We have two guests joining us. First, we have Johan Krebbers. He is the GM Digital Emerging Technologies and VP of IT Innovation at Shell. Thank you so much for coming on the show, Johan. >> You're welcome. >> Rebecca: And next we have Liz Dennett. She is the Lead Solution Architect for OSDU on AWS. Thank you so much Liz. >> Happy to be here. >> So I want to start our conversation by talking about OSDU. Like so many great innovations, it started with a problem. Johann, what was the problem you were trying to solve at Shell? >> Yeah, let's go back a couple of the years. We started summer 2017, where we had a meeting with the guys from exploration in Shell. And the main problem they had of course they got lots and lots of data, but aren't unable to find the right data they need to work from. Well the data was scattered and is scattered, it was scattered it's all over the place. And so the real problem trying to solve is how that person working in exploration could find their proper data, not just the data also the data really needed. That's what we probably talked about in summer 2017. And we said, "Okay, the only way we see this moving forward is to start pulling that data into a single data platform." And that was at the time that we called it OSDU, the Open Subsurface Data Universe, and that was what the Shell name was. So, in January 2018, we start a project with Amazon to start creating and confronting the building that OSDU environment, that subservient the universe. So that single data platform to put all your exploration and wealth data into a single environment that was the intent. And then we said, already in March of that same year, we said, 'Well, from a Shell point of view, we would be far better off if we could make this an industry solution and not just a Shell solution." Because Shell will be, if you can make this an industry solution, but people start developing applications for it also, it's far better than for Shell to say, we have it Shell special solution. Because we don't make money out of how we store the data we can make money out of we have access to the data, we can exploit the data. So storing the data, we should do as efficiently possibly can. So in March we reached out to about eight or nine other large oil and gas operators, like the ECONOS, like the Totals, like the Chevrons of this world they said, "Hey, we in Shell are doing this, do you want to join this effort?" And to our surprise, they all said yes. And then in September 2018 we had our kick-off meeting with the open group, where we said, "Okay, if you want to work together with lots of other companies, we also need to look a bit at how we organize that." Because if you start working with lots of large companies you need to have some legal framework around it. So that's why, we went to the open group and said," Okay, let's form the OSDU forum." As we call it at the time. So in September, 2018 where I had a Galleria in Houston we had a kick off meeting for the OSDU forum with about 10 members at the time. So there's, just over two years ago, we started to exercise formally we called it OSDU, we kicked it off. And so that's really where we coming from and how we got there also. >> The origin story. >> Yes. >> What, so what, digging a little deeper there, what were some of the things you were trying to achieve with the OSDU? >> Well, a couple of things we've tried to achieve with OSDU. First is really separating data from applications. But what is the biggest problem we have in the subsurface space that the data and applications are all interlinked. They are all tied together and if you have then a new company coming along and say, "I have this new application, and needs access to the data." That is not possible because the data often interlinked with the application. The first thing we did is, really breaking the link between the application and the data. So that was the first thing we did. Secondly, put all the data to a single data platform, take the silos out because what was happening in the subsurface space I mean, they got all the data in what we call silos, in small little islands out there. So we try to do is, first, break the link. Two, create, put the data in a single data platform. And then third part, put a standard layer on top of that the same API layer on top of the created platform so we could create an ecosystem out of companies to start developing software applications on top of that data platform. Because you might have a data platform, but you aren't successful if you have a rich ecosystem of people start developing applications on top of that. And then you can exploit the data like small companies, large companies, universities, you name it. But you have to create an ecosystem out of there. So the three things was, first break the link between the application data, just break it and put data at the center. And also make sure that data, this data structure would not be managed by one company. But it would be managed the data structures, by the OSDU forum. Secondly then, put the data, single data platform. Thirdly then, have an API layer on top and then create an ecosystem, really go for people, say, "Please start developing applications." Because now you have access to the data, because the data is no longer linked to somebody's application was all freely available for an API layer. That was all September, 2018, more or less. >> Liz I want to bring you, in here a little bit. >> Yeah. >> Can you talk a little bit some of the imperatives from the AWS standpoint in terms of what you were trying to achieve with this? >> Yeah, absolutely. And this whole thing is Johan said, started with a challenge that was really brought out at Shell. The challenges that geoscientists spend up to 70% of their time looking for data. I'm a geologist I've spent more than 70% of my time trying to find data in these silos. And from there, instead of just figuring out, how we could address that one problem, we worked together to really understand the root cause of these challenges. And working backwards from that use case, OSDU and OSDU on AWS has really enabled customers to create solutions that span not just this in particular problem. But can really scale to be inclusive of the entire energy value chain and deliver value from these used cases to the energy industry and beyond. >> Thank you. Johan, so talk a little bit about Accenture's Cloud First approach and how it has helped Shell work faster and better with speed. >> Well, of course Accenture Cloud First approach, really works together with Amazon environment, AWS environment. So we really look at Accenture and Amazon together, helping Shell in this space. Now the combination of the two is what we're really looking at where access of course can bring business knowledge to that environment, operate support knowledge to an environment and of course Amazon will be bring that to this environment, that underpinning services, et cetera. So we would expect of that combination, a lot of goods when we started rolling out in production, the other two or three environment. And probably our aim is, when a release fee comes to the market, in Q1 next year of OSDU have already started going out in production inside Shell. But as the first OSDU release which is ready for prime time production across an enterprise. Well we have released our one just before Christmas, last year, released two in May of this year. But release three is the first release we want to use for full scale production and deployment inside Shell and also all the operators around the world. And there is what Amazon, sorry and there when Accenture can play a role in the ongoing, in the deployment building up, but also support environment. >> So one of the other things that we talk a lot about here on theCUBE is sustainability and this is a big imperative at so many organizations around the world in particular energy companies. How does this move to OSDU, help organizations become how is this a greener solution for companies? >> Well, first we make, it's a great solution because you start making a much more efficient use of your resources, which is a really important one. The second thing we're doing is also we started with OSDU in very much in the oil and gas space, within the export development space. We've grown OSDU but in our strategy, we've grown OSDU now also to an alternative energy source. So obviously we'll all start supporting next year things like solar farms, wind farms, the geothermal environment, hydrogen. So it becomes an open energy data platform not just for the oil and gas industry, but for any type of industry, any type of energy industry. So our focus is to create, bring the data of all those various energy data sources together into a single data platform. You're going to use AI and other technology on top of that, to exploit the data to be together into a single data platform. >> Liz, I want to ask you about security, because security is such a big concern when it comes to data. How secure is the data on OSDU? >> Actually, can I talk, can I do a follow-up on the sustainability talking? >> Absolutely by all means. >> I mean, I want to interject, though security is absolutely our top priority I don't mean to move away from that but with sustainability, in addition to the benefits of the OSDU data platform. When a company moves from on-prem to the cloud they're also able to leverage the benefits of scale. Now, AWS is committed to running our business in the most environmentally friendly way possible. And our scale allows us to achieve higher resource utilization and energy efficiency than a typical on-prem data center. Now, a recent study by 451 research found that, AWS's infrastructure, is 3.6 times more energy efficient than the median of surveyed enterprise data centers. Two thirds of that advantage is due to a higher server utilization and a more energy efficient server population. But when you factor in the carbon intensity of consumed electricity and renewable energy purchases 451 found that, AWS performs the same task with an 88% lower carbon footprint. Now that's just another way that AWS and OSDU are working to support our customers as they seek to better understand their workflows and make their legacy businesses less carbon intensive. >> That's, those statistics are incredible. Do you want to talk a little bit now about security? >> Absolutely yeah. Security will always be AWS's top priority. In fact, AWS has been architected to be the most flexible and secure cloud computing environment available today. Our core infrastructure is built to satisfy the security requirements for the military, global banks and other high sensitivity organizations. And in fact, AWS uses the same secure hardware and software to build and operate each of our regions. So that customers benefit from the only commercial cloud that's had hit service offerings and associated supply chain vetted and deemed secure enough for top secret workloads. That's backed by a deep set of cloud security tools with more than 200 security compliance and governmental service and key features. As well as an ecosystem of partners like Accenture, that can really help our customers to make sure that their environments for their data meet and or exceed their security requirements. >> Johann, I want you to talk a little bit about how OSDU you can be used today. Does it only handle subsurface data? >> Today is 100 subsets of wells data we go to add that to that production around the middle of next year. That means that the whole upstream business we got included every piece goes from exploration all the way to production, you bring it together into a single data platform. So production will be added around Q3 of next year. Then in principle, we have a typical elder data, a single environment and we're going to extend them to other data sources or energy sources like solar farms, wind farms, hydrogen, hydro, et cetera. So we're going to add a whole list of other day energy source to that and bring all the data together into a single data platform. So we move from an oil and gas data platform to an energy data platform. That's really what our objective is because the whole industry if you look at our companies all moving in that same direction of course are very strong in oil and gas but also increasingly go into other energy sources like solar, like wind, like hydrogen et cetera. So we move exactly with the same method, that the whole OSDU, can really support that whole energy spectrum of energy sources, of course. >> And Liz and Johan, I want you to close us out here by just giving us a look into your crystal balls and talking about the five and 10 year plan for OSDU. We'll start with you, Liz. What do you see as the future holding for this platform? >> Honestly, the incredibly cool thing about working at AWS is you never know where the innovation and the journey is going to take you. I personally am looking forward to work with our customers wherever their OSDU journeys, take them whether it's enabling new energy solutions or continuing to expand, to support use cases throughout the energy value chain and beyond but really looking forward to continuing to partner as we innovate to slay tomorrow's challenges. >> Johan. >> Yeah, first nobody can look that far ahead anymore nowadays, especially 10 years. I mean, who knows what happens in 10 years? But if you look what our objective is that really in the next five years, OSDU will become the key backbone for energy companies for storing your data, new artificial intelligence and optimize the whole supply, the energy supply chain in this world out here. >> Johan Krebbers, Liz Dennett thank you so much for coming on theCUBE virtual. >> Thank you. >> Thank you. >> I'm Rebecca Knight stay tuned for more of our coverage of the Accenture Executive Summit. (tranquil music).

Published Date : Dec 1 2020

SUMMARY :

the globe, it's theCUBE. of the Accenture Executive Summit She is the Lead Solution you were trying to solve at Shell? So storing the data, we in the subsurface space that Liz I want to bring of the entire energy value chain and better with speed. and also all the operators So one of the other things for the oil and gas industry, How secure is the data on OSDU? of the OSDU data platform. Do you want to talk a little and software to build and Johann, I want you to talk a little bit and bring all the data together and talking about the five and the journey is going to take you. and optimize the whole supply, Dennett thank you so much of our coverage of the

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
LizPERSON

0.99+

Liz DennettPERSON

0.99+

Rebecca KnightPERSON

0.99+

Liz DennettPERSON

0.99+

JohanPERSON

0.99+

AmazonORGANIZATION

0.99+

Johan KrebbersPERSON

0.99+

RebeccaPERSON

0.99+

AWSORGANIZATION

0.99+

September, 2018DATE

0.99+

MarchDATE

0.99+

January 2018DATE

0.99+

September 2018DATE

0.99+

AccentureORGANIZATION

0.99+

3.6 timesQUANTITY

0.99+

JohannPERSON

0.99+

100 subsetsQUANTITY

0.99+

ECONOSORGANIZATION

0.99+

ShellORGANIZATION

0.99+

summer 2017DATE

0.99+

fiveQUANTITY

0.99+

88%QUANTITY

0.99+

September, 2018DATE

0.99+

two guestsQUANTITY

0.99+

three thingsQUANTITY

0.99+

twoQUANTITY

0.99+

FirstQUANTITY

0.99+

TodayDATE

0.99+

next yearDATE

0.99+

last yearDATE

0.99+

Accenture Executive SummitEVENT

0.99+

first releaseQUANTITY

0.99+

ChristmasEVENT

0.99+

firstQUANTITY

0.99+

HoustonLOCATION

0.99+

TwoQUANTITY

0.99+

TotalsORGANIZATION

0.99+

SecondlyQUANTITY

0.99+

OSDUTITLE

0.99+

10 yearsQUANTITY

0.99+

one problemQUANTITY

0.98+

more than 70%QUANTITY

0.98+

third partQUANTITY

0.98+

10 yearQUANTITY

0.98+

one companyQUANTITY

0.98+

451ORGANIZATION

0.98+

ThirdlyQUANTITY

0.97+

Two thirdsQUANTITY

0.97+

Liz Rice, Aqua Security | KubeCon + CloudNativeCon Europe 2020 - Virtual


 

>>from around the globe. It's the Cube with coverage of Coop Con and Cloud, Native Con Europe 2020 Virtual brought to You by Red Hat, The Cloud Native Computing Foundation and its ecosystem Partners. Hi, I'm stupid, man. And this is the Cube's coverage of Cube con Cloud Native Con Europe event, which, of course, this year has gone virtual, really lets us be able to talk to those guests where they are around the globe. Really happy to welcome back to the program. Liz Rice. First of all, she is the vice president of Open Source Engineering at Aqua Security. She's also the chair of the Technical Oversight Committee has part of Ah CN cf. Liz, it is great to see you. Unfortunately, it's remote, but ah, great to catch up with you. Thanks for joining. >>Yeah, Thanks for having me. Nice to see you if you know across the ocean. >>So, uh, you know, one of the one of the big things? Of course, for the Cube Con show. It's the rallying point for the community. There are so many people participating. One of the things we always love to highlight its not only the the vendor ecosystem. But there is a very robust, engaged community of end users that participate in it. And as I mentioned, you're the chair of that technology oversight committee. So maybe just give our audience a little bit of, you know, in case they're not familiar with the TOC does. And let's talk about the latest pieces there. >>Yes, say the TOC is really hit. C can qualify the different projects that want to join the CNC F. So we're assessing whether or not they're cloud native. We're assessing whether they could joined at sandbox or incubation or graduation levels. Which of the different maturity levels that we have for for project within the CN CF yeah, we're really there, Teoh also provide it steering around the What does cloud native mean and what does it mean to be a project inside the CN CF community? We're also a voice for all of the projects. We're not the only voice, but, you know, part >>of our role >>really is to make sure the projects are getting what they need in order to be successful. So it's it's really around the technology and the projects that we call cloud native >>Yeah, and and obliges Cloud Native because when people first heard of the show, of course, Kubernetes and Cube Con was the big discussion point. But as you said, Cloud native, there's a lot of projects there. I just glanced at the sandbox page and I think there's over 30 in the sandbox category on and you know they move along their process until they're, you know, fully mature and reach that, you know, 1.0 state, which is the stamp of approval that, you know, this could be used in production. I understand there's been some updates for the sandbox process, so help us understand you know where that is and what's the new piece of that? >>Yeah. So it's really been because of the growth off cloud native in general, the popularity off the CN CF and so much innovation happening in our space. So there's been so many projects who want Teoh become hard off the CNC f family on and we used to have a sponsorship model where members of the TOC would essentially back projects that they wanted to see joining at the sandbox level. But we ran into a number of issues with that process on and also dealing with the scale, the number of applications that have come in. So we've revamped the process. We made it much easier for projects to apply as much simpler form where really not making so much judgment we're really saying is it's a cloud native project and we have some requirements in terms off some governance features that we need from a project. And it's worth mentioning that when a project joins the CN CF, they are donating the intellectual property and the trademark off that project into the foundation. So it's not something that people should take lightly. But we have tried to make it easier and therefore much smoother. We're able Teoh assess the applications much more quickly, which I think everyone, the community, the projects, those of us on the TOC We're all pretty happy that we can make that a much faster process. >>Yeah, I actually, it brings up An interesting point is so you know, I've got a little bit of background in standards committees. A swell as I've been involved in open source for a couple of decades now some people don't understand. You know, when you talk about bringing a project under a foundation. You talked about things like trademarks and the like. There are more than one foundation out there for CN CF Falls under the Linux Foundation. Google, of course, brought Kubernetes in fully to be supported. There's been some rumblings I've heard for the last couple of years about SDO and K Native and I know about a month before the show there was some changes along SDO and what Google was doing there may be without trying to pass too many judgments in getting into some of the political arguments, help us understand. You know what Google did and you know where that kind of comparison the projects that sit in the CN cf themselves. >>Yeah, So I e I guess two years ago around two years ago, Stu was very much the new kid in the cloud native block. So much excitement about the project. And it was actually when I was a program co chair that we had a lot of talks about sdo at Cube Con cloud native bomb, particularly in Copenhagen, I'm recalling. And, uh, I think everyone I just saw a natural fit between that project on the CN, CF and There was an assumption from a lot of people across the community that it would eventually become part of the CNC f. That was it's natural home. And one of the things that we saw in recent weeks was a very clear statement from IBM, who were one off the Uh huh, yeah, big contributing companies towards that project that that was also their expectation. They were very much under the impression that Stu would be donated to the CN CF at an appropriate point of maturity, and unfortunately, that didn't happen. From my point of view, I think that has sown a lot of confusion amongst the community because we've seen so much. It's very much a project of fits. Service mesh designed to work with kubernetes is it really does. You're fit naturally in with the other CN CF projects. So it's created confusion for end users who, many of whom assume that it was called the CN CF, and that it has the neutral governance that the other projects. It's part of the requirements that we have on those projects. They have to have an open governance that they're not controlled by a single vendor, Uh, and we've seen that you know that confusion, Andi. Frustration around that confusion being expressed by more and more end users as well as other people across the community. And yeah, the door is still open, you know, we would still love to see SDO join the community. Clearly there are different opinions within the SD wan maintainers. I will have to see what happens. >>Yeah, lets you bring up some really good points. You know, absolutely some of some of that confusion out there. Absolutely. I've heard from customers that if they're making a decision point, they might say, Hey, maybe I'm not going to go down that maybe choose something else because I'm concerned about that. Um, you know, I sdo front and center k native, another project currently under Google that has, you know, a number of other big vendors in the community that aiding in that So hopefully we will see some progress on that, you know, going forward. But, you know, back to you talked about, You know, the TOC doesn't make judgements as to you know which project and how they are. One of the really nice things out there in the CN CF, it's like the landscape just for you to help, understand? Okay, here's all of these projects. Here's the different categories they fit in. Here is where they are along that maturity. There's another tool that I read. Cheryl Hung blogged about the technology radar. I believe for continuous delivery is the first technology radar. Help us understand how that is, you know, not telling customers what to do but giving them a little guidance that you know where some of these projects projects fit. In a certain segment, >>Yeah, the technology radar is a really great initiative. I'm really excited about it because we have increasing numbers or end users who are using these different projects it both inside the CN CF and projects that are outside of the CNC F family. Your end users are building stacks. They're solving real problems in the real world and with the technology radar. What Cheryl's been able to facilitate is having the end you to the end user community share with us. What tools? They're actually using what they actually believe are the right hammers for specific nails. And, you know, it's it's one thing for us as it's more on the developer or vendor side Teoh look at different projects and say what we think are the better solutions for solving different problems. Actually hearing from the horse's mouth from the end users who are doing it in the real world is super valuable. And I think that is a really useful input to help us understand. What are the problems that the end user is still a challenge by what are the gaps that we still need to fail more input we can get from the end user community, the more will be solving real problems and no necessarily academic problems that we haven't sorry discovered in >>the real world. Alright, well is, you know, teeing up a discussion about challenges that users still have in the world. If we go to your primary jobs, Main hat is you live in the security world and you know, we know security is still something, you know, front and center. It is something that has never done lots of discussion about the shared responsibility model and how cloud native in security fit together and all that. So maybe I know there's some new projects there, but love to just give me a snap shot as where we are in the security space. As I said, Overall, it's been, you know, super important topic for years. This year, with a global pandemic going on, security seems to be raised even more. We've seen a couple of acquisitions in the space, of course. Aqua Security helping customers along their security journey. So what do you seeing out there in the marketplace today and hear from your custom? >>Yeah, I Every business this year has, you know, look at what's going on and you know, it's been crazy time for everyone, but we've been pleasantly surprised at how, you know, in relative terms, our business has been able to. It's been strong, you know. And I think you know what you're touching on the fact that people are working remotely. People are doing so many things online. Security is evermore online. Cloud security's evermore part off what people need to pay attention to. We're doing more and more business online. So, actually, for those of us in the security business, it has bean, you know that there have been some silver linings to this this pandemic cloud? Um, yes. So many times in technology. The open source projects and in particularly defaults in kubernetes. Things are improving its long Bina thing that I've you know, I wished for and talked about that. You know, some of the default settings has always been the most secure they could be. We've seen a lot of improvements over the last 23 years we're seeing continuing to see innovation in the open source world as well as you know, on the commercial side and products that vendors like Akwa, you know, we continue to innovate, continue to write you ways for customers to validate that the application workloads that they're going to run are going to run securely in the cloud. >>Alright and lives. There's a new project that I know. Ah, you know, you Aqua are participating in Tell us a little bit about Starbird. You know what's what's the problem? It's helping solve and you know where that budget >>Yes, So stockholders, one of our open source initiatives coming out of my team are equal on, and the idea is to take security reporting information and turn it into a kubernetes native, uh, resources custom resources. And then that means the security information, your current security status could be queried over the kubernetes AP I, as you're querying the status or the deployment, say you can also be clearing to see whether it's passing configuration audits or it's passing vulnerability scans for the application containers inside that deployment. So that information is available through the same AP eyes through the queue control interface through dashboards like Octane, which is a nice dashboard viewer for kubernetes. And starboard brings security information not just from acquittals but from other vendor tools as well front and center into that kubernetes experience. So I'm really excited about Star Border. It's gonna be a great way of getting security visibility, Teoh more kubernetes use it >>all right. And we were talking earlier about just the maturity of projects and how they get into the sandbox. Is is this still pretty sandbox for >>this? OK, we're still very much in the early phases and you know it. I think in the open source world, we have the ability to share what we're doing early so that we can get feedback. We can see how it resonates with with real users. We've had some great feedback from partners that we've worked with and some actual customers who actually collaborated with When we're going through the initial design, some great feedback. There's still lots of work to do. But, yeah, the initial feedback has been really positive. >>Yeah, is usually the event is one of those places where you can help try toe, recruit some other people that might have tools as well as educate customers about what's going on. So is that part of the call to action on this is, you know, what are you looking for for kind of the rest of 2020 when it when it comes to this project? >>Yeah, absolutely. So internally, we're working on an operator which will automate some of the work that's double does in the background in terms off getting more collaboration. We would love to see integrations from or security tooling. We're talking with some people across the community about the resource definition, so we've come up with some custom resource definitions, but we'd love them to be applicable it to a variety of different tools. So we want to get feedback on on those definitions of people are interested in collaborating on that absolutely do come and talk to me and my team are reluctant. >>Great. Listen, and I'll give you the final word. Obviously, we're getting the community together while we're part So you know any other you know, engagement opportunities, you get togethers. Things that you want people to know about the European show this year. >>Well, it's gonna be really you know, I'm on tenterhooks to see whether or not we can recreate the same atmosphere as we would have in Q con. I mean, it won't be exactly the same, but I really hope that people will engage online. Do come and, you know, ask questions of the speakers. Come and talk to the vendors, get into slack channels with the community. You know, this is an opportunity to pretend we're in the same room. Let's let's let's do what we can Teoh recreate as close as we can. That community experience that you keep corn is famous for >>Yeah, absolutely. That whole way track is something that is super challenging to recreate. And there's no way that I am getting the Indonesian food that I was so looking forward to in Amsterdam just such a great culinary and cultural city. So hopefully sometime in the future will be able to be back there. Liz Rice. Always pleasure catching up with you. Thanks so much for all the work you're doing on the TOC. And always a pleasure talking to you. >>Thanks for having me. >>All right, Lots more coverage from Cube Con Cloud, Native con the European 2020 show, Of course. Virtual I'm stew minimum. And thank you for watching the Cube. Yeah, yeah, yeah, yeah.

Published Date : Aug 18 2020

SUMMARY :

It's the Cube with coverage of Coop Con Nice to see you if you know across the ocean. One of the things we always love to highlight its not only the the We're not the only voice, but, you know, part So it's it's really around the technology and the projects that we call you know, 1.0 state, which is the stamp of approval that, you know, this could be used in production. the projects, those of us on the TOC We're all pretty happy that we can Yeah, I actually, it brings up An interesting point is so you know, And one of the things that we saw it's like the landscape just for you to help, understand? that are outside of the CNC F family. As I said, Overall, it's been, you know, super important topic for years. And I think you know what you're touching on the fact that people are Ah, you know, you Aqua are participating and the idea is to take security reporting information and And we were talking earlier about just the maturity of projects and how they get into the sandbox. OK, we're still very much in the early phases and you know it. So is that part of the call to action on this is, you know, what are you looking for for people across the community about the resource definition, so we've come up with we're part So you know any other you know, engagement opportunities, Well, it's gonna be really you know, I'm on tenterhooks to see whether or not we can recreate in the future will be able to be back there. And thank you for watching the Cube.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Cheryl HungPERSON

0.99+

IBMORGANIZATION

0.99+

Liz RicePERSON

0.99+

Red HatORGANIZATION

0.99+

CopenhagenLOCATION

0.99+

AmsterdamLOCATION

0.99+

LizPERSON

0.99+

GoogleORGANIZATION

0.99+

Aqua SecurityORGANIZATION

0.99+

AkwaORGANIZATION

0.99+

Linux FoundationORGANIZATION

0.99+

two years agoDATE

0.99+

2020DATE

0.99+

This yearDATE

0.98+

Cube ConEVENT

0.98+

TOCORGANIZATION

0.98+

CherylPERSON

0.97+

over 30QUANTITY

0.97+

todayDATE

0.97+

firstQUANTITY

0.97+

bothQUANTITY

0.97+

more than oneQUANTITY

0.97+

KubeConEVENT

0.97+

OneQUANTITY

0.96+

this yearDATE

0.96+

oneQUANTITY

0.96+

Cube con Cloud Native Con EuropeEVENT

0.95+

doubleQUANTITY

0.95+

Native conEVENT

0.94+

Native Con Europe 2020 VirtualEVENT

0.93+

CN CFORGANIZATION

0.93+

Coop ConEVENT

0.92+

pandemicEVENT

0.92+

one thingQUANTITY

0.92+

OctaneTITLE

0.9+

Cube ConORGANIZATION

0.9+

Technical Oversight CommitteeORGANIZATION

0.88+

StarTITLE

0.88+

Cloud Native Computing FoundationORGANIZATION

0.88+

CubeORGANIZATION

0.88+

last 23 yearsDATE

0.85+

Cube Con CloudEVENT

0.84+

CN CFORGANIZATION

0.84+

AndiPERSON

0.83+

single vendorQUANTITY

0.83+

FirstQUANTITY

0.81+

SDOORGANIZATION

0.8+

IndonesianOTHER

0.8+

AquaORGANIZATION

0.79+

CloudNativeCon Europe 2020EVENT

0.79+

first technology radarQUANTITY

0.79+

a monthDATE

0.78+

StarbirdORGANIZATION

0.77+

StuPERSON

0.76+

Open Source EngineeringORGANIZATION

0.73+

coupleQUANTITY

0.71+

1.0 stateQUANTITY

0.71+

last couple of yearsDATE

0.69+

CNORGANIZATION

0.69+

SDOTITLE

0.67+

KPERSON

0.64+

CubeTITLE

0.64+

CloudEVENT

0.63+

KubernetesORGANIZATION

0.61+

EuropeanOTHER

0.54+

BorderORGANIZATION

0.54+

starboardTITLE

0.53+

European 2020EVENT

0.53+

CubeCOMMERCIAL_ITEM

0.41+

CFEVENT

0.3+

Jeff Brewer, Intuit & Liz Rice, Aqua Security | KubeCon + CloudNativeCon EU 2019


 

>> Live from Barcelona, Spain it's theCUBE. Covering KubeCon + CloudNativeCon Europe 2019. Brought to you by Red Hat, the Cloud Native Computing Foundation and ecosystem partners. >> Welcome back to theCUBE here in Barcelona, Spain at the Fira, it's KubeCon + CloudNativeCon 2019. I'm Stu Miniman and my co-hosts for two days of live wall-to-wall coverage is Corey Quinn. Joining us back, we have two CUBE alums, Liz Rice, right to my right here who is a Technology Evangelist with Aqua security. Liz, thank you so much welcome back. >> Pleasure to be here. >> And Jeff Brewer, Vice President and Chief Architect, Small Business & Self-Employed Group, of Intuit. A CUBE alum since a few hours ago this morning. >> Yes, yes, thank you. >> Jeff, welcome back. >> Thank you. >> So, we've got you back with a different hat. Everybody in our industry can definitely recognize we wear lots of different hats we have lots of jobs thrown at us. Both of you are in the Technical Oversight Committee and Liz is not only a member but also the Chairperson, President. (people laughing) >> President is definitely a promotion. But, yeah, I'm Chair of the committee. >> Maybe, as it's known, the TOC. Liz, before we get there, your shirt says +1 binding. You have to explain for us and did not get a preview before the interview, so we'll see where this goes. >> It's one of the perks of being on the TOC. When we have something that comes to a vote we want to get input from the community so we ask anyone in the community to vote. But unless you're a member of the TOC your vote is non-binding. As a member of the committee, we have binding votes. And the traditional thing you write on the voting email is +1 binding. So, it's a nice surprise to get a t-shirt when I joined the TOC. >> Very nice. Can you just give us, our audience, that might not be familiar with the TOC, give us some of the key things about it. >> It's the Technical Oversight Committee for the CNCF. We are, really, the technical curation of the projects that come in to the CNCF. Which projects will get support and at what level because we have the sandbox experimentation stage then incubation and then finally graduation for the really established and kind of, de-risked projects. So, we're really evaluating the projects and kind of making a decision collaboratively on which ones we want the CNCF to support. >> All right. So Jeff, we had a great conversation with you about Intuit's cloud journey. Tell us how you got involved in the TOC. We always love the end users, not just using but participating in and helping to give some governance over what the community is doing. >> Yeah, so, about a year and a half ago we made a decision to acquire a small company called Applatix. Who was, actually, already in the end user community. And also contributors as well. Through that acquisition, I was part of that acquisition, I led that acquisition from the Intuit side and really got excited about the Kubernetes and the KubeCon story overall. Through the Kubernetes experts, I met them at a KubeCon and they introduced me to a whole lot more of the community. Just through some overall partnerships with AWS and also spending a lot of time with end-users that's how I really got to know the community a little bit. And then, was voted onto the CNCF as an end user representative in January. >> Wonderful. As far as you're concerned, as you go through this, do you find it challenging at times to separate your roles professionally from working for a large company, to whom many things matter incredibly. Again, as mentioned earlier, I am one of your customers. I care very much about technical excellence, coming out of Intuit, versus your involvement with the larger project. >> Yeah, so like most people in technology companies I'm extremely busy and I would love to spend, I would love to clone myself and spend more (laughing) more time. >> Everybody wants to submit a client project to the TOC we will prioritize that one. >> Exactly, exactly. >> The way I really balance it is that I make an explicit time carve out for those two activities. And most importantly, I attend the meetings. The TOC meetings that we have, those are extremely important. We get a lot of project reviews in those meetings. Liz chairs those meetings. That's where I always make sure that my schedule is cleared for that. >> Taking it, I guess, one step further. Do you find it challenging at all to separate out, in fact, when you're making decisions and making votes, for example, that are presumably binding, +1 binding as we've learned now, is the terminology. Do you find that you are often pulled between trying to advocate for your company and advocating for the community or are they invariably aligned in your mind? >> I mean, my job's the easiest because I come from an end user. So what I use and what I consume is likely what the community at large. There might be some niches and stuff like that. But I usually don't have that conflict. I don't know, as more of a vendor, you might have more of a conflict. >> It's something that I have be conscious of. I just try to mentally separate. I have a role with a company that pays my salary but when I'm doing open-source things if I feel conflicted about. This hasn't really come up yet, but if I do feel that there's some kind of conflict of interest I will always recuse myself. Actually, in my previous role, as the Co-Chair for the Program Committee for the KubeCon and CloudNativeCon Conference, on a couple of occasions we had competitors submit, and I would always just step back from those. Because it's the right thing to do. >> All right. So Liz, there's quite a few projects now, under the umbrella of CNCF. If I've go it right, it was like, 38 different ones. When Brian went on the stage this morning, 16 in the sandbox, 16 incubating and six have graduated now. How do you manage that? You know, there's some in the community they're like, oh my gosh, reminds us of like, big tent, from some initiatives. Some other things here, how much is too much? How do you balance that and what's the input of the TOC? >> Yeah, so one of the things that we're doing with the TOC is we've just established a thing called the SIGs, the special interest groups. Very much following the same model of Kubernetes SIGs. But the idea here is that we can, kind of formalize getting experts in the community to help us with particular kind of areas. So, we've already got a storage and security SIG set up. We expect there will be probably four to six more coming on board during the year. And that helps us with things like the project reviews and the due diligence to just be able to say, we would really appreciate some help. Those groups are also really enthusiastic about kind of sharing knowledge in the form of things like white papers. I think it will be really important for end-users to be able to navigate their way around these projects. Quite often there is more than one solution for a particular thing. And being able to, in a non-vendor way, in a neutral way, express why project X is good in one circumstance and project Y would be better in a different environment. There's work to be done there and I'm hoping to see that come out. >> This is one of my passions as the end user representative, is that trail map or that road map. That's one of the reasons why we really have invested at Intuit, in the Kubernetes technology and the Cloud Native technology. We didn't just roll them out as is. We actually curate them and create, really, a paved road for our developers to navigate that space. >> Yeah, and as we heard from your story it's not always, well, if there's some overlap you use SDO and Hellman. >> Yeah. >> That there's a fit for both of those in your environment, right. >> Yeah. >> From a, I guess, an end user perspective is there a waiting difference between someone like Intuit and someone like Twitter for pets, where there's a slight revenue scale, a slight revenue difference, like scale difference, like everything difference. >> Yes. >> Certainly, there is. I think that, but that's one of the beautiful things about the Cloud Native technologies. You can consume what you need and what you want, right. It's not one size fits all. A lot of people talk about, oh, there's a paradox of choice, there's so many projects, right. Actually, that's a benefit. Really, all you need is that road map to navigate your way through that, rather than just adopting a paved road that might not work for everybody. >> It almost feels, to some extent, almost like the AWS Service Catalog. Whenever you wind up looking at all the things they offer. It feels like going out to eat at the Cheesecake Factory. Where there is 80 pages of menu to flip through with some advertisements, great. And reminding yourself, at time, that they are not Pokemon, you do not need to catch them all. It's, sometimes, a necessary step, as you start to contextualize this. >> That's one of the great things about having over 80 members in the end user is. You can find a buddy, you can find a company like you. Talk to them, get connected with them and figure out what they're doing and learn from them. The community is broad enough to be able to do that. >> All right, so Liz, let's talk about security. >> Okay. (people laughing) >> You said there's a SIG that started up. Where are we, how are things going and you can you share about where we're going in the near future? >> The SIG came together from a group of people who really wanted to make it easier for end-users to roll out their Cloud Native stacks in a secure fashion. We don't always, as a community, speak the same language about security, we don't always have the most secure settings by default. They really came together around this common interest of just making it easier for people to secure. I think a big part of that will be looking at how the different projects, are they applying best practices from a security perspective? Is there more they should do to document how to operate their particular project more securely? I think that whole initiative and that group of people who've come together for SIG security, I'm so impressed and so pleased that they have come together with that enthusiasm to help on that front. >> Any commentary on what you're seeing in this space? >> Yeah, so as an almost, a fintech company, with a lot of fintech and, you know, we're not quite a bank, but we have a lot of the same security and compliance things. That SIG is so, so important to us. And having a roadmap. I found a education is really, really a big part of it of the security experts, right. Because this is somewhat newer technology. Even though it's been in use at Google for a long time the regulator's, the compliance people, don't totally understand it, right. So you have to have a way to explain to them what's going on. So things like, open policy agent, something that we've adopted, helps us explain what's going on in our system. Once they get it, they're like, this is awesome and our end users can now, really, our end users, meaning the people that use QuickBooks and TurboTax can really trust that we have those guardrails in place. >> At Aqua, it's a huge concern from a lot of our customers. Many of whom, coming from that kind of finance industry. That they're coming to us and saying, well, how can I be PCI compliant or GDPR. How do I manage these requirements with my container based stack, with my Cloud Native stack. That's why there is this huge ecosystem quite a lot of effort around security, compliance, policy. >> It feels very much like it's two problems rolled into one. First, how do you make sure that data is secure in these things? Secondly, how do you effectively and responsibly communicate that to a regulator, who expects to be taken on a tour of a data center when they show up on site? (people laughing) I checked, they won't let you. >> There are definitely two sets of security people in my experience. There are a set of people who care about how will I get attacked. How will breaches happen. And there are other people who go, I have a checklist and I need to check the boxes in the checklist, tell me how. Sometimes those two things overlap, but not always. >> All right, Liz, lot of updates, as always. Jeff, I really appreciate your commentary there. Well, there's the paradox of choice but we have a lot of customers out there and therefore we do. (people chuckling) Any highlights you want to share with our audience? >> I think one thing that happens every year is we see more. Well, we saw Kubernetes graduate, I think, early last year, end of the previous year. Now we've got six projects into graduation. From my perspective, that says something about how mature this whole set of projects, this whole platform is becoming. Because graduation is a pretty high bar. Not least in terms of the number of end users that have to be using it in production. This is solid technology. >> Yeah, any highlights from you? >> I think, like we might have touched on a little bit this morning. But I think that usually the technologies that where you're facing the big problems is pretty obvious which one to use, right. Like serverless, you're going to go look at something like Knative or whatnot. Functions as a service. There's some open fast projects, whatnot, like that. SDO services mesh is another one where it's getting mature and it's getting to the point where you can have these ubiquitous service meshes throughout it. So, those are the areas that we're most looking at right now. >> Great, all right. Well, Liz and Jeff, thank you so much for joining us. Thanks for all the work you do on the Oversight Committee and appreciate you sharing the updates with our community. >> Thank you for having us. >> Thank you. >> For Cory Quinn, I'm Stu Miniman. We'll be back more, with theCUBE here at KubeCon + CloudNativeCon 2019. Thanks for watching. (upbeat music)

Published Date : May 21 2019

SUMMARY :

Brought to you by Red Hat, at the Fira, it's KubeCon President and Chief Architect, the Chairperson, President. President is definitely a promotion. Maybe, as it's known, the TOC. And the traditional thing you write on of the key things about it. of the projects that come in to the CNCF. We always love the end of the community. to separate your roles professionally I would love to spend, to submit a client project to the TOC I attend the meetings. and advocating for the community I mean, my job's the easiest because Because it's the right thing to do. 16 in the sandbox, 16 incubating the due diligence to just and the Cloud Native technology. Yeah, and as we heard from your story in your environment, right. and someone like Twitter for pets, one of the beautiful things at all the things they offer. in the end user is. All right, so Liz, (people laughing) and you can you share about where how the different projects, are of the same security That they're coming to that to a regulator, in the checklist, tell me how. and therefore we do. that have to be using it in production. to the point where you can have Thanks for all the work you do on We'll be back more, with theCUBE

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
JeffPERSON

0.99+

Jeff BrewerPERSON

0.99+

Corey QuinnPERSON

0.99+

Liz RicePERSON

0.99+

LizPERSON

0.99+

JanuaryDATE

0.99+

AWSORGANIZATION

0.99+

BrianPERSON

0.99+

Stu MinimanPERSON

0.99+

80 pagesQUANTITY

0.99+

IntuitORGANIZATION

0.99+

Cory QuinnPERSON

0.99+

Red HatORGANIZATION

0.99+

GoogleORGANIZATION

0.99+

sixQUANTITY

0.99+

CNCFORGANIZATION

0.99+

ApplatixORGANIZATION

0.99+

Cloud Native Computing FoundationORGANIZATION

0.99+

oneQUANTITY

0.99+

six projectsQUANTITY

0.99+

SIGORGANIZATION

0.99+

TOCORGANIZATION

0.99+

two daysQUANTITY

0.99+

BothQUANTITY

0.99+

FirstQUANTITY

0.99+

fourQUANTITY

0.99+

AquaORGANIZATION

0.99+

two problemsQUANTITY

0.99+

KubeConEVENT

0.99+

Barcelona, SpainLOCATION

0.99+

Barcelona, SpainLOCATION

0.99+

twoQUANTITY

0.99+

two activitiesQUANTITY

0.99+

over 80 membersQUANTITY

0.99+

Aqua SecurityORGANIZATION

0.99+

GDPRTITLE

0.99+

Technical Oversight CommitteeORGANIZATION

0.98+

two setsQUANTITY

0.98+

QuickBooksTITLE

0.98+

16QUANTITY

0.98+

SecondlyQUANTITY

0.97+

bothQUANTITY

0.97+

one thingQUANTITY

0.97+

one stepQUANTITY

0.96+

more than one solutionQUANTITY

0.96+

one circumstanceQUANTITY

0.95+

CloudNativeCon 2019EVENT

0.95+

TwitterORGANIZATION

0.95+

TurboTaxTITLE

0.95+

early last yearDATE

0.95+

KubernetesORGANIZATION

0.94+

about a year and a half agoDATE

0.93+

two thingsQUANTITY

0.92+

Technical Oversight CommitteeORGANIZATION

0.91+

CloudNativeCon EU 2019EVENT

0.9+

this morningDATE

0.89+

CloudNativeConEVENT

0.89+

CloudNativeCon Europe 2019EVENT

0.85+

Cheesecake FactoryORGANIZATION

0.85+

Liz Centoni, Cisco | Cisco Live EU 2019


 

>> Live from Barcelona, Spain. It's the queue covering Sisqo, Live Europe. Brought to you by Cisco and its ecosystem partners. >> Welcome back, Everyone Live here in Barcelona, Spain's two Cubes Coverage of Sisqo Live Europe. Twenty nineteen. I'm John Foreal echoes David Lock. Our next guest is Liz Santoni, senior vice president general manager of the Eye Okay Group at Cisco, formerly is part of the engineering team Cube Alumni. Great to see you again. Thanks for coming >> on. Great to be here, >> so you're >> just good to see you guys. >> You're in the centre. A lot of news. I ot of the network redefining networking on stage. We heard that talk about your role in the organization of Sisko and the product that you now have and what's going on here. >> So run R I O T business group similar to what we do with the end data center off that it has the engineering team product management team. We build products solutions that includes hardware, software, silicon. Take him out to market. Really an eye. OT It's about, you know, the technology conversation comes second. It's like, What can you deliver in terms of use, case and business outcomes that comes first, and it's more about what technology can enable that. So the conversations we have with customers are around. How can he really solve my kind of real problems? Everything from one a girl, my top line? I want to get closer to my customers because the closer I get to my customers, I know them better. So obviously can turn around and grow my top line. And I want to optimize everything from internal process to external process because just improves my bottom line at the end >> of the day. So you a lot of news happening here around your team. But first talk about redefining networking in context to your part, because edge of the network has always been what is, you know the edge of the network. Now it's extending further. I. O. T. Is one of those things that people are looking at a digit digitization standpoint, turning on Mohr intelligence with the factory floor or other areas. How how are how is I ot changing and what is it today? >> So you gave an example of, you know, digitizing something like a factory floor, right? So let's talk about that. So what customers in the factory floor want to do. They've already automated a number of this factory floors, but what they want to do is get more efficient. They want better eo. They want better quality. They want to bring security all the way down to the plant floor because the more and more you connect things, the more you just expanded your threat surface out pretty significantly so they want to bring security down to the plant floor. Because the's are environments that are not brand new, they have brown feel equipment there, green field equipment. They want to be able to have control of where what device gets in the network. With things like device profiling, they want to be able to do things like create zones so that they could do that with things like network segmentation. So when and if an attack does happen, they can contain the attack as much as possible. All right now what you need in terms ofthe a factory floor, automation, security, to be able to scale tohave that flexibility That's no different than what you have in the Enterprise already. I mean, we've been working with our idea and enterprise customers for years, and, you know, they it's about automation and security. It's about simplicity. Why not extend that out? The talent that it has, the capability that has it really is a connective tissue, that you're extending your network from that carpeted space, or you're clean space into outside of the office or into the non carpeted space. So it's perfect in terms of saying it's about extending the network into the nontraditional space that probably it doesn't go into today. >> Well, right. And it's a new constituency, right? So how are you sort of forging new relationships, new partnerships? What is described, what that's like with operations technology? >> I mean, that Cisco. We have great partnerships with the Tea organisation. I mean, we've got more than eight hundred forty thousand customers and our sales teams are product. Teams do a good job in terms of listening to customers. We're talking more and more to the line of business. We're talking more and more to the operational teams >> because of the end of >> the day. I want to be candid. You know, going to a manufacturing floor. I've never run a plan. Floor right? There are not very many people in the team who conceived in a plant manager before they know they're processes. They're concerned about twenty four seven operation. Hey, I want to be in compliance with the fire marshal, physical safety of my workers. We come in with that. I p knowledge that security knowledge that they need it's a partnership. I mean, people talk about, you know, t convergence. Usually convergence means that somebody's going to lose their job. This is Maura Night, an OT partnership, and most of these digitization efforts usually come in for the CEO level. Laura Chief Digitization Officer. We've got good relationships there already. Second part is Sister has been in this. We're quite some time. Our team's already have relationships at the plant level at the grid level operator level. You know, in the in the oil and gas area what we need to build more and more of that because building more and more that is really understanding. What business problems are they looking to solve? Then we can bring the technology to it. >> Liz, what's that in the Enable Menu? Mission Partnership? That's a good point. People, you know, someone wins, someone loses. The partnership is you're enabling your bringing new capability into the physical world, from wind wind farms to whatever What is the enablement look like? What are some of the things that happen when you guys come into these environments that are being redefined and reimagined? Or for the first time, >> Yeah, I would say, you know, I use what our customers said this morning and what he said was, it has the skills that I >> need, all right. >> They have the eyepiece skills. They have a security seals. These are all the things that I need. I want my guys to focus on kind of business processes around things that they know best. And so we're working with a CZ part of what we're putting this extended enterprise extending in ten based networking to the i o T edge means ight. Hee already knows our tools are capabilities. We're now saying we can extend that Let's go out, figure out what those use cases are together. This is why we're working with the not just the working with our channel partners as well. Who can enable these implementations on i o t implementations work? Well, >> part of >> this is also a constant, you know learning from each other. We learned from the operational teams is that hey, you can start a proof of concept really well, but he can really take it to deployment unless you address things around the complexity, the scale and the security. That's where we can come in and help. >> And you can't just throw your switches and routers over the fence. And so okay, here you go. You have to develop specific solutions for this world, right? And when you talk about that a little bit, absolutely. So >> if you look at the networking industrial networking portfolio that we have, it's built on the same catalysts, itis our wireless, a peace, our firewall. But they're more customized for this non carpeted space, right? You've got to take into consideration that these air not sitting in a controlled environment, so we test them for temperature, for shock, for vibration. But it's also built on the same software. So we're talking about the same software platform. You get the same automation features you get, the same analytics features. It's managed by DNA center. So even though we're customizing the hardware for this environment, the software platform that you get is pretty much the same, so it can come in and manage both those environments. But it also needs an understanding of what, What's the operational team looking to solve for? >> Because I want to ask you about the psychology of the buyer in this market because OT there run stuff that's just turn it on. But in the light ball, make it work. Well, I got to deploy something, so they're kind of expectations might be different. Can you share what the expectations are for the kind of experience that they wanna have with Tech? >> I used a utility is a great example and our customer from energy. I think, explain this really well, this is thing that we learned from our customers, right? I haven't been in a substation. I've been in a data center multiple times, but I haven't been in a substation. So when they're talking about automating substation, we work with customers. We've been doing this over the last ten years. We've been working with that energy team for the last two years. They taught us, really, how they secure and managing these environments. You're not going to find a CC in this environment, So when you want to send somebody out to like sixty thousand substations and you want to check on Hey, do do I still have VPN connectivity? They're not going to be able to troubleshoot it. What we did is based on the customer's ask, put a green light on there and led that shines green. All the technician does is look at it and says it's okay. If not, they called back in terms of trouble shooting it. It was just a simple example of where it's. It's different in terms of how they secure and manage on the talent that they have is different than what's in the space. So you've got to make sure that your products also cover what the operational teams need because you're not dealing with the C. C A. Or the I P experts, >> a classic market fit product market fit for what they're expecting correct led to kick around with green light. I mean, >> you know, everybody goes that such an easy thing inside was >> not that perceptive to us. >> What's the biggest thing you've learned as you move from Cisco Engineering out to the new frontier on the edge here? What? What are the learnings that you've seen actually growing mark early. It's only going to get larger, more complicated, more automation. Morey, I'm or things. What's your learning? What have you seen so far? That's the takeaway. >> So I'll see, you know, be I'm still an Cisco Engineering. The reason we're in Coyote is that a secure and reliable network that it's the foundation of any eye. Ot deployment, right? You can go out and best buy the best sensor by the best application by the best middle where. But if you don't have that foundation that's secure and reliable, those, Iet projects are not going to take off. So it's pretty simple. Everyone's network is thie enabler of their business outcome, and that's why we're in it. So this is really about extending that network out, but at the same time, understanding. What are we looking to solve for, right? So in many cases we worked with third party party hers because some of them know these domains much better than we do. But we know the AIP wear the eye patch and the security experts, and we bring that to the table better than anybody else. >> And over the top, definite showing here for the second year that we've covered it here in definite zone, that when you have that secure network that's programmable really cool things and develop on top of it. That's what great opportunity >> this is. I'm super excited that we now have an i o. T. Definite in. You know, it's part of our entire Cisco. Definite half a million developers. You know, Suzy, we and team done a fabulous job. There's more and more developers going to be starting to develop at the I o. T edge at the edge of the network. Right. So when you look at that is our platforms today with dioxin saw on top of it. Make this a software platform that developers Khun can actually build applications to. It's really about, you know, that we're ready. Highest fees and developers unleashing those applications at the i o. T edge. And with Susie making that, you know, available in terms of the tools, the resource is the sand box that you can get. It's like we expect to see more and more developers building those applications at the >> edge. We gotta talk about your announcements, right? Oh, >> yeah. Exciting set >> of hard news. >> So we launch for things today as part of Extending Ibn or in ten based networking to the I. O. T. S. The first one is we've got three new Cisco validated design. So think of a validated design as enabling our customers to actually accelerate their deployments. So our engineering teams try to mimic a CZ muchas possible a customer's environment. And they do this pre integration, pre testing of our products, third party products and we actually put him out by industry. So we have three new ones out there for manufacturing, for utilities and for mode and mobile assets. That's one. The second one is we're launching two new hardware platforms on next generation catalysts Industrial Ethernet switch. It's got modularity of interfaces, and it's got nine expansion packs. The idea is making as flexible as possible for a customer's deployment, because these boxes might sit in an environment not just for three years, like in a campus, they could sit there for five for seven for ten years. So, as you know, they are adding on giving them that flexibility that concave a bit based system and just change the expansion modules. We also launch on next generation industrial router. Actually, is the industries probably first and only full six capable industrial router, and it's got again flexibility of interfaces. We have lt. We have fiber. We have copper. You want deal? Lt. You can actually slap an expansion pack right on top of it. When five G comes in, you just take the Lt Munch a lot. You put five G, so it's five G ready >> engines on there >> and it's based on Io Exit us sexy. It's managed by DNA center and its edge enabled. So they run dialects. You, Khun, build your applications and load him on so >> you can >> build them. Third >> parties have peace here. >> The definite pieces. That third one is where we now have, you know, and I OT developer center in the definite zone. So with all the tools that are available, it enables developers and IAS peas, too. Actually, we build on top of Io Axe today. In fact, we actually have more than a couple of three examples that are already doing that. And the fourth thing is we depend on a large ecosystem of channel partners, So we've launched an Io ti specialization training program to enable them to actually help our customers implementation go faster. So those are the four things that we brought together. The key thing for us was designing these for scale flexibility and security >> capabilities available today. Is that right? >> Absolutely. In fact, if you go in worshipping in two weeks and you can see them at the innovation showcase, it's actually very cool. >> I was going to mention you brought ecosystem. Glad you brought that. I was gonna ask about how that's developing. I could only imagine new sets of names coming out of the industry in terms of building on these coyotes since his demand for Io ti. It's an emerging market in terms of newness, with a lot of head room. So what's ecosystem look like? Missouri patterns and Aya's vsv ours as they take the shape of the classic ecosystem? Or is it a new set of characters? Or what's the makeup of the >> island's ecosystem, >> I would say is in many ways, if you've been in the eye ot world for sometime, you'll say, You know, it's not like there's a whole new set of characters. Yes, you have more cloud players in there, you You probably have more s eyes in there. But it's been like the distributor's Arvin there. The machine builders thie ot platforms. These folks have been doing this for a long time. It's more around. How do you partner and where do you monetize? We know where you know the value we bring in we rely on. We work very closely with this OT partners machine builders s eyes the cloud partners to go to market and deliver this. You're right. The market's going to evolve because the whole new conversation is around. Data. What do I collect? What do I computer the edge? Where do I go around it to? Should I take it to my own premises? Data centers. Should I take it to the cloud who gets control over the data? How do I make sure that I have control over the data as a customer and I have control over who gets to see it? So I think this will be a revolving conversation. This is something we're enabling with one of our Connecticut platforms, which are not launch. It's already launched in terms of enabling customers to have control over the data and managed to bring >> all the portfolio of Cisco Security Analytics management to the table that puts anything in the world that has power and connectivity to be a device to connect into its system. This is the way it's just I mean, how obvious going Beat commits a huge >> I'm grateful that it's great that you think it's obvious. That's exactly what we're trying to tell our customers. >> How to do is >> about extending >> the way >> we do. It's the playbook, right? Each business has its own unique. There's no general purpose. Coyote is their correct pretty much custom because, um, well, thanks for coming on this. Appreciate it when I ask you one final question. You know, I was really impressed with Karen. Had a great session on wall kind of session yesterday. Impact with women. We interviewed you a Grace offered twenty fifteen. Cisco's doing amazing work. You take a minute to talk about some of the things that Cisco's doing around women in computing. Women in stem. Just great momentum, great success story, great leadership. >> I would say Look at her leadership at Chuck's level, and I think that's a great example in terms of He brings people on, depending on what they can, what they bring to the table, right? They just happened to be a lot of women out there. And the reality is I work for a company that believes in inclusion, whether it's gender race, different experiences, different a different thoughts, different perspective because that's what truly in terms of you can bring in the culture that drives that innovation. I've been sponsoring our women in science and engineering, for I can't remember the last for five years. It's a community that continues to grow, and and the reality is we don't sit in there and talk about, you know, what was me and all the things they're happening. What we talk about is, What are the cool new technologies that are out there? How do I get my hands on him? And yeah, there we talk about some things where women are little reticent and shy to do so. What we learn from other people's experiences, many time the guy's air very interested. So what? You sit them there and talking to said, Trust me, it's not like a whining and moaning section. It's more in terms of where we learned from each other >> years talking and sharing ideas, >> absolute >> innovation and building things. >> And we've got, you know, you look we look around that's a great set of women leaders throughout the company. At every single level at every function. It's ah, it's It's great to be there. We continue to sponsor Grace offer. We have some of the biggest presence at Grace Offer. We do so many other things like connected women within the company. It's just a I would say fabulous place to be. >> You guys do a lot of great things for society. Great company, great leadership. Thank you for doing all that's phenomenal. We love covering it, too. So we'll be affect cloud now today in Silicon Valley. Women in data science at Stanford and among them the >> greatest passion of our things. Straight here. >> Thanks for coming on this. The Cube live coverage here in Barcelona. Francisco Live twenty eighteen back with more. After the short break, I'm jump area with evil Aunt. Be right back

Published Date : Jan 30 2019

SUMMARY :

Brought to you by Cisco and its ecosystem partners. Great to see you again. I ot of the network redefining networking on So run R I O T business group similar to what we do with the end data center So you a lot of news happening here around your team. the more and more you connect things, the more you just expanded your threat surface out pretty significantly So how are you sort of forging new relationships, Teams do a good job in terms of listening to customers. in the in the oil and gas area what we need to build more and more of that because building more and more What are some of the things that happen when you guys come into these environments They have the eyepiece skills. teams is that hey, you can start a proof of concept really well, but he can really take it to deployment And you can't just throw your switches and routers over the fence. You get the same automation features you get, the same analytics features. Because I want to ask you about the psychology of the buyer in this market because OT there run environment, So when you want to send somebody out to like sixty thousand substations and a classic market fit product market fit for what they're expecting correct led to kick around with green light. What are the learnings that you've seen actually growing mark early. So I'll see, you know, be I'm still an Cisco Engineering. that when you have that secure network that's programmable really cool things and develop on top the resource is the sand box that you can get. We gotta talk about your announcements, right? Exciting set Actually, is the industries probably first So they run dialects. build them. And the fourth thing is we Is that right? In fact, if you go in worshipping in two weeks and you can see them at the I was going to mention you brought ecosystem. How do I make sure that I have control over the data as a customer and I have control over who gets all the portfolio of Cisco Security Analytics management to the table that puts I'm grateful that it's great that you think it's obvious. It's the playbook, right? can bring in the culture that drives that innovation. And we've got, you know, you look we look around that's a great set of Thank you for doing all that's greatest passion of our things. After the short break, I'm jump area with evil Aunt.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
CiscoORGANIZATION

0.99+

KarenPERSON

0.99+

LauraPERSON

0.99+

Liz SantoniPERSON

0.99+

Liz CentoniPERSON

0.99+

ChuckPERSON

0.99+

Silicon ValleyLOCATION

0.99+

fiveQUANTITY

0.99+

three yearsQUANTITY

0.99+

BarcelonaLOCATION

0.99+

SusiePERSON

0.99+

Barcelona, SpainLOCATION

0.99+

SuzyPERSON

0.99+

Cisco EngineeringORGANIZATION

0.99+

GracePERSON

0.99+

LizPERSON

0.99+

Eye Okay GroupORGANIZATION

0.99+

David LockPERSON

0.99+

ten yearsQUANTITY

0.99+

four thingsQUANTITY

0.99+

sevenQUANTITY

0.99+

first oneQUANTITY

0.99+

yesterdayDATE

0.99+

Each businessQUANTITY

0.99+

one final questionQUANTITY

0.99+

firstQUANTITY

0.98+

more than eight hundred forty thousand customersQUANTITY

0.98+

twoQUANTITY

0.98+

ArvinPERSON

0.98+

sixty thousand substationsQUANTITY

0.98+

five yearsQUANTITY

0.98+

two weeksQUANTITY

0.98+

CoyoteORGANIZATION

0.98+

second yearQUANTITY

0.98+

second oneQUANTITY

0.98+

todayDATE

0.98+

twenty fifteenQUANTITY

0.98+

bothQUANTITY

0.97+

third oneQUANTITY

0.97+

nine expansion packsQUANTITY

0.96+

fourth thingQUANTITY

0.96+

first timeQUANTITY

0.95+

Second partQUANTITY

0.95+

oneQUANTITY

0.94+

Twenty nineteenQUANTITY

0.94+

tenQUANTITY

0.94+

EuropeLOCATION

0.92+

MohrORGANIZATION

0.92+

about twenty four sevenQUANTITY

0.92+

KhunORGANIZATION

0.92+

Cube AlumniORGANIZATION

0.92+

secondQUANTITY

0.92+

John ForealPERSON

0.9+

SiskoORGANIZATION

0.89+

three examplesQUANTITY

0.88+

six capable industrial routerQUANTITY

0.87+

half a million developersQUANTITY

0.86+

single levelQUANTITY

0.85+

last two yearsDATE

0.85+

last ten yearsDATE

0.84+

KhunPERSON

0.83+

I o. T edgeORGANIZATION

0.83+

ConnecticutLOCATION

0.82+

SisqoORGANIZATION

0.81+

three new onesQUANTITY

0.8+

StanfordORGANIZATION

0.79+

CubesORGANIZATION

0.79+

GraceORGANIZATION

0.79+

more than a coupleQUANTITY

0.78+

two new hardware platformsQUANTITY

0.77+

threeQUANTITY

0.75+

ThirdQUANTITY

0.75+

MissouriLOCATION

0.75+

Lt MunchORGANIZATION

0.75+

five GCOMMERCIAL_ITEM

0.74+

DNAORGANIZATION

0.73+

Cisco LiveEVENT

0.72+

TeaORGANIZATION

0.7+

Liz Centoni, Cisco | Cisco Live EU 2019


 

>> Live, from Barcelona, Spain, it's theCUBE! Covering Cisco Live! Europe brought to you by Cisco and its ecosystem partners. >> Welcome back everyone, live here, in Barcelona, Spain, it's theCUBE's coverage of Cisco Live! Europe 2019, I'm John Furrier my co-host Dave Vellante, our next guest is Liz Centoni, Senior Vice President, General Manager of the IoT group at Cisco, formerly as part of the engineering team, Cube alumni, great to see you again, thanks for coming on! >> Great to be here, always good to see you guys. >> So you're in the center of a lot of news, IOT, edge of the network, redefining networking on stage, we heard that, talk about your role in the organization of Cisco and the products that you now have and what's goin' on here. >> So I run our IoT Business group. Similar to what we do with EN, data center, all of that, it has the engineering team, product management team, we build products, solutions, that includes hardware, software, silicon, take 'em out to market, really in IoT it's about you know, the technology conversation comes second. It's like, what can you deliver in terms of use case, and business outcomes that comes first. And it's more about what technology can enable that, so the conversations we have with customers are around, how can you really solve my kind of real problems. Everything from, I want to grow my top line, I want to get closer to my customers, because the closer I get to my customers, I know them better, so obviously, I can turn around and grow my top line. And I want to optimize everything from internal process to external process, because just improves my bottom line at the end of the day. >> So a lot of news happening here around your team, but first, talk about redefining networking in context to your part because, edge of the network has always been, what is, you know, edge of the network, now it's extending further, IoT is one of those things that people are looking at from a digitization standpoint, turning on more intelligence, with a factory floor or other areas, how is IoT changing and what is it today? >> So you gave an example of you know, digitizing something like a factory floor. Right, so let's talk about that. So what do customers on the factory floor want to do? They've already automated a number of this factory floors, but what they want to do is get more efficient. They want better EL, they want better quality. They want to bring security all the way down to the plant floor, 'cause the more and more you connect things, the more you've just expanded your threat surface out pretty significantly. So they want to bring security down to the plant floor because these are environments that are not brand new they had brown field equipment they had green field equipment. They want to be able to have control over what device gets on the network with things like device profiling. They want to be able to do things like, create zones so that they can do that with things like network segmentation so when and if an attack does happen, they can contain the attack as much as possible alright? Now, what you need in terms of a factory floor, automation, security, to be able to scale, to have that flexibility, that's no different than what you have in the enterprise already. I mean we've been working with our IT and enterprise customers for years, and you know, they, it's about automation and security, it's about simplicity. Why not extend that out, the talent that IT has, the capability that it has, it really is a connective tissue that you're extending your network from that carpeted space, or your clean space into outside of the office, or into the non-carpeted space so it's perfect in terms of saying, it's about extending the network into the non-traditional space that probably IT doesn't go into today. >> Well right and it's a new constituency, right? So, how are you sort of forging new relationships, new partnerships, what is, describe what that's like, with the operations technology folks. >> I mean at Cisco, we have great partnerships with the IT organization, right? I mean we've got more than 840,000 customers and our sales teams, our product teams do a good job in terms of listening to customers. We're talking more and more to the line of business, we're talking more and more to the operational teams. Because at the end of the day, I want to be candid. You know, going to a manufacturing floor, I've never run a plant floor, right? There are not very many people in the team who can say, I've been a plant manager before. They know their processes, they're concerned about 24/7 operation, hey I want to be in compliance with the fire marshal. Physical safety of my workers. We come in with that IP knowledge, that security knowledge that they need. It's a partnership, I mean people talk about IT and OT convergence, usually, convergence means that, mm, somebody's going to lose their job, this is more and IT and OT partnership. And most of these digitization efforts, usually come in for the CIO level or a chief digitization officer, we've got good relationships there already. The second part is, Cisco's been in this for quite some time our teams already have relationships at the plant level at the grid level, operator level, you know, in the oil and gas area, but we need to build more and more of that. Because building more and more of that is really understanding what business problems are they looking to solve? Then we can bring the technology to it. >> Liz, what's that in the enablement, you mentioned partnership, 'cause that's a good point, 'cause people think, oh, someone wins, someone loses, the partnership is you're enabling, you're bringing new capability into the physical world, you know, from wind farms to whatever. What does the enablement look like, what are some of the things that happen when you guys come into these environments that are being redefined and re-imagined or for the first time? >> Yeah I would say, you know, I'd use what our customer said this morning. And what he said was, IT has the skills that I need alright? They have the IP skills, they have the security skills. These are all the things that I need. I want my guys to focus on kind of business processes. Around things that they know best. And so, we're working with IT as part of what we're putting this extended enterprise, extending Intent-Based Networking to the IoT edge means, IT already knows our tools, our capabilities, we're now saying, we can extend that, let's go out, figure out what those use cases are together, this is why we're working with, not just the IT, we're working with our channel partners as well, who can enable these implementations on IoT implementations work well. Part of this is also a constant, you know, learning from each other. We learned from the operational teams is that, hey you can start a proof of concept really well, but you can't really take it to deployment unless you address things around the complexity, the scale and the security, that's where we can come in and help. >> And you can't just come in and throw your switches and routers over the fence and say, okay, here you go. You have to develop specific solutions for this world right? And can you talk about that a little bit? And tell us what you're doing here? >> Absolutely, so, if you look at the networking, industrial networking portfolio that we have, it's built on the same catalyst, ISR, wireless APs or firewall, but they're more customized for this non-carpeted space, right? You've got to take into consideration that these are not sitting in a controlled environment. So, we test them for temperature, for shock, for vibration, but it's also built on the same software, so we're talking about the same software platform, you get the same automation features, you get the same analytics features, it's managed by DNA center, so, even though we're customizing the hardware for this environment, the software platform that you get, is pretty much the same, so IT can come in and manage both those environments, but IT also needs an understanding of what's the operational team looking to solve for? >> Liz, I want to ask you about the psychology of the buyer in this market. Because OT, they're running stuff that's just turnin' on, put in the lightbulb, make it work, what I got to deploy something? So their kind of expectations might be different, can you share what the expectations are, for the kind of experience that they want to have with that? >> I use utility as a great example. And our customer from Ennogie, I think explained this really well. This is thing that we learned from our customers right? I haven't been in a sub station, I've been in a data center multiple times, but I haven't been in a sub station, so when they're talking about automating sub station, we work with customers, we've been doing this over the last 10 years, we've been working with that Ennogie team for the last two years, they taught us really, how they secure and manage in these environments. You're not going to find a CCIE in this environment. So when you want to send somebody out to like 60,000 sub stations, and you want to check on, hey do I still have VPN connectivity? They're not going to be able to troubleshoot it. What we did is based on the customer's ask, put a green light on their LED that shines green, all the technician does is look at it and says, it's okay. If not, they call back in terms of troubleshooting it. It was just a simple example of where, it's different in terms of how they secure and manage and the talent that they have is different than what's in the IT space, so you've got to make sure that your products also cover what the operational teams need, because you're not dealing with the CCIE or the IP expert. >> So it's the classic market fit, product market fit for what they're expecting. >> Correct. >> LEDs, you can't go wrong with a green light, I mean. (laughter) >> You know, everybody goes, that's such an easy thing, it's like well, it was not that perceptive to us. >> What's the biggest thing you've learned as you've moved from Cisco engineering out to the new frontier on the edge here, what are the learnings that you've seen, obviously growing mark early, it's only going to get large and more complicated, more automation, more AI, more things, what's your learnings, what have you seen so far that's a takeaway? >> So I'll say, I'm still in Cisco engineering. The reason we're in IoT is that, a secure and reliable network, that's the foundation of any IoT deployment alright? You can go out and buy the best sensor, buy the best application buy the best middleware, but if you don't have that foundation, that's secure and reliable, those IoT projects are not going to take off, so it's pretty simple, everyone's network is the enabler of their business outcome, and that's why we're in it. So this is really about extending that network out, but at the same time, understanding what are we looking to solve for, right? So in many cases, we work with third party partners, 'cause some of them know these domains much better than we do, but we know the IP, we are the IP and the security experts, and we bring that to the table better than anybody else. >> And over the top, DevNet showing here for the second year that we've covered it, here in DevNet zone, that when you have that secure network that's programmable, really cool things can develop on top of it, that's a great opportunity. >> Yeah, this is, I'm super excited that we now have an IoT DevNet. You know, as part of our entire Cisco DevNet. Half a million dev-opers you know, Susie Wee and team done a fabulous job. There's more and more dev-opers going to be starting to develop at the IoT edge, at the edge of the network, right? So when you look at that as, our platforms today with IRX on top of it, make this a software platform that dev-opers can actually build applications to, it's really about, you know, we're ready, ISVs and dev-opers unleashing those applications at the IoT edge. And with Susie making that, you know, available in terms of the tools, the resources, the sandbox that you can get, it's like, we expect to see more and more dev-opers building those applications at the edge. >> We got to talk about your announcements, right, so. >> Oh yeah, exciting set of announcements. >> What's the hard news? >> So we launched four things today as part of extending IBN, or Intent-Based Networking to the IoT edge, the first one is, we've got three new Cisco-validated designs. So think of a validated design as enabling our customers to actually accelerate their deployments, so our engineering teams try to mimic, as much as possible, a customer's environment. And they do this pre-integration, pre-testing of our products, third party products. And we actually put 'em out by industry. So we have three new ones out there for manufacturing, for utilities, and for remote and mobile assets, that's one. The second one is we're launching two new hardware platforms, a next-generation catalyst industrial ethernet switch, it's for modularity of interfaces, and it's got nine expansion packs. The idea is, make it as flexible as possible for a customer's deployment. Because these boxes might sit in an environment not just for three years like in a campus, they could sit there for five, for seven, for 10 years. So as you know, they, adding on, giving them that flexibility, they can be a base system and just change the expansion modules, we also launched our next-generation industrial router. It actually is the industry's probably first and only full IPV Six-capable industrial router. And it's got, again flexibility of interfaces, we have LTE, we have fiber, we have copper, you want dual LTE you can actually slap an expansion pack right on top of it. When 5G comes in, you just take the LTE module out, you put 5G, so it's 5G ready. >> Expansions on there. >> And it's based on IOSXC, it's managed by DNA Center, and it's edge-enabled, so they run IOX, you can build your applications, and load 'em on. So we can build 'em, third parties can build 'em. >> And the DevNet piece here as well. >> And the DevNet piece is the third one where we now have, you know, an IoT dev-oper center in the DevNet zone, so with all the tools that are available, it enables dev-opers and ISVs to actually build on top of IOX today. In fact, we actually have more than a couple of three examples that are already doing that. And the fourth thing is, we depend on a large ecosystem of channel partners, so we've launched an IoT specialization training program to enable them to actually help our customers' implementation go faster. >> Mhm. >> So those are the four things that we brought together. The key thing for us was, designing these for scale, flexibility, and security. >> And are these capabilities available today is that right? >> Absolutely, in fact, if you go in, we're shipping in two weeks! And you can see them at the innovation showcase, it's actually very cool. >> I was going to mention, you brought up the ecosystem, glad you brought that up, I was going to ask about how that's developing, I could only imagine new sets of names coming out of the industry in terms of building on these IOTs since this demand for IOT, it's an emerging market in terms of newness, with a lot of head room, so what's the ecosystem look like, is there a pattern, is it ISVs, VARs, does it take the shape of the classic ecosystem or is it a new set of characters or, what's the makeup of the ecosystem? >> Yeah, it's I would say it's, in many ways, if you've been in the IoT world for some time, you'll say, you know, it's not like there's a whole new set of characters. Yes, you have more cloud players in there, you probably have more SIs in there, but it's been like, the distributors are in there, the machine-builders, the OT platforms, these are folks who've been doing this for a long time. It's more around, how do you partner, and where do you monetize? We know where you know, the value we bring in, we rely on, we work very closely with those OT partners, machine-builders, SIs, the cloud partners, to go to market and deliver this. You're right, the market's going to evolve, because the whole new conversation is around data. What do I collect, what I compute at the edge? Where do I route it to, should I take it to my on-premise's data centers, should I take it to the cloud? Who gets control over that data, how do I make sure that I have control over the data as the customer, and I have control over who gets to see it. So I think this will be a evolving conversation. This is something we're enabling with one of our Kinetic platforms, which are not launched, it's already launched in terms of enabling customers to have control over the data and manage the data as well. >> And bringing all the portfolio of Cisco security analytics, management to the table, that puts anything in the world that has power and connectivity to be a device to connect into a system, this is the, I mean how obvious can it be? It's going to be huge! >> It's great that you think it's obvious, that's exactly what we're tryin' to tell our customers-- >> How to do it-- >> Well this is about extending this out. >> Yeah, how do we do it's the playbook right? So, each business has its own unique, there's no general purpose IoT is there? >> Correct. >> It's pretty much on a custom custom-- well thanks for coming on Liz, appreciate it. Want to ask you one final question. You know, I was really impressed with Karen had a great session, Karen Walker had a great session yesterday, impact with women, we interviewed you at Grave Hopper in 2015. Cisco's doing amazing work, can you take a minute to talk about some of the things that Cisco's doing around women in computing, women in STEM, just great momentum, great success story and great leadership. >> I would say look at our leadership at Chuck's level, and I think that's a great example in terms of, he brings people on depending on what they can, what they bring to the table, right? They just happen to be a lot of women out there, and the reality is, I work for a company that believes in inclusion, whether it's gender, race, different experiences, different thoughts, different perspectives because, that's where truly, in terms of, you can bring in the culture that drives that innovation. I've been sponsoring our Women in Science and Engineering for I can't remember, the last four or five years. It's a community that continues to grow. And, the reality is, we don't sit in there and talk about, you know, woe is me, and all the things that are happening, what we talk about is, hey what are the cool new technologies that are out there, how do I get my hands on 'em? And yeah, there are, we talk about some things where women are a little reticent and shy to do, so what we learn from other peoples' experiences, many time the guys are very interesting, so what do you sit down there and talk, and I said trust me it's not like, a whining and moaning session, it's more in terms of where we learn from each other. >> Peers talking and sharing ideas-- >> Absolutely. >> Of innovation and building things. >> Yep, and we've got, you know, we look around and we've got a great set of woman leaders throughout the company at every single level in every function. It's great to be there, we continue to sponsor our Grace Hopper, we have some of the biggest presence at Grace Hopper, we do so many other things like connected women within the company. It's just a, I would say, fabulous place to be. >> You guys do a lot of great things for society, great company, great leadership, thank you for doing all of that, it's phenomenal, we love covering it too, so, we'll be at the cloud now today in Silicon Valley, Women in Data Science at Stanford, and among other great things. >> It's definitely a passion of ours. >> Yeah. (talking over each other) >> Awesome, that's great to hear. >> Thanks for coming on, this is theCUBE, live coverage here in Barcelona for Cisco Live! 2018, back with more after this short break, I'm John Furrier with Dave Vellante, be right back. (upbeat music)

Published Date : Jan 29 2019

SUMMARY :

Europe brought to you by Cisco in the organization of Cisco and the products the closer I get to my customers, than what you have in the enterprise already. So, how are you sort of forging new relationships, Because at the end of the day, I want to be candid. the physical world, you know, from wind farms to whatever. They have the IP skills, they have the security skills. And can you talk about that a little bit? the same software platform, you get the same for the kind of experience that they want to have with that? and the talent that they have is different So it's the classic market fit, product market fit LEDs, you can't go wrong with a green light, I mean. it's like well, it was not that perceptive to us. the IP, we are the IP and the security experts, And over the top, DevNet showing here the sandbox that you can get, the expansion modules, we also launched you can build your applications, and load 'em on. And the fourth thing is, we depend on a large ecosystem So those are the four things that we brought together. And you can see them at the innovation showcase, You're right, the market's going to evolve, Want to ask you one final question. And, the reality is, we don't sit in there Yep, and we've got, you know, great company, great leadership, thank you Thanks for coming on, this is theCUBE,

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Dave VellantePERSON

0.99+

KarenPERSON

0.99+

Karen WalkerPERSON

0.99+

fiveQUANTITY

0.99+

CiscoORGANIZATION

0.99+

Liz CentoniPERSON

0.99+

2015DATE

0.99+

three yearsQUANTITY

0.99+

EnnogieORGANIZATION

0.99+

LizPERSON

0.99+

SusiePERSON

0.99+

John FurrierPERSON

0.99+

ChuckPERSON

0.99+

Silicon ValleyLOCATION

0.99+

BarcelonaLOCATION

0.99+

sevenQUANTITY

0.99+

Susie WeePERSON

0.99+

second partQUANTITY

0.99+

firstQUANTITY

0.99+

four thingsQUANTITY

0.99+

10 yearsQUANTITY

0.99+

60,000 sub stationsQUANTITY

0.99+

yesterdayDATE

0.99+

Grace HopperORGANIZATION

0.99+

Barcelona, SpainLOCATION

0.99+

third oneQUANTITY

0.99+

two weeksQUANTITY

0.99+

more than 840,000 customersQUANTITY

0.98+

one final questionQUANTITY

0.98+

bothQUANTITY

0.98+

DNA CenterORGANIZATION

0.98+

IOSXCTITLE

0.98+

Grave HopperORGANIZATION

0.98+

CubeORGANIZATION

0.98+

Half a millionQUANTITY

0.97+

first oneQUANTITY

0.97+

todayDATE

0.97+

fourth thingQUANTITY

0.97+

second oneQUANTITY

0.96+

second yearQUANTITY

0.96+

IOXTITLE

0.95+

secondQUANTITY

0.94+

theCUBEORGANIZATION

0.94+

first timeQUANTITY

0.94+

each businessQUANTITY

0.93+

oneQUANTITY

0.93+

threeQUANTITY

0.9+

two new hardware platformsQUANTITY

0.9+

StanfordLOCATION

0.88+

more than a coupleQUANTITY

0.87+

DevNetTITLE

0.87+

three examplesQUANTITY

0.86+

Senior Vice PresidentPERSON

0.86+

last two yearsDATE

0.86+

nine expansion packsQUANTITY

0.85+

this morningDATE

0.85+

5GQUANTITY

0.83+

Cisco Live! 2018EVENT

0.81+

lastDATE

0.8+

DevNetORGANIZATION

0.79+

three new onesQUANTITY

0.79+

last 10 yearsDATE

0.74+

Six-capableQUANTITY

0.71+

Liz Rice, KubeCon + CloudNativeCon | KubeCon 2018


 

>> Live from Seattle, Washington it's theCUBE covering KubeCon and CloudNativeCom North America 2018. Brought to you by Red Hat the cloud-native computing foundation and its ecosystem partner. >> Welcome back everyone, it's theCUBE's live coverage here in Seattle of KubeCon and CloudNativeCon 2018. I'm John Furrier, with Stu Miniman, host of theCUBE. Three days of live coverage. Wall to wall, 8000 people here. Doubled from the previous event in North America, expanding globally, we are here with Liz Rice, technology analyst, evangelist at Aqua Security and program co-chair here at KubeCon, CloudNativeCon. Liz, thanks for joining us. >> Thank you for having me. >> I know you had a busy day, keynotes and all. A lot of activity, a lot of hand shaking, walking around, very crowded. >> It is, we're packed. We're absolutely at capacity here and the event sold out and it's busy. >> A lot of energy, real quick, I know you guys did a lot of work, you guys always do a great job, exceptional performance again. >> Thank you. >> CNCF does a great job on the content programming. It's about the open source communities. That's fundamental, a lot of end users, both participating and consuming. Vendor list is expanding. Putting the program together gets challenging when you have these kind of numbers. What were the themes? How did you put it all together? What was resonating? What's the focus? >> Yeah, it was so hard, we had so many applications that we could only accept 13%, which makes it almost impossible some of the decisions you have to make. And some of the things that were coming out, were like Knative, a lot of submissions around Knative. Serverless in general obviously being quite a hot topic, I would say across our industry. Really great talks from end users and we've seen a few on the keynote stage. Where some brands that we're all aware of, people like Airbnb, sharing their stories of what they've done to make their deployments, their cloud-native deployments, their use of kubernetes successful. So it's not just working from the ties, and doing some experiments, they are telling us how they've done this for real. >> You had a very successful KubeCon in Copenhagen. And so how did you integrate from Copenhagen to here. What were some of the inefficiencies? Obviously, the bigger numbers here. You recently had China the success where, we've reported on SiliconANGLE, the open source consumption and contribution is off the charts. It's huge, it's growing and it's a new dynamic. So between China, and Copenhagen, here, interesting things happening. >> China was phenomenal for me. It was my first trip to China, so it was eye-opening in all sorts of respects. And one of the really interesting things there was the use of machine learning. The uses of kube flow, real life examples. Again I think there is something about how much data they've been able to collect in China. But we heard some really great stories of, for example, electricity companies using machine learning on kubernetes to predict demand. It was fascinating. >> It's a lot of adoption. >> Yes. >> They are at the front end, they are a mobile culture. IOT is booming over there, it's just massive. >> Absolutely. >> Alright here in Seattle, obviously Seattle home of AWS, and I was just talking to some folks here locally in Seattle, just this morning, they said they think this is the biggest conference of the year here in Seattle. Which is really telling where you guys have come from. Interesting dynamic. A lot of new ecosystem partners. What's happening? It seems to be energy, the buzz. There's a subtext here that's buzzing around the hallways. What's the most important thing that people should be taking away from this event this year? >> I think the scale of it is coming from real adoption and businesses that are moving their applications into the cloud. Public cloud and hybrid cloud and finding success through doing that with cloud native components. You mentioned the end users who want to be part of the community, and they actually wanted to contribute to the community. You can look around the hall and see booths from, like Uber's over there. They're really contributing to this community. It's not just a bunch of enthusiasts, it's for real. >> Problems being solved, real company end users. >> So Liz, one of the things we've been looking at this is not a monolith here. You've actually got a whole lot of communities. As I've been wandering the floor, if I'm talking to people. We had Matt come on to talk about Envoy and they had their own conference at the beginning of the week and they had 250 people. As I'm wandering around, you talk to a number and it's like oh, I'm here all about Helm. You know there's different service meshes all over the place that everybody is talking about. >> Yeah another big theme. >> You're heavily focused on the security aspects there. I believe you've got a project that Aqua has been involved in. It was kube-hunter if I've got it. Maybe before you talk about kube-hunter, maybe just talk about balancing, this isn't one community, it's gotten really big. Do we need to break this into a micro-services space show? We'll have the core, but lots of other things and spread it out all over the world. >> Sure, it's a real challenge as this community is growing so fast and trying to keep the community feel. Balancing what the contributors want to do and making sure they're getting value and having the conversations they want, but also enabling the vendors, and the end users, and every constituent part to get something good out of this conference. It's a challenge as this gets bigger. There's no kind of, if this doubles again, will it feel the same? That's hard to imagine. So we got to think carefully about how-- >> We've seen that happen and it would not, even from last year to this year was a big change for a lot of people. >> For sure. >> So kube-hunter tell us about that. >> Yeah, kube-hunter, yes, kube-hunter is one of our open source projects at Aqua. It's basically penetration testing for kubernetes clusters, so it's written in Python. It attempts to make network requests looking for things like the open ports. It will tell you if you got some misconfigurations, 'cause a lot of the security issues with kubernetes can come about through poor configuration. And the other thing you can do, you can run it from externally to your cluster. You can also run it inside a pod inside your cluster and then that's simulating what might happen if an attacker got into your cluster, what could they do from there. They compromised a pod which could happen to a software vulnerability. Once they're in the pod, how vulnerable are you? What's the blast radius of that attack? And kube-hunter can help you see whether it's a complete disaster or actually fairly contained. >> Alright, Liz how are we doing from a security standpoint? We've watched the rise of containers over the last few years. And it's like okay wait do I need to put in some kind of lightweight VM? Do I do something there? What can I trust? What do I do? At AWS Reinvent a couple of weeks ago, there's the whole container marketplace. Feels like we are making progress but still plenty of work to do. >> Right, right, container security has lots of parts to it as you go through the life cycle of a container. Actually at AWS Reinvent, Aqua was recognized as having, I think they called it competency. Which I think it's a bit better than competency in container security. >> That's a complement I believe. >> Yeah, really complement, really competent. I think as community on the open source level, there are lots of good things happening. For example, the defaults in kubernetes have been getting better and better. If you are an enterprise, and particularly if you're a financial user, or a media company, or a government organization, you have much stronger requirements from a security perspective and that's where the open source tooling on its own may not be sufficient, and you may need to plug in commercial solutions like Aqua to really beef that up. And also to provide that end to end security right from when you're building your image through to the run time protection which is really powerful. >> Security has got to be built in from the beginning. Let me get your thoughts on end user traction and the huge demand for what end users are doing. I know you guys are seeing on the program side, the Linux foundation, CNC was talking about trying to get more case studies. We're seeing the end users prominent here. You mentioned Uber, Apple's here. A bunch of other companies, they're here. So end users are not only just contributing, they are also consuming. How are the new enterprises that are coming in consuming and interacting and engaging with kubernetes? Where are they on the IQ, if you will, level and what are they engaging on? Kubernetes has matured a bit and ready. It's been deployed, people using it. People gathering around it, but now people are starting to consume and deploy it at different scales. What's the end user uptake? What's the hot areas? What do you see the most people digging in? >> Great question, so I think we are seeing a lot of, particularly, I want to say like mature start-ups, so the Ubers and the Airbnbs and the Lyfts. They've got these massive scaled technology problems, and kubernetes is giving them, and the whole cloud-native community around it, it's giving them the ability to do these kind of custom things that they need to do. The kind of weird and wonderful things. They can add whatever adaptations they need, that maybe they wouldn't get if they were in a traditional architecture. So they're kind of the prominent voices that we are hearing right now. But at Aqua we are seeing some of these, maybe what you might call more traditional businesses like banks. They want to replicate that. They want to shape functionality really quickly. They are seeing challenges from upstart and they want to compete. So they know they've got to shift functionality quickly. They've got to do continuous deployment. Containers enable that. The whole cloud-native world enables that and that's where the adoption's from. >> They can take the blueprints from the people who built it from the ground up, the large scale startups, cloud-native in the beginning, and kind of apply the traditional IT kind of approach with the same tooling and the same platform. >> And we are seeing some interesting things around making that easier. So things like the CNAB, the cloud-native application bundling, that is coming out at Microsoft and Docker are involved in that. I think that's all to do with making it easier for enterprises to just go, yeah, this is the application I want to run it in the cloud. >> So let me ask you a question around the customer end users that we see coming onboard, because you have the upstream kind of community, the downstream benefits are impacting certainly IT and then developers, right? The classic developers, IT is starting to reimagine their infrastructure. All the goodness with cloud, and machine learning, and application is being redefined. It's changing the investment. So in 2019, what's your view on how companies are shaping their investment strategy to IT investment or technology investment strategies with cloud-native? Because this is a real trend that you just pointed out. Okay I'm a big company and I've used the old way and now I want the new way. So there's a lot of okay, instant start. Turn the key, does it run? There's a lot of managed services here, so the new persona of customer. How does that impact their investment, IT investments in your mind? What are you seeing please share any color commentary around that? >> I'm sure we're all aware that we're seeing shifts away from the traditional data center into public cloud which has implications around opex rather than capex. And I guess following on from that people worrying about whether vendor lock-in is a thing. Should they be just adopting in one public cloud or perhaps putting their eggs across different baskets? Should they be using these managed platforms? We have all these different distributions, we have these different managed solutions for kubernetes, there's a lot of choice out there. I think it's going to be interesting to see how that shapes out over the next few years. Are all these different distributions going to find a niche or how's that going to work? >> Matt Klein had a great observation. He was on earlier today from Lyft. He says look to solve a problem, use the tech to solve a problem, and then iterate, build on that. It's iteration mull of dev, ops. I think that's a good starting point. There's no magic silver bullet here. There's no magic answer, I think it's more of just get in there and get it going. The other question I have for you is 2019 prediction for kubernetes. What's going to happen this coming year? We're seeing this picture now, 8000 people, diverse audience. >> Yeah. >> What's the prediction 2019 for kubernetes? >> Oh, great question. I think maybe broader than just kubernetes, but the kind of cloud-native. Because kubernetes is like Janet said in her keynote this morning it's essentially boring. It kind of does what it's supposed to do now. I think what's going to be interesting is seeing those other pieces around it and above it, the improved developer experiences making it easier for companies to adopt. Maybe some of these choices around things like what service mesh you're going to use. How you're going to implement your observability. How you're going to deploy all this stuff without needing to hire 20 super detailed experts. We've got all the experts in this stuff. They're kind of here. The early adopters, great. Maybe that next wave, how are they going to be able to take advantage of this cloud-native? >> I think the programmability is key. Well great to have-- >> I think a big part of that is actually is going to be serverless. The ease of using serverless rather than the flexibility you get out of-- >> The millisecond latency around compute, yeah it's great. Well thanks for coming on, really appreciate it. Final question for you, what surprised you this year? Is there one thing that jumped out at you that you didn't expect? Good, bad or ugly? Great show here, it was packed. The waiting list was like 1500. What was the surprise this year from a program standpoint? >> I think actually the nicest surprise was the contribution of Phippy and all those lovely characters from Phippy Goes to the Zoo and those characters being donated by Microsoft, Matt Butcher and Karen Chu's work, was terrific. And it's just beautiful, just lovely. >> That's awesome, thanks so much Liz. Appreciate Liz right here. Program co-chair at KubeCon, CloudNativeCon, also technology evangelist at Aqua Security. That's her day job and her other job, she's running the content programming which is very huge here. Congratulations, I know it's tough work, a great job. >> Thank you very much. >> It's theCUBE coverage, breaking down all the action here at KubeCon and CloudNativeCon. I'm John Furrier and Stu Miniman, stay with us. Three days of wall-to-wall coverage. We're only on day two, we've got a whole nother day. A lot of great stories coming out of here and great content. Stay with us for more after this short break. (upbeat music)

Published Date : Dec 12 2018

SUMMARY :

Brought to you by Red Hat the cloud-native Doubled from the previous I know you had a busy and the event sold out and it's busy. a lot of work, you guys It's about the open source communities. some of the decisions you have to make. and contribution is off the charts. And one of the really They are at the front end, of the year here in Seattle. You mentioned the end users who want real company end users. So Liz, one of the and spread it out all over the world. and having the conversations they want, for a lot of people. 'cause a lot of the security over the last few years. of parts to it as you go and you may need to plug and the huge demand for and the whole cloud-native and kind of apply the traditional IT I think that's all to All the goodness with I think it's going to What's going to happen this coming year? and above it, the improved Well great to have-- rather than the flexibility that you didn't expect? from Phippy Goes to the she's running the content programming all the action here at

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Matt KleinPERSON

0.99+

JanetPERSON

0.99+

Liz RicePERSON

0.99+

SeattleLOCATION

0.99+

Stu MinimanPERSON

0.99+

MicrosoftORGANIZATION

0.99+

AppleORGANIZATION

0.99+

John FurrierPERSON

0.99+

2019DATE

0.99+

Karen ChuPERSON

0.99+

UberORGANIZATION

0.99+

ChinaLOCATION

0.99+

Matt ButcherPERSON

0.99+

LizPERSON

0.99+

13%QUANTITY

0.99+

Three daysQUANTITY

0.99+

North AmericaLOCATION

0.99+

MattPERSON

0.99+

AWSORGANIZATION

0.99+

Red HatORGANIZATION

0.99+

250 peopleQUANTITY

0.99+

CopenhagenLOCATION

0.99+

DockerORGANIZATION

0.99+

UbersORGANIZATION

0.99+

KubeConEVENT

0.99+

Seattle, WashingtonLOCATION

0.99+

first tripQUANTITY

0.99+

8000 peopleQUANTITY

0.99+

last yearDATE

0.99+

AquaORGANIZATION

0.99+

Aqua SecurityORGANIZATION

0.99+

CNCFORGANIZATION

0.98+

oneQUANTITY

0.98+

this yearDATE

0.98+

1500QUANTITY

0.98+

CloudNativeConEVENT

0.98+

KnativeORGANIZATION

0.98+

LyftsORGANIZATION

0.98+

20 super detailed expertsQUANTITY

0.98+

AirbnbORGANIZATION

0.98+

PythonTITLE

0.98+

AirbnbsORGANIZATION

0.97+

CloudNativeCon 2018EVENT

0.97+

bothQUANTITY

0.96+

PhippyPERSON

0.96+

LyftORGANIZATION

0.96+

this morningDATE

0.96+

day twoQUANTITY

0.95+

Phippy Goes to the ZooTITLE

0.95+

CloudNativeCom North America 2018EVENT

0.94+

theCUBEORGANIZATION

0.93+

one thingQUANTITY

0.93+

capexORGANIZATION

0.9+

CNCORGANIZATION

0.89+

SiliconANGLEORGANIZATION

0.86+

this coming yearDATE

0.85+

AWS ReinventORGANIZATION

0.85+

earlier todayDATE

0.83+

couple of weeks agoDATE

0.83+

Liz Rice, Aqua Security & Janet Kuo, Google | KubeCon + CloudNativeCon EU 2018


 

>> Announcer: Live from Copenhagen, Denmark, it's theCUBE. Covering KubeCon and CloudNativeCon Europe 2018. Brought to you by the Cloud Native Computing Foundation and its ecosystem partners. >> Hello, everyone. Welcome back to theCUBE's exclusive coverage here in Copenhagen, Denmark for KubeCon 2018, part of the CNCF Cloud Native Compute Foundation, which is part of the Linux Foundation. I'm John Furrier, your host. We've got two great guests here, we've got Liz Rice, the co-chair of KubeCon and CloudNativeCon, kind of a dual naming because it's Kubernetes and it's Cloud Native and also technology evangelist at Aqua Security. She's co-chairing with Kelsey Hightower who will be on later today, and CUBE alumni as well, and Janet Kuo who is a software engineer at Google. Welcome to theCUBE, thanks for coming on. >> Yeah, thanks for inviting us. >> Super excited, we have a lot of energy even though we've got interviews all day and it's kind of, we're holding the line here. It's almost a celebration but also not a celebration because there's more work to do with Kubernetes. Just the growth of the CNCF continues to hit some interesting good performance KPIs on metrics. Growth's up on the membership, satisfaction is high, Kubernetes is being called a de facto standard. So by all kind of general qualitative metrics and quantitative, it's doing well. >> Lauren: It's doing great. >> But it's just the beginning. >> Yeah, yeah. I talked yesterday a little bit in, in the keynote, about project updates, about how Kubernetes has graduated. That's a real signal of maturity. It's a signal to the end-user companies out there that you know, the risk, nothing is ever risk-free, but you know, Kubernetes is here to stay. It's stable, it's got stable governance model, you know, it's not going away. >> John: It's working. >> It's going to continue to evolve and improve. But it's really working, and we've got end users, you know, not only happy and using it, they're prepared to come to this conference and share their stories, share their learnings, it's brilliant. >> Yeah, and Janet also, you know, you talk about China, we have announcement that, I don't know if it's formally announced, but Shanghai, is it out there now? >> Lauren: It is. >> Okay, so Shanghai in, I think November 14th, let me get the dates here, 14th and 15th in Shanghai, China. >> Janet: Yeah. >> Where it's going to be presented in either English or in Chinese, so it's going to be fully translated. Give us the update. >> Yeah, it will be fully translated, and we'll have a CFP coming soon, and people will be submitting their talks in English but they can choose to present either in English or Chinese. >> Can you help us get a CUBE host that can translate theCUBE for us? We need some, if you're out there watching, we need some hosts in China. But in all seriousness, this is a global framework, and this is again the theme of Cloud Native, you know. Being my age, I've seen the lift and shift IT world go from awesome greatness to consolidation to VMwares. I've seen the waves. But this is a different phenomenon with Cloud Native. Take a minute to share your perspectives on the global phenomenon of Cloud Native. It's a global platform, it's not just IT, it's a global platform, the cloud, and what that brings to the table for end users. >> I think for end users, if we're talking about consumers, it actually is, well what it's doing is allowing businesses to develop applications more quickly, to respond to their market needs more quickly. And end users are seeing that in more responsive applications, more responsive services, improved delivery of tech. >> And the businesses, too, have engineers on the front lines now. >> Absolutely, and there's a lot of work going on here, I think, to basically, we were talking earlier about making technology boring, you know, this Kubernetes level is really an abstraction that most application developers don't really need to know about. And making their experience easier, they can just write their code and it runs. >> So if it's invisible to the application developer, that's the success. >> That's a really helpful thing. They shouldn't have to worry about where their code is running. >> John: That's DevOps. >> Yeah, yeah. >> I think the container in Kubernetes technology or this Cloud Native technology that brings developer the ability to, you know, move fast and give them the agility to react to the business needs very quickly. And also users benefit from that and operators also, you know, can manage their applications much more easily. >> Yeah, when you have that abstraction layer, when you have that infrastructure as code, or even this new abstraction layer which is not just infrastructure, it's services, micro-services, growth has been phenomenal. You're bringing the application developer into an efficiency productivity mode where they're dictating the business model through software of the companies. So it's not just, "Hey build me something "and let's go sell it." They're on the front lines, writing the business logic of businesses and their customers. So you're seeing it's super important for them to have that ability to either double down or abandon quickly. This is what agile is. Now it's going from software to business. This, to me, I think is the highlight for me on this show. You see the dots connecting where the developers are truly in charge of actually being a business impact because they now have more capability. As you guys put this together and do the co-chair, do you and Kelsey, what do you guys do in the room, the secret room, you like, "Well let's do this on the content." I mean, 'cause there's so much to do. Take us through the process. >> So, a little bit of insight into how that whole process works. So we had well over 1,000 submissions, which, you know, there's no, I think there's like 150 slots, something like that. So that's a pretty small percentage that we can actually accept. We had an amazing program committee, I think there were around 60 people who reviewed, every individual reviewer looked at a subset. We didn't ask them to look at all thousand, that would be crazy. They scored them, that gave us a kind of first pass, like a sort of an ability to say, "Well, anything that was below average, "we can only take the top 15%, "so anything that's below average "is not going to make the cut." And then we could start looking at trying to balance, say, for example, there's been a lot of talk about were there too many Istio talks? Well, there were a lot of Istio talks because there were a lot of Istio submissions. And that says to us that the community wants to talk about Istio. >> And then number of stars, that's the number one project on the new list. I mean, Kubeflow and Istio are super hot. >> Yeah, yeah, Kubeflow's another great example, there are lots of submissions around it. We can't take them all but we can use the ratings and the advice from the program committee to try and assemble, you know, the best talks to try and bring different voices in, you know, we want to have subject matter experts and new voices. We want to have the big name companies and start-ups, we wanted to try and get a mix, you know. A diversity of opinion, really. >> And you're a membership organization so you have to balance the membership needs with the content program so, challenging with given the growth. I mean, I can only imagine. >> Yeah, so as program co-chairs, we actually have a really free hand over the content, so it's one of the really, I think, nice things about this conference. You know, sponsors do get to stand on stage and deliver their message, but they don't get to influence the actual program. The program is put together for the community, and by doing things like looking at the number of submissions, using those signals that the community want to talk about, I hope we can carry on giving the attendees that format. >> I would just say from an outsider perspective, I think that's something you want to preserve because if you look at the success of the CNCF, one thing I'm impressed by is they've really allowed a commercial environment to be fostered and enabled. But they didn't compromise the technical. >> Lauren: Yeah. >> And the content to me, content and technical tracks are super important because content, they all work together, right? So as long as there's no meddling, stay in your swim lane, whatever, whatever it is. Content is really important. >> Absolutely, yeah. >> Because that's the learning. >> Yeah, yeah. >> Okay, so what's on the cut list that you wish you could have put back on stage? Or is that too risque? You'll come back to that. >> Yeah. >> China, talk about China. Because obviously, we were super impressed last year when we went to go visit Alibaba just to the order of magnitude to the cultural mindset for their thinking around Cloud Native. And what I was most impressed with was Dr. Wong was talking about artistry. They just don't look at it as just technology, although they are nerdy and geeky like us in Silicon Valley. But they really were thinking about the artistry 'cause the app side of it has kind of a, not just design element to the user perspective. And they're very mobile-centric in China, so they're like, they were like, "This is what we want to do." So they were very advanced in my mind on this. Does that change the program in China vis a vis Seattle and here, is there any stark differences between Shanghai and Copenhagen and Seattle in terms of the program? Is there a certain focus? What's the insight into China? >> I think it's a little early to say 'cause we haven't yet opened the CFP. It'll be opening soon but I'm fully expecting that there will be, you know, some differences. I think the, you know, we're hoping to have speakers, a lot more speakers from China, from Asia, because it's local to them. So, like here, we tried to have a European flavor. You'll see a lot of innovators from Europe, like Spotify and the Financial Times, Monzo Bank. You know, they've all been able to share their stories with us. And I think we're hoping to get the same kind of thing in China, hear local stories as well. >> I mean that's a good call. I think conferences that do the rinse and repeat from North America and just slap it down in different regions aren't as effective as making it localized, in a way. >> Yeah. >> That's super important. >> I know that a lot of China companies, they are pretty invested pretty heavily into Kubernetes and Cloud Native technology and they are very innovative. So I actually joined a project in 2015 and I've been collaborating with a lot of Chinese contributors from China remotely on GitHub. For example, the contributors from Huawei and they've been invested a lot in this. >> And they have some contributors in the core. >> Yeah, so we are expecting to see submissions from those contributors and companies and users. >> Well, that's super exciting. We look forward to being there, and it should be excellent. We always have a fun time. The question that I want to ask you guys now, just to switch gears is, for the people watching who couldn't make it or might watch it on YouTube on Demand who didn't make the trip. What surprised you here? What's new, I'm asking, you have a view as the co-chair, you've seen it. But was there anything that surprised you, or did it go right? Nothing goes perfect. I mean, it's like my wedding, everything happens, didn't happen the way you planned it. There's always a surprise. Any wild cards, any x-factors, anything that stands out to you guys? >> So what I see from, so I attend, I think around five KubeCons. So from the first one it's only 550 people, only the small community, the contributors from Google and Red Hat and CoreOS and growing from now. We are growing from the inner circle to the outside circle, from the just contributors to also the users of it, like and also the ecosystem. Everyone that's building the technology around Cloud Native, and I see that growth and it's very surprising to me. We have a keynote yesterday from CERN and everyone is talking about their keynote, like they have I think 200 clusters, and that's amazing. And they said because of Kubernetes they can just focus on physics. >> Yeah, and that's a testimonial right there. >> Yeah. >> That was really good stories to hear, and I think maybe one of the things that surprises me, it sort of continues to surprise me is how collaborative, it's something about this kind of organization, this conference, this whole kind of movement, if you like. Where companies are coming in and sharing their learnings, and we've seen that, we've seen that a lot through the keynotes. And I think we see it on the conference floor, we see it in the hallway chat. And I think we see it in the way that the different SIGs and working groups and projects are all, kind of, collaborating on problem solving. And that's really exciting. >> That's why I was saying earlier in the beginning that there's a celebration amongst ourselves and the community. But also a realization that this is just the beginning, it's not a, it's kind of like when you get venture funding if you're a start-up. That's really when it begins, you don't celebrate, but you take a little bit of a pause. Now my personal take only to all of the hundreds of events we do a year is that I that think this community here has fought the hard DevOps battle. If you go back to 2008 timeframe, and '08, '09, '10, '11, '12, those years were, those were hyper scale years. Look at Google, Facebook, all the original DevOps engineers, they were eating glass and spitting nails. It was hard work. And it was really build your own, a lot of engineering, not just software development. So I think this, kind of like, camaraderie amongst the DevOps community saying, "Look, this is a really big "step up function with Kubernetes." Everyone's had some scar tissue. >> Yeah, I think a lot of people have learned from previous, you know, even other open source projects that they've worked on. And you see some of the amazing work that goes into the kind of, like, community governance side. The things that, you know, Paris Pittman does around contributor experience. It's so good to see people who are experts in helping developers engage, helping engineers engage, really getting to play that role. >> There's a lot of common experiences for people who have never met each other because there's people who have seen the hard work pay with scale and leverage and benefits. They see it, this is amazing. We had Sheryl from Google on saying, "When I left Google and I went out into the real world, "I was like, oh my God, "they don't actually use Borg," like, what? "What do they, how do they actually write software?" I mean, so she's a fish out of water and that, it's like, so again I think there's a lot of commonality, and it's a super great opportunity and a great community and you guys have done a great job, CNCF. And we hope to nurture that, the principles, and looking forward to China. Thanks for coming on theCUBE, we appreciate it. >> Yeah. >> Okay we're here at CNCF's KubeCon 2018, I'm John Furrier, more live coverage. Stay with us, day two of two days of CUBE coverage. Go to thecube.net, siliconangle.com for all the coverage. We'll be back, stay with us after this short break.

Published Date : May 3 2018

SUMMARY :

Brought to you by the Cloud Native Computing Foundation Welcome back to theCUBE's exclusive coverage Just the growth of the CNCF continues to hit It's a signal to the end-user companies out there It's going to continue to evolve and improve. let me get the dates here, 14th and 15th in Shanghai, China. Where it's going to be presented but they can choose to present either in English or Chinese. and this is again the theme of Cloud Native, you know. to respond to their market needs more quickly. And the businesses, too, have engineers I think, to basically, we were talking earlier So if it's invisible to the application developer, They shouldn't have to worry about that brings developer the ability to, you know, the secret room, you like, And that says to us that the community that's the number one project on the new list. to try and assemble, you know, the best talks so you have to balance the membership needs but they don't get to influence the actual program. I think that's something you want to preserve And the content to me, content and technical tracks that you wish you could have put back on stage? just to the order of magnitude to the cultural mindset I think the, you know, we're hoping to have speakers, I think conferences that do the rinse and repeat and Cloud Native technology and they are very innovative. Yeah, so we are expecting to see submissions anything that stands out to you guys? from the just contributors to also the users of it, And I think we see it in the way that the different SIGs and the community. It's so good to see people who are experts and looking forward to China. Go to thecube.net, siliconangle.com for all the coverage.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
LaurenPERSON

0.99+

Liz RicePERSON

0.99+

JohnPERSON

0.99+

JanetPERSON

0.99+

2015DATE

0.99+

HuaweiORGANIZATION

0.99+

Janet KuoPERSON

0.99+

AsiaLOCATION

0.99+

Cloud Native Computing FoundationORGANIZATION

0.99+

ChinaLOCATION

0.99+

Linux FoundationORGANIZATION

0.99+

John FurrierPERSON

0.99+

Monzo BankORGANIZATION

0.99+

EuropeLOCATION

0.99+

November 14thDATE

0.99+

WongPERSON

0.99+

Silicon ValleyLOCATION

0.99+

North AmericaLOCATION

0.99+

2008DATE

0.99+

CERNORGANIZATION

0.99+

thecube.netOTHER

0.99+

yesterdayDATE

0.99+

FacebookORGANIZATION

0.99+

siliconangle.comOTHER

0.99+

Kelsey HightowerPERSON

0.99+

GoogleORGANIZATION

0.99+

SpotifyORGANIZATION

0.99+

150 slotsQUANTITY

0.99+

hundredsQUANTITY

0.99+

Cloud NativeTITLE

0.99+

last yearDATE

0.99+

ShanghaiLOCATION

0.99+

KelseyPERSON

0.99+

Copenhagen, DenmarkLOCATION

0.99+

Aqua SecurityORGANIZATION

0.99+

KubeConEVENT

0.99+

two daysQUANTITY

0.99+

SherylPERSON

0.99+

Financial TimesORGANIZATION

0.99+

CNCFORGANIZATION

0.99+

theCUBEORGANIZATION

0.99+

EnglishOTHER

0.99+

CUBEORGANIZATION

0.99+

Paris PittmanPERSON

0.99+

200 clustersQUANTITY

0.98+

Shanghai, ChinaLOCATION

0.98+

15%QUANTITY

0.98+

first oneQUANTITY

0.98+

KubeCon 2018EVENT

0.98+

ChineseOTHER

0.98+

'09DATE

0.98+

14thDATE

0.98+

CNCF Cloud Native Compute FoundationORGANIZATION

0.98+

Red HatORGANIZATION

0.98+

'10DATE

0.98+

IstioORGANIZATION

0.98+

'11DATE

0.97+

'12DATE

0.97+

over 1,000 submissionsQUANTITY

0.96+

15thDATE

0.96+

550 peopleQUANTITY

0.96+

around 60 peopleQUANTITY

0.96+

Dr.PERSON

0.95+

Show Wrap | CloudNativeSecurityCon 23


 

>> Hey everyone. Welcome back to theCUBE's coverage day two of CloudNative Security CON 23. Lisa Martin here in studio in Palo Alto with John Furrier. John, we've had some great conversations. I've had a global event. This was a global event. We had Germany on yesterday. We had the Boston Studio. We had folks on the ground in Seattle. Lot of great conversations, a lot of great momentum at this event. What is your number one takeaway with this inaugural event? >> Well, first of all, our coverage with our CUBE alumni experts coming in remotely this remote event for us, I think this event as an inaugural event stood out because one, it was done very carefully and methodically from the CNCF. I think they didn't want to overplay their hand relative to breaking out from CUBE CON So Kubernetes success and CloudNative development has been such a success and that event and ecosystem is booming, right? So that's the big story is they have the breakout event and the question was, was it a good call? Was it successful? Was it going to, would the dog hunt as they say, in this case, I think the big takeaway is that it was successful by all measures. One, people enthusiastic and confident that this has the ability to stand on its own and still contribute without taking away from the benefits and growth of Kubernetes CUBE CON and CloudNative console. So that was the key. Hallway conversations, the sessions all curated and developed properly to be different and focused for that reason. So I think the big takeaway is that the CNCF did a good job on how they rolled this out. Again, it was very intimate event small reminds me of first CUBE CON in Seattle, kind of let's test it out. Let's see how it goes. Again, clearly it was people successful and they understood why they're doing it. And as we commented out in our earlier segments this is not something new. Amazon Web Services has re:Invent and re:Inforce So a lot of parallels there. I see there. So I think good call. CNCF did the right thing. I think this has legs. And then as Dave pointed out, Dave Vellante, on our last keynote analysis was the business model of the hackers is better than the business model of the industry. They're making more money, it costs less so, you know, they're playing offense and the industry playing defense. That has to change. And as Dave pointed out we have to make the cost of hacking and breaches and cybersecurity higher so that the business model crashes. And I think that's the strategic imperative. So I think the combination of the realities of the market globally and open source has to go faster. It's good to kind of decouple and be highly cohesive in the focus. So to me that's the big takeaway. And then the other one is, is that there's a lot more security problems still unresolved. The emphasis on developers productivity is at risk here, if not solved. You saw supply chain software, again, front and center and then down in the weeds outside of Kubernetes, things like BIND and DNS were brought up. You're seeing the Linux kernel. Really important things got to be paid attention to. So I think very good call, very good focus. >> I would love if for us to be able to, as the months go on talk to some of the practitioners that actually got to attend. There were 72 sessions, that's a lot of content for a small event. Obviously to your point, very well curated. We did hear from some folks yesterday who were just excited to get the community back together in person. To your point, having this dedicated focus on CloudNativesecurity is incredibly important. You talked about, you know, the offense defense, the fact that right now the industry needs to be able to pivot from being on defense to being on offense. This is a challenging thing because it is so lucrative for hackers. But this seems to be from what we've heard in the last couple days, the right community with the right focus to be able to make that pivot. >> Yeah, and I think if you look at the success of Kubernetes, 'cause again we were there at theCUBE first one CUBE CON, the end user stories really drove end user participation. Drove the birth of Kubernetes. Left some of these CloudNative early adopters early pioneers that were using cloud hyperscale really set the table for CloudNative CON. I think you're seeing that here with this CloudNative SecurityCON where I think we're see a lot more end user stories because of the security, the hairs on fire as we heard from Madrona Ventures, you know, as they as an investor you have a lot of use cases out there where customers are leaning in with getting the rolling up their sleeves, working with open source. This has to be the driver. So I'm expecting to see the next level of SecurityCON to be end user focused. Much more than vendor focused. Where CUBECON was very end user focused and then attracted all the vendors in that grew the industry. I expect the similar pattern here where end user action will be very high at the beginning and that will essentially be the rising tide for the vendors to be then participating. So I expect almost a similar trajectory to CUBECON. >> That's a good path that it needs to all be about all the end users. One of the things I'm curious if what you heard was what are some of the key factors that are going to move CloudNative Security forward? What did you hear the last two days? >> I heard that there's a lot of security problems and no one wants to kind of brag about this but there's a lot of under the hood stuff that needs to get taken care of. So if automation scales, and we heard that from one of the startups we've just interviewed. If automation and scale continues to happen and with the business model of the hackers still booming, security has to be refactored quickly and there's going to be an opportunity structurally to use the cloud for that. So I think it's a good opportunity now to get dedicated focus on fixing things like the DNS stuff old school under the hood, plumbing, networking protocols. You're going to start to see this super cloud-like environment emerge where data's involved, everything's happening and so security has to be re imagined. And I think there's a do over opportunity for the security industry with CloudNative driving that. And I think this is the big thing that I see as an opportunity to, from a story standpoint from a coverage standpoint is that it's a do-over for security. >> One of the things that we heard yesterday is that there's a lot of it, it's a pretty high percentage of organizations that either don't have a SOCK or have a very primitive SOCK. Which kind of surprised me that at this day and age the risks are there. We talked about that today's focus and the keynote was a lot about the software supply chain and what's going on there. What did you hear in terms of the appetite for organizations through the voice of the practitioner to say, you know what guys, we got to get going because there's going to be the hackers are they're here. >> I didn't hear much about that in the coverage 'cause we weren't in the hallways. But from reading the tea leaves and talking to the folks on the ground, I think there's an implied like there's an unlimited money from customers. So it's a very robust from the data infrastructure stack building we cover with the angel investor Kane you're seeing data infrastructure's going to be part of the solution here 'cause data and security go hand in hand. So everyone's got basically checkbook wide open everyone wants to have the answer. And we commented that the co-founder of Palo Alto you had on our coverage yesterday was saying that you know, there's no real platform, there's a lot of tools out there. People will buy anything. So there's still a huge appetite and spend in security but the answer's not going to more tool sprawling. It's going to more platform auto, something that enables automation, fix some of the underlying mechanisms involved and fix it fast. So to me I think it's going to be a robust monetary opportunity because of the demand on the business side. So I don't see that changing at all and I think it's going to accelerate. >> It's a great point in terms of the demand for the business side because as we know as we said yesterday, the next Log4j is out there. It's not a matter of if this happens again it's when, it's the extent, it's how frequent we know that. So organizations all the way up to the board have to be concerned about brand reputation. Nobody wants to be the next big headline in terms of breaches and customer data being given to hackers and hackers making all this money on that. That has to go all the way up to the board and there needs to be alignment between the board and the executives at the organization in terms of how they're going to deal with security, and now. This is not a conversation that can wait. Yeah, I mean I think the five C's we talked about yesterday the culture of companies, the cloud is an enabler, you've got clusters of servers and capabilities, Kubernetes clusters, you've got code and you've got all kinds of, you know, things going on there. Each one has elements that are at risk for hacking, right? So that to me is something that's super important. I think that's why the focus on security's different and important, but it's not going to fork the main event. So that's why I think the spin out was, spinout, or the new event is a good call by the CNCF. >> One of the things today that struck me they're talking a lot about software supply chain and that's been in the headlines for quite a while now. And a stat that was shared this morning during the keynote just blew my brains that there was a 742% increase in the software supply chain attacks occurring over the last three years. It's during Covid times, that is a massive increase. The threat landscape is just growing so amorphously but organizations need to help dial that down because their success and the health of the individuals and the end users is at risk. Well, Covid is an environment where everyone's kind of working at home. So there was some disruption to infrastructure. Also, when you have change like that, there's opportunities for hackers, they'll arbitrage that big time. But I think general the landscape is changing. There's no perimeter anymore. It's CloudNative, this is where it is and people who are moving from old IT to CloudNative, they're at risk. That's why there's tons of ransomware. That's why there's tons of risk. There's just hygiene, from hygiene to architecture and like Nick said from Palo Alto, the co-founder, there's not a lot of architecture in security. So yeah, people have bulked up their security teams but you're going to start to see much more holistic thinking around redoing security. I think that's the opportunity to propel CloudNative, and I think you'll see a lot more coming out of this. >> Did you hear any specific information on some of the CloudNative projects going on that really excite you in terms of these are the right people going after the right challenges to solve in the right direction? >> Well I saw the sessions and what jumped out to me at the sessions was it's a lot of extensions of what we heard at CUBECON and I think what they want to do is take out the big items and break 'em out in security. Kubescape was one we just covered. They want to get more sandbox type stuff into the security side that's very security focused but also plays well with CUBECON. So we'll hear more about how this plays out when we're in Amsterdam coming up in April for CUBECON to hear how that ecosystem, because I think it'll be kind of a relief to kind of decouple security 'cause that gives more focus to the stakeholders in CUBECON. There's a lot of issues going on there and you know service meshes and whatnot. So it's a lot of good stuff happening. >> A lot of good stuff happening. One of the things that'll be great about CUBECON is that we always get the voice of the customer. We get vendors coming on with the voice of the customer talking about and you know in that case how they're using Kubernetes to drive the business forward. But it'll be great to be able to pull in some of the security conversations that spin out of CloudNative Security CON to understand how those end users are embracing the technology. You brought up I think Nir Zuk from Palo Alto Networks, one of the themes there when Dave and I did their Ignite event in December was, of 22, was really consolidation. There are so many tools out there that organizations have to wrap their heads around and they need to be able to have the right enablement content which this event probably delivered to figure out how do we consolidate security tools effectively, efficiently in a way that helps dial down our risk profile because the risks just seem to keep growing. >> Yeah, and I love the technical nature of all that and I think this is going to be the continued focus. Chris Aniszczyk who's the CTO listed like E and BPF we covered with Liz Rice is one of the most three important points of the conference and it's just, it's very nerdy and that's what's needed. I mean it's technical. And again, there's no real standards bodies anymore. The old days developers I think are super important to be the arbiters here. And again, what I love about the CNCF is that they're developer focused and we heard developer first even in security. So you know, this is a sea change and I think, you know, developers' choice will be the standards bodies. >> Lisa: Yeah, yeah. >> They decide the future. >> Yeah. >> And I think having the sandboxing and bringing this out will hopefully accelerate more developer choice and self-service. >> You've been talking about kind of putting the developers in the driver's seat as really being the key decision makers for a while. Did you hear information over the last couple of days that validates that? >> Yeah, absolutely. It's clearly the fact that they did this was one. The other one is, is that engineering teams and dev teams and script teams, they're blending together. It's not just separate silos and the ones that are changing their team dynamics, again, back to the culture are winning. And I think this has to happen. Security has to be embedded everywhere in making it frictionless and to provide kind of the guardrail so developers don't slow down. And I think where security has become a drag or an anchor or a blocker has been just configuration of how the organization's handling it. So I think when people recognize that the developers are in charge and they're should be driving the application development you got to make sure that's secure. And so that's always going to be friction and I think whoever does it, whoever unlocks that for the developer to go faster will win. >> Right. Oh, that's what I'm sure magic to a developer's ear is the ability to go faster and be able to focus on co-development in a secure fashion. What are some of the things that you're excited about for CUBECON. Here we are in February, 2023 and CUBECON is just around the corner in April. What are some of the things that you're excited about based on the groundswell momentum that this first inaugural CloudNative Security CON is generating from a community, a culture perspective? >> I think this year's going to be very interesting 'cause we have an economic challenge globally. There's all kinds of geopolitical things happening. I think there's going to be very entrepreneurial activity this year more than ever. I think you're going to see a lot more innovative projects ideas hitting the table. I think it's going to be a lot more entrepreneurial just because the cycle we're in. And also I think the acceleration of mainstream deployments of out of the CNCF's main event CUBECON will happen. You'll see a lot more successes, scale, more clarity on where the security holes are or aren't. Where the benefits are. I think containers and microservices are continuing to surge. I think the Cloud scale hyperscale as Amazon, Azure, Google will be more aggressive. I think AI will be a big theme this year. I think you can see how data is going to infect some of the innovation thinking. I'm really excited about the data infrastructure because it powers a lot of things in the Cloud. So I think the Amazon Web Services, Azure next level gen clouds will impact what happens in the CloudNative foundation. >> Did you have any conversations yesterday or today with respect to AI and security? Was that a focus of anybody's? Talk to me about that. >> Well, I didn't hear any sessions on AI but we saw some demos on stage. But they're teasing out that this is an augmentation to their mission, right? So I think a lot of people are looking at AI as, again, like I always said there's the naysayers who think it's kind of a gimmick or nothing to see here, and then some are just going to blown away. I think the people who are alpha geeks and the industry connect the dots and understand that AI is going to be an accelerant to a lot of heavy lifting that was either manual, you know, hard to do things that was boring or muck as they say. I think that's going to be where you'll see the AI stories where it's going to accelerate either ways to make security better or make developers more confident and productive. >> Or both. >> Yeah. So definitely AI will be part of it. Yeah, definitely. One of the things too that I'm wondering if, you know, we talk about CloudNative and the goal of it, the importance of it. Do you think that this event, in terms of what we were able to see, obviously being remote the event going on in Seattle, us being here in Palo Alto and Boston and guests on from Seattle and Germany and all over, did you hear the really the validation for why CloudNative Security why CloudNative is important for organizations whether it's a bank or a hospital or a retailer? Is that validation clear and present? >> Yeah, absolutely. I think it was implied. I don't think there was like anyone's trying to debate that. I think this conference was more of it's assumed and they were really trying to push the ability to make security less defensive, more offensive and more accelerated into the solving the problems with the businesses that are out there. So clearly the CloudNative community understands where the security challenges are and where they're emerging. So having a dedicated event will help address that. And they've got great co-chairs too that put it together. So I think that's very positive. >> Yeah. Do you think, is it possible, I mean, like you said several times today so eloquently the industry's on the defense when it comes to security and the hackers are on the offense. Is it really possible to make that switch or obviously get some balances. As technology advances and industry gets to take advantage of that, so do the hackers, is that balance achievable? >> Absolutely. I mean, I think totally achievable. The question's going to be what's the environment going to be like? And I remember as context to understanding whether it's viable or not, is to look at, just go back 13 years ago, I remember in 2010 Amazon was viewed as an unsecure environment. Everyone's saying, "Oh, the cloud is not secure." And I remember interviewing Steve Schmidt at AWS and we discussed specifically how Amazon Cloud was being leveraged by hackers. They made it more complex for the hackers. And he said, "This is just the beginning." It's kind of like barbed wire on a fence. It's yeah, you're not going to climb it so people can get over it. And so since then what's happened is the Cloud has become more secure than on premises for a lot of either you know, personnel reasons, culture reasons, not updating, you know, from patches to just being insecure to be more insecure. So that to me means that the flip the script can be flipped. >> Yeah. And I think with CloudNative they can build in automation and code to solve some of these problems and make it more complex for the hacker. >> Lisa: Yes. >> And increase the cost. >> Yeah, exactly. Make it more complex. Increase the cost. That'll be in interesting journey to follow. So John, here we are early February, 2023 theCUBE starting out strong as always. What year are we in, 12? Year 12? >> 13th year >> 13! What's next for theCUBE? What's coming up that excites you? >> Well, we're going to do a lot more events. We got the theCUBE in studio that I call theCUBE Center as kind of internal code word, but like, this is more about getting the word out that we can cover events remotely as events are starting to change with hybrid, digital is going to be a big part of that. So I think you're going to see a lot more CUBE on location. We're going to do, still do theCUBE and have theCUBE cover events from the studio to get deeper perspective because we can then bring people in remote through our our studio team. We can bring our CUBE alumni in. We have a corpus of content and experts to bring to table. So I think the coverage will be increased. The expertise and data will be flowing through theCUBE and so Cube Center, CUBE CUBE Studio. >> Lisa: Love it. >> Will be a integral part of our coverage. >> I love that. And we have such great conversations with guests in person, but also virtually, digitally as well. We still get the voices of the practitioners and the customers and the vendors and the partner ecosystem really kind of lauded loud and clear through theCUBE megaphone as I would say. >> And of course getting the clips out there, getting the highlights. >> Yeah. >> Getting more stories. No stories too small for theCUBE. We can make it easy to get the best content. >> The best content. John, it's been fun covering CloudNative security CON with you with you. And Dave and our guests, thank you so much for the opportunity and looking forward to the next event. >> John: All right. We'll see you at Amsterdam. >> Yeah, I'll be there. We want to thank you so much for watching TheCUBES's two day coverage of CloudNative Security CON 23. We're live in Palo Alto. You are live wherever you are and we appreciate your time and your view of this event. For John Furrier, Dave Vellante, I'm Lisa Martin. Thanks for watching guys. We'll see you at the next show.

Published Date : Feb 3 2023

SUMMARY :

We had folks on the ground in Seattle. and be highly cohesive in the focus. that right now the because of the security, the hairs on fire One of the things I'm and there's going to be an One of the things that and I think it's going to accelerate. and the executives at One of the things today that struck me at the sessions was One of the things that'll be great Yeah, and I love the And I think having the kind of putting the developers for the developer to go faster will win. the ability to go faster I think it's going to be Talk to me about that. I think that's going to be One of the things too that So clearly the CloudNative and the hackers are on the offense. So that to me means that the and make it more complex for the hacker. Increase the cost. and experts to bring to table. Will be a integral and the customers and the getting the highlights. get the best content. for the opportunity and looking We'll see you at Amsterdam. and we appreciate your time

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Dave VellantePERSON

0.99+

Lisa MartinPERSON

0.99+

DavePERSON

0.99+

Chris AniszczykPERSON

0.99+

Steve SchmidtPERSON

0.99+

John FurrierPERSON

0.99+

SeattleLOCATION

0.99+

Dave VellantePERSON

0.99+

LisaPERSON

0.99+

Liz RicePERSON

0.99+

JohnPERSON

0.99+

Palo AltoLOCATION

0.99+

GermanyLOCATION

0.99+

Amazon Web ServicesORGANIZATION

0.99+

NickPERSON

0.99+

AWSORGANIZATION

0.99+

AmsterdamLOCATION

0.99+

AmazonORGANIZATION

0.99+

yesterdayDATE

0.99+

todayDATE

0.99+

FebruaryDATE

0.99+

72 sessionsQUANTITY

0.99+

two dayQUANTITY

0.99+

742%QUANTITY

0.99+

AprilDATE

0.99+

Madrona VenturesORGANIZATION

0.99+

2010DATE

0.99+

DecemberDATE

0.99+

early February, 2023DATE

0.99+

GoogleORGANIZATION

0.99+

BostonLOCATION

0.99+

bothQUANTITY

0.99+

OneQUANTITY

0.99+

theCUBE CenterORGANIZATION

0.98+

CUBECONEVENT

0.98+

oneQUANTITY

0.98+

13 years agoDATE

0.98+

CUBEORGANIZATION

0.98+

CloudNative Security CON 23EVENT

0.98+

Cube CenterORGANIZATION

0.98+

firstQUANTITY

0.98+

this yearDATE

0.98+

CNCFORGANIZATION

0.98+

CUBE CONEVENT

0.98+

Palo Alto NetworksORGANIZATION

0.97+

KanePERSON

0.97+

Nir ZukPERSON

0.97+

13th yearQUANTITY

0.96+

CloudNativeORGANIZATION

0.94+

Boston StudioLOCATION

0.94+

TheCUBESORGANIZATION

0.94+

BPFORGANIZATION

0.94+

theCUBEORGANIZATION

0.93+

Emmy Eide, RedHat | CloudNativeSecurityCon 23


 

>> John Furrier: Hello, welcome back to theCUBE's coverage of Cloud Native Security Con 2023 North America the inaugural event. I'm John Furrier, host of theCUBE, along with Dave Alonte and Lisa Martin covering from the studio. But we have on location Emmy Eide, who is with Red Hat, director of Supply Chain Security. Emmy, great to have you on from location. Thanks for joining us. >> Emmy Eide: Yeah, thank you. >> So everyone wants to know this event is new, it's an aural event, cloud native con, coup con. Very successful. Was this event successful? They all want to know what's going on there. What's the vibe? What's the tracks like? Is it different? Why this event? Was it successful? What's different? >> Yeah, I've really enjoyed being here. The food is wonderful. There's also quite a few vendors here that are just some really cool emerging technologies coming out and a lot from open source, which is really cool to see as well. The talks are very interesting. It's really, they're very diverse in subject but still all security related which is really cool to see. And there's also a lot of different perspectives of how to approach security problems and the people behind them, which I love to see. And it's very nice to hear the different innovative ideas that we can go about doing security. >> We heard from some startups as well that they're very happy with the, with the decision to have a dedicated event. Red Hat is no stranger to open source. Obviously coup con, you guys are very successful there in cloud native con, Now the security con. Why do you think they did this? What's the vibe? What's the rationale? What's your take on this? And what's different from a topic standpoint? >> For non-security specific like events? Is that what you mean? >> What's different from coup con, cloud native con, and here at the cloud native security con? Obviously security's the focus. Is it just deeper dives? Is it more under the hood? Is it root problems or is this beyond Kubernetes? What's the focus, I guess. People want to know, you know, why the new event? >> I mean, there's a lot of focus on supply chain security, right? Like that's the hot topic in security right now. So that's been a huge focus. I can't speak to the differences of those other conferences. I haven't been able to attend them. But I will say that having a security specific conference, it really focuses on the open community and how technology is evolving, and how do you apply security. It's not just talking about tools which I think other conferences tend to focus on just the tools and you can really, I think, get lost in that as someone trying to learn about security or trying to even implement security, but they talk about what it takes to implement those tools, What's behind the people behind implementing those tools? >> Let's get into some of the key topics that we've identified and get your reaction. One, supply chain security, which I know you'll give a lot of commentary on 'cause that's your focus. Also we heard, like, Liz Rice talking about the extended Berkeley packet filtering. Okay, that's big. You know, your root kernel management, that's big. Developer productivity was kind of implied around removing the blockers of security, making it, you know, more aligned with developer first mentality. So that seems to be our takeaway. What's your reaction to those things? You see the same thing? >> I don't have a specific reaction to those things. >> Do you see the same thing happening on the ground there? Are they covering supply? >> Oh, yeah. >> Those three things are they the big focus? >> Yeah. Yeah, I think it's all of those things kind of like wrapped into one, right? But yeah, there's... I'm not sure how to answer your question. >> Well, let's jump into supply chain for instance. 'Cause that has come up a lot. >> Sure. >> What's the focus there on the supply chain security? Is it SBOMs? Is it the container security? What's the key conversations and topics being discussed around supply chain security? >> Well, I think there's a lot of laughter around SBOM right now because no one can really define it, specifically, and everyone's talking about it. So there's, there's a lot more than just the SBOM conversation. We're talking about like full end-to-end development process and that whole software supply chain that goes with it. So there's everything from infrastructure, security, all the way through to like signing transparency logs. Really the full gambit of supply chain, which is is really neat to see because it is such a broad topic. I think a lot of folks now are involved in supply chain security in some way. And so just kind of bringing that to the surface of what are the different people that are involved in this space, thinking about, what's on the top of their mind when it comes to supply chain security. >> How would you scope the order of magnitude of the uptick in supply chain attacks? Is it pretty heavy right now or is it, you know, people with the hair on fire or is it... What's the, give us the taste of the temperature in the room on the supply chain attacks? >> I think most of the folks who are involved in the space understand just that it's increasing. I mean, like, what is it? A 742% increase average annual year, year over year in supply chain attacks. So the amount of attacks increasing is a little daunting, right, for most of us. But it is what it is. So I think most of us right now are just trying to come together to say, "What are you doing that works? This is what I'm doing that works." And in all the different facets of that. 'cause I think we try to throw, we try to throw tools at a lot of problems and this problem is so big and broad reaching that we really are needing to share best practices as a community and as a security community. So this has been, this conference has been really great for that. >> Yeah, I've heard that a lot. You know, too many tools, not enough platform thinking, not enough architecture, needs some structure. Are you seeing any best practice around frameworks and structure around how to start getting in and and building out more of a better approach or posture? I mean, what's that, what's the, what's the state of the union for supply chain, how to handle that? >> Well, I talked about that a little bit in my my keynote that I gave, actually, which was about... And I've heard other other leaders talk about it too. And obviously it keyed my ear just because I'm so passionate about it, about partnership. So you know, empathetic security where the security team that's enforcing the policies, creating the policies, guidelines is working with the teams that are actually doing the production and the development, hand-in-hand, right? Like I can sit there and tell you, "Hey, you have all these problems and here's your security checklist or framework you need to follow." But that's not going to do them any good and it's going to create a ton of holes, right? So actually partnering with them helping them to understand the risks that are associated with their very specific need and use case, because every product has a different kind of quirk to it, right? Like how it's being developed. It might use a different tool and if I sit there and say, "Hey, you need to log on to this, you need to like make your tool work this platform over here and it's not compatible." I'm going to have to completely reframe how I'm doing productization. I need to know that as a security practitioner because me disrupting productization is not something that I should be doing. And I've heard a couple a couple of folks kind of talking about that, the people aspect behind how we implement these tools, the frameworks and the platforms, and how do we draw out risk, right? Like how do we talk about risk with these teams and really make them understand so it's part of their core culture in their understanding. So when they go back to their, when they go back and having to make decisions without me in the room they know they can make those business decisions with the risk as part of that decision. >> I love that empathetic angle because that's really going to, what needs to happen. It's not just, "Hey, that's your department, see you later." Or not even having a knowledge of the information. This idea of team construction, team management is a huge cultural shift. I'm sure the reaction was very positive. How do you explain that to an organization that's out there? Like how do you... what's the first three steps you got to take? Is there anything that you can share for advice people watch you saying, "Yeah we need to we need to change how our teams operate and interact with each other." >> Yeah, I think the first step is to take a good hard look at yourself. And if you are standing there on an ivory tower with a clipboard, you're probably doing it wrong. Check the box security is never going to be any way that works long term. It's going to take you a long time to implement any changes. At Red Hat, we did not look ourselves. You know, we've been doing a lot of great things in supply chain security for a while, but really taking that look and saying, "How can we be more empathetic leaders in the security space?" So we looked at that, then you say, "Okay, what is my my rate of change going to happen?" So if I need to make so many security changes explaining to these organizations, you're actually going to go faster. We improved our efficiency by 2000% just by doing that, just by creating this more empathetic. So why it seems like it's more hands-on, so it's going to be harder, it's easy to send out an email and say, "Hey, meet the security standard, right?" That might seem like the easy way 'cause you don't have time to engage. It's so much faster if you actually engage and share that message and have a a common understanding between the teams that like, "I'm here to deliver a product, so is the security team. The security team's here to deliver that same product and I want to help you do it in a trusted way." Right? >> Yeah. Dave Alonte, my co-host, was just on a session. We were talking together about security teams jumping on every team and putting a C on their jersey to be like the captain of the intramural team, and being involved, and it goes beyond just like the checklist, like you said, "Oh, I got the SBOM list of materials and I got a code scanning thing." That's not enough, is what we're hearing. >> No. >> Is there a framework or a methodology to go beyond that? You got the empathetic, that's really kind of team issue. You got to go beyond some of the tactical things. What's next beyond, you got the empathy and what's that framework structure when you say where you say anything there? >> So what do you do after you have the empathy, right? >> Yeah. >> I would say Salsa is a good place to start, the software levels. Supply chain levels for software artifacts. It's a mouthful. That's a really good maturity framework to start with. No matter what size organization you have, they're just going to be coming out here soon with version one. They release 0.1 a few months back. That's a really good place to give yourself a gut check of where you are in maturity and where you can go, what are best practices. And then there's the SSDF, which is the Secure Software Development framework. I think NIST wrote that one. But that is also a really, a really good framework and they map really well to each other, actually, When you work through Salsa, you're actually working through the SSDF requirements. >> Awesome. Well, great to have you on and great to get that that knowledge. I have to ask you like coup con, I remember when it started in Seattle, their first coup con events, right? Kind of small, similar to this one, but there's a lot of end user activities. Certainly the CNCF kind of was coming together like right after that. What's the end user activity like there this week? That seems to always been the driver of these events. It's a little bit organic. You got some of the key experts coming together, focus. Have you observed any end user activity in terms of contributions, participation? What's the story on the end user piece there? Is it heavy? Is it light? What's the... >> Um, yeah... It seems moderate. I guess somewhere in the middle. I would say largely heavy, but there's definitely participation. There is a lot of communing and networking happening between different organizations to partner together, which is important. But I haven't really paid attention much to like the Twitter side of this. >> Yeah, you've been busy doing the keynotes. How's Red Hat doing all this? You guys have been great positioned with the cloud native movement. Been following the Red Hat's moves since OpenStack days. Really good, good line of product, good open source, Mojo, of course. Good product mix, right, and relevant. Where's the security focus here? Obviously, you guys are clearly focused on security. How's the Red Hat story going on over there? >> There was yesterday a really good talk that explains that super well. It was given by a Red Hatter, connecting all of the open source projects we've been a part of and kind of explaining them. And obviously again, I'm keying in 'cause it's a supply chain kind of conversation, but I'd recommend that anyone who's going to go back and watch these on YouTube to check that one out just to see kind of how we're approaching the security space as well as how we contribute back to the community in that way. >> Awesome. Great to have you on. Final word, I'll give you the final word. What's the big buzz on supply chain? How would you peg the progress there? Feeling good about where things are? What's the current progress on supply chain security? >> I think that it has opened up a lot of doors for communication between security organizations that have tended to be closed. I'm in product security. Product securities, information securities tend to not speak externally about what we're doing. So you don't want to, you know, look bad or you don't want to expose any risk that we have, right? But it is, I think, necessary to open those lines of communication, to be able to start tackling this. It's a big problem throughout all of our industries, and if one supply chain is attacked and those products are used in someone else's supply chain, that can continue, right? So I think it's good. We have a lot of work to do as an industry and the advancements in technology is going to make that a little bit more complicated. But I'm excited for it. >> You can just throw AI at it. That's the big, everyone's doing AI. Just throw AI at it, it'll solve it. Isn't that the new thing? >> I do secure AI though. >> Super important. I love what you're doing there. Supply chain, open source needs, supply chain security. Open source needs this big time. It has to be there. Thank you for the work that you do. Really appreciate you coming on. Thank you. >> Yeah, thanks for having me. >> Yeah, good stuff. Supply chain, critical to open source growth. Open source is going to be the key to success in the future with automation and AI right around the corner. And that's important. This theCUBE covers from cloud native con, security con in North America, 2023. I'm John Furrier. Thanks for watching.

Published Date : Feb 3 2023

SUMMARY :

Emmy, great to have you on from location. What's the vibe? and the people behind them, What's the vibe? and here at the cloud native security con? it really focuses on the open community So that seems to be our takeaway. reaction to those things. I'm not sure how to answer your question. 'Cause that has come up a lot. bringing that to the surface of the uptick in supply chain attacks? And in all the different facets of that. how to handle that? and the development, hand-in-hand, right? knowledge of the information. It's going to take you a long just like the checklist, like you said, of the tactical things. a gut check of where you I have to ask you like coup con, I guess somewhere in the middle. Where's the security focus here? connecting all of the open source projects Great to have you on. and the advancements in Isn't that the new thing? It has to be there. Open source is going to be the

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Dave AlontePERSON

0.99+

Lisa MartinPERSON

0.99+

Liz RicePERSON

0.99+

John FurrierPERSON

0.99+

Emmy EidePERSON

0.99+

EmmyPERSON

0.99+

Red HatORGANIZATION

0.99+

SeattleLOCATION

0.99+

first stepQUANTITY

0.99+

North AmericaLOCATION

0.99+

yesterdayDATE

0.99+

742%QUANTITY

0.99+

NISTORGANIZATION

0.99+

2023DATE

0.99+

2000%QUANTITY

0.98+

this weekDATE

0.98+

Supply Chain SecurityORGANIZATION

0.97+

three thingsQUANTITY

0.97+

first three stepsQUANTITY

0.97+

theCUBEORGANIZATION

0.96+

TwitterORGANIZATION

0.96+

Cloud Native Security Con 2023 North AmericaEVENT

0.95+

SBOMORGANIZATION

0.94+

BerkeleyLOCATION

0.92+

YouTubeORGANIZATION

0.92+

SalsaTITLE

0.92+

Red HatterTITLE

0.9+

first mentalityQUANTITY

0.89+

a few months backDATE

0.79+

RedHatORGANIZATION

0.79+

first coup conQUANTITY

0.78+

OneQUANTITY

0.78+

versionQUANTITY

0.74+

CNCFORGANIZATION

0.7+

securityEVENT

0.7+

conORGANIZATION

0.67+

OpenStackTITLE

0.66+

one supplyQUANTITY

0.66+

Red HatTITLE

0.64+

nativeEVENT

0.63+

coupleQUANTITY

0.63+

CloudNativeSecurityCon 23EVENT

0.61+

cloud nativeEVENT

0.6+

MojoORGANIZATION

0.6+

oneQUANTITY

0.6+

KubernetesTITLE

0.57+

oneOTHER

0.5+

Day 1 Keynote Analysis | CloudNativeSecurityCon 23


 

(upbeat music) >> Hey everyone and welcome to theCUBE's coverage day one of CloudNativeSecurityCon '23. Lisa Martin here with John Furrier and Dave Vellante. Dave and John, great to have you guys on the program. This is interesting. This is the first inaugural CloudNativeSecurityCon. Formally part of KubeCon, now a separate event here happening in Seattle over the next couple of days. John, I wanted to get your take on, your thoughts on this being a standalone event, the community, the impact. >> Well, this inaugural event, which is great, we love it, we want to cover all inaugural events because you never know, there might not be one next year. So we were here if it happens, we're here at creation. But I think this is a good move for the CNCF and the Linux Foundation as security becomes so important and there's so many issues to resolve that will influence many other things. Developers, machine learning, data as code, supply chain codes. So I think KubeCon, Kubernetes conference and CloudNativeCon, is all about cloud native developers. And it's a huge event and there's so much there. There's containers, there's microservices, all that infrastructure's code, the DevSecOps on that side, there's enough there and it's a huge ecosystem. Pulling it as a separate event is a first move for them. And I think there's a toe in the water kind of vibe here. Testing the waters a little bit on, does this have legs? How is it organized? Looks like they took their time, thought it out extremely well about how to craft it. And so I think this is the beginning of what will probably be a seminal event for the open source community. So let's listen to the clip from Priyanka Sharma who's a CUBE alumni and executive director of the CNCF. This is kind of a teaser- >> We will tackle issues of security together here and further on. We'll share our experiences, successes, perhaps more importantly, failures, and help with the collecting of understanding. We'll create solutions. That's right. The practitioners are leading the way. Having conversations that you need to have. That's all of you. This conference today and tomorrow is packed with 72 sessions for all levels of technologists to reflect the bottoms up, developer first nature of the conference. The co-chairs have selected these sessions and they are true blue practitioners. >> And that's a great clip right there. If you read between the lines, what she's saying there, let's unpack this. Solutions, we're going to fail, we're going to get better. Linux, the culture of iterating. But practitioners, the mention of practitioners, that was very key. Global community, 72 sessions, co-chairs, Liz Rice and experts that are crafting this program. It seems like very similar to what AWS has done with re:Invent as their core show. And then they have re:Inforce which is their cloud native security, Amazon security show. There's enough there, so to me, practitioners, that speaks to the urgency of cloud native security. So to me, I think this is the first move, and again, testing the water. I like the vibe. I think the practitioner angle is relevant. It's very nerdy, so I think this is going to have some legs. >> Yeah, the other key phrase Priyanka mentioned is bottoms up. And John, at our predictions breaking analysis, I asked you to make a prediction about events. And I think you've nailed it. You said, "Look, we're going to have many more events, but they're going to be smaller." Most large events are going to get smaller. AWS is obviously the exception, but a lot of events like this, 500, 700, 1,000 people, that is really targeted. So instead of you take a big giant event and there's events within the event, this is going to be really targeted, really intimate and focused. And that's exactly what this is. I think your prediction nailed it. >> Well, Dave, we'll call to see the event operating system really cohesive events connected together, decoupled, and I think the Linux Foundation does an amazing job of stringing these events together to have community as the focus. And I think the key to these events in the future is having, again, targeted content to distinct user groups in these communities so they can be highly cohesive because they got to be productive. And again, if you try to have a broad, big event, no one's happy. Everyone's underserved. So I think there's an industry concept and then there's pieces tied together. And I think this is going to be a very focused event, but I think it's going to grow very fast. >> 72 sessions, that's a lot of content for this small event that the practitioners are going to have a lot of opportunity to learn from. Do you guys, John, start with you and then Dave, do you think it's about time? You mentioned John, they're dipping their toe in the water. We'll see how this goes. Do you think it's about time that we have this dedicated focus out of this community on cloud native security? >> Well, I think it's definitely time, and I'll tell you there's many reasons why. On the front lines of business, there's a business model for security hackers and breaches. The economics are in favor of the hackers. That's a real reality from ransomware to any kind of breach attacks. There's corporate governance issues that's structural challenges for companies. These are real issues operationally for companies in the enterprise. And at the same time, on the tech stack side, it's been very slow movement, like glaciers in terms of security. Things like DNS, Linux kernel, there are a lot of things in the weeds in the details of the bowels of the tech world, protocol levels that just need to be refactored. And I think you're seeing a lot of that here. It was mentioned from Brian from the Linux Foundation, mentioned Dan Kaminsky who recently passed away who found that vulnerability in BIND which is a DNS construct. That was a critical linchpin. They got to fix these things and Liz Rice is talking about the Linux kernel with the extended Berkeley Packet Filtering thing. And so this is where they're going. This is stuff that needs to be paid attention to because if they don't do it, the train of automation and machine learning is going to run wild with all kinds of automation that the infrastructure just won't be set up for. So I think there's going to be root level changes, and I think ultimately a new security stack will probably be very driven by data will be emerging. So to me, I think this is definitely worth being targeted. And I think you're seeing Amazon doing the same thing. I think this is a playbook out of AWS's event focus and I think that's right. >> Dave, what are you thoughts? >> There was a lot of talk in, again, I go back to the progression here in the last decade about what's the right regime for security? Should the CISO report to the CIO or the board, et cetera, et cetera? We're way beyond that now. I think DevSecOps is being asked to do a lot, particularly DevOps. So we hear a lot about shift left, we're hearing about protecting the runtime and the ops getting much more involved and helping them do their jobs because the cloud itself has brought a lot to the table. It's like the first line of defense, but then you've really got a lot to worry about from a software defined perspective. And it's a complicated situation. Yes, there's less hardware, yes, we can rely on the cloud, but culturally you've got a lot more people that have to work together, have to share data. And you want to remove the blockers, to use an Amazon term. And the way you do that is you really, if we talked about it many times on theCUBE. Do over, you got to really rethink the way in which you approach security and it starts with culture and team. >> Well the thing, I would call it the five C's of security. Culture, you mentioned that's a good C. You got cloud, tons of issues involved in cloud. You've got access issues, identity. you've got clusters, you got Kubernetes clusters. And then you've got containers, the fourth C. And then finally is the code itself, supply chain. So all areas of cloud native, if you take out culture, it's cloud, cluster, container, and code all have levels of security risks and new things in there that need to be addressed. So there's plenty of work to get done for sure. And again, this is developer first, bottoms up, but that's where the change comes in, Dave, from a security standpoint, you always point this out. Bottoms up and then middle out for change. But absolutely, the imperative is today the business impact is real and it's urgent and you got to pedal as fast as you can here, so I think this is going to have legs. We'll see how it goes. >> Really curious to understand the cultural impact that we see being made at this event with the focus on it. John, you mentioned the four C's, five with culture. I often think that culture is probably the leading factor. Without that, without getting those teams aligned, is the rest of it set up to be as successful as possible? I think that's a question that's- >> Well to me, Dave asked Pat Gelsinger in 2014, can security be a do-over at VMWorld when he was the CEO of VMware? He said, "Yes, it has to be." And I think you're seeing that now. And Nick from the co-founder of Palo Alto Networks was quoted on theCUBE by saying, "Zero Trust is some structure to give to security, but cloud allows for the ability to do it over and get some scale going on security." So I think the best people are going to come together in this security world and they're going to work on this. So you're going to start to see more focus around these security events and initiatives. >> So I think that when you go to the, you mentioned re:Inforce a couple times. When you go to re:Inforce, there's a lot of great stuff that Amazon puts forth there. Very positive, it's not that negative. Oh, the world is falling, the sky is falling. And so I like that. However, you don't walk away with an understanding of how they're making the CISOs and the DevOps lives easier once they get beyond the cloud. Of course, it's not Amazon's responsibility. And that's where I think the CNCF really comes in and open source, that's where they pick up. Obviously the cloud's involved, but there's a real opportunity to simplify the lives of the DevSecOps teams and that's what's critical in terms of being able to solve, or at least keep up with this never ending problem. >> Yeah, there's a lot of issues involved. I took some notes here from some of the keynote you heard. Security and education, training and team structure. Detection, incidents that are happening, and how do you respond to that architecture. Identity, isolation, supply chain, and governance and compliance. These are all real things. This is not like hand-waving issues. They're mainstream and they're urgent. Literally the houses are on fire here with the enterprise, so this is going to be very, very important. >> Lisa: That's a great point. >> Some of the other things Priyanka mentioned, exposed edges and nodes. So just when you think we're starting to solve the problem, you got IOT, security's not a one and done task. We've been talking about culture. No person is an island. It's $188 billion business. Cloud native is growing at 27% a year, which just underscores the challenges, and bottom line, practitioners are leading the way. >> Last question for you guys. What are you hoping those practitioners get out of this event, this inaugural event, John? >> Well first of all, I think this inaugural event's going to be for them, but also we at theCUBE are going to be doing a lot more security events. RSA's coming up, we're going to be at re:Inforce, we're obviously going to be covering this event. We've got Black Hat, a variety of other events. We'll probably have our own security events really focused on some key areas. So I think the thing that people are going to walk away from this event is that paying attention to these security events are going to be more than just an industry thing. I think you're going to start to see group gatherings or groups convening virtually and physically around core issues. And I think you're going to start to see a community accelerate around cloud native and open source specifically to help teams get faster and better at what they do. So I think the big walkaway for the customers and the practitioners here is that there's a call to arms happening and this is, again, another signal that it's worth breaking out from the core event, but being tied to it, I think that's a good call and I think it's a well good architecture from a CNCF standpoint and a worthy effort, so I give it a thumbs up. We still don't know what it's going to look like. We'll see what day two looks like, but it seems to be experts, practitioners, deep tech, enabling technologies. These are things that tend to be good things to hear when you're at an event. I'll say the business imperative is obvious. >> The purpose of an event like this, and it aligns with theCUBE's mission, is to educate and inspire business technology pros to action. We do it in theCUBE with free content. Obviously this event is a for-pay event, but they are delivering some real value to the community that they can take back to their organizations to make change. And that's what it's all about. >> Yep, that is what it's all about. I'm looking forward to seeing over as the months unfold, the impact that this event has on the community and the impact the community has on this event going forward, and really the adoption of cloud native security. Guys, great to have you during this keynote analysis. Looking forward to hearing the conversations that we have on theCUBE today. Thanks so much for joining. And for my guests, for my co-hosts, John Furrier and Dave Vellante. I'm Lisa Martin. You're watching theCUBE's day one coverage of CloudNativeSecurityCon '23. Stick around, we got great content on theCUBE coming up. (upbeat music)

Published Date : Feb 2 2023

SUMMARY :

Dave and John, great to have And so I think this is the beginning nature of the conference. this is going to have some legs. this is going to be really targeted, And I think the key to these a lot of opportunity to learn from. and machine learning is going to run wild Should the CISO report to the CIO think this is going to have legs. is the rest of it set up to And Nick from the co-founder and the DevOps lives easier so this is going to be to solve the problem, you got IOT, of this event, this inaugural event, John? from the core event, but being tied to it, to the community that they can take back Guys, great to have you

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
JohnPERSON

0.99+

Lisa MartinPERSON

0.99+

Dave VellantePERSON

0.99+

Liz RicePERSON

0.99+

Dan KaminskyPERSON

0.99+

DavePERSON

0.99+

Priyanka SharmaPERSON

0.99+

AmazonORGANIZATION

0.99+

PriyankaPERSON

0.99+

LisaPERSON

0.99+

SeattleLOCATION

0.99+

John FurrierPERSON

0.99+

Pat GelsingerPERSON

0.99+

2014DATE

0.99+

AWSORGANIZATION

0.99+

NickPERSON

0.99+

BrianPERSON

0.99+

$188 billionQUANTITY

0.99+

John FurrierPERSON

0.99+

72 sessionsQUANTITY

0.99+

Linux FoundationORGANIZATION

0.99+

Palo Alto NetworksORGANIZATION

0.99+

CNCFORGANIZATION

0.99+

VMwareORGANIZATION

0.99+

tomorrowDATE

0.99+

KubeConEVENT

0.99+

500QUANTITY

0.99+

fiveQUANTITY

0.99+

Linux kernelTITLE

0.99+

CUBEORGANIZATION

0.99+

LinuxTITLE

0.99+

first lineQUANTITY

0.98+

VMWorldORGANIZATION

0.98+

next yearDATE

0.98+

todayDATE

0.98+

700QUANTITY

0.97+

first moveQUANTITY

0.97+

CloudNativeSecurityConEVENT

0.97+

CloudNativeSecurityCon '23EVENT

0.96+

firstQUANTITY

0.96+

DevSecOpsTITLE

0.96+

27% a yearQUANTITY

0.96+

CloudNativeConEVENT

0.96+

theCUBEORGANIZATION

0.95+

1,000 peopleQUANTITY

0.93+

last decadeDATE

0.93+

day oneQUANTITY

0.93+

fourQUANTITY

0.91+

day twoQUANTITY

0.89+

Zero TrustORGANIZATION

0.87+

Black HatEVENT

0.83+

DevOpsTITLE

0.81+

Day 1QUANTITY

0.8+

first natureQUANTITY

0.79+

CloudNativeSecurityCon 23EVENT

0.78+

fourth C.QUANTITY

0.77+

next couple of daysDATE

0.76+

BINDTITLE

0.76+

oneQUANTITY

0.74+

KubernetesEVENT

0.73+

AWS Startup Showcase S2S4 promo2


 

(dramatic wooshing) >> Hello, and I'm John Furrier, host of theCUBE. Check out the upcoming Season 2, Episode 4 AWS Startup Showcase featuring Cybersecurity. We got 10 hot growing startups. We got keynote from Jon Ramsey, Vice President of AWS Security, as well as amazing Heroes, AWS Cloud Heroes in security, Liz Rice, and we've got some amazing, talented people sharing their insights. Here on theCUBE, every episode is a new topic. This topic is cybersecurity. Check it out. It's an ongoing series. It's the hottest startups in the ecosystem of AWS, Amazon Web Services. It's theCUBE.

Published Date : Aug 26 2022

SUMMARY :

It's the hottest startups

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Liz RicePERSON

0.99+

Jon RamseyPERSON

0.99+

AWSORGANIZATION

0.99+

Amazon Web ServicesORGANIZATION

0.99+

John FurrierPERSON

0.99+

AWS SecurityORGANIZATION

0.98+

10 hot growing startupsQUANTITY

0.9+

Vice PresidentPERSON

0.87+

HeroesTITLE

0.87+

Season 2QUANTITY

0.79+

theCUBEORGANIZATION

0.75+

every episodeQUANTITY

0.7+

AWS CloudORGANIZATION

0.7+

Episode 4QUANTITY

0.69+

Startup ShowcaseEVENT

0.67+

S2S4EVENT

0.45+

AWS Startup Showcase S2S4 promo1


 

(air whooshing) (cymbal crashing) >> Hello everybody, I'm John Furrier, host of theCUBE. Join us for the season two, episode four of the ongoing series, The AWS Startup Showcase. For this episode, it's all about cybersecurity, hackers, super hackers, super cloud, all 10 companies presenting are the latest, hottest companies in cybersecurity startups. Of course, John Ramsey will be keynoting. He's the vice president of AWS, a security team. And of course, we've got great expert panels with the heroes, Liz Rice from Open Source, talking about kernaling in Linux kernal, security programming to best practices for CSOs. If you're a CSO or CXO, check it out.

Published Date : Aug 26 2022

SUMMARY :

of the ongoing series,

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Liz RicePERSON

0.99+

John FurrierPERSON

0.99+

John RamseyPERSON

0.99+

AWSORGANIZATION

0.99+

LinuxTITLE

0.99+

CXOTITLE

0.98+

10 companiesQUANTITY

0.9+

CSOTITLE

0.89+

Startup ShowcaseTITLE

0.87+

season twoQUANTITY

0.86+

episode fourQUANTITY

0.73+

Startup Showcase S2S4TITLE

0.69+

theCUBEORGANIZATION

0.64+

CSOsTITLE

0.61+

OpenORGANIZATION

0.44+

AWS Partner Showcase S1E3 | Full Segment


 

>>Hey, everyone. Welcome to the AWS partner, showcase women in tech. I'm Lisa Martin from the cube. And today we're gonna be looking into the exciting evolution of women in the tech industry. I'm going to be joined by Danielle GShock, the ISP PSA director at AWS. And we have the privilege of speaking with some wicked smart women from Teradata NetApp. JFI a 10th revolution group, company and honeycomb.io. We're gonna look at some of the challenges and biases that women face in the tech industry, especially in leadership roles. We're also gonna be exploring how are these tech companies addressing diversity, equity and inclusion across their organizations? How can we get more young girls into stem earlier in their careers? So many questions. So let's go ahead and get started. This is the AWS partner showcase women in tech. Hey, everyone. Welcome to the AWS partner showcase. This is season one, episode three. And I'm your host, Lisa Martin. I've got two great guests here with me to talk about women in tech. Hillary Ashton joins us the chief product officer at Terry data. And Danielle Greshaw is back with us, the ISV PSA director at AWS ladies. It's great to have you on the program talking through such an important topic, Hillary, let's go ahead and start with you. Give us a little bit of an intro into you, your background, and a little bit about Teradata. >>Yeah, absolutely. So I'm Hillary Ashton. I head up the products organization. So that's our engineering product management office of the CTO team. Um, at Teradata I've been with Terra data for just about three years and really have spent the last several decades. If I can say that in the data and analytics space, um, I spent time, uh, really focused on the value of, of analytics at scale, and I'm super excited to be here at Teradata. I'm also a mom of two teenage boys. And so as we talk about women in tech, I think there's, um, uh, lots of different dimensions and angles of that. Um, at Teradata, we are partnered very deeply with AWS and happy to talk a little bit more about that, um, throughout this discussion as well. >>Excellent. A busy mom of two teen boys. My goodness. I don't know how you do it. Let's now look, Atter data's views of diversity, equity and inclusion. It's a, the, it's a topic that's important to everyone, but give us a snapshot into some of the initiatives that Terra data has there. >>Yeah, I have to say, I am super proud to be working at Teradata. We have gone through, uh, a series of transformations, but I think it starts with culture and we are deeply committed to diversity, equity and inclusion. It's really more than just a statement here. It's just how we live our lives. Um, and we use, uh, data to back that up. Um, in fact, we were named one of the world's most ethical companies for the 13th year in a row. Um, and all of our executive leadership team has taken an oath around D E and I that's available on LinkedIn as well. So, um, in fact, our leadership team reporting into the CEO is just about 50 50, um, men and women, which is the first time I've worked in a company where that has been the case. And I think as individuals, we can probably appreciate what a huge difference that makes in terms of not just being a representative, but truly being on a, on a diverse and equitable, uh, team. And I think it really, uh, improves the behaviors that we can bring, um, to our office. >>There's so much value in that. It's I impressive to see about a 50 50 at the leadership level. That's not something that we see very often. Tell me how you, Hillary, how did you get into tech? Were you an engineering person by computer science, or did you have more of a zigzaggy path to where you are now? >>I'm gonna pick door number two and say more zigzaggy. Um, I started off thinking, um, that I started off as a political science major or a government major. Um, and I was probably destined to go into, um, the law field, but actually took a summer course at Harvard. I did not go to Harvard, but I took a summer course there and learned a lot about multimedia and some programming. And that really set me on a trajectory of how, um, data and analytics can truly provide value and, and outcomes to our customers. Um, and I have been living that life ever since. Um, I graduated from college, so, um, I was very excited and privileged in my early career to, uh, work in a company where I found after my first year that I was managing, um, uh, kids, people who had graduated from Harvard business school and from MIT Sloan school. Um, and that was super crazy, cuz I did not go to either of those schools, but I sort of have always had a natural knack for how do you take technology and, and the really cool things that technology can do, but because I'm not a programmer by training, I'm really focused on the value that I'm able to help, um, organizations really extract value, um, from the technology that we can create, which I think is fantastic. >>I think there's so much value in having a zigzag path into tech. You bring Danielle, you and I have talked about this many times you bring such breadth and such a wide perspective. That really is such a value. Add to teams. Danielle, talk to us from AWS's perspective about what can be done to encourage more young women to get and under and underrepresented groups as well, to get into stem and stay. >>Yeah, and this is definitely a challenge as we're trying to grow our organization and kind of shift the numbers. And the reality is, especially with the more senior folks in our organization, unless you bring folks with a zigzag path, the likelihood is you won't be able to change the numbers that you have. Um, but for me, it's really been about, uh, looking at that, uh, the folks who are just graduating college, maybe in other roles where they are adjacent to technology and to try to spark their interest and show that yes, they can do it because oftentimes it's really about believing in themselves and, and realizing that we need folks with all sorts of different perspectives to kind of come in, to be able to help really, um, provide both products and services and solutions for all types of people inside of technology, which requires all sorts of perspectives. >>Yeah, the diverse perspectives. There's so much value and there's a lot of data that demonstrates how much value revenue impact organizations can make by having diversity, especially at the leadership level. Hillary, let's go back to you. We talked about your career path. You talked about some of the importance of the focus on de and I at Tarana, but what are, what do you think can be done to encourage, to sorry, to recruit more young women and under groups into tech, any, any carrot there that you think are really important that we need to be dangling more of? >>Yeah, absolutely. And I'll build on what Danielle just said. I think the, um, bringing in diverse understandings, um, of, of customer outcomes, I mean, I, the we've really moved from technology for technology's sake and I know AWS and entirety to have had a lot of conversations on how do we drive customer outcomes that are differentiated in the market and really being customer centric and technology is wonderful. You can do wonderful things with it. You can do not so wonderful things with it as well, but unless you're really focused on the outcomes and what customers are seeking, um, technology is not hugely valuable. And so I think bringing in people who understand, um, voice of customer who understand those outcomes, and those are not necessarily the, the, the folks who are PhD in mathematics or statistics, um, those can be people who understand a day in the life of a data scientist or a day in the life of a citizen data scientist. And so really working to bridge the high impact technology with the practical kind of usability, usefulness of data and analytics in our cases, I think is something that we need more of in tech and sort of demystifying tech and freeing technology so that everybody can use it and having a really wide range of people who understand not just the bits and bites and, and how to program, but also the value in outcomes that technology through data and analytics can drive. >>Yeah. You know, we often talk about the hard skills, but this, their soft skills are equally, if not more important that even just being curious, being willing to ask questions, being not afraid to be vulnerable, being able to show those sides of your personality. I think those are important for, for young women and underrepresented groups to understand that those are just as important as some of the harder technical skills that can be taught. >>That's right. >>What do you think about from a bias perspective, Hillary, what have you seen in the tech industry and how do you think we can leverage culture as you talked about to help dial down some of the biases that are going on? >>Yeah. I mean, I think first of all, and, and there's some interesting data out there that says that 90% of the population, which includes a lot of women have some inherent bias in their day, day behaviors when it comes to to women in particular. But I'm sure that that is true across all kinds of, of, um, diverse and underrepresented folks in, in the world. And so I think acknowledging that we have bias and actually really learning how, what that can look like, how that can show up. We might be sitting here and thinking, oh, of course I don't have any bias. And then you realize that, um, as you, as you learn more about, um, different types of bias, that actually you do need to kind of, um, account for that and change behaviors. And so I think learning is sort of a fundamental, um, uh, grounding for all of us to really know what bias looks like, know how it shows up in each of us. >>Um, if we're leaders know how it shows up in our teams and make sure that we are constantly getting better, we're, we're not gonna be perfect anytime soon. But I think being on a path to improvement to overcoming bias, um, is really, is really critical. And part of that is really starting the dialogue, having the conversations, holding ourselves and each other accountable, um, when things aren't going in, in a, in a Coptic way and being able to talk openly about that, that felt, um, like maybe there was some bias in that interaction and how do we, um, how do we make good on that? How do we change our, our behavior? Fundamentally of course, data and analytics can have some bias in it as well. And so I think as we look at the, the technology aspect of bias, um, looking at at ethical AI, I think is a, a really important, uh, additional area. And I'm sure we could spend another 20 minutes talking about that, but I, I would be remiss if I didn't talk more about sort of the bias, um, and the over the opportunity to overcome bias in data and analytics as well. >>Yeah. The opportunity to overcome it is definitely there you bring up a couple of really good points, Hillary. It, it starts with awareness. We need to be aware that there are inherent biases in data in thought. And also to your other point, hold people accountable ourselves, our teammates, that's critical to being able to, to dial that back down, Daniel, I wanna get your perspective on, on your view of women in leadership roles. Do you think that we have good representation or we still have work to do in there? >>I definitely think in both technical and product roles, we definitely have some work to do. And, you know, when I think about, um, our partnership with Teradata, part of the reason why it's so important is, you know, Teradata solution is really the brains of a lot of companies. Um, you know, the what, how, what they differentiate on how they figure out insights into their business. And it's, it's all about the product itself and the data and the same is true at AWS. And, you know, we really could do some work to have some more women in these technical roles, as well as in the product, shaping the products. Uh, just for all the reasons that we just kind of talked about over the last 10 minutes, um, in order to, you know, move bias out of our, um, out of our solutions and also to just build better products and have, uh, better, you know, outcomes for customers. So I think there's a bit of work to do still. >>I agree. There's definitely a bit of work to do, and it's all about delivering those better outcomes for customers at the end of the day, we need to figure out what the right ways are of doing that and working together in a community. Um, we've had obviously a lot had changed in the last couple of years, Hillary, what's your, what have you seen in terms of the impact that the pandemic has had on this status of women in tech? Has it been a pro is silver lining the opposite? What are you seeing? >>Yeah, I mean, certainly there's data out there that tells us factually that it has been, um, very difficult for women during COVID 19. Um, women have, uh, dropped out of the workforce for a wide range of, of reasons. Um, and, and that I think is going to set us back all of us, the, the Royal us or the Royal we back, um, years and years. Um, and, and it's very unfortunate because I think we we're at a time when we're making great progress and now to see COVID, um, setting us back in, in such a powerful way. I think there's work to be done to understand how do we bring people back into the workforce. Um, how do we do that? Understanding work life balance, better understanding virtual and remote, working better. I think in the technology sector, um, we've really embraced, um, hybrid virtual work and are, are empowering people to bring their whole selves to work. >>And I think if anything, these, these zoom calls have, um, both for the men and the women on my team. In fact, I would say much more. So for the men on my team, I'm seeing, I was seeing more kids in the background, more kind of split childcare duties, more ability to start talking about, um, other responsibilities that maybe they had, uh, especially in the early days of COVID where maybe daycares were shut down. And, um, you had, you know, maybe a parent was sick. And so we saw quite a lot of, um, people bringing their whole selves to the office, which I think was, was really wonderful. Um, uh, even our CEO saw some of that. And I think, um, that that really changes the dialogue, right? It changes it to maybe scheduling meetings at a time when, um, people can do it after daycare drop off. >>Um, and really allowing that both for men and for women makes it better for, for women overall. So I would like to think that this hybrid working, um, environment and that this, um, uh, whole view into somebody's life that COVID has really provided for probably for white collar workers, if I'm being honest for, um, people who are in a, at a better point of privilege, they don't necessarily have to go into the office every day. I would like to think that tech can lead the way in, um, you know, coming out of the, the old COVID. I don't know if we have a new COVID coming, but the old COVID and really leading the way for women and for people, um, to transform how we do work, um, leveraging data and analytics, but also, um, overcoming some of the, the disparities that exist for women in particular in the workforce. >>Yeah, I think there's, there's like we say, there's a lot of opportunity there and I like your point of hopefully tech can be that guiding light that shows us this can be done. We're all humans at the end of the day. And ultimately if we're able to have some sort of work life balance, everything benefits, our work or more productive, higher performing teams impacts customers, right? There's so much value that can be gleaned from, from that hybrid model and embracing for humans. We need to be able to, to work when we can, we've learned that you don't have to be, you know, in an office 24, 7 commuting, crazy hours flying all around the world. We can get a lot of things done in a ways that fit people's lives rather than taking command over it. Wanna get your advice, Hillary, if you were to talk to your younger self, what would be some of the key pieces of advice you would say? And Danielle and I have talked about this before, and sometimes we, we would both agree on like, ask more questions. Don't be afraid to raise your hand, but what advice would you give your younger self and that younger generation in terms of being inspired to get into tech >>Oh, inspired and being in tech? You know, I think looking at technology as, in some ways, I feel like we do a disservice to, um, inclusion when we talk about stem, cuz I think stem can be kind of daunting. It can be a little scary for people for younger people. When I, when I go and talk to folks at schools, I think stem is like, oh, all the super smart kids are over there. They're all like maybe they're all men. And so, um, it's, it's a little, uh, intimidating. Um, and stem is actually, you know, especially for, um, people joining the workforce today. It's actually how you've been living your life since you were born. I mean, you know, stem inside and out because you walk around with a phone and you know how to get your internet working and like that is technology right. >>Fundamentally. And so demystifying stem as something that is around how we, um, actually make our, our lives useful and, and, and how we can change outcomes. Um, through technology I think is maybe a different lens to put on it. So, and there's absolutely for, for hard sciences, there's absolutely a, a great place in the world for folks who wanna pursue that and men and women can do that. So I, I don't want to be, um, uh, setting the wrong expectations, but I, I think stem is, is very holistic in, um, in the change that's happening globally for us today across economies, across global warming, across all kinds of impactful issues. And so I think everybody who's interested in, in some of that world change can participate in stem. It just may be through a different, through a different lens than how we classically talk about stem. >>So I think there's great opportunity to demystify stem. I think also, um, what I would tell my younger self is choose your bosses wisely. And that sounds really funny. That sounds like inside out almost, but I think choose the person that you're gonna work for in your first five to seven years. And it might be more than one person, but be, be selective, maybe be a little less selective about the exact company or the exact title. I think picking somebody that, you know, we talk about mentors and we talk about sponsors and those are important. Um, but the person you're gonna spend in your early career, a lot of your day with a lot, who's gonna influence a lot of the outcomes for you. That is the person that you, I think want to be more selective about, um, because that person can set you up for success and give you opportunities and set you on course to be, um, a standout or that person can hold you back. >>And that person can put you in the corner and not invite you to the meetings and not give you those opportunities. And so we're in an economy today where you actually can, um, be a little bit picky about who you go and work for. And I would encourage my younger self. I actually, I just lucked out actually, but I think that, um, my first boss really set me, um, up for success, gave me a lot of feedback and coaching. Um, and some of it was really hard to hear, but it really set me up for, for, um, the, the path that I've been on ever since. So it, that would be my advice. >>I love that advice. I it's brilliant. I didn't think it choose your bosses wisely. Isn't something that we primarily think about. I think a lot of people think about the big name companies that they wanna go after and put on a resume, but you bring up a great point. And Danielle and I have talked about this with other guests about mentors and sponsors. I think that is brilliant advice and also more work to do to demystify stem. But luckily we have great family leaders like the two of you helping us to do that. Ladies, I wanna thank you so much for joining me on the program today and talking through what you're seeing in de and I, what your companies are doing and the opportunities that we have to move the needle. Appreciate your time. >>Thank you so much. Great to see you, Danielle. Thank you Lisa, to see you. >>My pleasure for my guests. I'm Lisa Martin. You're watching the AWS partner showcase season one, episode three. Hey everyone. Welcome to the AWS partner showcase. This is season one, episode three, with a focus on women in tech. I'm your host, Lisa Martin. I've got two guests here with me, Sue Peretti, the EVP of global AWS strategic alliances at Jefferson Frank, a 10th revolution group company, and Danielle brushoff. One of our cube alumni joins us ISV PSA director, ladies. It's great to have you on the program talking about a, a topic that is near and dear to my heart at women in tech. >>Thank you, Lisa. >>So let's go ahead and start with you. Give the audience an understanding of Jefferson Frank, what does the company do and about the partnership with AWS? >>Sure. Um, so let's just start, uh, Jefferson Frank is a 10th revolution group company. And if you look at it, it's really talent as a service. So Jefferson Frank provides talent solutions all over the world for AWS clients, partners and users, et cetera. And we have a sister company called revelent, which is a talent creation company within the AWS ecosystem. So we create talent and put it out in the ecosystem. Usually underrepresented groups over half of them are women. And then we also have, uh, a company called rubra, which is a delivery model around AWS technology. So all three companies fall under the 10th revolution group organization. >>Got it. Danielle, talk to me a little bit about from AWS's perspective and the focus on hiring more women in technology and about the partnership. >>Yes. I mean, this has definitely been a focus ever since I joined eight years ago, but also just especially in the last few years we've grown exponentially and our customer base has changed. You know, we wanna have, uh, an organization interacting with them that reflects our customers, right. And, uh, we know that we need to keep pace with that even with our growth. And so we've very much focused on early career talent, um, bringing more women and underrepresented minorities into the organization, sponsoring those folks, promoting them, uh, giving them paths to growth, to grow inside of the organization. I'm an example of that. Of course I benefit benefited from it, but also I try to bring that into my organization as well. And it's super important. >>Tell me a little bit about how you benefited from that, Danielle. >>Um, I just think that, um, you know, I I've been able to get, you know, a seat at the table. I think that, um, I feel as though I have folks supporting me, uh, very deeply and wanna see me succeed. And also they put me forth as, um, you know, a, represent a representative, uh, to bring more women into the organization as well. And I think, um, they give me a platform, uh, in order to do that, um, like this, um, but also many other, uh, spots as well. Um, and I'm happy to do it because I feel that, you know, if you always wanna feel that you're making a difference in your job, and that is definitely a place where I get that time and space in order to be that representative to, um, bring more, more women into benefiting from having careers in technology, which there's a lot of value there, >>A lot of value. Absolutely. So back over to you, what are some of the trends that you are seeing from a gender diversity perspective in tech? We know the, the numbers of women in technical positions, uh, right. There's so much data out there that shows when girls start dropping up, but what are some of the trends that you are seeing? >>So it's, that's a really interesting question. And, and Lisa, I had a whole bunch of data points that I wanted to share with you, but just two weeks ago, uh, I was in San Francisco with AWS at the, at the summit. And we were talking about this. We were talking about how we can collectively together attract more women, not only to, uh, AWS, not only to technology, but to the AWS ecosystem in particular. And it was fascinating because I was talking about, uh, the challenges that women have and how hard to believe, but about 5% of women who were in the ecosystem have left in the past few years, which was really, really, uh, something that shocked everyone when we, when we were talking about it, because all of the things that we've been asking for, for instance, uh, working from home, um, better pay, uh, more flexibility, uh, better maternity leave seems like those things are happening. >>So we're getting what we want, but people are leaving. And it seemed like the feedback that we got was that a lot of women still felt very underrepresented. The number one thing was that they, they couldn't be, you can't be what you can't see. So because they, we feel collectively women, uh, people who identify as women just don't see enough women in leadership, they don't see enough mentors. Um, I think I've had great mentors, but, but just not enough. I'm lucky enough to have a pres a president of our company, the president of our company, Zoe Morris is a woman and she does lead by example. So I'm very lucky for that. And Jefferson, Frank really quickly, we put out a hiring a salary and hiring guide a career and hiring guide every year and the data points. And that's about 65 pages long. No one else does it. Uh, it gives an abundance of information around, uh, everything about the AWS ecosystem that a hiring manager might need to know. But there is what, what I thought was really unbelievable was that only 7% of the people that responded to it were women. So my goal, uh, being that we have such a very big global platform is to get more women to respond to that survey so we can get as much information and take action. So >>Absolutely 7%. So a long way to go there. Danielle, talk to me about AWS's focus on women in tech. I was watching, um, Sue, I saw that you shared on LinkedIn, the Ted talk that the CEO and founder of girls and co did. And one of the things that she said was that there was a, a survey that HP did some years back that showed that, um, 60%, that, that men will apply for jobs if they only meet 60% of the list of requirements. Whereas with females, it's far, far less, we've all been in that imposter syndrome, um, conundrum before. But Danielle, talk to us about AWS, a specific focus here to get these numbers up. >>I think it speaks to what Susan was talking about, how, you know, I think we're approaching it top and bottom, right? We're looking out at what are the, who are the women who are currently in technical positions and how can we make AWS an attractive place for them to work? And that's all a lot of the changes that we've had around maternity leave and, and those types of things, but then also, um, more flexible working, uh, can, you know, uh, arrangements, but then also, um, early, how can we actually impact early, um, career women and actually women who are still in school. Um, and our training and certification team is doing amazing things to get, um, more girls exposed to AWS, to technology, um, and make it a less intimidating place and have them look at employees from AWS and say like, oh, I can see myself in those people. >>Um, and kind of actually growing the viable pool of candidates. I think, you know, we're, we're limited with the viable pool of candidates, um, when you're talking about mid to late career. Um, but how can we, you know, help retrain women who are coming back into the workplace after, you know, having a child and how can we help with military women who want to, uh, or underrepresented minorities who wanna move into AWS, we have a great military program, but then also just that early high school, uh, career, you know, getting them in, in that trajectory. >>Sue, is that something that Jefferson Frank is also able to help with is, you know, getting those younger girls before they start to feel there's something wrong with me. I don't get this. Talk to us about how Jefferson Frank can help really drive up that in those younger girls. >>Uh, let me tell you one other thing to refer back to that summit that we did, uh, we had breakout sessions and that was one of the topics. What can cuz that's the goal, right? To make sure that, that there are ways to attract them. That's the goal? So some of the things that we talked about was mentoring programs, uh, from a very young age, some people said high school, but then we said even earlier, goes back to you. Can't be what you can't see. So, uh, getting mentoring programs, uh, established, uh, we also talked about some of the great ideas was being careful of how we speak to women using the right language to attract them. And some, there was a teachable moment for, for me there actually, it was really wonderful because, um, an African American woman said to me, Sue and I, I was talking about how you can't be what you can't see. >>And what she said was Sue, it's really different. Um, for me as an African American woman, uh, or she identified, uh, as nonbinary, but she was relating to African American women. She said, your white woman, your journey was very different than my journey. And I thought, this is how we're going to learn. I wasn't offended by her calling me out at all. It was a teachable moment. And I thought I understood that, but those are the things that we need to educate people on those, those moments where we think we're, we're saying and doing the right thing, but we really need to get that bias out there. So here at Jefferson, Frank, we're, we're trying really hard to get that careers and hiring guide out there. It's on our website to get more women, uh, to talk to it, but to make suggestions in partnership with AWS around how we can do this mentoring, we have a mentor me program. We go around the country and do things like this. We, we try to get the education out there in partnership with AWS. Uh, we have a, a women's group, a women's leadership group, uh, so much that, that we do, and we try to do it in partnership with AWS. >>Danielle, can you comment on the impact that AWS has made so far, um, regarding some of the trends and, and gender diversity that Sue was talking about? What's the impact that's been made so far with this partnership? >>Well, I mean, I think just being able to get more of the data and have awareness of leaders, uh, on how <laugh>, you know, it used to be a, a couple years back, I would feel like sometimes the, um, uh, solving to bring more women into the organization was kind of something that folks thought, oh, this is Danielle is gonna solve this. You know? And I think a lot of folks now realize, oh, this is something that we all need to solve for. And a lot of my colleagues who maybe a couple years ago, didn't have any awareness or didn't even have the tools to do what they needed to do in order to improve the statistics on their, or in their organizations. Now actually have those tools and are able to kind of work with, um, work with companies like Susan's work with Jefferson Frank in order to actually get the data and actually make good decisions and feel as though, you know, they, they often, these are not lived experiences for these folks, so they don't know what they don't know. And by providing data and providing awareness and providing tooling and then setting goals, I think all of those things have really turned, uh, things around in a very positive way. >>And so you bring up a great point about from a diversity perspective, what is Jefferson Frank doing to, to get those data points up, to get more women of, of all well, really underrepresented minorities to, to be able to provide that feedback so that you can, can have the data and gleamy insights from it to help companies like AWS on their strategic objectives. >>Right? So as I, when I go back to that higher that, uh, careers in hiring guide, that is my focus today, really because the more data that we have, I mean, the, and the data takes, uh, you know, we need people to participate in order to, to accurately, uh, get a hold of that data. So that's why we're asking, uh, we're taking the initiative to really expand our focus. We are a global organization with a very, very massive database all over the world, but if people don't take action, then we can't get the right. The, the, the data will not be as accurate as we'd like it to be. Therefore take better action. So what we're doing is we're asking people all over the, all over the world to participate on our website, Jefferson frank.com, the se the high, uh, in the survey. So we can learn as much as we can. >>7% is such a, you know, Danielle and I we're, we've got to partner on this just to sort of get that message out there, get more data so we can execute, uh, some of the other things that we're doing. We're, we're partnering in. As I mentioned, more of these events, uh, we're, we're doing around the summits, we're gonna be having more ed and I events and collecting more information from women. Um, like I said, internally, we do practice what we preach and we have our own programs that are, that are out there that are within our own company where the women who are talking to candidates and clients every single day are trying to get that message out there. So if I'm speaking to a client or one of our internal people are speaking to a client or a candidate, they're telling them, listen, you know, we really are trying to get these numbers up. >>We wanna attract as many people as we can. Would you mind going to this, uh, hiring guide and offering your own information? So we've gotta get that 7% up. We've gotta keep talking. We've gotta keep, uh, getting programs out there. One other thing I wanted to Danielle's point, she mentioned, uh, women in leadership, the number that we gathered was only 9% of women in leadership within the AWS ecosystem. We've gotta get that number up, uh, as well because, um, you know, I know for me, when I see people like Danielle or, or her peers, it inspires me. And I feel like, you know, I just wanna give back, make sure I send the elevator back to the first floor and bring more women in to this amazing ecosystem. >>Absolutely. That's not that metaphor I do too, but we, but to your point to get that those numbers up, not just at AWS, but everywhere else we need, it's a help me help use situation. So ladies underrepresented minorities, if you're watching go to the Jefferson Frank website, take the survey, help provide the data so that the woman here that are doing this amazing work, have it to help make decisions and have more of females and leadership roles or underrepresented minorities. So we can be what we can see. Ladies, thank you so much for joining me today and sharing what you guys are doing together to partner on this important. Cause >>Thank you for having me, Leah, Lisa, >>Thank you. My pleasure for my guests. I'm Lisa Martin. You're watching the cubes coverage of the AWS partner showcase. Thanks for your time. Hey everyone. Welcome to the AWS partner showcase season one, episode three women in tech. I'm your host, Lisa Martin. We've got two female rock stars here with me next. Stephanie Curry joins us the worldwide head of sales and go to market strategy for AWS at NetApp and Danielle GShock is back one of our QM ISV PSA director at AWS. Looking forward to a great conversation, ladies, about a great topic, Stephanie, let's go ahead and start with you. Give us an overview of your story, how you got into tech and what inspired you. >>Thanks so much, Lisa and Danielle. It's great to be on this show with you. Um, thank you for that. Uh, my name's Stephanie cur, as Lisa mentioned, I'm the worldwide head of sales for, uh, AWS at NetApp and run a global team of sales people that sell all things AWS, um, going back 25 years now, uh, when I first started my career in tech, it was kind of by accident. Um, I come from a different background. I have a business background and a technical background from school, um, but had been in a different career and I had an opportunity to try something new. Um, I had an ally really that reached out to me and said, Hey, you'd be great for this role. And I thought, I'd take a chance. I was curious. Um, and, uh, it, it turned out to be a 25 year career, um, that I'm really, really excited about and, and, um, really thankful for that person, for introducing me to the, to the industry >>25 years in counting. I'm sure Danielle, we've talked about your background before. So what I wanna focus on with you is the importance of diversity for high performance. I know what a machine AWS is, and Stephanie'll come back to you with the same question, but talk about that, Danielle, from your perspective, that importance, um, for diversity to drive the performance. >>Yeah. Yeah. I truly believe that, you know, in order to have high performing teams, that you have to have people from all different types of backgrounds and experiences. And we do find that oftentimes being, you know, field facing, if we're not reflecting our customers and connecting with them deeply, um, on, on the levels that they're at, we, we end up missing them. And so for us, it's very important to bring people of lots of different technical backgrounds experiences. And of course, both men, women, and underrepresented minorities and put that forth to our customers, um, in order to make that connection and to end up with better outcomes. So >>Definitely it's all about outcomes, Stephanie, your perspective and NetApp's perspective on diversity for creating highly performant teams and organizations. >>I really aligned with Danielle on the comment she made. And in addition to that, you know, just from building teams in my, um, career know, we've had three times as many women on my team since we started a year ago and our results are really showing in that as well. Um, we find the teams are stronger, they're more collaborative and to Danielle's point really reflective, not only our partners, but our customers themselves. So this really creates connections, which are really, really important to scale our businesses and, and really, uh, meet the customer where they're at as well. So huge proponent of that ourselves, and really finding that we have to be intentional in our hiring and intentional in how we attract diversity to our teams. >>So Stephanie let's stay with you. So a three X increase in women on the team in a year, especially the kind of last year that we've had is really incredible. I, I like your, I, your thoughts on there needs to be a, there needs to be focus and, and thought in how teams are hired. Let's talk about attracting and retaining those women now, especially in sales roles, we all know the number, the percentages of women in technical roles, but what are some of the things that, that you do Stephanie, that NetApp does to attract and retain women in those sales roles? >>The, the attracting part's really interesting. And we find that, you know, you, you read the stats and I'd say in my experience, they're also true in the fact that, um, a lot of women would look at a job description and say, I can't do a hundred percent of that, that, so I'm not even going to apply with the women that we've attracted to our team. We've actually intentionally reached out and targeted those people in a good way, um, to say, Hey, we think you've got what it takes. Some of the feedback I've got from those women are, gosh, I didn't think I could ever get this role. I didn't think I had the skills to do that. And they've been hired and they are doing a phenomenal job. In addition to that, I think a lot of the feedback I've got from these hires are, Hey, it's an aggressive sales is aggressive. Sales is competitive. It's not an environment that I think I can be successful in. And what we're showing them is bring those softer skills around collaboration, around connection, around building teams. And they do, they do bring a lot of that to the team. Then they see others like them there and they know they can be successful cuz they see others like them on the team, >>The whole concept of we can't be what we can't see, but we can be what we can't see is so important. You said a couple things, Stephanie, that really stuck with me. And one of them was an interview on the Cub I was doing, I think a couple weeks ago, um, about women in tech. And the stat that we talked about was that women will apply will not apply for a job unless they meet 100% of the skills and the requirements that it's listed, but men will, if they only meet 60. And I, that just shocked me that I thought, you know, I, I can understand that imposter syndrome is real. It's a huge challenge, but the softer skills, as you mentioned, especially in the last two years, plus the ability to communicate, the ability to collaborate are incredibly important to, to drive that performance of any team of any business. >>Absolutely. >>Danielle, talk to me about your perspective and AWS as well for attracting and retaining talent. And, and, and particularly in some of those challenging roles like sales that as Stephanie said, can be known as aggressive. >>Yeah, for sure. I mean, my team is focused on the technical aspect of the field and we definitely have an uphill battle for sure. Um, two things we are focused on first and foremost is looking at early career women and that how we, how can we bring them into this role, whether in they're in support functions, uh, cl like answering the phone for support calls, et cetera, and how, how can we bring them into this organization, which is a bit more strategic, more proactive. Um, and then the other thing that as far as retention goes, you know, sometimes there will be women who they're on a team and there are no other women on that team. And, and for me, it's about building community inside of AWS and being part of, you know, we have women on solution architecture organizations. We have, uh, you know, I just personally connect people as well and to like, oh, you should meet this person. Oh, you should talk to that person. Because again, sometimes they can't see someone on their team like them and they just need to feel anchored, especially as we've all been, you know, kind of stuck at home, um, during the pandemic, just being able to make those connections with women like them has been super important and just being a, a long tenured Amazonian. Um, that's definitely one thing I'm able to, to bring to the table as well. >>That's so important and impactful and spreads across organizations in a good way. Daniel let's stick with you. Let's talk about some of the allies that you've had sponsors, mentors that have really made a difference. And I said that in past tense, but I also mean in present tense, who are some of those folks now that really inspire you? >>Yeah. I mean, I definitely would say that one of my mentors and someone who, uh, ha has been a sponsor of my career has, uh, Matt YK, who is one of our control tower GMs. He has really sponsored my career and definitely been a supporter of mine and pushed me in positive ways, which has been super helpful. And then other of my business partners, you know, Sabina Joseph, who's a cube alum as well. She definitely has been, was a fabulous partner to work with. Um, and you know, between the two of us for a period of time, we definitely felt like we could, you know, conquer the world. It's very great to go in with a, with another strong woman, um, you know, and, and get things done, um, inside of an organization like AWS. >>Absolutely. And S I've, I've agreed here several times. So Stephanie, same question for you. You talked a little bit about your kind of, one of your, uh, original early allies in the tech industry, but talk to me about allies sponsors, mentors who have, and continue to make a difference in your life. >>Yeah. And, you know, I think it's a great differentiation as well, right? Because I think that mentors teach us sponsors show us the way and allies make room for us at the table. And that is really, really key difference. I think also as women leaders, we need to make room for others at the table too, and not forget those softer skills that we bring to the table. Some of the things that Danielle mentioned as well about making those connections for others, right. And making room for them at the table. Um, some of my allies, a lot of them are men. Brian ABI was my first mentor. Uh, he actually is in the distribution, was in distribution, uh, with advent tech data no longer there. Um, Corey Hutchinson, who's now at Hashi Corp. He's also another ally of mine and remains an ally of mine, even though we're not at the same company any longer. Um, so a lot of these people transcend careers and transcend, um, um, different positions that I've held as well and make room for us. And I think that's just really critical when we're looking for allies and when allies are looking for us, >>I love how you described allies, mentors and sponsors Stephanie. And the difference. I didn't understand the difference between a mentor and a sponsor until a couple of years ago. Do you talk with some of those younger females on your team so that when they come into the organization and maybe they're fresh outta college, or maybe they've transitioned into tech so that they can also learn from you and understand the importance and the difference between the allies and the sponsors and the mentors? >>Absolutely. And I think that's really interesting because I do take, uh, an extra, uh, approach an extra time to really reach out to the women that have joined the team. One. I wanna make sure they stay right. I don't want them feeling, Hey, I'm alone here and I need to, I need to go do something else. Um, and they are located around the world, on my team. They're also different age groups, so early in career, as well as more senior people and really reaching out, making sure they know that I'm there. But also as Danielle had mentioned, connecting them to other people in the community that they can reach out to for those same opportunities and making room for them >>Make room at the table. It's so important. And it can, you never know what a massive difference and impact you can make on someone's life. And I, and I bet there's probably a lot of mentors and sponsors and allies of mine that would be surprised to know, uh, the massive influence they've had Daniel back over. Let's talk about some of the techniques that you employ, that AWS employees to make the work environment, a great place for women to really thrive and, and be retained as Stephanie was saying. Of course that's so important. >>Yeah. I mean, definitely I think that the community building, as well as we have a bit more programmatic mentorship, um, we're trying to get to the point of having a more programmatic sponsorship as well. Um, but I think just making sure that, um, you know, both everything from, uh, recruit to onboard to ever boarding that, uh, they they're the women who come into the organization, whether it's they're coming in on the software engineering side or the field side or the sales side that they feel as that they have someone, uh, working with them to help them drive their career. Those are the key things that were, I think from an organizational perspective are happening across the board. Um, for me personally, when I run my organization, I'm really trying to make sure that people feel that they can come to me at any time open door policy, make sure that they're surfacing any times in which they are feeling excluded or anything like that, any challenges, whether it be with a customer, a partner or with a colleague. Um, and then also of course, just making sure that I'm being a good sponsor, uh, to, to people on my team. Um, that is key. You can talk about it, but you have to start with yourself as well. >>That's a great point. You you've got to, to start with yourself and really reflect on that. Mm-hmm <affirmative> and look, am I, am I embodying what it is that I need? And not that I know they need that focused, thoughtful intention on that is so importants, let's talk about some of the techniques that you use that NetApp uses to make the work environment a great place for those women are marginalized, um, communities to really thrive. >>Yeah. And I appreciate it and much like Danielle, uh, and much like AWS, we have some of those more structured programs, right around sponsorship and around mentorship. Um, probably some growth there, opportunities for allies, because I think that's more of a newer concept in really an informal structure around the allies, but something that we're growing into at NetApp, um, on my team personally, I think, um, leading by example's really key. And unfortunately, a lot of the, um, life stuffs still lands on the women, whether we like it or not. Uh, I have a very, uh, active husband in our household, but I still carry when it push comes to shove it's on me. Um, and I wanna make sure that my team knows it's okay to take some time and do the things you need to do with your family. Um, I'm I show up as myself authentically and I encourage them to do the same. >>So it's okay to say, Hey, I need to take a personal day. I need to focus on some stuff that's happening in my personal life this week now, obviously to make sure your job's covered, but just allowing some of that softer vulnerability to come into the team as well, so that others, um, men and women can feel they can do the same thing. And that it's okay to say, I need to balance my life and I need to do some other things alongside. Um, so it's the formal programs, making sure people have awareness on them. Um, I think it's also softly calling people out on biases and saying, Hey, I'm not sure if you know, this landed that way, but I just wanted to make you aware. And usually the feedback is, oh my gosh, I didn't know. And could you coach me on something that I could do better next time? So all of this is driven through our NetApp formal programs, but then it's also how you manifest it on the teams that we're leading. >>Absolutely. And sometimes having that mirror to reflect into can be really eye-opening and, and allow you to, to see things in a completely different light, which is great. Um, you both talked about, um, kind of being what you, uh, can see, and, and I know both companies are upset customer obsessed in a good way. Talk to me a little bit, Danielle, go back over to you about the AWS NetApp partnership. Um, some of that maybe alignment on, on performance on obviously you guys are very well aligned, uh, in terms of that, but also it sounds like you're quite aligned on diversity and inclusion. >>Well, we definitely do. We have the best partnerships with companies in which we have these value alignments. So I think that is a positive thing, of course, but just from a, from a partnership perspective, you know, from my five now plus years of being a part of the APN, this is, you know, one of the most significant years with our launch of FSX for NetApp. Um, with that, uh, key key service, which we're making available natively on AWS. I, I can't think of a better Testament to the, to the, um, partnership than that. And that's doing incredibly well and it really resonates with our customers. And of course it started with customers and their need for NetApp. Uh, so, you know, that is a reflection, I think, of the success that we're having together. >>And Stephanie talk to, uh, about the partnership from your perspective, NetApp, AWS, what you guys are doing together, cultural alignment, but also your alignment on really bringing diversity into drive performance. >>Yeah, I think it's a, a great question. And I have to say it's just been a phenomenal year. Our relationship has, uh, started before our first party service with FSX N but definitely just, um, uh, the trajectory, um, between the two companies since the announcement about nine months ago has just taken off to a, a new level. Um, we feel like an extended part of the family. We worked together seamlessly. A lot of the people in my team often say we feel like Amazonians. Um, and we're really part of this transformation at NetApp from being that storage hardware company into being an ISV and a cloud company. And we could not do this without the partnership with AWS and without the, uh, first party service of Fs XM that we've recently released. Um, I think that those joint values that Danielle referred to are critical to our success, um, starting with customer obsession and always making sure that we are doing the right thing for the customer. >>We coach our team teams all the time on if you are doing the right thing for the customers, you cannot do anything wrong. Just always put the customer at the, in the center of your decisions. And I think that there is, um, a lot of best practice sharing and collaboration as we go through this change. And I think a lot of it is led by the diverse backgrounds that are on the team, um, female, male, um, race and so forth, and just to really, uh, have different perspectives and different experiences about how we approach this change. Um, so we definitely feel like a part of the family. Uh, we are absolutely loving, uh, working with the AWS team and our team knows that we are the right place, the right time with the right people. >>I love that last question for each of you. And I wanna stick with you Stephanie advice to your younger self, think back five years. What advice would you seen what you've accomplished and maybe the thet route that you've taken along the way, what would you advise your youngest Stephanie self. >>Uh, I would say keep being curious, right? Keep being curious, keep asking questions. And sometimes when you get a no, it's not a bad thing, it just means not right now and find out why and, and try to get feedback as to why maybe that wasn't the right opportunity for you. But, you know, just go for what you want. Continue to be curious, continue to ask questions and find a support network of people around you that wanna help you because they are there and they, they wanna see you be successful too. So never be shy about that stuff. >><laugh> absolutely. And I always say failure does not have to be an, a bad F word. A no can be the beginning of something. Amazing. Danielle, same question for you. Thinking back to when you first started in your career, what advice would you give your younger self? >>Yeah, I think the advice I'd give my younger self would be, don't be afraid to put yourself out there. Um, it's certainly, you know, coming from an engineering background, maybe you wanna stay behind the scenes, not, not do a presentation, not do a public speaking event, those types of things, but back to what the community really needs, this thing. Um, you know, I genuinely now, uh, took me a while to realize it, but I realized I needed to put myself out there in order to, um, you know, allow younger women to see what they could be. So that would be the advice I would give. Don't be afraid to put yourself out there. >>Absolutely. That advice that you both gave are, is so fantastic, so important and so applicable to everybody. Um, don't be afraid to put yourself out there, ask questions. Don't be afraid of a, no, that it's all gonna happen at some point or many points along the way. That can also be good. So thank you ladies. You inspired me. I appreciate you sharing what AWS and NetApp are doing together to strengthen diversity, to strengthen performance and the advice that you both shared for your younger selves was brilliant. Thank you. >>Thank you. >>Thank you >>For my guests. I'm Lisa Martin. You're watching the AWS partner showcase. See you next time. Hey everyone. Welcome to the AWS partner showcase season one, episode three women in tech. I'm your host, Lisa Martin. I've got two female rock stars joining me. Next Vero Reynolds is here engineering manager, telemetry at honeycomb, and one of our cube alumni, Danielle Ock ISV PSA director at AWS. Join us as well. Ladies. It's great to have you talking about a very important topic today. >>Thanks for having us. >>Yeah, thanks for having me. Appreciate it. >>Of course, Vera, let's go ahead and start with you. Tell me about your background and tech. You're coming up on your 10th anniversary. Happy anniversary. >>Thank you. That's right. I can't believe it's been 10 years. Um, but yeah, I started in tech in 2012. Um, I was an engineer for most of that time. Uh, and just recently as a March, switched to engineering management here at honeycomb and, um, you know, throughout my career, I was very much interested in all the things, right. And it was a big FOMO as far as trying a few different, um, companies and products. And I've done things from web development to mobile to platforms. Um, it would be apt to call me a generalist. Um, and in the more recent years I was sort of gravitating more towards developer tool space. And for me that, uh, came in the form of cloud Foundry circle CI and now honeycomb. Um, I actually had my eye on honeycomb for a while before joining, I came across a blog post by charity majors. >>Who's one of our founders and she was actually talking about management and how to pursue that and whether or not it's right, uh, for your career. And so I was like, who is this person? I really like her, uh, found the company. They were pretty small at the time. So I was sort of keeping my eye on them. And then when the time came around for me to look again, I did a little bit more digging, uh, found a lot of talks about the product. And on the one hand they really spoke to me as the solution. They talked about developers owning their coding production and answering questions about what is happening, what are your users seeing? And I felt that pain, I got what they were trying to do. And also on the other hand, every talk I saw at the time was from, uh, an amazing woman <laugh>, which I haven't seen before. Uh, so I came across charity majors again, Christine Y our other founder, and then Liz Jones, who's our principal developer advocate. And that really sealed the deal for me as far as wanting to work here. >>Yeah. Honeycomb is interesting. This is a female founded company. You're two leaders. You mentioned that you like the technology, but you were also attracted because you saw females in the leadership position. Talk to me a little bit about what that's like working for a female led organization at honeycomb. >>Yeah. You know, historically, um, we have tried not to over index on that because there was this, uh, maybe fear awareness of, um, it taking away from our legitimacy as an engineering organization, from our success as a company. Um, but I'm seeing that, uh, rhetoric shift recently because we believe that with great responsibility, uh, with great power comes great responsibility, and we're trying to be more intentional as far as using that attribute of our company. Um, so I would say that for me, it was, um, a choice between a few offers, right. And that was a selling point for sure, because again, I've never experienced it and I've really seen how much they walk that walk. Um, even me being here and me moving into management, I think were both, um, ways in which they really put a lot of trust and support in me. And so, um, I it's been a great ride. >>Excellent. Sounds like it. Before we bring Danielle in to talk about the partnership. I do wanna have you there talk to the audience a little bit about honeycomb, what technology it's delivering and what are its differentiators. >>Yeah, absolutely. Um, so honeycomb is an observability tool, uh, that enables engineers to answer questions about the code that runs in production. And, um, we work with a number of various customers. Some of them are Vanguards, slack. Hello, fresh, just to name a couple, if you're not familiar with observability tooling, it's akin to traditional application performance monitoring, but we believe that observability is succeeding APM because, uh, APM tools were built at the time of monoliths and they just weren't designed to help us answer questions about complex distributed systems that we work with today, where things can go wrong anywhere in that chain. And you can't predict what you're gonna need to ask ahead of time. So some of the ways that we are different is our ability to store and query really rich data, which we believe is the key to understanding those complex systems. >>What I mean by rich data is, um, something that has a lot of attributes. So for example, when an error happens, knowing who it happened to, which user ID, which, um, I don't know, region, they were in, um, what, what, what they were doing at the time and what was happening at the rest of your system. And our ingest engine is really fast. You can do it in as little as three seconds and we call data like this. I said, kind of rich data, contextual data. We refer it as having high ality and high dimensionality, which are big words. But at the end of the day, what that means is we can store and we can query the data. We can do it really fast. And to give you an example of how that looks for our customers, let's say you have a developer team who are using comb to understand and observe their system. >>And they get a report that a user is experiencing a slowdown or something's wrong. They can go into comb and figure out that this only happens to users who are using a particular language pack with their app. And they operated their app last week, that it only happens when they are trying to upload a file. And so it's this level of granularity and being able to zoom in and out, um, under your data that allows you to understand what's happening, especially when you have an incident going on, right. Or your really important high profile customer is telling you that something's wrong. And we can do that. Even if everything else in your other tools looks fine, right? All of your dashboards are okay. You're not actually getting paged on it, but your customers are telling you that something's wrong. Uh, and we believe that's where we shine in helping you there. >>Excellent. It sounds like that's where you really shine that real time visibility is so critical these days. Danielle, Danielle, wanna bring you into the conversation. Talk to us a little bit about the honeycomb partnership from the AWS lens. >>Yeah. So excuse me, observability is obviously a very important, uh, segment in the cloud space, very important to AWS, um, because a lot of all of our customers, uh, as they build their systems distributed, they need to be able to see where, where things are happening in the complex systems that they're building. And so honeycomb is a, is an advanced technology partner. Um, they've been working with us for quite some time and they have a, uh, their solution is listed on the marketplace. Um, definitely something that we see a lot of demand with our customers and they have many integrations, uh, which, you know, we've seen is key to success. Um, being able to work seamlessly with the rest of the services inside of the AWS platform. And I know that they've done some, some great things with people who are trying to develop games on top of AWS, uh, things in that area as well. And so, uh, very important partner in the observa observability market that we have >>Back to you, let's kind of unpack the partnership, the significance that honeycomb ha is getting from being partners with an organization as potent and pivotal as AWS. >>Yeah, absolutely. Um, I know this predates me to some extent, but I know for a long time, AWS and honeycomb has really pushed the envelope together. And, um, I think it's a beneficial relationship for both ends. There's kind of two ways of looking at it. On the one side, there is our own infrastructure. So honeycomb runs on AWS and actually one of our critical workloads that supports that fast query engine that I mentioned uses Lambda. And it does so in a pretty Orthodox way. So we've had a longstanding conversation with the AWS team as far as drawing outside those lines and kind of figuring out how to use this technology in a way that works for us and hopefully will work for other customers of theirs as well. Um, that also allows us to ask for early access for certain features when they become available. >>And then that way we can be sort of the Guinea pigs and try things out, um, in a way that migrates our system and optimizes our own performance, but also allows again, other customers of AWS to follow in that path. And then the other side of that partnership is really supporting our customers who are both honeycomb users and AWS users, because it's, as you imagine, quite a big overlap, and there are certain ways in which we can allow our customers to more easily get their data from AWS to honeycomb. So for example, last year we built a tool, um, based on the new Lambda extension capability that allowed our users who run their applications in Lambdas to get that telemetry data out of their applications and into honeycomb. And it man was win, win. >>Excellent. So I'm hearing a lot of synergies from a technology perspective, you're sticking with you, and then Danielle will bring you in, let's talk about how honeycomb supports D and I across its organization. And how is that synergistic with AWS's approach? Yeah, >>Yeah, absolutely. So I sort of alluded to that hesitancy to over index on the women led aspect of ourselves. Um, but again, a lot of things are shifting, we're growing a lot. And so we are recognizing that we need to be more intentional with our DEI initiatives, and we also notice that we can do better and we should do better. And to that, and we're doing a few things differently, um, that are pretty recent initiatives. We are partnering with organizations that help us target specific communities that are underrepresented in tech. Um, some examples would be after tech hu Latinas in tech among, um, a number of others. And another initiative is DEI head start. That's something that is an internal, um, practice that we started that includes reaching out to underrepresented applicants before any new job for honeycomb becomes live. So before we posted to LinkedIn, before it's even live on our job speech, and the idea there is to kind of balance our pipeline of applicants, which the hope is will lead to more diverse hires in the long term. >>That's a great focus there. Danielle, I know we've talked about this before, but for the audience, in terms of the context of the honeycomb partnership, the focus at AWS for D E and I is really significant, unpack that a little bit for us. >>Well, let me just bring it back to just how we think about it, um, with the companies that we work with, but also in, in terms of, you know, what we want to be able to do, excuse me, it's very important for us to, you know, build products that reflect, uh, the customers that we have. And I think, you know, working with, uh, a company like honeycomb that is looking to differentiate in a space, um, by, by bringing in, you know, the experiences of many different types of people I genuinely believe. And I'm sure Vera also believes that by having those diverse perspectives, that we're able to then build better products for our customers. Um, and you know, it's one of, one of our leadership principles, uh, is, is rooted in this. I write a lot, it asks for us to seek out diverse perspectives. Uh, and you can't really do that if everybody kind of looks the same and thinks the same and has the same background. So I think that is where our de and I, um, you know, I thought process is rooted and, you know, companies like honeycomb that give customers choice and differentiate and help them, um, to do what they need to do in their unique, um, environments is super important. So >>The, the importance of thought diversity cannot be underscored enough. It's something that is, can be pivotal to organizations. And it's very nice to hear that that's so fundamental to both companies, Barry, I wanna go back to you for a second. You, I think you mentioned this, the DEI head start program, that's an internal program at honeycomb. Can you shed a little bit of light on that? >>Yeah, that's right. And I actually am in the process of hiring a first engineer for my team. So I'm learning a lot of these things firsthand, um, and how it works is we try to make sure to pre-load our pipeline of applicants for any new job opening we have with diverse candidates to the best of our abilities, and that can involve partnering with the organizations that I mentioned or reaching out to our internal network, um, and make sure that we give those applicants a head start, so to speak. >>Excellent. I like that. Danielle, before we close, I wanna get a little bit of, of your background. We've got various background in tag, she's celebrating her 10th anniversary. Give me a, a short kind of description of the journey that you've navigated through being a female in technology. >>Yeah, thanks so much. I really appreciate, uh, being able to share this. So I started as a software engineer, uh, back actually in the late nineties, uh, during the, the first.com bubble and, uh, have, have spent quite a long time actually as an individual contributor, um, probably working in software engineering teams up through 2014 at a minimum until I joined AWS, uh, as a customer facing solutions architect. Um, I do think spending a lot of time, hands on definitely helped me with some of the imposter syndrome, um, issues that folks suffer from not to say I don't at all, but it, it certainly helped with that. And I've been leading teams at AWS since 2015. Um, so it's really been a great ride. Um, and like I said, I'm very happy to see all of our engineering teams change, uh, as far as their composition. And I'm, I'm grateful to be part of it. >>It's pretty great to be able to witness that composition change for the better last question for each of you. And we're almost out of time and Danielle, I'm gonna stick with you. What's your advice, your recommendations for women who either are thinking about getting into tech or those who may be in tech, maybe they're in individual positions and they're not sure if they should apply for that senior leadership position. What do you advise them to do? >>I mean, definitely for the individual contributors, tech tech is a great career, uh, direction, um, and you will always be able to find women like you, you have to maybe just work a little bit harder, uh, to join, have community, uh, in that. But then as a leader, um, representation is very important and we can bring more women into tech by having more leaders. So that's my, you just have to take the lead, >>Take the lead, love that there. Same question for you. What's your advice and recommendations for those maybe future female leaders in tech? >>Yeah, absolutely. Um, Danielle mentioned imposter syndrome and I think we all struggle with it from time to time, no matter how many years it's been. And I think for me, for me, the advice would be if you're starting out, don't be afraid to ask, uh, questions and don't be afraid to kind of show a little bit of ignorance because we've all been there. And I think it's on all of us to remember what it's like to not know how things work. And on the flip side of that, if you are a more senior IC or, uh, in a leadership role, also being able to model just saying, I don't know how this works and going and figuring out answers together because that was a really powerful shift for me early in my career is just to feel like I can say that I don't know something. >>I totally agree. I've been in that same situation where just ask the question because you I'm guaranteed, there's a million outta people in the room that probably has the, have the same question and because of imposter syndrome, don't wanna admit, I don't understand that. Can we back up, but I agree with you. I think that is, um, one of the best things. Raise your hand, ask a question, ladies. Thank you so much for joining me talking about honeycomb and AWS, what you're doing together from a technology perspective and the focus efforts that each company has on D E and I, we appreciate your insights. Thank you so much for having us great talking to you. My pleasure, likewise for my guests, I'm Lisa Martin. You're watching the AWS partner showcase women in check. Welcome to the AWS partner showcase I'm Lisa Martin, your host. This is season one, episode three, and this is a great episode that focuses on women in tech. I'm pleased to be joined by Danielle Shaw, the ISV PSA director at AWS, and the sponsor of this fantastic program. Danielle, it's great to see you and talk about such an important topic. >>Yes. And I will tell you, all of these interviews have just been a blast for me to do. And I feel like there has been a lot of gold that we can glean from all of the, um, stories that we heard on these interviews and good advice that I myself would not have necessarily thought of. So >>I agree. And we're gonna get to set, cuz advice is one of the, the main things that our audience is gonna hear. We have Hillary Ashton, you'll see from TETA there, Reynolds joins us from honeycomb, Stephanie Curry from NetApp and Sue Paris from Jefferson Frank. And the topics that we dig into are first and foremost, diversity equity and inclusion. That is a topic that is incredibly important to every organization. And some of the things Danielle that our audiences shared were really interesting to me. One of the things that I saw from a thematic perspective over and over was that like D Reynolds was talking about the importance of companies and hiring managers and how they need to be intentional with de and I initiatives. And that intention was a, a, a common thing that we heard. I'm curious what your thoughts are about that, that we heard about being intentional working intentionally to deliver a more holistic pool of candidates where de I is concerned. What are your, what were some of the things that stuck out to you? >>Absolutely. I think each one of us is working inside of organizations where in the last, you know, five to 10 years, there's been a, you know, a strong push in this direction, mostly because we've really seen, um, first and foremost, by being intentional, that you can change the, uh, the way your organization looks. Um, but also just that, you know, without being intentional, um, there was just a lot of, you know, outcomes and situations that maybe weren't great for, um, you know, a healthy, um, and productive environment, uh, working environment. And so, you know, a lot of these companies have made a big investments and put forth big initiatives that I think all of us are involved in. And so we're really excited to get out here and talk about it and talk about, especially as these are all partnerships that we have, how, you know, these align with our values. So >>Yeah, that, that value alignment mm-hmm <affirmative> that you bring up is another thing that we heard consistently with each of the partners, there's a cultural alignment, there's a customer obsession alignment that they have with AWS. There's a D E and I alignment that they have. And I, I think everybody also kind of agreed Stephanie Curry talked about, you know, it's really important, um, for diversity on it, on, on impacting performance, highly performant teams are teams that are more diverse. I think we heard that kind of echoed throughout the women that we talked to in >>This. Absolutely. And I absolutely, and I definitely even feel that, uh, with their studies out there that tell you that you make better products, if you have all of the right input and you're getting all many different perspectives, but not just that, but I can, I can personally see it in the performing teams, not just my team, but also, you know, the teams that I work alongside. Um, arguably some of the other business folks have done a really great job of bringing more women into their organization, bringing more underrepresented minorities. Tech is a little bit behind, but we're trying really hard to bring that forward as well to in technical roles. Um, but you can just see the difference in the outcomes. Uh, at least I personally can just in the adjacent teams of mine. >>That's awesome. We talked also quite a bit during this episode about attracting women and underrepresented, um, groups and retaining them. That retention piece is really key. What were some of the things that stuck out to you that, um, you know, some of the guests talked about in terms of retention? >>Yeah. I think especially, uh, speaking with Hillary and hearing how, uh, Teradata is thinking about different ways to make hybrid work work for everybody. I think that is definitely when I talk to women interested in joining AWS, oftentimes that might be one of the first, uh, concerns that they have. Like, am I going to be able to, you know, go pick my kid up at four o'clock at the bus, or am I going to be able to, you know, be at my kids' conf you know, conference or even just, you know, have enough work life balance that I can, um, you know, do the things that I wanna do outside of work, uh, beyond children and family. So these are all very important, um, and questions that especially women come and ask, but also, um, you know, it kind of is a, is a bellwether for, is this gonna be a company that allows me to bring my whole self to work? And then I'm also gonna be able to have that balance that I need need. So I think that was something that is, uh, changing a lot. And many people are thinking about work a lot differently. >>Absolutely. The pandemic not only changed how we think about work, you know, initially it was, do I work from home or do I live at work? And that was legitimately a challenge that all of us faced for a long time period, but we're seeing the hybrid model. We're seeing more companies be open to embracing that and allowing people to have more of that balance, which at the end of the day, it's so much better for product development for the customers, as you talked about there's, it's a win-win. >>Absolutely. And, you know, definitely the first few months of it was very hard to find that separation to be able to put up boundaries. Um, but I think at least I personally have been able to find the way to do it. And I hope that, you know, everyone is getting that space to be able to put those boundaries up to effectively have a harmonious, you know, work life where you can still be at home most of the time, but also, um, you know, have that cutoff point of the day or at least have that separate space that you can feel that you're able to separate the two. >>Yeah, absolutely. And a lot of that from a work life balance perspective leads into one of the next topics that we covered in detail with, and that's mentors and sponsors the differences between them recommendations from, uh, the women on the panel about how to combat imposter syndrome, but also how to leverage mentors and sponsors throughout your career. One of the things that, that Hillary said that I thought was fantastic, advice were mentors and sponsors are concerned is, is be selective in picking your bosses. We often see people, especially younger folks, not necessarily younger folks. I shouldn't say that that are attracted to a company it's brand maybe, and think more about that than they do the boss or bosses that can help guide them along the way. But I thought that was really poignant advice that Hillary provided something that I'm gonna take into consideration myself. >>Yeah. And I honestly hadn't thought about that, but as I reflect through my own career, I can see how I've had particular managers who have had a major impact on helping me, um, with my career. But, you know, if you don't have the ability to do that, or maybe that's not a luxury that you have, I think even if you're able to, you know, find a mentor for a period of time or, um, you know, just, just enable for you to be able to get from say a point a to point B just for a temporary period. Um, just so you can grow into your next role, have a, have a particular outcome that you wanna drive, have a particular goal in mind find that person who's been there and done that and can really help you get through. If you don't have the luxury of picking your manager mentor, who can help you get to the next step. >>Exactly. That, that I thought that advice was brilliant and something that I hadn't really considered either. We also talked with several of the women about imposter syndrome. You know, that's something that everybody, I think, regardless of gender of your background, everybody feels that at some point. So I think one of the nice things that we do in this episode is sort of identify, yes, imposter syndrome is real. This is, this is how it happened to me. This is I navigated around or got over it. I think there's some great advice there for the audience to glean as well about how to dial down the imposter syndrome that they might be feeling. >>Absolutely. And I think the key there is just acknowledging it. Um, but also just hearing all the different techniques on, on how folks have dealt with it because everybody does, um, you know, even some of the smartest, most confident men I've, I've met in, uh, industry still talk to me about how they have it and I'm shocked by it oftentimes, but, um, it is very common and hopefully we, we talk about some good techniques to, to deal with that. >>I think we do, you know, one of the things that when we were asking the, our audience, our guests about advice, what would they tell their younger selves? What would they tell young women or underrepresented groups in terms of becoming interested in stem and in tech and everybody sort of agreed on me, don't be afraid to raise your hand and ask questions. Um, show vulnerabilities, not just as the employee, but even from a leadership perspective, show that as a leader, I, I don't have all the answers. There are questions that I have. I think that goes a long way to reducing the imposter syndrome that most of us have faced at some point in our lives. And that's just, don't be afraid to ask questions. You never know, oh, how can people have the same question sitting in the room? >>Well, and also, you know, for folks who've been in industry for 20, 25 years, I think we can just say that, you know, it's a, it's a marathon, it's not a sprint and you're always going to, um, have new things to learn and you can spend, you know, back to, we talked about the zing and zagging through careers, um, where, you know, we'll have different experiences. Um, all of that kind of comes through just, you know, being curious and wanting to continue to learn. So yes, asking questions and being vulnerable and being able to say, I don't know all the answers, but I wanna learn is a key thing, uh, especially culturally at AWS, but I'm sure with all of these companies as well, >>Definitely I think it sounded like it was really ingrained in their culture. And another thing too, that we also talked about is the word, no, doesn't always mean a dead end. It can often mean not right now or may, maybe this isn't the right opportunity at this time. I think that's another important thing that the audience is gonna learn is that, you know, failure is not necessarily a bad F word. If you turn it into opportunity, no isn't necessarily the end of the road. It can be an opener to a different door. And I, I thought that was a really positive message that our guests, um, had to share with the, the audience. >>Yeah, totally. I can, I can say I had a, a mentor of mine, um, a very, uh, strong woman who told me, you know, your career is going to have lots of ebbs and flows and that's natural. And you know that when you say that, not right now, um, that's a perfect example of maybe there's an ebb where it might not be the right time for you now, but something to consider in the future. But also don't be afraid to say yes, when you can. <laugh> >>Exactly. Danielle, it's been a pleasure filming this episode with you and the great female leaders that we have on. I'm excited for the audience to be able to learn from Hillary Vera, Stephanie Sue, and you so much valuable content in here. We hope you enjoy this partner showcase season one, episode three, Danielle, thanks so much for helping >>Us with it's been a blast. I really appreciate it >>All audience. We wanna enjoy this. Enjoy the episode.

Published Date : Jul 21 2022

SUMMARY :

It's great to have you on the program talking And so as we talk about women I don't know how you do it. And I think it really, uh, improves the behaviors that we can bring, That's not something that we see very often. from the technology that we can create, which I think is fantastic. you and I have talked about this many times you bring such breadth and such a wide perspective. be able to change the numbers that you have. but what are, what do you think can be done to encourage, just the bits and bites and, and how to program, but also the value in outcomes that technology being not afraid to be vulnerable, being able to show those sides of your personality. And so I think learning is sort of a fundamental, um, uh, grounding And so I think as we look at the, And also to your other point, hold people accountable I definitely think in both technical and product roles, we definitely have some work to do. What are you seeing? and that I think is going to set us back all of us, the, the Royal us or the Royal we back, And I think, um, that that really changes I would like to think that tech can lead the way in, um, you know, coming out of the, but what advice would you give your younger self and that younger generation in terms I mean, you know, stem inside and out because you walk around And so demystifying stem as something that is around how I think picking somebody that, you know, we talk about mentors and we talk And that person can put you in the corner and not invite you to the meetings and not give you those opportunities. But luckily we have great family leaders like the two of you helping us Thank you Lisa, to see you. It's great to have you on the program talking about So let's go ahead and start with you. And if you look at it, it's really talent as a service. Danielle, talk to me a little bit about from AWS's perspective and the focus on You know, we wanna have, uh, an organization interacting with them Um, I just think that, um, you know, I I've been able to get, There's so much data out there that shows when girls start dropping up, but what are some of the trends that you are And we were talking about only 7% of the people that responded to it were women. I was watching, um, Sue, I saw that you shared on LinkedIn, the Ted talk that I think it speaks to what Susan was talking about, how, you know, I think we're approaching I think, you know, we're, we're limited with the viable pool of candidates, um, Sue, is that something that Jefferson Frank is also able to help with is, you know, I was talking about how you can't be what you can't see. And I thought I understood that, but those are the things that we need uh, on how <laugh>, you know, it used to be a, a couple years back, I would feel like sometimes And so you bring up a great point about from a diversity perspective, what is Jefferson Frank doing to, more data that we have, I mean, the, and the data takes, uh, you know, 7% is such a, you know, Danielle and I we're, And I feel like, you know, I just wanna give back, make sure I send the elevator back to but to your point to get that those numbers up, not just at AWS, but everywhere else we need, Welcome to the AWS partner showcase season one, episode three women Um, I had an ally really that reached out to me and said, Hey, you'd be great for this role. So what I wanna focus on with you is the importance of diversity for And we do find that oftentimes being, you know, field facing, if we're not reflecting Definitely it's all about outcomes, Stephanie, your perspective and NetApp's perspective on diversity And in addition to that, you know, just from building teams that you do Stephanie, that NetApp does to attract and retain women in those sales roles? And we find that, you know, you, you read the stats and I'd say in my And I, that just shocked me that I thought, you know, I, I can understand that imposter syndrome is real. Danielle, talk to me about your perspective and AWS as well for attracting and retaining I mean, my team is focused on the technical aspect of the field and we And I said that in past tense, a period of time, we definitely felt like we could, you know, conquer the world. in the tech industry, but talk to me about allies sponsors, mentors who have, And I think that's just really critical when we're looking for allies and when allies are looking I love how you described allies, mentors and sponsors Stephanie. the community that they can reach out to for those same opportunities and making room for them Let's talk about some of the techniques that you employ, that AWS employees to make Um, but I think just making sure that, um, you know, both everything is so importants, let's talk about some of the techniques that you use that NetApp take some time and do the things you need to do with your family. And that it's okay to say, I need to balance my life and I need to do Talk to me a little bit, Danielle, go back over to you about the AWS APN, this is, you know, one of the most significant years with our launch of FSX for And Stephanie talk to, uh, about the partnership from your perspective, NetApp, And I have to say it's just been a phenomenal year. And I think that there is, um, a lot of best practice sharing and collaboration as we go through And I wanna stick with you Stephanie advice to your younger And sometimes when you get a no, it's not a bad thing, And I always say failure does not have to be an, a bad F word. out there in order to, um, you know, allow younger women to I appreciate you sharing what AWS It's great to have you talking about a very important topic today. Yeah, thanks for having me. Of course, Vera, let's go ahead and start with you. Um, and in the more recent years I And on the one hand they really spoke to me as the solution. You mentioned that you like the technology, but you were also attracted because you saw uh, rhetoric shift recently because we believe that with great responsibility, I do wanna have you there talk to the audience a little bit about honeycomb, what technology And you can't predict what you're And to give you an example of how that looks for Uh, and we believe that's where we shine in helping you there. It sounds like that's where you really shine that real time visibility is so critical these days. Um, definitely something that we see a lot of demand with our customers and they have many integrations, Back to you, let's kind of unpack the partnership, the significance that Um, I know this predates me to some extent, And then that way we can be sort of the Guinea pigs and try things out, um, And how is that synergistic with AWS's approach? And so we are recognizing that we need to be more intentional with our DEI initiatives, Danielle, I know we've talked about this before, but for the audience, in terms of And I think, you know, working with, uh, a company like honeycomb that to hear that that's so fundamental to both companies, Barry, I wanna go back to you for a second. And I actually am in the process of hiring a first engineer for my Danielle, before we close, I wanna get a little bit of, of your background. And I'm, I'm grateful to be part of it. And we're almost out of time and Danielle, I'm gonna stick with you. I mean, definitely for the individual contributors, tech tech is a great career, uh, Take the lead, love that there. And on the flip side of that, if you are a more senior IC or, Danielle, it's great to see you and talk about such an important topic. And I feel like there has been a lot of gold that we can glean from all of the, And the topics that we dig the last, you know, five to 10 years, there's been a, you know, a strong push in this direction, I think everybody also kind of agreed Stephanie Curry talked about, you know, it's really important, um, Um, but you can just see the difference in the outcomes. um, you know, some of the guests talked about in terms of retention? um, you know, it kind of is a, is a bellwether for, is this gonna be a company that allows The pandemic not only changed how we think about work, you know, initially it was, And I hope that, you know, everyone is getting that space to be able to put those boundaries up I shouldn't say that that are attracted to a company it's brand maybe, Um, just so you can grow into your next role, have a, have a particular outcome I think there's some great advice there for the audience to glean on, on how folks have dealt with it because everybody does, um, you know, I think we do, you know, one of the things that when we were asking the, our audience, I think we can just say that, you know, it's a, it's a marathon, it's not a sprint and you're always going the audience is gonna learn is that, you know, failure is not necessarily a bad F word. uh, strong woman who told me, you know, your career is going to have lots of ebbs and flows and Danielle, it's been a pleasure filming this episode with you and the great female I really appreciate it Enjoy the episode.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
StephaniePERSON

0.99+

DaniellePERSON

0.99+

SusanPERSON

0.99+

HillaryPERSON

0.99+

AWSORGANIZATION

0.99+

Lisa MartinPERSON

0.99+

Stephanie CurryPERSON

0.99+

Sabina JosephPERSON

0.99+

Danielle GreshawPERSON

0.99+

DanielPERSON

0.99+

2012DATE

0.99+

Liz JonesPERSON

0.99+

VeraPERSON

0.99+

Danielle GShockPERSON

0.99+

LisaPERSON

0.99+

Zoe MorrisPERSON

0.99+

Danielle ShawPERSON

0.99+

Hillary AshtonPERSON

0.99+

Hillary VeraPERSON

0.99+

BarryPERSON

0.99+

Sue PerettiPERSON

0.99+

fiveQUANTITY

0.99+

ReynoldsPERSON

0.99+

Vera Reynolds & Danielle Greshock | AWS Partner Showcase S1E3


 

>>Hey everyone. Welcome to the AWS partner showcase season one, episode three women in tech. I'm your host. Lisa Martin. I've got two female rock stars joining me. Next Vera Reynolds is here engineering manager, telemetry at honeycomb, and one of our Cub alumni, Danielle GShock ISV PSA director at AWS joins us as well. Ladies. It's great to have you talking about a very important topic today. >>Thanks for having us. Yeah, thanks for having me. Appreciate it. >>Of course, Vera, let's go ahead and start with you. Tell me about your background and tech. You're coming up on your 10th anniversary. Happy anniversary. >>Thank you. That's right. I can't believe it's been 10 years, but yeah, I started in tech in 2012. I was an engineer for most of that time. And just recently, as of March switched to engineering management here at honeycomb and, you know, throughout my career, I was very much interested in all the things, right. And it was a big FOMO as far as trying a few different companies and products, and I've done things from web development to mobile, to platforms. It would be apt to call me a generalist. And in the more recent years, I was sort of gravitating more towards developer tool space. And for me, that came in the form of cloud Foundry circle CI, and now honeycomb. I actually had my eye on honeycomb for a while before joining, I came across a blog post by charity majors. Who's one of our founders and she was actually talking about management and how to pursue that and whether or not it's right for your career. >>And so I was like, who is this person? I really like her found the company. They were pretty small at the time. So I was sort of keeping my eye on them. And then when the time came around for me to look again, I did a little bit more digging, found a lot of talks about the product. And on the one hand, they really spoke to me as the solution. They talked about developers owning their coding in production and answering questions about what is happening, what are your users seeing? And I felt that pain, I got what they were trying to do. And also on the other hand, every talk I saw at the time was from an amazing woman, which I haven't seen before. So I came across charity majors again, Christine Young, who's our other founder. And then Liz Frank Jones, who's our, our principal developer advocate. And that really sealed the deal for me as far as wanting to work here. >>Yeah. Honeycomb is interesting. This is a female founded company. You two leaders, you mentioned that you liked the technology, but you were also attracted because you saw females and the leadership position. Talk to me a little bit about what that's like working for a female led organization at honeycomb. >>Yeah. You know, historically we have tried not to over index on that because there was this maybe fear or rareness of it taking away from our legitimacy as an engineering organization, from our success as a company. But I'm seeing that rhetoric shift recently because we believe that with great responsibility with great power comes great responsibility. And we're trying to be more intentional as far as using that attribute of our company. So I would say that for me, it was a choice between a few offers, right. And that was a selling point, for sure, because again, I've never experienced it and I've really seen how much they walk that walk. Even me being here and me moving into management, I think were both ways in which they really put a lot of trust and support in me. And so I it's been a great ride. >>Excellent. Sounds like it. Before we bring Danielle in to talk about the partnership. I do wanna have you here, talk to the audience a little bit about honeycomb, what technology it's delivering and what are its differentiators. >>Yeah, absolutely. So honeycomb is an observability tool that enables engineers to answer questions about the code that runs in production. And we work with a number of various customers. Some of them are Vanguards, slack. Hello, fresh. Just to name a couple. If you're not familiar with observability tooling, it's akin to traditional application performance monitoring, but we believe that observability is succeeding APM because APM tools were built at the time of monoliths and they just weren't designed to help us answer questions about complex distributed systems that we work with today, where things can go wrong anywhere in that chain. And you can't predict what you're gonna need to ask ahead of time. So some of the ways that we are different is our ability to store and query really rich data, which we believe is the key to understanding those complex systems. What I mean by rich data is something that has a lot of attributes. >>So for example, when an error happens, knowing who it happened to, which user ID, which I don't know region, they were in, what, what they were doing at the time and what was happening at the rest of your system. And our ingest engine is really fast. You could do it in as little as three seconds and we call data like this. I said, kind of rich data, contextual data. We refer it as having high ity and high dimensionality, which are big words. But at the end of the day, what that means is we can store and we can query this data and we can do it really fast. And to give you an example of how that looks for our customers, let's say you have a developer team who are using honeycomb to understand and observe their system. And they get a report that a user is experiencing a slowdown or something's wrong. >>They can go into honeycomb and figure out that this only happens to users who are using a particular language pack with their app. And they operated their app last week, that it only happens when they are trying to upload a file. And so it's this level of granularity and being able to zoom in and out under data that allows you to understand what's happening, especially when you have an incident going on, right. Or your really important high profile customer is telling you that something's wrong. And we can do that. Even if everything else in your other tools looks fine, right? All of your dashboards are okay. You're not actually getting paged on it, but your customers are telling you that something's wrong. And we believe that's where we shine in helping you there. >>Excellent. It sounds like that's where you really shine that realtime visibility is so critical these days. Danielle, Danielle, wanna bring you into the conversation. Talk to us a little bit about the honeycomb partnership from the AWS lens. >>Yeah. So excuse me, observability is obviously a very important segment in the cloud space, very important to AWS, because a lot of all of our customers, as they build their systems distributed, they need to be able to see where, where things are happening in the complex systems that they're building. And so honeycomb is a, is an advanced technology partner. They've been working with us for quite some time and they have a, their solution is listed on the marketplace. Definitely something that we see a lot of demand with our customers, and they have many integrations, which, you know, we've seen is key to success. Being able to work seamlessly with the rest of the services inside of the AWS platform. And I know that they've done some, some great things with people who are trying to develop games on top of AWS things in that area as well. And so very important partner in the observa observability market that we have >>You back to you, let's kind of unpack the partnership, the significance that honeycomb ha is getting from being partners with an organization as potent and pivotal as AWS. >>Yeah, absolutely. I know that this predates me to some extent, but I know for a long time, AWS and honeycomb has really pushed the envelope together. And I think it's a beneficial relationship for both ends. There is kind of two ways of looking at it. On the one side, there is our own infrastructure. So honeycomb runs on AWS and actually one of our critical workloads that supports that fast query engine that I mentioned uses Lambda. And it does so in a pretty Orthodox way. So we've had a long standing conversation with the AWS team as far as drawing outside those lines and kind of figuring out how to use the technology in a way that works for us and hopefully will work for other customers of theirs as well. That also allows us to ask for early access for certain features when they become available. >>And then that way we can be sort of the Guinea pigs and try things out in a way that migrates our system and optimizes our own performance, but also allows again, other customers of AWS to follow in that path. And then the other side of that partnership is really supporting our customers who are both honeycomb users and AWS users, because it's, as you imagine, quite a big overlap, and there are certain ways in which we can allow our customers to more easily get their data from AWS to honeycomb. So for example, last year we built a tool based on the new Lambda extension capability that allowed our users who run their applications in Lambdas to get that tele, telemetry data out of their applications and into honeycomb and it land was win-win >>Excellent. So I'm hearing a lot of synergies from a technology perspective, you're sticking with you, and then Danielle will bring you in. Let's talk about how honeycomb supports D and I across its organization. And how is that synergistic with AWS's approach? Yeah, >>Yeah, absolutely. So I, I sort of alluded to that hesitancy to over index on the women led aspect of ourselves. But again, a lot of things are shifting, we're growing a lot. And so we are recognizing that we need to be more intentional with our DEI initiatives, and we also notice that we can do better and we should do better. And to that, and we're doing a few things differently that are pretty recent initiatives. We are partnering with organizations that help us target specific communities that are underrepresented in tech. Some examples would be after tech hu Latinas in tech among a number of others. And another initiative is DEI head start. That's something that is an internal practice that we started that includes reaching out to underrepresented applicants before any new job for honeycomb becomes live. So before we posted to LinkedIn, before it's even live on our job speech, and the idea there is to kind of balance our pipeline of applicants, which the hope is we'll lead to more diverse hires in the long term. >>That's a great focus there. Danielle, I know we've talked about this before, but for the audience, in terms of the context of the honeycomb partnership, the focus at AWS for D E and I is really significant, unpack that a little bit for us. >>Well, let me just bring it back to just how we think about it with the companies that we work with, but also in, in terms of, you know, what we want to be able to do, excuse me, it's very important for us to, you know, build products that reflect the customers that we have. And I think, you know, working with a company like honeycomb that is looking to differentiate in a space by, by bringing in, you know, the experiences of many different types of people I genuinely believe. And I'm sure Vera also believes that by having those diverse perspectives, that we're able to then build better products for our customers. And, you know, it's one of, one of our leadership principles is, is rooted in this. I write a lot, it asks for us to seek out diverse perspectives and you can't really do that if everybody kind of looks the same and thinks the same and has the same background. So I think that is where our de and I, you know, I thought process is rooted and, you know, companies like honeycomb that give customers choice and differentiate and help them to do what they need to do in their unique environments is super important. So >>The, the importance of thought diversity cannot be underscored enough. It's something that is, can be pivotal to organizations. And it's very nice to hear that that's so fundamental to both companies, Barry, I wanna go back to you for a second. You, I think you mentioned this, the DEI headstart program, that's an internal program at honeycomb. Can you shed a little bit of light on that? >>Yeah, that's right. And I actually am in the process of hiring a first engineer for my team. So I'm learning a lot of these things firsthand and how it works is we try to make sure to pre-load our pipeline of applicants for any new job opening we have with diverse candidates to the best of our abilities. And that can involve partnering with the organizations that I mentioned or reaching out to our internal network and make sure that we give those applicants a head start, so to speak. >>Excellent. I like that. Danielle, before we close, I wanna get a little bit of, of your background. We've got various background in tech, she's celebrating her 10th anniversary. Give me a, a short kind of description of the journey that you've navigated through being a female in technology. >>Yeah, thanks so much. I really appreciate being able to share this. So I started as a software engineer back actually in the late nineties during the, the first.com bubble and have, have spent quite a long time actually as an individual contributor, probably working in software engineering teams up through 2014 at a minimum until I joined AWS as a customer facing solutions architect. I do think spending a lot of time, hands on, definitely helped me with some of the imposter syndrome issues that folks suffer from not to say I don't at all, but it, it certainly helped with that. And I've been leading teens at AWS since 2015. So it's really been a great ride. And like I said, I'm very happy to see all of our engineering teams change as far as their composition. And I'm, I'm grateful to be part of it. >>It's pretty great to be able to witness that composition change for the better last question for each of you. And we're almost out of time and Danielle, I'm gonna stick with you. What's your advice or your recommendations for women who either are thinking about getting into tech or those who may be in tech, maybe they're in individual contributor positions and they're not sure if they should apply for that senior leadership position. What do you advise them to do? >>I mean, definitely for the individual contributors, tech tech is a great career direction and you will always be able to find women like you, you have to maybe just work a little bit harder to join, have community in that. But then as a leader, representation is very important and we can bring more women into tech by having more leaders. So that's my, you just have to take the lead, >>Take the lead, love it there. Same question for you. What's your advice and recommendations for those maybe future female leaders in tech? >>Yeah, absolutely. Danielle mentioned imposter syndrome and I think we all struggle with it from time to time, no matter how many years it's been. And I think for me, for me, the advice would be if you're starting out, don't be afraid to ask questions and don't be afraid to kind of show a, a little bit of ignorance because we've all been there. And I think it's on all of us to remember what it's like to not know how things work. And on the flip side of that, if you are a more senior IC or in a leadership role, also being able to model just saying, I don't know how this works and going and figuring out answers together because that was a really powerful shift for me early in my career is just to feel like I can say that I don't know something. >>I totally agree. I've been in that same situation where just ask the question because you I'm guaranteed. There's a million other people in the room that probably has the, have the same question. And because of imposter syndrome, don't wanna admit, I don't understand that. Can we back up, but I agree with you. I think that is one of the best things. Raise your hand, ask a question, ladies. Thank you so much for joining me talking about honeycomb and AWS, what you're doing together from a technology perspective and the focus efforts that each company has on D and I, we appreciate your insights. >>Thank you so much for having us great talking to you. >>My pleasure, likewise for my guests, I'm Lisa Martin. You're watching the AWS partner showcase women in check.

Published Date : May 13 2022

SUMMARY :

It's great to have you talking about a very important topic today. Yeah, thanks for having me. Of course, Vera, let's go ahead and start with you. And for me, that came in the form of cloud Foundry circle CI, And on the one hand, they really spoke to me as Talk to me a little bit about what that's like working for a female led organization at honeycomb. And that was a I do wanna have you here, talk to the audience a little bit about honeycomb, what technology it's And you can't predict what you're gonna need to ask ahead of time. And to give you an example of And we believe that's where we shine in helping you there. Talk to us a little bit about the And I know that they've done some, some great things with You back to you, let's kind of unpack the partnership, the significance that I know that this predates me to some extent, And then that way we can be sort of the Guinea pigs and try things out in a way that migrates And how is that synergistic with AWS's approach? And so we are recognizing that we need to be more intentional with our DEI initiatives, of the context of the honeycomb partnership, the focus at AWS for And I think, you know, working with a company like honeycomb that is looking to differentiate hear that that's so fundamental to both companies, Barry, I wanna go back to you for a second. And I actually am in the process of hiring a first engineer for Danielle, before we close, I wanna get a little bit of, of your background. And I'm, I'm grateful to be part of it. And we're almost out of time and Danielle, I'm gonna stick with you. is very important and we can bring more women into tech by having more leaders. Take the lead, love it there. And on the flip side of that, if you are a more senior IC or in I've been in that same situation where just ask the question because you I'm guaranteed. partner showcase women in check.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Lisa MartinPERSON

0.99+

DaniellePERSON

0.99+

2012DATE

0.99+

Liz Frank JonesPERSON

0.99+

AWSORGANIZATION

0.99+

VeraPERSON

0.99+

Christine YoungPERSON

0.99+

Danielle GreshockPERSON

0.99+

Danielle GShockPERSON

0.99+

2014DATE

0.99+

Vera ReynoldsPERSON

0.99+

10 yearsQUANTITY

0.99+

MarchDATE

0.99+

last yearDATE

0.99+

three secondsQUANTITY

0.99+

BarryPERSON

0.99+

last weekDATE

0.99+

two leadersQUANTITY

0.99+

LambdasTITLE

0.99+

10th anniversaryQUANTITY

0.99+

late ninetiesDATE

0.99+

2015DATE

0.98+

LinkedInORGANIZATION

0.98+

two waysQUANTITY

0.98+

oneQUANTITY

0.98+

each companyQUANTITY

0.98+

LambdaTITLE

0.98+

first engineerQUANTITY

0.97+

both waysQUANTITY

0.97+

todayDATE

0.97+

D EORGANIZATION

0.97+

both endsQUANTITY

0.96+

CubORGANIZATION

0.96+

both companiesQUANTITY

0.96+

two femaleQUANTITY

0.95+

bothQUANTITY

0.92+

eachQUANTITY

0.92+

VanguardsORGANIZATION

0.89+

season oneQUANTITY

0.86+

one sideQUANTITY

0.82+

first.comORGANIZATION

0.82+

ISVORGANIZATION

0.8+

HoneycombORGANIZATION

0.71+

eORGANIZATION

0.7+

episode threeQUANTITY

0.68+

coupleQUANTITY

0.66+

LatinasPERSON

0.62+

slackORGANIZATION

0.6+

honeycombORGANIZATION

0.59+

imposterOTHER

0.57+

secondQUANTITY

0.56+

S1E3EVENT

0.54+

a millionQUANTITY

0.51+

PSAORGANIZATION

0.41+

AWS Partner Showcase 2022 035 Vera Reynolds and Danielle Greshock


 

>>Hey everyone. Welcome to the AWS partner showcase season one, episode three women in tech. I'm your host. Lisa Martin. I've got two female rock stars joining me. Next Vera Reynolds is here engineering manager, telemetry at honeycomb, and one of our Cub alumni, Danielle GShock ISV PSA director a at AWS joins us as well. Ladies. It's great to have you talking about a very important topic today. >>Thanks for having us. Yeah, thanks for having me. Appreciate it. >>Of course, Vera, let's go ahead and start with you. Tell me about your background and tech. You're coming up on your 10th anniversary. Happy anniversary. >>Thank you. That's right. I can't believe it's been 10 years, but yeah, I started in tech in 2012. I was an engineer for most of that time. And just recently, as of March switched to engineering management here at honeycomb and, you know, throughout my career, I was very much interested in all the things, right. And it was a big FOMO as far as trying a few different companies and products. And I've done things from web development to mobile, to platforms. It would be apt to call me a generalist. And in the more recent years, I was sort of gravitating more towards developer tool space. And for me, that came in the form of cloud Foundry circle CI, and now honeycomb. I actually had my eye on honeycomb for a while before joining, I came across a blog post by charity majors. Who's one of our founders and she was actually talking about management and how to pursue that and whether or not it's right for your career. >>And so I was like, who is this person? I really like her found the company. They were pretty small at the time. So I was sort of keeping my eye on them. And then when the time came around for me to look again, I did a little bit more digging, found a lot of talks about the product. And on the one hand, they really spoke to me as the solution. They talked about developers owning their coding in production and answering questions about what is happening, what are your users seeing? And I felt that pain, I got what they were trying to do. And also on the other hand, every talk I saw at the time was from an amazing woman, which I haven't seen before. So I came across charity majors again, Christine yen, who our other founder, and then Liz Frank Jones, who our principal developer advocate. And that really sealed the deal for me as far as wanting to work here. >>Yeah. Honeycomb is interesting. This is a female founded company. You're two leaders. You mentioned that you like the technology, but you were also attracted because you saw females in the leadership position. Talk to me a little bit about what that's like working for a female led organization at honeycomb. >>Yeah. You know, historically we have tried not to over index on that because there was this maybe fear or rareness of it taking away from our legitimacy as an engineering organization, from our success as a company. But I'm seeing that rhetoric shift recently because we believe that with great responsibility with great power comes great responsibility. And we're trying to be more intentional as far as using that attribute of our company. So I would say that for me, it was a choice between a few offers, right. And that was a selling point, for sure, because again, I've never experienced it and I've really seen how much they walk that walk. Even me being here and me moving into management, I think were both ways in which they really put a lot of trust and support in me. And so I it's been a great ride. >>Excellent. Sounds like it. Before we bring Danielle in to talk about the partnership. I do wanna have you here, talk to the audience a little bit about honeycomb, what technology it's delivering and what are its differentiators. >>Yeah, absolutely. So honeycomb is an observability tool that enables engineers to answer questions about the code that runs in production. And we work with a number of various customers. Some of them are Vanguard, slack. Hello, fresh. Just to name a couple. If you're not familiar with observability tooling, it's akin to traditional application performance monitoring, but we believe that observability is succeeding APM because APM tools were built at the time of monoliths and they just weren't designed to help us answer questions about complex distributed systems that we work with today, where things can go wrong anywhere in that chain. And you can't predict what you're gonna need to ask ahead of time. So some of the ways that we are different is our ability to store and query really rich data, which we believe is the key to understanding those complex systems. What I mean by rich data is something that has a lot of attributes. >>So for example, when an error happens, knowing who it happened to, which user ID, which I don't know region, they were in, what, what, what they were doing at the time and what was happening at the rest of your system. And our ingest engine is really fast. You can do it in as little as three seconds and we call data like this. I said, kind of rich data, contextual data. We refer it as having high ity and high dimensionality, which are big words. But at the end of the day, what that means is we can store and we can query this data and we can do it really fast. And to give you an example of how that looks for our customers, let's say you have a developer team who are using comb to understand and observe their system. And they get a report that a user is experiencing a slowdown or something's wrong. >>They can go into honeycomb and figure out that this only happens to users who are using a particular language pack with their app. And they operated their app last week, that it only happens when they are trying to upload a file. And so it's this level of granularity and being able to zoom in and out under data that allows you to understand what's happening, especially when you have an incident going on, right. Or your really important high profile customer is telling you that something's wrong. And we can do that. Even if everything else in your other tools looks fine, right? All of your dashboards are okay. You're not actually getting paged on it, but your customers are telling you that something's wrong. And we believe that's where we shine in helping you there. >>Excellent. It sounds like that's where you really shine that real time visibility is so critical these days. Danielle, Danielle, wanna bring you into the conversation. Talk to us a little bit about the honeycomb partnership from the AWS lens. >>Yeah. So excuse me, observability is obviously a very important segment in the cloud space, very important to AWS, because a lot of all of our customers, as they build their systems distributed, they need to be able to see where, where things are happening in the complex systems that they're building. And so honeycomb is a, is an advanced technology partner. They've been working with us for quite some time and they have a, their solution is listed on the marketplace. Definitely something that we see a lot of demand with our customers, and they have many integrations, which, you know, we've seen is key to success. Being able to work seamlessly with the rest of the services inside of the AWS platform. And I know that they've done some, some great things with people who are trying to develop games on top of AWS things in that area as well. And so very important partner in the observa observability market that we have. >>Vera a back to you, let's kind of unpack the partnership, the significance that honeycomb ha is getting from being partners with an organization as potent and pivotal as AWS. >>Yeah, absolutely. I Don know that this Predates me to some extent, but I Don know for a long time, AWS and honeycomb has really pushed the envelope together. And I think it's a beneficial relationship for both ends. There's kind of two ways of looking at it. On the one side, there is our own infrastructure. So honeycomb runs on AWS and actually one of our critical workloads that supports that fast query engine that I mentioned uses Lambda. And it does also in a pretty unorthodox way. So we've had a long standing conversation with the AWS team as far as drawing outside those lines and kind of figuring out how to use the technology in a way that works for us and hopefully will work for other customers of theirs as well. That also allows us to ask for early access for certain features when they become available. >>And then that way we can be sort of the Guinea pigs and try things out in a way that migrates our system and optimizes our own performance, but also allows again, other customers of AWS to follow in that path. And then the other side of that partnership is really supporting our customers who are both honeycomb users and AWS users, because it's, as you imagine, quite a big overlap, and there are certain ways in which we can allow our customers to more easily get their data from AWS to honeycomb. So for example, last year, we built a tool based on the new Lambda extension capability that allowed our users who run their applications in Lambdas to get that tele telemetry data out of their applications and into honeycomb and demand was win-win >>Excellent. So I'm hearing a lot of synergies from a technology perspective, you're sticking with you, and then Danielle will bring you in. Let's talk about how honeycomb supports D E and I across its organization. And how is that synergistic with AWS's approach Vera? >>Yeah, absolutely. So I sort of alluded to that hesitancy to over index on the women led aspect of ourselves. But again, a lot of things are shifting, we're growing a lot. And so we are recognizing that we need to be more intentional with our DEI initiatives, and we also notice that we can do better and we should do better. And to that end, we're doing a few things differently that are pretty recent initiatives. We are partnering with organizations that help us target specific communities that are underrepresented in tech. Some examples would be Africa, tech hu Latinas in tech among a number of others. And another initiative is DEI head start. That's something that is an internal practice that we started that includes reaching out to underrepresented applicants before any new job for honeycomb becomes live. So before we posted to LinkedIn, before it's even live on our job speech, and the idea there is to kind of balance our pipeline of applicants, which the hope is will lead to more diverse hires in the long term. >>That's a great focus there. Danielle, I know we've talked about this before, but for the audience, in terms of the context of the honeycomb partnership, the focus at AWS for D E and I is really significant, unpack that a little bit for us. >>Well, let me just bring it back to just how we think about it with the companies that we work with, but also in, in terms of, you know, what we want to be able to do, excuse me, it's very important for us to, you know, build products that reflect the customers that we have. And I think, you know, working with a company like honeycomb that is looking to differentiate in a space by, by bringing in, you know, the experiences of many different types of people I genuinely believe. And I'm sure Vera also believes that by having those diverse perspectives, that we're able to then build better products for our customers. And, you know, it's one of, one of our leadership principles is, is rooted in this. I write a lot, it asks for us to seek out diverse perspectives and you can't really do that if everybody kind of looks the same and thinks the same and has the same background. So I think that is where our de and I, you know, I thought process is rooted and, you know, companies like honeycomb that give customers choice and differentiate and help them to do what they need to do in their unique environments is super important. So >>The, the importance of thought diversity cannot be underscored enough. It's something that is, can be pivotal to organizations. And it's very nice to hear that that's so fundamental to both companies, Barry, I wanna go back to you for a second. You, I think you mentioned this, the DEI head start program, that's an internal program at honeycomb. Can you shed a little bit of light on that? >>Yeah, that's right. And I actually am in the process of hiring a first engineer for my team. So I'm learning a lot of these things firsthand and how it works is we try to make sure to pre-load our pipeline of applicants for any new job opening we have with diverse candidates to the best of our abilities. And that can involve partnering with the organizations that I mentioned or reaching out to our internal network and make sure that we give those applicants a head start, so to speak. >>Excellent. I like that. Danielle, before we close, I wanna get a little bit of, of your background. We've got various background in tech, she's celebrating her 10th anniversary. Give me a, a short kind of description of the journey that you've navigated through being a female in technology. >>Yeah, thanks so much. I really appreciate being able to share this. So I started as a software engineer back actually in the late nineties during the, the first.com bubble and have, have spent quite a long time actually as an individual contributor, probably working in software engineering teams up through 2014 at a minimum until I joined AWS as a customer facing solutions architect. I do think spending a lot of time, hands on, definitely helped me with some of the imposter syndrome issues that folks suffer from not to say I don't at all, but it, it certainly helped with that. And I've been leading teen at AWS since 2015. So it's really been a great ride. And like I said, I'm very happy to see all of our engineering teams change as far as their composition. And I'm, I'm grateful to be part of it. >>It's pretty great to be able to witness that composition change for the better last question for each of you. And we're almost out of time and Danielle, I'm gonna stick with you. What's your advice, your recommendations for women who either are thinking about getting into tech or those who may be in tech, maybe they're in individual contributor positions, and they're not sure if they should apply for that senior leadership position. What do you advise them to do? >>I mean, definitely for the individual contributors, tech tech is a great career direction and you will always be able to find women like you, you have to maybe just work a little bit harder to join, have community in that. But then as a leader, representation is very important and we can bring more women into tech by having more leaders. So that's my, you just have to take the lead, >>Take the lead. Love that various same question for you. What's your advice and recommendations for those maybe future female leaders in tech? >>Yeah, absolutely. Danielle mentioned imposter syndrome and I think we all struggle with it from time to time, no matter how many years it's been. And I think for me, for me, the advice would be if you're starting out, don't be afraid to ask questions and don't be afraid to kind of show a bit, a little bit of ignorance because we've all been there. And I think it's on all of us to remember what it's like to not know how things work. And on the flip side of that, if you are a more senior IC or in a leadership role, also being able to model just saying, I don't know how this works and going and figuring out answers together because that was a really powerful shift for me early in my career is just to feel like I can say that I don't know something. >>I totally agree. I've been in that same situation where just ask the question because you I'm guaranteed. There's a million outta people in the room that probably has the, have the same question and because an imposter syndrome don't wanna admit, I don't understand that. Can we back up, but I agree with you. I think that is one of the best things. Raise your hand and ask a question, ladies. Thank you so much for joining me talking about honeycomb and AWS, what you're doing together from a technology perspective and the focus efforts that each company has on D E and I, we appreciate your insights. >>Thank you so much for having us talking to >>My pleasure. Likewise, for my guests, I'm Lisa Martin. You're watching the AWS partner showcase women in.

Published Date : May 6 2022

SUMMARY :

It's great to have you talking about a very important topic today. Thanks for having us. Of course, Vera, let's go ahead and start with you. And for me, that came in the form of cloud Foundry circle CI, And on the one hand, they really spoke to me as You mentioned that you like the technology, but you were also attracted because you saw And that was a I do wanna have you here, talk to the audience a little bit about honeycomb, what technology And we work with a And to give you an example of And we believe that's where we shine in helping you there. It sounds like that's where you really shine that real time visibility is so critical these days. And I know that they've done some, some great things with people who are trying Vera a back to you, let's kind of unpack the partnership, the significance that I Don know that this Predates me to some extent, And then that way we can be sort of the Guinea pigs and try things out in a way that migrates And how is that synergistic with AWS's approach Vera? And so we are recognizing that we need to be more intentional with our DEI initiatives, Danielle, I know we've talked about this before, but for the audience, in terms of And I think, you know, working with a company like honeycomb that is looking to differentiate to hear that that's so fundamental to both companies, Barry, I wanna go back to you for a second. And I actually am in the process of hiring a first engineer for my team. Danielle, before we close, I wanna get a little bit of, of your background. And I'm, I'm grateful to be part of it. And we're almost out of time and Danielle, I'm gonna stick with you. is very important and we can bring more women into tech by having more leaders. Love that various same question for you. And on the flip side of that, if you are a more senior IC or in I've been in that same situation where just ask the question because you I'm guaranteed. Likewise, for my guests, I'm Lisa Martin.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Lisa MartinPERSON

0.99+

AWSORGANIZATION

0.99+

2012DATE

0.99+

DaniellePERSON

0.99+

VeraPERSON

0.99+

Liz Frank JonesPERSON

0.99+

Danielle GShockPERSON

0.99+

Vera ReynoldsPERSON

0.99+

10 yearsQUANTITY

0.99+

three secondsQUANTITY

0.99+

2014DATE

0.99+

MarchDATE

0.99+

BarryPERSON

0.99+

Danielle GreshockPERSON

0.99+

Christine yenPERSON

0.99+

last weekDATE

0.99+

AfricaLOCATION

0.99+

two leadersQUANTITY

0.99+

10th anniversaryQUANTITY

0.99+

late ninetiesDATE

0.99+

LambdasTITLE

0.99+

2015DATE

0.99+

LinkedInORGANIZATION

0.99+

VanguardORGANIZATION

0.99+

two waysQUANTITY

0.98+

first engineerQUANTITY

0.98+

both waysQUANTITY

0.98+

each companyQUANTITY

0.98+

oneQUANTITY

0.98+

both endsQUANTITY

0.98+

both companiesQUANTITY

0.98+

LambdaTITLE

0.97+

todayDATE

0.97+

CubORGANIZATION

0.96+

two femaleQUANTITY

0.94+

eachQUANTITY

0.94+

one sideQUANTITY

0.94+

first.comORGANIZATION

0.93+

bothQUANTITY

0.9+

D EORGANIZATION

0.9+

season oneQUANTITY

0.87+

yearDATE

0.85+

slackORGANIZATION

0.81+

D EPERSON

0.8+

2022 035OTHER

0.7+

episode threeQUANTITY

0.7+

ISVORGANIZATION

0.64+

HoneycombORGANIZATION

0.64+

secondQUANTITY

0.62+

honeycombORGANIZATION

0.58+

coupleQUANTITY

0.51+

DEIORGANIZATION

0.5+

millionQUANTITY

0.48+

LatinasPERSON

0.47+

PSAORGANIZATION

0.36+

Clara Bidorini, AWS | Women in Tech: International Women's Day


 

(upbeat music) >> Hey everyone, welcome to theCUBE's coverage of Women in Tech: International Women's Day, 2022. I'm your host Lisa Martin. Clara Bidorini joins me next, a Business Developer for the startups team in Brazil at AWS. Clara, it's lovely to have you on the program. >> Hi Lisa, thank you for having me. >> I want to mention a couple accolades that you got just in 2021. You were one of the top 20 most influential women for open innovation in Brazil in 2021. And you were a finalist for Women in Tech Brazil Awards in the category of Ally in Tech 2021. Congratulations. >> Thank you so much, it was an awesome year and it's always important to be acknowledged for what you're doing in the market, right? >> Absolutely, everyone wants to be appreciated every now and then. Tell me a little bit about your role and your background. >> Of course. So I am living in Brazil, as you said, but actually I'm Italian. So I've been living abroad for the last, I will say 16 years. So I've been living in Portugal, I've been living in Switzerland and now in Brazil for the last, I will say 11 years. I'm a Social Entrepreneur and a Strategic Designer. I've been working with corporate ventures since 2014 and now I am Corporate Venture Manager for startups at Amazon Web Services. I've supported, throughout 10 years, enterprises, startups, public sector with corporate acceleration programs and open innovation initiatives within their customer throughout Latin America. >> What's the female representation like in the startup environment? >> Well it depends a lot, right? We have different trends globally speaking. If we look at, for example, global trends, and that includes United States for example, we see that the number of unicorns that for example are led by female is much lower than the number of total unicorn that you see. So if you talk about United States, for example, that has the highest number of unicorns, we see that between 2013 and 2021 the number of female at a unicorn is only 60 against 500 which is a total number of it. So we see that actually the percentage is 12% only, so we need much more representative in the female startup ecosystem. But numbers are changing, right? So this is promising. >> That is good, it is promising to see the numbers ticking up. In terms of positioning of women in leadership roles, what's the role that you see kind of commonly across startups, or maybe it varies by country. >> It varies by country you're right but definitely when we look at the trends and when we look at the data that we receive from National StartUp Association and startup organization in the different geos, you can see that startup that are founded by female leaders are, I will say as a proxy, from 4% to 12% in some countries, it gets to 18%, of the total number of startups to that country. So it's still a low number, but what we see which is interesting, is that much more startups that are led by both female and male co-founders are rising more and more. For example, in Brazil, it represents 28% which is almost 30% against the 12% of female-only founded startup and the 51% of the male founded startup. So I think it's promising to look at this mix of genders when we look at the foundations of startups because they're also getting, I will say, from five to six more investment than female founded startups. What does it mean? It means that we need to find I think more allies work in allyship with men in order to have more investment in startup by women. But it also means that unicorns and the biggest startup, the scale-up startups, are now starting for example to hire women in the leadership. So maybe we don't have so many startups that are founded by women, but we have more and more scale-ups and unicorns that are led by leaders which are women. So this is an interesting change, if we compare 2022 with 2013, for example. >> That's good that we've seen so much progress in that amount of time. And something that I've seen too, or looking at stats, we know that the number of females and technical roles is still pretty low below 25%, but there's a lot of data that show that companies with even 30% of the executive leadership team being female, are more performant and more profitable. So the data is there. Is that one of the reasons that you think that you're seeing a lot of these kind of co-CEOs, female-male counterparts in the startup community? >> Well, we already know that diversity and diverse teams are much more performative than I will say, non-inclusive ones. So it's always a matter of how you can thrive to success in every kind of environment you're working. So this is true for startups but this is also true for corporations. So it's just a matter of time. I think for the startup environment to start to be working faster with diversity and inclusion, then I will say the traditional corporate world. Many of those startups in Brazil, in these tests, are saying, "We want to work with inclusion. We want to have more equity throughout the journey. Not only in the leadership." They just need more resources. And this is something that is interesting for startup because resources is what a startup normally doesn't have. So we need to be really smart on where they put the resources and how we help them throughout this journey so that they can be as diverse as they can and therefore gain more profit, right? >> One of the things that we often say when we're talking about women in tech and here we are International Women's day is that we can't be what we can't see. And I think that's so important to have those female role models. It's also important to have male role models. Talk to me a little bit about your mentors and sponsors and how they've helped get you to where you are today. >> Okay. This is interesting, because I just had a nice conversation with some friends of mine and today we're going to launch a project which I'm very fond of which is called (foreign language) in Portuguese is leave it with them Them being a positive reinforce to women. And today we have launched the first episode, which is amazing. And we were talking about mentors. So how important are they? And we were discussing the fact that until now if we have to count the number of male mentors that we have of course it's much bigger than number of female mentors but from now on what about having more female role models for everybody in the startup ecosystems? This is not a motion in where women are becoming mentors for other women. Women can be mentors for everybody. And the fact that we are empowering more female founders and female leaders in the ecosystem is just bringing again more diversity and therefore more performance to the entire ecosystem. I had many different mentors from different worlds. I will tell a little bit more about myself. Originally I'm an architect and I've been working with building and houses and hospitals and library during the first part of my career. And that world was a male world actually and I had many great mentors that helped me out throughout my journey. When I changed my career into Service Design and starting working with systems and holistic approach for strategy, again, I found many male mentors especially in Switzerland, especially in Brazil. But when I started the startup ecosystem journey, I started meeting women that actually changed my career. So, I'm talking about investors, I'm talking about co-founders, I'm talking about leaders I'm talking about leaders in the community because we don't have to forget that we need always to rely on the personas that are working in the startup ecosystem such as accelerators, incubators, universities. And I could just tell you so many stories about my mentors, but I don't want to say here that we only need to focus on finding female mentors. We need to find the most meaningful relationship that we can and learn from them. It could be a woman, it could be a man, but we need to encourage more and more in women to have the strength and the courage to be mentored to, to speak up. >> I agree. You don't have to have mentors that are only female. I have many back in my day that were male that got me to where I am today that I just really looked up to. And that sponsored me. And that's important for women to know that you need to have your own personal board of directors, of mentors and sponsors. But I'd love to know a little bit more. You really pivoted in your career. Talk to me about how you got the courage to say, "You know what? I'm going to make a change here. I'm going to go in a different direction." >> Oh Lisa, that's such a question. Thank you so about asking me about this. So I've always have been this I will say status quo challenger. And at some point when I entered architecture I ended up making a master in complexity and using creativity to solve complex problem. So there was already a flag of me not working in architecture anymore in the future but I didn't notice at the time. So this idea of working with complexity and using creativity to work out complex problems in society brought me to start working more with design and then using design as a management approach to solve those problems. So I was pivoting but step by step from architecture to design, from design to branding, sorry, from branding to strategy. At certain point I was working with open innovation already, so was solving big challenges for big corporations. I was designing, innovation, planning, The step from here to join the startup ecosystem world is just really small. So from that moment on, I understood that business was the place where I was working and creating an understanding value proposition was actually the thing that was putting me on stage and letting me be more myself in terms of having more connections, being an agent of transformation in this ecosystem. And actually being the status quo challenger every day. So that's the way I pivoted, but it took a lot of courage and it also took a lot of curiosity. And this is something that I'm always telling the startups to have. You need to look at everything with the eyes of a tourist. You need to be curious about everything. That's also the reason why I've been changing countries. I love to learn about new cultures. I love to learn new expressions. I love to understand how other people think. And this is putting other people and other reality in the center of your attention. And this is what business is about. Building stuff that is interesting for people, for your customers, for your user. This is the center of building a value proposition >> Right you bring up several good points there. And one, the breadth of knowledge and experience that you have. There's so much value there in having that breadth, being courageous enough to be curious but you also bring up a point about some other skills like soft skills, for example, that are so valuable that you don't necessarily learn in school. For example, I think communication, relationship building, those are so important for women and men to have to really bring that breadth to what it is that they're doing so that they can do whatever it is that they want. >> Exactly. You're so, right. So many of these soft skills for women, I think have been censored throughout the years by society behaviors. Let's say negotiating or talking about finance or let's try to create something new and having the courage to say, "I'm going to fail several times before will bring my business to success." So all of these aspects that I'm trying to describe here were kind of silenced throughout century for women. And now the possibility not only to test those situations but also to speak up, to share this this knowledge, and to be mindful with other women that can help us to be courageous enough, to fail so many times that we need in order for us to be successful. This is something that I've learned from my colleagues in the startup ecosystem, both male and female founders. This is so important to fail. Failing first is important. And this is something that actually for women is contradicted, right? We are taught to be perfect. We are taught to be multitasking. We are taught to be everything that is not showing our vulnerabilities and learning from our mistakes. So these are the soft skills that I think are more important. And also sorry, I was forgetting one of the most important, which is resilience. Definitely (chuckles). >> Resilience is critical. But I always say that failure is not necessarily a bad F word and you bring up a good point. But if you think of the theme of International Women's Day this year which is #BreakTheBias where do you think we are with that in the startup entrepreneurial world? >> That's a good question, Lisa. I think we are in the middle of a big change. Many of the things that happened throughout the last two years all over the world brought society to rethink on what we want as a future. The pandemic, the killings of innocent people in the United States, in Brazil, what is happening right now in Ukraine. We are working together throughout the new future and we had to rethink to change completely the way we were controlling our daily life, when the pandemic started, right? I think we are in in the midst of a new change. In the startup ecosystem, more and more women are claiming their right to be mothers, to be workers, to be leaders, to be in the startup ecosystem stages like pitching and selling their businesses to investors or corporates, and at the same time to be part of a family and also our men. So I think we are at the point in which we are kind of looking at each other in the eyes and saying, "Okay, we need to compromise. We need to have a better quality of life. And we need to compromise in being core responsible at what we want to achieve in terms of business." And this is something that is happening in the startup ecosystem world as well. So it's impacting corporates and startup as well. So, I think it was a consequence of the last two three years of events throughout the world. But also we see more investors that are female investors and this is important because they're breaking the bias. If we have more female investors investing in more women, we can definitely have those entrepreneurs having raised more money or the same amount of money as men in less time. Now, as we are talking, it takes longer for women to raise less money than the men. So we need to break the bias in this sense. And I think it's happening already. >> We do need to break the bias and thank you for your insights and the work that you are doing to help that along the way. Clara, it was lovely to chat with you today. Thanks for sharing your background. >> Thank you again, Liz. It was wonderful to be here with you. And I just want to make a call to action for all the women and the men that are listening to us to be closer to the other gender, and to try to be an active listener of what's happening in the other gender's life. Because at the end of the day we are co-sharing this world together. Thank you very much >> Wise words, Clara. Thank you again. From Clara Bidorini, I'm Lisa Martin. You're watching Women in Tech: International Women's Day, 2022. (upbeat music)

Published Date : Mar 9 2022

SUMMARY :

a Business Developer for the in the category of Ally in Tech 2021. your role and your background. and now in Brazil for the that has the highest number of unicorns, it is promising to see and the 51% of the male founded startup. Is that one of the reasons that you think and how we help them One of the things that we often say And the fact that we are got the courage to say, the startups to have. and experience that you have. and having the courage to say, in the startup entrepreneurial world? and at the same time and the work that you are doing men that are listening to us Thank you again.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
ClaraPERSON

0.99+

Clara BidoriniPERSON

0.99+

Lisa MartinPERSON

0.99+

SwitzerlandLOCATION

0.99+

PortugalLOCATION

0.99+

LizPERSON

0.99+

fiveQUANTITY

0.99+

Amazon Web ServicesORGANIZATION

0.99+

BrazilLOCATION

0.99+

LisaPERSON

0.99+

National StartUp AssociationORGANIZATION

0.99+

12%QUANTITY

0.99+

4%QUANTITY

0.99+

51%QUANTITY

0.99+

UkraineLOCATION

0.99+

18%QUANTITY

0.99+

10 yearsQUANTITY

0.99+

28%QUANTITY

0.99+

Latin AmericaLOCATION

0.99+

United StatesLOCATION

0.99+

11 yearsQUANTITY

0.99+

2013DATE

0.99+

AWSORGANIZATION

0.99+

16 yearsQUANTITY

0.99+

International Women's DayEVENT

0.99+

International Women's dayEVENT

0.99+

2021DATE

0.99+

oneQUANTITY

0.99+

first episodeQUANTITY

0.99+

United StatesLOCATION

0.99+

2014DATE

0.99+

todayDATE

0.99+

500QUANTITY

0.99+

bothQUANTITY

0.99+

OneQUANTITY

0.98+

30%QUANTITY

0.98+

Women in Tech: International Women's DayEVENT

0.98+

Women in Tech Brazil AwardsEVENT

0.98+

sixQUANTITY

0.98+

first partQUANTITY

0.98+

firstQUANTITY

0.96+

pandemicEVENT

0.96+

60QUANTITY

0.96+

almost 30%QUANTITY

0.96+

2022DATE

0.94+

last two yearsDATE

0.93+

theCUBEORGANIZATION

0.93+

below 25%QUANTITY

0.91+

this yearDATE

0.89+

ItalianLOCATION

0.89+

WomenTITLE

0.87+

PortugueseOTHER

0.87+

couple accoladesQUANTITY

0.84+

in Tech 2021EVENT

0.83+

2022EVENT

0.76+

Women in TechEVENT

0.73+

AllyTITLE

0.7+

20 most influential womenQUANTITY

0.65+

three yearsQUANTITY

0.64+

inEVENT

0.61+

topQUANTITY

0.56+

Tech:TITLE

0.56+

last twoDATE

0.47+

AWS Heroes Panel | Open Cloud Innovations


 

(upbeat music) >> Hello, and welcome back to AWS Startup Showcase, I'm John Furrier, your host. This is the Hero panel, the AWS Heroes. These are folks that have a lot of experience in Open Source, having fun building great projects and commercializing the value and best practices of Open Source innovation. We've got some great guests here. Liz Rice, Chief Open Source Officer, Isovalent. CUBE alumni, great to see you. Brian LeRoux, who is the Co-founder and CTO of begin.com. Erica Windisch who's an Architect for Developer Experience. AWS Hero, also CUBE alumni. Casey Lee, CTO Gaggle. Doing some great stuff in ed tech. Great collection of experts and experienced folks doing some fun stuff, welcome to this conversation this CUBE panel. >> Hi. >> Thanks for having us. >> Hello. >> Let's go down the line. >> I don't normally do this, but since we're remote and we have such great guests, go down the line and talk about why Open Source is important to you guys. What projects are you currently working on? And what's the coolest thing going on there? Liz we'll start with you. >> Okay, so I am very involved in the world of Cloud Native. I'm the chair of the technical oversight committee for the Cloud Native Computing Foundation. So that means I get to see a lot of what's going on across a very broad range of Cloud Native projects. More specifically, Isovalent. I focus on Cilium, which is it's based on a technology called EBPF. That is to me, probably the most exciting technology right now. And then finally, I'm also involved in an organization called OpenUK, which is really pushing for more use of open technologies here in the United Kingdom. So spread around lots of different projects. And I'm in a really fortunate position, I think, to see what's happening with lots of projects and also the commercialization of lots of projects. >> Awesome, Brian what project are you working on? >> Working project these days called Architect. It's a Open Source project built on top of AWSM. It adds a lot of sugar and terseness to the SM experience and just makes it a lot easier to work with and get started. AWS can be a little bit intimidating to people at times. And the Open Source community is stepping up to make some of that bond ramp a little bit easier. And I'm also an Apache member. And so I keep a hairy eyeball on what's going on in that reality all the time. And I've been doing this open-source thing for quite a while, and yeah, I love it. It's a great thing. It's real science. We get to verify each other's work and we get to expand and build on human knowledge. So that's a huge honor to just even be able to do that and I feel stoked to be here so thanks for having me. >> Awesome, yeah, and totally great. Erica, what's your current situation going on here? What's happening? >> Sure, so I am currently working on developer experience of a number of Open Source STKS and CLI components from my current employer. And previously, recently I left New Relic where I was working on integrating with OpenTelemetry, as well as a number of other things. Before that I was a maintainer of Docker and of OpenStack. So I've been in this game for a while as well. And I tend to just put my fingers in a lot of little pies anywhere from DVD players 20 years ago to a lot of this open telemetry and monitoring and various STKs and developer tools is where like Docker and OpenStack and the STKs that I work on now, all very much focusing on developer as the user. >> Yeah, you're always on the wave, Erica great stuff. Casey, what's going on? Do you got some great ed techs happening? What's happening with you? >> Yeah, sure. The primary Open Source project that I'm contributing to right now is ACT. This is a tool I created a couple of years back when GitHub Actions first came out, and my motivation there was I'm just impatient. And that whole commit, push, wait time where you're testing out your pipelines is painful. And so I wanted to build a tool that allowed developers to test out their GitHub Actions workflows locally. And so this tool uses Docker containers to emulate, to get up action environment and gives you fast feedback on those workflows that you're building. Lot of innovation happening at GitHub. And so we're just trying to keep up and continue to replicate those new features functionalities in the local runner. And the biggest challenge I've had with this project is just keeping up with the community. We just passed 20,000 stars, and it'd be it's a normal week to get like 10 PRs. So super excited to announce just yesterday, actually I invited four of the most active contributors to help me with maintaining the project. And so this is like a big deal for me, letting the project go and bringing other people in to help lead it. So, yeah, huge shout out to those folks that have been helping with driving that project. So looking forward to what's next for it. >> Great, we'll make sure the SiliconANGLE riders catch that quote there. Great call out. Let's start, Brian, you made me realize when you mentioned Apache and then you've been watching all the stuff going on, it brings up the question of the evolution of Open Source, and the commercialization trends have been very interesting these days. You're seeing CloudScale really impact also with the growth of code. And Liz, if you remember, the Linux Foundation keeps making projections and they keep blowing past them every year on more and more code and more and more entrance coming in, not just individuals, corporations. So you starting to see Netflix donates something, you got Lyft donate some stuff, becomes a project company forms around it. There's a lot of entrepreneurial activity that's creating this new abstraction layers, new platforms, not just tools. So you start to see a new kickup trajectory with Open Source. You guys want to comment on this because this is going to impact how fast the enterprise will see value here. >> I think a really great example of that is a project called Backstage that's just come out of Spotify. And it's going through the incubation process at the CNCF. And that's why it's front of mind for me right now, 'cause I've been working on the due diligence for that. And the reason why I thought it was interesting in relation to your question is it's spun out of Spotify. It's fully Open Source. They have a ton of different enterprises using it as this developer portal, but they're starting to see some startups emerging offering like a hosted managed version of Backstage or offering services around Backstage or offering commercial plugins into Backstage. And I think it's really fascinating to see those ecosystems building up around a project and different ways that people can. I'm a big believer. You cannot sell the Open Source code, but you can sell other things that create value around Open Source projects. So that's really exciting to see. >> Great point. Anyone else want to weigh in and react to that? Because it's the new model. It's not the old way. I mean, I remember when I was in college, we had the Pirate software. Open Source wasn't around. So you had to deal under the table. Now it's free. But I mean the old way was you had to convince the enterprise, like you've got a hard knit, it builds the community and the community manage the quality of the code. And then you had to build the company to make sure they could support it. Now the companies are actually involved in it, right? And then new startups are forming faster. And the proof points are shorter and highly accelerated for that. I mean, it's a whole new- >> It's a Cambrian explosion, and it's great. It's one of those things that it's challenging for the new developers because they come in and they're like, "Whoa, what is all this stuff that I'm supposed to figure out?" And there's no right answer and there's no wrong answer. There's just tons of it. And I think that there's a desire for us to have one sort of well-known trot and happy path, that audience we're a lot better with a more diverse community, with lots of options, with lots of ways to approach these problems. And I think it's just great. A challenge that we have with all these options and all these Cambrian explosion of projects and all these competing ideas, right now, the sustainability, it's a bit of a tricky question to answer. We know that there's a commercialization aspect that helps us fund these projects, but how we compose the open versus the commercial source is still a bit of a tricky question and a tough one for a lot of folks. >> Erica, would you chime in on that for a second. I want to get your angle on that, this experience and all this code, and I'm a new person, I'm an existing person. Do I get like a blue check mark and verify? I mean, these are questions like, well, how do you navigate? >> Yeah, I think this has been something happening for a while. I mean, back in the early OpenStack days, 2010, for instance, Rackspace Open Sourcing, OpenStack and ANSU Labs and so forth, and then trying, having all these companies forming in creating startups around this. I started at a company called Cloudccaling back in late 2010, and we had some competitors such as Piston and so forth where a lot of the ANSUL Labs people went. But then, the real winners, I think from OpenStack ended up being the enterprises that jumped in. We had Red Hat in particular, as well as HP and IBM jumping in and investing in OpenStack, and really proving out a lot of... not that it was the first time, but this is when we started seeing billions of dollars pouring into Open Source projects and Open Source Foundations, such as the OpenStack Foundation, which proceeded a lot of the things that we now see with the Linux Foundation, which was then created a little bit later. And at the same time, I'm also reflecting a little bit what Brian said because there are projects that don't get funded, that don't get the same attention, but they're also getting used quite significantly. Things like Log4j really bringing this to the spotlight in terms of projects that are used everywhere by everything with significant outsized impacts on the industry that are not getting funded, that aren't flashy enough, that aren't exciting enough because it's just logging, but a vulnerability in it brings every everything and everybody down and has possibly billions of dollars of impact to our industry because nobody wanted to fund this project. >> I think that brings up the commercialization point about maybe bringing a venture capital model in saying, "Hey, that boring little logging thing could be a key ingredient for say solving some observability problems so I think let's put some cash." Again then we'd never seen that before. Now you're starting to see that kind of a real smart investment thesis going into Open Source projects. I mean, Promethease, Crafter, these are projects that turned off companies. This is turning up companies. >> A decade ago, there was no money in Dev tools that I think that's been fully debunked now. They used to be a concept that the venture community believed, but there's just too much evidence to the contrary, the companies like Cash Court, Datadog, the list goes on and on. I think the challenge for the Open Source (indistinct) comes back to foundations and working (indistinct) these developers make this code safe and secure. >> Casey, what's your reaction to all of this? You've got, so a project has gained some traction, got some momentum. There's a lot of mission critical. I won't say white spaces, but the opportunities in the big cloud game happening. And there's a lot of, I won't say too many entrepreneurial, but there's a lot of community action happening that's precommercialization that's getting traction. How does this all develop naturally and then vector in quickly when it hits? >> Yeah, I want to go back to the Log4j topic real quick. I think that it's a great example of an area that we need to do better at. And there was a cool article that Rob Pike wrote describing how to quantify the criticality. I think that's sort of quantifying criticality was the article he wrote on how to use metrics, to determine how valuable, how important a piece of Open Source is to the community. And we really need to highlight that more. We need a way to make it more clear how important this software is, how many people depend on it and how many people are contributing to it. And because right now we all do that. Like if I'm going to evaluate an Open Source software, sure, I'll look at how many stars it has and how many contributors it has. But I got to go through and do all that work myself and come up with. It would be really great if we had an agreed upon method for ranking the criticality of software, but then also the risk, hey, that this is used by a ton of people, but nobody's contributing to it anymore. That's a concern. And that would be great to potential users of that to signal whether or not it makes sense. The Open Source Security Foundation, just getting off the ground, they're doing some work in this space, and I'm really excited to see where they go with that looking at ways to stop score critically. >> Well, this brings up a good point while we've got everyone here, let's take a plug and plug a project you think that's not getting the visibility it needs. Let's go through each of you, point out a project that you think people should be looking at and talking about that might get some free visibility here. Anyone want to highlight projects they think should be focused more on, or that needs a little bit of love? >> I think, I mean, particularly if we're talking about these sort of vulnerability issues, there's a ton of work going on, like in the Secure Software Foundation, other foundations, I think there's work going on in Apache somewhere as well around the bill of material, the software bill of materials, the Secure Software supply chain security, even enumerating your dependencies is not trivial today. So I think there's going to be a ton of people doing really good work on that, as well as the criticality aspect. It's all like that. There's a really great xkcd cartoon with your software project and some really big monolithic lumps. And then, this tiny little piece in a very important point that's maintained by somebody in his bedroom in Montana or something and if you called it out. >> Yeah, you just opened where the next lightening and a bottle comes from. And this is I think the beauty of Open Source is that you get a little collaboration, you get three feet in a cloud of dust going and you get some momentum, and if it's relevant, it rises to the top. I think that's the collective intelligence of Open Source. The question I want to ask that the panel here is when you go into an enterprise, and now that the game is changing with a much more collaborative and involved, what's the story if they say, hey, what's in it for me, how do I manage the Open Source? What's the current best practice? Because there's no doubt I can't ignore it. It's in everything we do. How do I organize around it? How do I build around it to be more efficient and more productive and reduce the risk on vulnerabilities to managing staff, making sure the right teams in place, the right agility and all those things? >> You called it, they got to get skin in the game. They need to be active and involved and donating to a sustainable Open Source project is a great way to start. But if you really want to be active, then you should be committing. You should have a goal for your organization to be contributing back to that project. Maybe not committing code, it could be committing resources into the darks or in the tests, or even tweeting about an Open Source project is contributing to it. And I think a lot of these enterprises could benefit a lot from getting more active with the Open Source Foundations that are out there. >> Liz, you've been actively involved. I know we've talked personally when the CNCF started, which had a great commercial uptake from companies. What do you think the current state-of-the-art kind of equation is has it changed a little bit? Or is it the game still the same? >> Yeah, and in the early days of the CNCF, it was very much dominated by vendors behind the project. And now we're seeing more and more membership from end-user companies, the kind of enterprises that are building their businesses on Cloud Native, but their business is not in itself. That's not there. The infrastructure is not their business. And I think seeing those companies, putting money in, putting time in, as Brian says contributing resources quite often, there's enough money, but finding the talent to do the work and finding people who are prepared to actually chop the wood and carry the water, >> Exactly. >> that it's hard. >> And if enterprises can find peoples to spend time on Open Source projects, help with those chores, it's hugely valuable. And it's one of those the rising tide floats all the boats. We can raise security, we can reduce the amount of dependency on maintain projects collectively. >> I think the business models there, I think one of the things I'll react to and then get your guys' comments is remember which CubeCon it was, it was one of the early ones. And I remember seeing Apple having a booth, but nobody was manning. It was just an Apple booth. They weren't doing anything, but they were recruiting. And I think you saw the transition of a business model where the worry about a big vendor taking over a project and having undue influence over it goes away because I think this idea of participation is also talent, but also committing that talent back into the communities as a model, as a business model, like, okay, hire some great people, but listen, don't screw up the Open Source piece of it 'cause that's a critical. >> Also hire a channel, right? They can use those contributions to source that talent and build the reputation in the communities that they depend on. And so there's really a lot of benefit to the larger organizations that can do this. They'll have a huge pipeline of really qualified engineers right out the gate without having to resort to cheesy whiteboard interviews, which is pretty great. >> Yeah, I agree with a lot of this. One of my concerns is that a lot of these corporations tend to focus very narrowly on certain projects, which they feel that they depend greatly, they'll invest in OpenStack, they'll invest in Docker, they'll invest in some of the CNCF projects. And then these other projects get ignored. Something that I've been a proponent of for a little bit for a while is observability of your dependencies. And I don't think there's quite enough projects and solutions to this. And it sounds maybe from lists, there are some projects that I don't know about, but I also know that there's some startups like Snyk and so forth that help with a little bit of this problem, but I think we need more focus on some of these edges. And I think companies need to do better, both in providing, having some sort of solution for observability of the dependencies, as well as understanding those dependencies and managing them. I've seen companies for instance, depending on software that they actively don't want to use based on a certain criteria that they already set projects, like they'll set a requirement that any project that they use has a code of conduct, but they'll then use projects that don't have codes of conduct. And if they don't have a code of conduct, then employees are prohibited from working on those projects. So you've locked yourself into a place where you're depending on software that you have instructed, your employees are not allowed to contribute to, for certain legal and other reasons. So you need to draw a line in the sand and then recognize that those projects are ones that you don't want to consume, and then not use them, and have observability around these things. >> That's a great point. I think we have 10 minutes left. I want to just shift to a topic that I think is relevant. And that is as Open Source software, software, people develop software, you see under the hood kind of software, SREs developing very quickly in the CloudScale, but also you've got your classic software developers who were writing code. So you have supply chain, software supply chain challenges. You mentioned developer experience around how to code. You have now automation in place. So you've got the development of all these things that are happening. Like I just want to write software. Some people want to get and do infrastructure as code so DevSecOps is here. So how does that look like going forward? How has the future of Open Source going to make the developers just want to code quickly? And the folks who want to tweak the infrastructure a bit more efficient, any views on that? >> At Gaggle, we're using AWS' CDK, exclusively for our infrastructure as code. And it's a great transition for developers instead of writing Yammel or Jason, or even HCL for their infrastructure code, now they're writing code in the language that they're used to Python or JavaScript, and what that's providing is an easier transition for developers into that Infrastructure as code at Gaggle here, but it's also providing an opportunity to provide reusable constructs that some Devs can build on. So if we've got a very opinionated way to deploy a serverless app in a database and do auto-scaling behind and all stuff, we can present that to a developer as a library, and they can just consume it as it is. Maybe that's as deep as they want to go and they're happy with that. But then they want to go deeper into it, they can either use some of the lower level constructs or create PRs to the platform team to have those constructs changed to fit their needs. So it provides a nice on-ramp developers to use the tools and languages they're used to, and then also go deeper as they need. >> That's awesome. Does that mean they're not full stack developers anymore that they're half stack developers they're taking care of for them? >> I don't know either. >> We'll in. >> No, only kidding. Anyway, any other reactions to this whole? I just want to code, make it easy for me, and some people want to get down and dirty under the hood. >> So I think that for me, Docker was always a key part of this. I don't know when DevSecOps was coined exactly, but I was talking with people about it back in 2012. And when I joined Docker, it was a part of that vision for me, was that Docker was applying these security principles by default for your application. It wasn't, I mean, yes, everybody adopted because of the portability and the acceleration of development, but it was for me, the fact that it was limiting what you could do from a security angle by default, and then giving you these tuna balls that you can control it further. You asked about a project that may not get enough recognition is something called DockerSlim, which is designed to optimize your containers and will make them smaller, but it also constraints the security footprint, and we'll remove capabilities from the container. It will help you build security profiles for app armor and the Red Hat one. SELinux. >> SELinux. >> Yeah, and this is something that I think a lot of developers, it's kind of outside of the realm of things that they're really thinking about. So the more that we can automate those processes and make it easier out of the box for users or for... when I say users, I mean, developers, so that it's straightforward and automatic and also giving them the capability of refining it and tuning it as needed, or simply choosing platforms like serverless offerings, which have these security constraints built in out of the box and sometimes maybe less tuneable, but very strong by default. And I think that's a good place for us to be is where we just enforced these things and make you do things in a secure way. >> Yeah, I'm a huge fan of Kubernetes, but it's not the right hammer for every nail. And there are absolutely tons of applications that are better served by something like Lambda where a lot more of that security surface is taken care of for the developer. And I think we will see better tooling around security profiling and making it easier to shrink wrap your applications that there are plenty of products out there that can help you with this in a cloud native environment. But I think for the smaller developer let's say, or an earlier stage company, yeah, it needs to be so much more straightforward. Really does. >> Really an interesting time, 10 years ago, when I was working at Adobe, we used to requisition all these analysts to tell us how many developers there were for the market. And we thought there was about 20 million developers. If GitHub's to be believed, we think there is now around 80 million developers. So both these groups are probably wrong in their numbers, but the takeaway here for me is that we've got a lot of new developers and a lot of these new developers are really struck by a paradox of choice. And they're typically starting on the front end. And so there's a lot of movement in the stack moved towards the front end. We saw that at re:Invent when Amazon was really pushing Amplify 'cause they're seeing this too. It's interesting because this is where folks start. And so a lot of the obstructions are moving in that direction, but maybe not always necessarily totally appropriate. And so finding the right balance for folks is still a work in progress. Like Lambda is a great example. It lets me focus totally on just business logic. I don't have to think about infrastructure pretty much at all. And if I'm newer to the industry, that makes a lot of sense to me. As use cases expand, all of a sudden, reality intervenes, and it might not be appropriate for everything. And so figuring out what those edges are, is still the challenge, I think. >> All right, thank you very much for coming on the CUBE here panel. AWS Heroes, thanks everyone for coming. I really appreciate it, thank you. >> Thank you. >> Thank you. >> Okay. >> Thanks for having me. >> Okay, that's a wrap here back to the program and the awesome startups. Thanks for watching. (upbeat music)

Published Date : Jan 26 2022

SUMMARY :

and commercializing the value is important to you guys. and also the commercialization that reality all the time. Erica, what's your current and the STKs that I work on now, the wave, Erica great stuff. and continue to replicate those and the commercialization trends And the reason why I and the community manage that I'm supposed to figure out?" in on that for a second. that don't get the same attention, the commercialization point that the venture community believed, but the opportunities in the of that to signal whether and plug a project you think So I think there's going to be and now that the game is changing and donating to a sustainable Or is it the game still the same? but finding the talent to do the work the rising tide floats all the boats. And I think you saw the and build the reputation And I think companies need to do better, And the folks who want to in the language that they're Does that mean they're not and some people want to get and the acceleration of development, of the realm of things and making it easier to And so finding the right balance for folks for coming on the CUBE here panel. the awesome startups.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Erica WindischPERSON

0.99+

Brian LeRouxPERSON

0.99+

IBMORGANIZATION

0.99+

Liz RicePERSON

0.99+

BrianPERSON

0.99+

Casey LeePERSON

0.99+

Rob PikePERSON

0.99+

EricaPERSON

0.99+

HPORGANIZATION

0.99+

AppleORGANIZATION

0.99+

ANSU LabsORGANIZATION

0.99+

AmazonORGANIZATION

0.99+

DatadogORGANIZATION

0.99+

MontanaLOCATION

0.99+

2012DATE

0.99+

Cloud Native Computing FoundationORGANIZATION

0.99+

LizPERSON

0.99+

ANSUL LabsORGANIZATION

0.99+

NetflixORGANIZATION

0.99+

AdobeORGANIZATION

0.99+

Secure Software FoundationORGANIZATION

0.99+

CaseyPERSON

0.99+

GitHubORGANIZATION

0.99+

OpenUKORGANIZATION

0.99+

AWS'ORGANIZATION

0.99+

United KingdomLOCATION

0.99+

AWSORGANIZATION

0.99+

Linux FoundationORGANIZATION

0.99+

10 minutesQUANTITY

0.99+

Open Source Security FoundationORGANIZATION

0.99+

CUBEORGANIZATION

0.99+

three feetQUANTITY

0.99+

Cash CourtORGANIZATION

0.99+

SnykORGANIZATION

0.99+

20,000 starsQUANTITY

0.99+

JavaScriptTITLE

0.99+

ApacheORGANIZATION

0.99+

yesterdayDATE

0.99+

SpotifyORGANIZATION

0.99+

OneQUANTITY

0.99+

PythonTITLE

0.99+

bothQUANTITY

0.99+

John FurrierPERSON

0.99+

CloudccalingORGANIZATION

0.99+

PistonORGANIZATION

0.99+

20 years agoDATE

0.99+

LyftORGANIZATION

0.98+

late 2010DATE

0.98+

oneQUANTITY

0.98+

OpenStack FoundationORGANIZATION

0.98+

LambdaTITLE

0.98+

GaggleORGANIZATION

0.98+

Secure SoftwareORGANIZATION

0.98+

around 80 million developersQUANTITY

0.98+

CNCFORGANIZATION

0.98+

10 years agoDATE

0.97+

fourQUANTITY

0.97+

Open Source FoundationsORGANIZATION

0.97+

billions of dollarsQUANTITY

0.97+

New RelicORGANIZATION

0.97+

OpenStackORGANIZATION

0.97+

OpenStackTITLE

0.96+

DevSecOpsTITLE

0.96+

first timeQUANTITY

0.96+

EBPFORGANIZATION

0.96+

about 20 million developersQUANTITY

0.96+

Open Source FoundationsORGANIZATION

0.95+

DockerORGANIZATION

0.95+

10 PRsQUANTITY

0.95+

todayDATE

0.94+

CloudScaleTITLE

0.94+

AWS HeroORGANIZATION

0.94+

DockerTITLE

0.92+

GitHub ActionsTITLE

0.92+

A decade agoDATE

0.92+

firstQUANTITY

0.91+

Breaking Analysis: How Cisco can win cloud's 'Game of Thrones'


 

>> From theCUBE Studios in Palo Alto and Boston, bringing you data-driven insights from theCUBE in ETR. This is "Breaking Analysis" with Dave Vellante. >> Cisco is a company at the crossroads. It's transitioning from a high margin hardware business to a software subscription-based model, which also should be high margin through both organic moves and targeted acquisitions. It's doing so in the context of massive macro shifts to digital in the cloud. We believe Cisco's dominant position in networking combined with a large market opportunity and a strong track record of earning customer trust, put the company in a good position to capitalize on cloud momentum. However, there are clear challenges ahead for Cisco, not the least of which is the growing complexity of its portfolio, a large legacy business, and the mandate to maintain its higher profitability profile as it transitions into a new business model. Hello and welcome to this week's Wiki-bond cube insights powered by ETR. In this breaking analysis, we welcome in Zeus Kerravala, who's the founder and principal analyst at ZK Research, long time Cisco watcher who together with me crafted the premise of today's session. Zeus, great to see you welcome to the program. >> Thanks Dave. It's always a pleasure to be with you guys. >> Okay, here's what we're going to talk about today, set the agenda. The catalyst for this session, Zeus and I attended Cisco's financial analyst day. We received a day and a half of firehose presentations, drill downs, interactions, Q and A with Cisco execs and one key customer. So we're going to share our takeaways from these sessions and add our additional thoughts. Now, in particular, we're going to talk about Cisco's TAM, its transformation to a subscription-based model, and how we see that evolving. As always, we're going to bring in some ETR spending data for context and get Zeus' take on what that tells us. And we'll end with a summary of Cisco's cloud strategy and outlook for how it could win in the cloud. So let's talk about Cisco's sort of structure and TAM opportunities. First, Zeus, Cisco has four main lines of business where it's organized it's executives around sort of four product areas. And it's got a large service component as well. Network equipment, SP routing, data center, collaboration that security, and as I say services, that's not necessarily how it's going to market, but that's kind of the way it organizes its ELT, its executive leadership team. >> Yeah, the in fact, the ELT has been organized around those products, as you said. It used to report to the street three product segments, infrastructure platforms, which was by far the biggest, it was all their networking equipment, then applications, and then security. Now it's moved to five new segments, secure agile networks, hybrid work, end to end security, internet for the future and optimized app experiences. And I think what Cisco's trying to do is align their, the way they report along the lines of the way customers buy. 'Cause I think before, you know, they had a very simplistic model before. It was just infrastructure, apps, and security. The ELT is organized around product roadmap and the product innovation, but that's not necessarily the way customers purchase things and so, purchase things so I think they've tried to change things a little bit there. When you look at those segments though, you know, by, it's interesting. They're all big, right? So, by far the biggest distilled networking, which is almost a hundred billion dollar TAM as they reported and they have it growing a about a 9% CAGR as reported by other analyst firms. And when you think about how mature networking is Dave, the fact that that's still growing at high single digit CAGR is still pretty remarkable. So I think that's one of those things that, you know, watchers of Cisco historically have been calling for the network to be commoditized for decades. For as long as I've been watching Cisco, we've been, people have been waiting for the network to be commoditized. My thesis has always been, if you can drive enough innovation into things, you can stave off commoditization and that's what they've done. But that's really the anchor for them to sell all their other products, some of which are higher margin, some which are a little bit sore, but they're all good high margin businesses to your point. >> Awesome. We're going to dig into that. So, so they flattened the organization when Geckler left. You've got Todd Nightingale, Jonathan Davidson, Liz Centoni, and Jeetu Patel who we heard from and we'll make some comments on what we heard from them. One of the big takeaways at the financial analysts meeting was on the TAM, as you just mentioned. Liz Centoni who also is heavily involved in strategy and the CFO Scott Herren, showed this slide, which speaks to the company's TAM and the organizational structure that you were just talking about. So the big message was that Cisco has got a large and growing market, you know, no shortage of available market. Somewhere between eight and 900 billion, depending on which of the slides you pull out of the deck. And ironically Zeus, when you look at the current markets number here on the right hand side of this slide, 260 billion, it just about matches the company's market cap. Maybe an interesting coincidence, but at any rate, what was your takeaway from this data? >> Well, I think, you know, the big takeaway from the data is there's still a lot of room ahead for Cisco to grow, right? Again, this is a, it's a company that I think most people would put in the camp of legacy IT vendor, just because of how long they've been around. But they have done a very good job of staving off innovation. And part of that is just these markets that they play in continue to grow and they continue to have challenges that they can solve. I think one of the things Cisco has done though, since the arrival of Chuck Robbins, is they don't fight these trends anymore, Dave. I know prior to Chuck's arrival, they really fought the tide of software defined networking and you know, trends like that, and even cloud to some extent. And I remember one of the first meetings I had with Chuck, I asked him about that and he said that Cisco will never do that again. That under his watch, if customers are going through a market transition, Cisco wants to lead them through it, not try and hold them back. And I think for that reason, they're able to look at, all of those trends and try and take a leadership position in them, even though you might look at some of those and feel that some of them might be detrimental to Cisco's business in the short term. So something like software defined WANs, which you would throw into secure agile networks, certainly doesn't, may not carry the same kind of RPOs and margins with it that their traditional routers did, but ultimately customers are going to buy it and Cisco would like to be the ones to sell it to them. >> You know, you bring up a great point. This industry is littered, there's a graveyard of executives who fought the trend. Many people, some people remember Ken Olson of Digital Equipment Corporation. "Unix is snake oil," is what he said. IBM mainframe guys said, "PCs are a toy." And of course the history, they were the wrong side of history. The other big takeaway was the shift to software in subscription. They really made a big point of this. Here's a chart Cisco showed a couple of times to make the point that it's one of the largest software companies in the world. You know, in the top 10. They also made the point that Chuck Robbins, when he joined in 2015, and since that time, it's nearly 4x'ed it's subscription software revenue, and roughly doubled its software sales. And it now has an RPO, remaining performance obligations, that exceeds 30 billion. And it's committing to grow its subscription business in the forward-looking statements by 15 to 17% CAGR through 25, which would imply about a doubling of these, the blue lines. Zeus, it's unclear if that forward-looking forecast is just software. I presume it includes some services, but as Herren pointed out, over time, these services will be bundled into the product revenue, same way SAS companies do it. But the point is Cisco is committed, like many of their peers, to moving to an ARR model. But please, share your thoughts on Cisco's move to software subscriptions and how you see the future of consumption-based pricing. >> Yeah, this has been a big shift for Cisco, obviously. It's one that's highly disruptive. It's one that I know gave their partners a lot of angst for a long time because when you sell things upfront, you get a big check for selling that, right? And when you sell things in a subscription model, you get a much smaller check for a number of months over the period of the contract. It also changes the way you deal with the customer. When you sell a one-time product, you basically wipe your hands. You come back in three or four years and say, "it's time to upgrade." When you sell a subscription, now, the one thing that I've tried to talk to Cisco and its partners about is customers don't renew things they don't use. And so it becomes incumbent on the partner, it becomes incumbent upon Cisco to make sure that things that the customer is subscribing to, that they do use. And so Cisco's had to create a customer success organization. They've had to help their partners create those customer success organizations. So it's really changed the model. And Cisco not only made the shift, they've done it faster than they actually had originally forecast. So during the financial analyst day, they actually touted their execution on software, noting that it hit it's 30% revenue as percent of total target well before it was supposed to, it's actually exceeded its targets. And now it's looking to increase that to, it actually raised its guidance in this area a little bit by a few percentage points, looking out over the next few years. And so it's moved to the subscription model, Dave, the thing that you brought up, which I do see as somewhat of a challenge is the shift to consumption-based pricing. So subscription is one thing in that I write you a check every month for the same amount. When I go to the consumption-based pricing, that's easy to do for cloud services, things like WebEx or Duo or, you know, CloudLock, some of the security products. That that shift should be relatively simple. If customers want to buy it that way. It's unclear as to how you do that when you're selling on-prem equipment with the software add-on to it because in that case, you have to put metering technology in to understand how much they're using. You have to have a minimum baseline to start with. They've done it in some respects. The old HCS product that they sold, the Telcos, actually was sold with a minimum commit and then they tacked on a utilization on top of that. So maybe they move into that kind of model. But I know it's something that they've, they get asked about a lot. I know they're still thinking about it, but it's something that I believe is coming and it's going to come pretty fast. >> I want to pick up on that because I think, you know, they made the point that we're one of the top 10 software companies in the world. It's very difficult for hardware companies to make the transition to software. You know, HP couldn't do it. >> Well, no one's done it. >> Well, IBM has kind of done it, but they really struggle. It's kind of this mishmash of tooling and software products that aren't really well-integrated. But, I would say this, everybody now, Cisco, Dell, HPE with GreenLake, Lenovo, pretty much all the traditional hardware players are trying to move to an as a service model or at least for a portion of their business. HPE's all in, Dell transitioning. And for the most part, I would make the following observation. And I'd love to get your thoughts on this. They're pretty much following a SAS like model, which in my view is outdated and kind of flawed from a customer standpoint. All these guys say, "Hey, we're doing this because "this is what the customers want." I think the cloud is really a true consumption based model. And if you look at modern SAS companies, a lot of the startups, they're moving to a consumption based model. You see that with Snowflake, you see that with Stripe. Now they will offer incentives. But most of the traditional enterprise players, they're saying, "Okay, pay us upfront, "commit to some base level. "If you go over it, you know, "we'll charge you for it. "If you go under it, you're still going to pay "for that base level." So it's not true consumption base. It's not really necessarily the customer's best interest. So that's, I think there's some learnings there that are going to have to play out. >> Yeah, the reason customers are shying away from that SAS type model, I think during the pandemic, the one thing we learned, Dave, is that the business will ebb and flow greatly from month to month sometimes. And I was talking with somebody that worked for one of the big hotel chains, and she was telling me that what their CRM providers, she wouldn't tell me who it was, except said it rhymed with Shmalesforce, that their utilization of it went from, you know, from a nice steady level to spiking really high when customers started calling in to cancel hotel rooms. And then it dropped down to almost nothing as we went through that period of stay at home. And now it's risen back up. And so for her, she wanted to move to a consumption-based model because what happens otherwise is you wind up buying for peak utilization, your software subscriptions go largely underutilized the majority of the year, and you wind up paying, you know, a lot more than you need to. If you go to more of a true consumption model, it's harder to model out from a financial perspective 'cause there's a lot of ebbs and flows in the business, but over a longer period of time, it's more cost-effective, right? And so the, again, what the pandemic taught us was we don't really know what we're going to need from a consumption standpoint, you know, nevermind a year from now, maybe even six months from now. And consumption just creates a lot more flexibility and agility. You can scale up, you can scale down. You can bring in users, you can take out users, you can add consultants, things like that. And it just, it's much more aligned with the way businesses are run today. >> Yeah, churn is a silent killer of a software company. And so there's retention is the key here. So again, I think there's lots of learning. Let's put Cisco into context with some of its peers. So this chart we developed compares five companies to Cisco. Core Dell, meaning Dell, without VMware. VMware, HPE, IBM, we've put an AWS, and then Cisco as, IBM, AWS and Cisco is the integrated plays. So the chart shows the latest quarterly revenue multiplied by four to get a run rate, a three-year growth outlook, gross margin percentage, market cap, and revenue multiple. And the key points here are that one, Cisco has got a pretty awesome business model. It's got 60% gross margin, strong operating margins, not shown here, but in the mid twenties, 25%. It's got a higher growth rate than most of its peers. And as such, a much better, multiple than say, for instance, Core Dell gets 33 cents on the revenue dollar. HPE is double that. IBM's below two X. Cisco's revenue multiple rivals VMware, which is a pure software company. Now in a large part that's because VMware stock took a hit recently, but still the point is obvious. Cisco's got a great business. Now for context, we've added AWS, which blows away any company on this chart. We've inferred a market cap of nearly 600 billion, which frankly is conservative at a 10 X revenue multiple given it's inferred margins and growth rate. Now Zeus, if AWS were a separate company, it could have a market cap that approached 800 billion in my view. But what does this data tell you? >> Well, it just tells me that Cisco continues to be a very well-run company that has staved off commoditization, despite the calling for it for years. And I think the big lesson, and I've talked to financial analysts about this over the years, is that if, I don't really believe anything in this world is a commodity, Dave. I think even when Cisco went to the server market, if you remember back then, they created a new way of handling memory management. They were getting well above average margins for service, albeit less than Cisco's network margins, but still above average for server margins. And so I think if you can continue to innovate, you will see the margin stay where they are. You will see customers continue to buy and refresh. And I think one of the challenges Cisco's had in the past, and this is where the subscription business will help, is getting customers to stay with the latest and greatest. Prior to this refresh of network equipment, some of the stuff that I've seen in the fields, 10, 15 years old, once you move to that sell me a box and then tack on the subscription revenue that you pay month by month, you do drive more consistent refresh. Think about the way you just handle your own mobile phone. If you had to go pay, you know, a thousand dollars every three years, you might not do it at that three-year cycle. If you pay 40 bucks a month, every time there's a new phone, you're going to take it, right? So I think Cisco is able to drive greater, better refresh, keep their customers current, keep the features in there. And we've seen that with a lot of the new products. The new Cat 9,000, some of the new service provider products, the new wifi products, they've all done very well. In fact, they've all outpaced their previous generation products as far as growth rate goes. And so I think that is a testament to the way they've run the business. But I do think when people bucket Cisco in with HP and Dell, and I understand why they do, their businesses were similar at one time, it's really not a true comparison anymore. I think Cisco has completely changed their business and they're not trying to commoditize markets, they're trying to drive innovation and keep the margins up, where I think HP and Dell tend to really compete on price versus innovation. >> Well, and we are going to get to this point about the tailwinds and headwinds and cloud, and how Cisco to do it. But, to your point about, you know, the cell phone analogy. To the extent that Cisco can make that seamless for customers could hide that underlying complexity, that's going to be critical for the cloud. Now, but before we get there, I want to talk about one of the reasons why Cisco such a high multiple, and has been able to preserve its margins, to your point, not being commoditized. And it's been able to grow both organically, but also has a strong history of M and A. It's this chart shows a dominant position in core networking. So this shows, so ETR data within the Fortune 500. It plots companies in the ETR taxonomy in two dimensions, net score on the vertical axis, which is a measure of spending velocity, and market share on the horizontal axis, which is a measure of presence in the survey. It's not like IDC market share, it's mentioned market share if you will. The point is Cisco is far and away the most pervasive player in the market, it's generally held its dominant position. Although, it's been under pressure in the last few years in core networking, but it retains or maintains a very respectable net score and consistently performs well for such a large company. Zeus, anything you'd add with respect to Cisco's core networking business? >> Yeah, it's maintained a dominant network position historically. I think part of because it drives good products, but also because the competitive landscape, historically has been pretty weak, right? We saw companies like 3Com and Nortel who aren't around anymore. It'll be interesting to see moving forward now that companies like VMware are involved in networking. AWS is interested in networking. Arista is a much stronger company. You know, Juniper bought Mist and is in better position. Even Extreme Networks who most people thought was dead a few years ago has made a number of acquisitions and is now a billion dollar company. So while Cisco has done a great job of execution, they've done a great job on the innovation side, their competitive landscape, looking out over the next five years, I think is going to be more difficult than it has been over the previous five years. And largely, Dave, I think that's good for Cisco. I think whenever Cisco's pressed a little bit from competition, they tend to step on the innovation gas a little bit more. And I look back and even just the transition when VMware bought Nicira, that got Cisco's SDN business into gear, like nothing else could have, right? So competition for that company, they always seem to respond well to it. >> So, let's break down Cisco's net score a little bit. Explain why the company has been able to hold its spending momentum despite its large size. This will give you a little insight to the survey. So this chart shows the granular components of net score. The lime green is new adoptions to Cisco. The forest green is spending more than 6%. The gray is flat plus or minus 5%. The pink is spending drops by more than 5%. And the red is we're chucking the platform, we're getting off. And Cisco's overall net score here is 25%, which for a company of its size speaks to the relationships that it has with customers. It's of course got a fat middle in the gray area, like all sort of large established companies. But very low defections as well, it's got low new adoptions. But very respectable. So that is background, Zeus. Let's look at spending momentum over time across Cisco's portfolio. So this chart shows Cisco's net score by that methodology within the ETR taxonomy for Cisco over three survey periods. And what jumps out is Meraki on the left, very strong. Virtualization business, its core networking, analytics and security, all showing upward momentum. AppD is a little bit concerning, but that could be related to Cisco's sort of pivot to full stack observability. So maybe AppD is being bundled there. Although some practitioners have cited to us some concerns in that space. And then WebEx at the end of the chart, it's showing some relative strength, but not that high. Zeus, maybe you could comment on Meraki and any other takeaways across the portfolio. >> Yeah, Meraki has proven to be an excellent acquisition for Cisco. In fact, you might, I think it's arguable to say it's its best acquisition in history going all the way back to camp Kalpana and Grand Junction, the ones that brought up catalyst switches. So, in fact, I think Meraki's revenue might be larger than security now. So, that shows you the momentum it has. I think one of the lessons it brought to Cisco was that simpler is better, sometimes. I think when they first bought Meraki, the way Meraki's deployed, it's very easy to set up. There's a lot of engineering work though that goes into making a product simple to use. And I think a lot of Cisco engineers historically looked at Meraki as, that's a little bit of a toy. It's meant for small businesses, things like that, but it's not for enterprise. But, Rocky's done a nice job of expanding the portfolio, of leveraging the cloud for analytics and showing you a lot of things that you wouldn't necessarily get from traditional networking equipment. And one of the things that I was really delighted to see was when they put Todd Nightingale in charge of all the networking business, because that showed to me that Chuck Robbins understood that the things Meraki were doing were right and they infuse a little bit of Meraki into the rest of the company. You know, that's certainly a good thing. The other areas that you showed on the chart, not really a surprise, Dave. When you think of the shift hybrid work and you think of the, some of the other transitions going on, I think you would expect to see the server business in decline, the storage business, you know, maybe in a little bit of decline, just because people aren't building out data centers. Where the other ones are related more to hybrid working, hybrid cloud, things like that. So it is what you would expect. The WebEx one was interesting too, because it did show somewhat of a dip and then a rise. And I think that's indicative of what we've seen in the collaboration space since the pandemic came about. Companies like Zoom and RingCentral really got a lot of the headlines. Again, when you, the comment I made on competition, Cisco got caught a little bit flat-footed, they've caught up in features and now they really stepped on the gas there. Chuck joked that he gave the WebEx team a bit of a blank check to go do what it had to do. And I don't think that was a joke. I think he actually did that because they've added more features into WebEx in the last year then I think they did the previous five years before that. >> Well, let's just drill into video conferencing real quick here, if we could. Here's that two dimensional view, again, showing net score against market share or pervasiveness of mentions, and you can see Microsoft Teams in the upper right. I mean, it's off the chart, literally. Zoom's well ahead of Cisco in terms of, you know, mentions presence. And that could be a spate of freemium, you know, but it's basically a three horse race in this game. And Cisco, I don't think is trying to take Zoom head on, rather it seems to be making WebEx a core part of its broader collaboration agenda. But Zeus, maybe you could comment. >> Well, it's all coming together, right? So, it's hard to decouple calling from video from meetings. All of the vendors, including Teams, are going after the hybrid work experience. And if you believe the future is hybrid and not just work from home, then Cisco does have a pretty interesting advantage because it's the only one that makes its own end points, where Teams and Zoom doesn't. And so that end to end experience it can deliver. The Microsoft Teams one's interesting because that product, frankly, when you talk to users, it doesn't have a great user score, like as far as user satisfaction goes, but the one thing Microsoft has done a very good job of is bundling it in to the Office365 licenses, making it very easy for IT to deploy. Zoom is a little bit in the middle where they've appealed to the users. They've done a better job of appealing to IT, but there is a, there is a battleground now going on where video's not just video. It includes calling, includes meetings, includes room systems now, and I think this hybrid work friend is going to change the way we think about these meeting tools. >> Now we'd be remiss if we didn't spend a moment talking about security as a key part of Cisco's business. And we have a graphic on this same kind of X, Y. And it's been, we've seen several quarters of growth. Although, the last quarter security growth was in the low single digits, but Cisco is a major player in security. And this X, Y graph shows, they've got both a large presence and a solid spending momentum. Not nearly as much momentum as Okta or Zscaler or a CrowdStrike and some of the smaller companies, but they're, these guys are on a rocket ship, but others that we featured in these episodes, but much more than respectable for Cisco. And security is critical to the strategy. It's a big part of the subscriber base. And the last thing, Zeus, I'll say about Cisco made the point in analyst day, that this market is crowded. You can see that in this chart. And their goal is to simplify this picture and make it easier for customers to secure their data and apps. But that's not easy, Zeus. What are your thoughts on Cisco's security opportunities? >> Yeah, I've been waiting for Cisco go to break up in security a little more than it has. I do think, I was talking with a CSO the other day, Dave, that said to me he's starting to understand that you don't have to have best of breed everywhere to have best in class threat protection. In fact, there's a lot of buyers now will tell you that if you try and have best of breed everywhere, it actually creates a negative when it comes to threat protection because keeping all the policies and things up to date is very, very difficult. And so the industry is moving more to a platform model, right? Now, the challenge for Cisco is how do you get that, the customer to think of the network as part of the platform? Because while the platform model, I think, is starting to gain traction, FloridaNet, Palo Alto, even McAfee, companies like that also have their own version of a security platform. And if you look at the financial performance of companies like FloridaNet and Palo Alto over the past, you know, over the past couple of years, they've been through the roof, right? And so I think an interesting and unique challenge for Cisco is can they convince the security buyer that the network is as important a part of that platform as any other component? If they can do that, I think they can break away from the pack. If not, then they'll stay mixed in with those, you know, Palo, FloridaNet, Checkpoint, and, you know, and Cisco, in that mix. But I do think that may present their single biggest needle moving opportunity just because of how big the security TAM is, and the fact that there is no de facto leader in security today. If they could gain the same kind of position in security as they have a networking, who, I mean, that would move the needle like no other market would. >> Yeah, it's really interesting that they're coming at security, obviously from a position of networking strength. You've got, to your point, you've got best of breed, Okta in identity, you got CrowdStrike in endpoint, Zscaler in cloud security. They're all growing like crazy. And you got Cisco and you know, Palo Alto, CSOs tell us they want to work with Palo Alto because they're the thought leader and they're obviously a major player here. You mentioned FloridaNet, there's a zillion others. We could talk all day about security. But let's bring it back to cloud. We've talked about a number of the piece in Cisco's portfolio, and we haven't really spent any time on full stack observability, which is a big push for Cisco with AppD, Intersight and the ThousandEyes acquisition. And that plays into this equation. But my take, Zeus, is Cisco has a number of cloud knobs that it can turn, it sells core networking equipment to hyperscalers. It can be the abstraction layer to connect on-prem to the cloud and hybrid and across clouds. And it's in a good position with Telcos too, to go after the 5G. But let's use this chart to talk about Cisco's cloud prospects. It's an ETR cut of the cloud customer spending. So we cut it by cloud customers. And they're are, I don't know, 800 or so in the survey. And then looking at various companies performance within that cut. So these are companies that compete, or in the case of HashiCorp, partner with Cisco at some level. Let me just set this up and get your take. So the insert on the chart by the way shows the raw data that positions each dot, the net score and the shared n, i.e. the number of accounts in the survey that responded. The key points, first of all, Azure and AWS, dominant players in cloud. GCP is a distant third. We've reported on that a lot. Not only are these two companies big, they have spending momentum on their platforms. They're growing, they are on that flywheel. Second point, VMware and Cisco are very prominent. They have huge customer bases. And while they're often on a collision course, there's lots of room in cloud for multiple players. When we plotted some other Cisco properties like AppD and Meraki, which as we said, is strong. And then for context, we've placed Dell, HPE, Aruba, IBM and Oracle. And also VMware cloud and AWS, which is notable on its elevation. And as I say, we've added HashiCorp because they're critical partner of Cisco and it's a multi-cloud play. Okay, Zeus, there's the setup. What does Cisco have to do to make the cloud a tailwind? Let's talk about strategy, tailwinds, headwinds, competition, and bottom line it for us. >> Yeah, well, I do think, well, I talked about security being the biggest needle mover for Cisco, I think its biggest challenge is convincing Wall Street in particular, that the cloud is a tailwind. I think if you look at the companies with the really high multiples to their stock, Dave, they're all ones where they're viewed as, they go along with the cloud ride, Right? So the, if you can associate yourself with the cloud and then people believe that the cloud is going to, more cloud equals more business, that obviously creates a better multiple because the cloud has almost infinite potential ahead of it. Now with respect to Cisco, I do think cloud has presented somewhat of a double-edged sword for Cisco. I don't believe the current consumption model for cloud is really a tailwind for Cisco, not really a headwind, but it doesn't really change Cisco's business. But I do think the very definition of cloud is changing before our eyes, Dave. And it's shifting away from centralized clouds. If you think of the way customers bought cloud before, it might have used AWS, it might've used Azure, but it really, that's not really multi-cloud, it's just multiple clouds in which I put things in these centralized resources. It's shifting more to this concept of distributed cloud in which a single application can be built using resources from your private cloud, for AWS, from Azure, from Edge locations, all the cloud providers have built their portfolios to support this concept of distributed cloud and what becomes important there, is a highly agile dynamic network. And in that case with distributed cloud, that is a tailwind for Cisco because now the network is that resource that ties all those distributed cloud components together. Now the network itself has to change. It needs to become a lot more agile and microservices and container friendly itself so I can spin up resources and, you know, in an Edge location, as fast as I can on-prem and things like that. But I do think it creates another wave of innovation and networking, and in that case, I think it does act as a tailwind for Cisco, aside from just the work it's done with the web scalers, you know, those types of companies. So, but I do think that Cisco needs to rethink its delivery model on network services somewhat to take advantage of that. >> At the analyst meeting, Cisco made the point that it does sell to the hyperscalers. It talked about the top six hyperscalers. You know, you had mentioned to me, maybe IBM and Oracle were in there. I always talk about four hyperscalers and only four, but that's fine. Here's my question. Practitioners have told me, buyers have told me, the more money and more workloads I put in the cloud, the less I spend with Cisco. Now, even though that might be Cisco gear powering those clouds, do you see that as a potential threat in that they don't own that relationship anymore and value will confer to the cloud players? >> Yeah, that's, I've heard that too. And I don't, I believe that's true when it comes to general purpose compute. You're probably not buying as many UCS servers and things like that because you are putting them in the cloud. But I do think you do need a refresh the network. I think the network becomes a very important role, plays a very important role there. The variant, the really interesting trend will be, what is your WAM look like? Do you have thousands of workers scattered all over the place, or do you just have a few centralized locations? So I think also, you know, Cisco will wind up providing connectivity within the cloud. If you think of the transition we've seen in other industries, Dave, as far as cloud goes, you think of, you know, F5, a company like that. People thought that AWS would commoditize F5's business because AWS provides their own load balancers, right? But what AWS provides is a very basic, very basic functionality and then use F5's virtual edition or a cloud edition for a lot of the advanced capabilities. And I think you'll see the same thing with the cloud that customers will start buying versions of Cisco that go in the cloud to drive a lot of those advanced capabilities that only Cisco delivers. And so I think you wind up buying more Cisco over time, although the per unit price of what you buy might be a little bit lower. If that makes sense here. >> It does, I think it makes a lot of sense and that fits into the cloud model. You know, you bring up a good point, the conversation with the customer was Rakuten. And that individual was essentially sharing with us, somebody was asking, one of the analysts was asking, "Well, what about the cloud guys? "Aren't they going to really threaten the whole Telco "industry and disrupt it?" And his point was, "Look at, this stuff is not trivial." So to your point, you know, maybe they'll provide some basic functionality. Kind of like they do in a lot of different areas. Data protection is another good example. Security is another good example. Where there's plenty of room for partners, competitors, of on-prem players to add value. And I've always said, "Look, the opportunity "is the cloud players spend 100 billion dollars a year "on CapEx." It's a gift to companies like Cisco who can build an abstraction layer that connects on-prem, cloud for hybrid, across clouds, out to the edge, and really be that layer that is that layer that takes advantage of cloud native, but also delivers that experience, I don't want to use the word seamlessly, but that experience across those clouds as the cloud expands. And that's fundamentally Cisco's cloud strategy, isn't it? >> Oh yeah. And I think people have underestimated over the years, how hard it is to build good networking products. Anybody can go get some silicon and build a product to connect two things together. The question is, can you do it at scale? Can you do it securely? And lots of companies have tried to commoditize networking, you know, White Boxes was looked at as the existential threat to Cisco. Huawei was looked at as the big threat to Cisco. And all of those have kind of come and gone because building high quality network equipment that scales is tough. And it's tougher than most people realize. And your other point on the cloud providers as well, they will provide a basic level of functionality. You know, AWS network equipment doesn't work in Azure. And Azure stuff doesn't work in Google, and Google doesn't work in AWS. And so you do need a third party to come in and act as almost the cloud middleware that can connect all those things together with a consistent set of policies. And that's what Cisco does really well. They did that, you know back when they were founded with routing protocols and you can think this is just an extension of what they're doing just up at the cloud layer. >> Excellent. Okay, Zeus, we're going to leave it there. Thanks to my guest today, Zeus Kerravala. Great analysis as always. Would love to have you back. Check out ZKresearch.com to reach him. Thank you again. >> Thank you, Dave. >> Now, remember I publish each week on Wikibond.com and siliconangle.com. All these episodes are available as podcasts, just search "Braking Analysis" podcast, and you can connect on Twitter at DVallante or email me David.Vallante@siliconangle.com. Thanks for the comments on LinkedIn. Check out etr.plus for all the survey action. This is Dave Vallante for theCUBE insights powered by ETR. Be well and we'll see you next time. (light music)

Published Date : Sep 18 2021

SUMMARY :

bringing you data-driven and the mandate to maintain to be with you guys. but that's kind of the for the network to be One of the big takeaways at the ones to sell it to them. And of course the history, is the shift to consumption-based pricing. companies in the world. a lot of the startups, they're moving Dave, is that the business And the key points here are that one, Think about the way you just of the reasons why Cisco I think is going to be more And the red is we're that the things Meraki I mean, it's off the chart, literally. And so that end to end And the last thing, Zeus, the customer to think It's an ETR cut of the Now the network itself has to change. that it does sell to the hyperscalers. that go in the cloud to and that fits into the cloud model. as the existential threat to Cisco. Would love to have you back. Thanks for the comments on LinkedIn.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Liz CentoniPERSON

0.99+

DavePERSON

0.99+

OracleORGANIZATION

0.99+

IBMORGANIZATION

0.99+

Dave VellantePERSON

0.99+

CiscoORGANIZATION

0.99+

Jonathan DavidsonPERSON

0.99+

DellORGANIZATION

0.99+

2015DATE

0.99+

Jeetu PatelPERSON

0.99+

LenovoORGANIZATION

0.99+

TelcosORGANIZATION

0.99+

RingCentralORGANIZATION

0.99+

AWSORGANIZATION

0.99+

Ken OlsonPERSON

0.99+

Dave VallantePERSON

0.99+

McAfeeORGANIZATION

0.99+

ArubaORGANIZATION

0.99+

HPORGANIZATION

0.99+

30%QUANTITY

0.99+

HuaweiORGANIZATION

0.99+

ZK ResearchORGANIZATION

0.99+

MAIN STAGE INDUSTRY EVENT 1


 

>>Have you ever wondered how we sequence the human genome, how your smartphone is so well smart, how we will ever analyze all the patient data for the new vaccines or even how we plan to send humans to Mars? Well, at Cloudera, we believe that data can make what is impossible today possible tomorrow we are the enterprise data cloud company. In fact, we provide analytics and machine learning technology that does everything from making your smartphone smarter, to helping scientists ensure that new vaccines are both safe and effective, big data, no problem out era, the enterprise data cloud company. >>So I think for a long time in this country, we've known that there's a great disparity between minority populations and the majority of population in terms of disease burden. And depending on where you live, your zip code has more to do with your health than almost anything else. But there are a lot of smaller, um, safety net facilities, as well as small academic medical colleges within the United States. And those in those smaller environments don't have the access, you know, to the technologies that the larger ones have. And, you know, I call that, uh, digital disparity. So I'm, Harry's in academic scientist center and our mission is to train diverse health care providers and researchers, but also provide services to underserved populations. As part of the reason that I think is so important for me hearing medical college, to do data science. One of the things that, you know, both Cloudera and Claire sensor very passionate about is bringing those height in technologies to, um, to the smaller organizations. >>It's very expensive to go to the cloud for these small organizations. So now with the partnership with Cloudera and Claire sets a clear sense, clients now enjoy those same technologies and really honestly have a technological advantage over some of the larger organizations. The reason being is they can move fast. So we were able to do this on our own without having to, um, hire data scientists. Uh, we probably cut three to five years off of our studies. I grew up in a small town in Arkansas and is one of those towns where the railroad tracks divided the blacks and the whites. My father died without getting much healthcare at all. And as an 11 year old, I did not understand why my father could not get medical attention because he was very sick. >>Since we come at my Harry are looking to serve populations that reflect themselves or affect the population. He came from. A lot of the data you find or research you find health is usually based on white men. And obviously not everybody who needs a medical provider is going to be a white male. >>One of the things that we're concerned about in healthcare is that there's bias in treatment already. We want to make sure those same biases do not enter into the algorithms. >>The issue is how do we get ahead of them to try to prevent these disparities? >>One of the great things about our dataset is that it contains a very diverse group of patients. >>Instead of just saying, everyone will have these results. You can break it down by race, class, cholesterol, level, other kinds of factors that play a role. So you can make the treatments in the long run. More specifically, >>Researchers are now able to use these technologies and really take those hypotheses from, from bench to bedside. >>We're able to overall improve the health of not just the person in front of you, but the population that, yeah, >>Well, the future is now. I love a quote by William Gibson who said the future is already here. It's just not evenly distributed. If we think hard enough and we apply things properly, uh, we can again take these technologies to, you know, underserved environments, um, in healthcare. Nobody should be technologically disadvantage. >>When is a car not just a car when it's a connected data driven ecosystem, dozens of sensors and edge devices gathering up data from just about anything road, infrastructure, other vehicles, and even pedestrians to create safer vehicles, smarter logistics, and more actionable insights. All the data from the connected car supports an entire ecosystem from manufacturers, building safer vehicles and fleet managers, tracking assets to insurers monitoring, driving behaviors to make roads safer. Now you can control the data journey from edge to AI. With Cloudera in the connected car, data is captured, consolidated and enriched with Cloudera data flow cloud Dara's data engineering, operational database and data warehouse provide the foundation to develop service center applications, sales reports, and engineering dashboards. With data science workbench data scientists can continuously train AI models and use data flow to push the models back to the edge, to enhance the car's performance as the industry's first enterprise data cloud Cloudera supports on-premise public and multi-cloud deployments delivering multifunction analytics on data anywhere with common security governance and metadata management powered by Cloudera SDX, an open platform built on open source, working with open compute architectures and open data stores all the way from edge to AI powering the connected car. >>The future has arrived. >>The Dawn of a retail Renaissance is here and shopping will never be the same again. Today's connected. Consumers are always on and didn't control. It's the era of smart retail, smart shelves, digital signage, and smart mirrors offer an immersive customer experience while delivering product information, personalized offers and recommendations, video analytics, capture customer emotions and gestures to better understand and respond to in-store shopping experiences. Beacons sensors, and streaming video provide valuable data into in-store traffic patterns, hotspots and dwell times. This helps retailers build visual heat maps to better understand custom journeys, conversion rates, and promotional effectiveness in our robots automate routine tasks like capturing inventory levels, identifying out of stocks and alerting in store personnel to replenish shelves. When it comes to checking out automated e-commerce pickup stations and frictionless checkouts will soon be the norm making standing in line. A thing of the past data and analytics are truly reshaping. >>The everyday shopping experience outside the store, smart trucks connect the supply chain, providing new levels of inventory visibility, not just into the precise location, but also the condition of those goods. All in real time, convenience is key and customers today have the power to get their goods delivered at the curbside to their doorstep, or even to their refrigerators. Smart retail is indeed here. And Cloudera makes all of this possible using Cloudera data can be captured from a variety of sources, then stored, processed, and analyzed to drive insights and action. In real time, data scientists can continuously build and train new machine learning models and put these models back to the edge for delivering those moment of truth customer experiences. This is the enterprise data cloud powered by Cloudera enabling smart retail from the edge to AI. The future has arrived >>For is a global automotive supplier. We have three business groups, automotive seating in studios, and then emission control technologies or biggest automotive customers are Volkswagen for the NPSA. And we have, uh, more than 300 sites. And in 75 countries >>Today, we are generating tons of data, more and more data on the manufacturing intelligence. We are trying to reduce the, the defective parts or anticipate the detection of the, of the defective part. And this is where we can get savings. I would say our goal in manufacturing is zero defects. The cost of downtime in a plant could be around the a hundred thousand euros. So with predictive maintenance, we are identifying correlations and patterns and try to anticipate, and maybe to replace a component before the machine is broken. We are in the range of about 2000 machines and we can have up to 300 different variables from pressure from vibration and temperatures. And the real-time data collection is key, and this is something we cannot achieve in a classical data warehouse approach. So with the be data and with clouded approach, what we are able to use really to put all the data, all the sources together in the classical way of working with that at our house, we need to spend weeks or months to set up the model with the Cloudera data lake. We can start working on from days to weeks. We think that predictive or machine learning could also improve on the estimation or NTC patient forecasting of what we'll need to brilliance with all this knowledge around internet of things and data collection. We are applying into the predictive convene and the cockpit of the future. So we can work in the self driving car and provide a better experience for the driver in the car. >>The Cloudera data platform makes it easy to say yes to any analytic workload from the edge to AI, yes. To enterprise grade security and governance, yes. To the analytics your people want to use yes. To operating on any cloud. Your business requires yes to the future with a cloud native platform that flexes to meet your needs today and tomorrow say yes to CDP and say goodbye to shadow it, take a tour of CDP and see how it's an easier, faster and safer enterprise analytics and data management platform with a new approach to data. Finally, a data platform that lets you say yes, >>Welcome to transforming ideas into insights, presented with the cube and made possible by cloud era. My name is Dave Volante from the cube, and I'll be your host for today. And the next hundred minutes, you're going to hear how to turn your best ideas into action using data. And we're going to share the real world examples and 12 industry use cases that apply modern data techniques to improve customer experience, reduce fraud, drive manufacturing, efficiencies, better forecast, retail demand, transform analytics, improve public sector service, and so much more how we use data is rapidly evolving as is the language that we use to describe data. I mean, for example, we don't really use the term big data as often as we used to rather we use terms like digital transformation and digital business, but you think about it. What is a digital business? How is that different from just a business? >>Well, digital business is a data business and it differentiates itself by the way, it uses data to compete. So whether we call it data, big data or digital, our belief is we're entering the next decade of a world that puts data at the core of our organizations. And as such the way we use insights is also rapidly evolving. You know, of course we get value from enabling humans to act with confidence on let's call it near perfect information or capitalize on non-intuitive findings. But increasingly insights are leading to the development of data, products and services that can be monetized, or as you'll hear in our industry, examples, data is enabling machines to take cognitive actions on our behalf. Examples are everywhere in the forms of apps and products and services, all built on data. Think about a real-time fraud detection, know your customer and finance, personal health apps that monitor our heart rates. >>Self-service investing, filing insurance claims and our smart phones. And so many examples, IOT systems that communicate and act machine and machine real-time pricing actions. These are all examples of products and services that drive revenue cut costs or create other value. And they all rely on data. Now while many business leaders sometimes express frustration that their investments in data, people, and process and technologies haven't delivered the full results they desire. The truth is that the investments that they've made over the past several years should be thought of as a step on the data journey. Key learnings and expertise from these efforts are now part of the organizational DNA that can catapult us into this next era of data, transformation and leadership. One thing is certain the next 10 years of data and digital transformation, won't be like the last 10. So let's get into it. Please join us in the chat. >>You can ask questions. You can share your comments, hit us up on Twitter right now. It's my pleasure to welcome Mick Holliston in he's the president of Cloudera mic. Great to see you. Great to see you as well, Dave, Hey, so I call it the new abnormal, right? The world is kind of out of whack offices are reopening again. We're seeing travel coming back. There's all this pent up demand for cars and vacations line cooks at restaurants. Everything that we consumers have missed, but here's the one thing. It seems like the algorithms are off. Whether it's retail's fulfillment capabilities, airline scheduling their pricing algorithms, you know, commodity prices we don't know is inflation. Transitory. Is it a long-term threat trying to forecast GDP? It's just seems like we have to reset all of our assumptions and make a feel a quality data is going to be a key here. How do you see the current state of the industry and the role data plays to get us into a more predictable and stable future? Well, I >>Can sure tell you this, Dave, uh, out of whack is definitely right. I don't know if you know or not, but I happen to be coming to you live today from Atlanta and, uh, as a native of Atlanta, I can, I can tell you there's a lot to be known about the airport here. It's often said that, uh, whether you're going to heaven or hell, you got to change planes in Atlanta and, uh, after 40 minutes waiting on algorithm to be right for baggage claim when I was not, I finally managed to get some bag and to be able to show up dressed appropriately for you today. Um, here's one thing that I know for sure though, Dave, clean, consistent, and safe data will be essential to getting the world and businesses as we know it back on track again, um, without well-managed data, we're certain to get very inconsistent outcomes, quality data will the normalizing factor because one thing really hasn't changed about computing since the Dawn of time. Back when I was taking computer classes at Georgia tech here in Atlanta, and that's what we used to refer to as garbage in garbage out. In other words, you'll never get quality data-driven insights from a poor data set. This is especially important today for machine learning and AI, you can build the most amazing models and algorithms, but none of it will matter if the underlying data isn't rock solid as AI is increasingly used in every business app, you must build a solid data foundation mic. Let's >>Talk about hybrid. Every CXO that I talked to, they're trying to get hybrid, right? Whether it's hybrid work hybrid events, which is our business hybrid cloud, how are you thinking about the hybrid? Everything, what's your point of view with >>All those descriptions of hybrid? Everything there, one item you might not have quite hit on Dave and that's hybrid data. >>Oh yeah, you're right. Mick. I did miss that. What, what do you mean by hybrid data? Well, >>David in cloud era, we think hybrid data is all about the juxtaposition of two things, freedom and security. Now every business wants to be more agile. They want the freedom to work with their data, wherever it happens to work best for them, whether that's on premises in a private cloud and public cloud, or perhaps even in a new open data exchange. Now this matters to businesses because not all data applications are created equal. Some apps are best suited to be run in the cloud because of their transitory nature. Others may be more economical if they're running a private cloud, but either way security, regulatory compliance and increasingly data sovereignty are playing a bigger and more important role in every industry. If you don't believe me, just watch her read a recent news story. Data breaches are at an all time high. And the ethics of AI applications are being called into question every day and understanding the lineage of machine learning algorithms is now paramount for every business. So how in the heck do you get both the freedom and security that you're looking for? Well, the answer is actually pretty straightforward. The key is developing a hybrid data strategy. And what do you know Dave? That's the business cloud era? Is it on a serious note from cloud era's perspective? Adopting a hybrid data strategy is central to every business's digital transformation. It will enable rapid adoption of new technologies and optimize economic models while ensuring the security and privacy of every bit of data. What can >>Make, I'm glad you brought in that notion of hybrid data, because when you think about things, especially remote work, it really changes a lot of the assumptions. You talked about security, the data flows are going to change. You've got the economics, the physics, the local laws come into play. So what about the rest of hybrid? Yeah, >>It's a great question, Dave and certainly cloud era itself as a business and all of our customers are feeling this in a big way. We now have the overwhelming majority of our workforce working from home. And in other words, we've got a much larger surface area from a security perspective to keep in mind the rate and pace of data, just generating a report that might've happened very quickly and rapidly on the office. Uh, ether net may not be happening quite so fast in somebody's rural home in, uh, in, in the middle of Nebraska somewhere. Right? So it doesn't really matter whether you're talking about the speed of business or securing data, any way you look at it. Uh, hybrid I think is going to play a more important role in how work is conducted and what percentage of people are working in the office and are not, I know our plans, Dave, uh, involve us kind of slowly coming back to work, begin in this fall. And we're looking forward to being able to shake hands and see one another again for the first time in many cases for more than a year and a half, but, uh, yes, hybrid work, uh, and hybrid data are playing an increasingly important role for every kind of business. >>Thanks for that. I wonder if we could talk about industry transformation for a moment because it's a major theme of course, of this event. So, and the case. Here's how I think about it. It makes, I mean, some industries have transformed. You think about retail, for example, it's pretty clear, although although every physical retail brand I know has, you know, not only peaked up its online presence, but they also have an Amazon war room strategy because they're trying to take greater advantage of that physical presence, uh, and ended up reverse. We see Amazon building out physical assets so that there's more hybrid going on. But when you look at healthcare, for example, it's just starting, you know, with such highly regulated industry. It seems that there's some hurdles there. Financial services is always been data savvy, but you're seeing the emergence of FinTech and some other challenges there in terms of control, mint control of payment systems in manufacturing, you know, the pandemic highlighted America's reliance on China as a manufacturing partner and, and supply chain. Uh it's so my point is it seems that different industries they're in different stages of transformation, but two things look really clear. One, you've got to put data at the core of the business model that's compulsory. It seems like embedding AI into the applications, the data, the business process that's going to become increasingly important. So how do you see that? >>Wow, there's a lot packed into that question there, Dave, but, uh, yeah, we, we, uh, you know, at Cloudera I happened to be leading our own digital transformation as a technology company and what I would, what I would tell you there that's been arresting for us is the shift from being largely a subscription-based, uh, model to a consumption-based model requires a completely different level of instrumentation and our products and data collection that takes place in real, both for billing, for our, uh, for our customers. And to be able to check on the health and wellness, if you will, of their cloud era implementations. But it's clearly not just impacting the technology industry. You mentioned healthcare and we've been helping a number of different organizations in the life sciences realm, either speed, the rate and pace of getting vaccines, uh, to market, uh, or we've been assisting with testing process. >>That's taken place because you can imagine the quantity of data that's been generated as we've tried to study the efficacy of these vaccines on millions of people and try to ensure that they were going to deliver great outcomes and, and healthy and safe outcomes for everyone. And cloud era has been underneath a great deal of that type of work and the financial services industry you pointed out. Uh, we continue to be central to the large banks, meeting their compliance and regulatory requirements around the globe. And in many parts of the world, those are becoming more stringent than ever. And Cloudera solutions are really helping those kinds of organizations get through those difficult challenges. You, you also happened to mention, uh, you know, public sector and in public sector. We're also playing a key role in working with government entities around the world and applying AI to some of the most challenging missions that those organizations face. >>Um, and while I've made the kind of pivot between the industry conversation and the AI conversation, what I'll share with you about AI, I touched upon a little bit earlier. You can't build great AI, can't grow, build great ML apps, unless you've got a strong data foundation underneath is back to that garbage in garbage out comment that I made previously. And so in order to do that, you've got to have a great hybrid dated management platform at your disposal to ensure that your data is clean and organized and up to date. Uh, just as importantly from that, that's kind of the freedom side of things on the security side of things. You've got to ensure that you can see who just touched, not just the data itself, Dave, but actually the machine learning models and organizations around the globe are now being challenged. It's kind of on the topic of the ethics of AI to produce model lineage. >>In addition to data lineage. In other words, who's had access to the machine learning models when and where, and at what time and what decisions were made perhaps by the humans, perhaps by the machines that may have led to a particular outcome. So every kind of business that is deploying AI applications should be thinking long and hard about whether or not they can track the full lineage of those machine learning models just as they can track the lineage of data. So lots going on there across industries, lots going on as those various industries think about how AI can be applied to their businesses. Pretty >>Interesting concepts. You bring it into the discussion, the hybrid data, uh, sort of new, I think, new to a lot of people. And th this idea of model lineage is a great point because people want to talk about AI, ethics, transparency of AI. When you start putting those models into, into machines to do real time inferencing at the edge, it starts to get really complicated. I wonder if we could talk about you still on that theme of industry transformation? I felt like coming into the pandemic pre pandemic, there was just a lot of complacency. Yeah. Digital transformation and a lot of buzz words. And then we had this forced March to digital, um, and it's, but, but people are now being more planful, but there's still a lot of sort of POC limbo going on. How do you see that? Can you help accelerate that and get people out of that state? It definitely >>Is a lot of a POC limbo or a, I think some of us internally have referred to as POC purgatory, just getting stuck in that phase, not being able to get from point a to point B in digital transformation and, um, you know, for every industry transformation, uh, change in general is difficult and it takes time and money and thoughtfulness, but like with all things, what we found is small wins work best and done quickly. So trying to get to quick, easy successes where you can identify a clear goal and a clear objective and then accomplish it in rapid fashion is sort of the way to build your way towards those larger transformative efforts set. Another way, Dave, it's not wise to try to boil the ocean with your digital transformation efforts as it relates to the underlying technology here. And to bring it home a little bit more practically, I guess I would say at cloud era, we tend to recommend that companies begin to adopt cloud infrastructure, for example, containerization. >>And they begin to deploy that on-prem and then they start to look at how they may move those containerized workloads into the public cloud. That'll give them an opportunity to work with the data and the underlying applications themselves, uh, right close to home in place. They can kind of experiment a little bit more safely and economically, and then determine which workloads are best suited for the public cloud and which ones should remain on prem. That's a way in which a hybrid data strategy can help get a digital transformation accomplish, but kind of starting small and then drawing fast from there on customer's journey to the we'll make we've >>Covered a lot of ground. Uh, last question. Uh, w what, what do you want people to leave this event, the session with, and thinking about sort of the next era of data that we're entering? >>Well, it's a great question, but, uh, you know, I think it could be summed up in, uh, in two words. I want them to think about a hybrid data, uh, strategy. So, uh, you know, really hybrid data is a concept that we're bringing forward on this show really for the, for the first time, arguably, and we really do think that it enables customers to experience what we refer to Dave as the power of, and that is freedom, uh, and security, and in a world where we're all still trying to decide whether each day when we walk out each building, we walk into, uh, whether we're free to come in and out with a mask without a mask, that sort of thing, we all want freedom, but we also also want to be safe and feel safe, uh, for ourselves and for others. And the same is true of organizations. It strategies. They want the freedom to choose, to run workloads and applications and the best and most economical place possible. But they also want to do that with certainty, that they're going to be able to deploy those applications in a safe and secure way that meets the regulatory requirements of their particular industry. So hybrid data we think is key to accomplishing both freedom and security for your data and for your business as a whole, >>Nick, thanks so much great conversation and really appreciate the insights that you're bringing to this event into the industry. Really thank you for your time. >>You bet Dave pleasure being with you. Okay. >>We want to pick up on a couple of themes that Mick discussed, you know, supercharging your business with AI, for example, and this notion of getting hybrid, right? So right now we're going to turn the program over to Rob Bearden, the CEO of Cloudera and Manny veer, DAS. Who's the head of enterprise computing at Nvidia. And before I hand it off to Robin, I just want to say for those of you who follow me at the cube, we've extensively covered the transformation of the semiconductor industry. We are entering an entirely new era of computing in the enterprise, and it's being driven by the emergence of data, intensive applications and workloads no longer will conventional methods of processing data suffice to handle this work. Rather, we need new thinking around architectures and ecosystems. And one of the keys to success in this new era is collaboration between software companies like Cloudera and semiconductor designers like Nvidia. So let's learn more about this collaboration and what it means to your data business. Rob, thanks, >>Mick and Dave, that was a great conversation on how speed and agility is everything in a hyper competitive hybrid world. You touched on AI as essential to a data first strategy and accelerating the path to value and hybrid environments. And I want to drill down on this aspect today. Every business is facing accelerating everything from face-to-face meetings to buying groceries has gone digital. As a result, businesses are generating more data than ever. There are more digital transactions to track and monitor. Now, every engagement with coworkers, customers and partners is virtual from website metrics to customer service records, and even onsite sensors. Enterprises are accumulating tremendous amounts of data and unlocking insights from it is key to our enterprises success. And with data flooding every enterprise, what should the businesses do? A cloud era? We believe this onslaught of data offers an opportunity to make better business decisions faster. >>And we want to make that easier for everyone, whether it's fraud, detection, demand, forecasting, preventative maintenance, or customer churn, whether the goal is to save money or produce income every day that companies don't gain deep insight from their data is money they've lost. And the reason we're talking about speed and why speed is everything in a hybrid world and in a hyper competitive climate, is that the faster we get insights from all of our data, the faster we grow and the more competitive we are. So those faster insights are also combined with the scalability and cost benefit they cloud provides and with security and edge to AI data intimacy. That's why the partnership between cloud air and Nvidia together means so much. And it starts with the shared vision making data-driven, decision-making a reality for every business and our customers will now be able to leverage virtually unlimited quantities of varieties, of data, to power, an order of magnitude faster decision-making and together we turbo charge the enterprise data cloud to enable our customers to work faster and better, and to make integration of AI approaches a reality for companies of all sizes in the cloud. >>We're joined today by NVIDIA's Mandy veer dos, and to talk more about how our technologies will deliver the speed companies need for innovation in our hyper competitive environment. Okay, man, you're veer. Thank you for joining us over the unit. >>Thank you, Rob, for having me. It's a pleasure to be here on behalf of Nvidia. We are so excited about this partnership with Cloudera. Uh, you know, when, when, uh, when Nvidia started many years ago, we started as a chip company focused on graphics, but as you know, over the last decade, we've really become a full stack accelerated computing company where we've been using the power of GPU hardware and software to accelerate a variety of workloads, uh, AI being a prime example. And when we think about Cloudera, uh, and your company, a great company, there's three things we see Rob. Uh, the first one is that for the companies that will already transforming themselves by the use of data, Cloudera has been a trusted partner for them. The second thing seen is that when it comes to using your data, you want to use it in a variety of ways with a powerful platform, which of course you have built over time. >>And finally, as we've heard already, you believe in the power of hybrid, that data exists in different places and the compute needs to follow the data. Now, if you think about in various mission, going forward to democratize accelerated computing for all companies, our mission actually aligns very well with exactly those three things. Firstly, you know, we've really worked with a variety of companies today who have been the early adopters, uh, using the power acceleration by changing the technology in their stacks. But more and more, we see the opportunity of meeting customers, where they are with tools that they're familiar with with partners that they trust. And of course, Cloudera being a great example of that. Uh, the second, uh, part of NVIDIA's mission is we focused a lot in the beginning on deep learning where the power of GPU is really shown through, but as we've gone forward, we found that GPU's can accelerate a variety of different workloads from machine learning to inference. >>And so again, the power of your platform, uh, is very appealing. And finally, we know that AI is all about data, more and more data. We believe very strongly in the idea that customers put their data, where they need to put it. And the compute, the AI compute the machine learning compute needs to meet the customer where their data is. And so that matches really well with your philosophy, right? And Rob, that's why we were so excited to do this partnership with you. It's come to fruition. We have a great combined stack now for the customer and we already see people using it. I think the IRS is a fantastic example where literally they took the workflow. They had, they took the servers, they had, they added GPS into those servers. They did not change anything. And they got an eight times performance improvement for their fraud detection workflows, right? And that's the kind of success we're looking forward to with all customers. So the team has actually put together a great video to show us what the IRS is doing with this technology. Let's take a look. >>My name's Joanne salty. I'm the branch chief of the technical branch and RAs. It's actually the research division research and statistical division of the IRS. Basically the mission that RAs has is we do statistical and research on all things related to taxes, compliance issues, uh, fraud issues, you know, anything that you can think of. Basically we do research on that. We're running into issues now that we have a lot of ideas to actually do data mining on our big troves of data, but we don't necessarily have the infrastructure or horsepower to do it. So it's our biggest challenge is definitely the, the infrastructure to support all the ideas that the subject matter experts are coming up with in terms of all the algorithms they would like to create. And the diving deeper within the algorithm space, the actual training of those Agra algorithms, the of parameters each of those algorithms have. >>So that's, that's really been our challenge. Now the expectation was that with Nvidia in cloud, there is help. And with the cluster, we actually build out the test this on the actual fraud, a fraud detection algorithm on our expectation was we were definitely going to see some speed up in prom, computational processing times. And just to give you context, the size of the data set that we were, uh, the SMI was actually working, um, the algorithm against Liz around four terabytes. If I recall correctly, we'd had a 22 to 48 times speed up after we started tweaking the original algorithm. My expectations, quite honestly, in that sphere, in terms of the timeframe to get results, was it that you guys actually exceeded them? It was really, really quick. Uh, the definite now term short term what's next is going to be the subject matter expert is actually going to take our algorithm run with that. >>So that's definitely the now term thing we want to do going down, go looking forward, maybe out a couple of months, we're also looking at curing some, a 100 cards to actually test those out. As you guys can guess our datasets are just getting bigger and bigger and bigger, and it demands, um, to actually do something when we get more value added out of those data sets is just putting more and more demands on our infrastructure. So, you know, with the pilot, now we have an idea with the infrastructure, the infrastructure we need going forward. And then also just our in terms of thinking of the algorithms and how we can approach these problems to actually code out solutions to them. Now we're kind of like the shackles are off and we can just run them, you know, come onto our art's desire, wherever imagination takes our skis to actually develop solutions, know how the platforms to run them on just kind of the close out. >>I rarely would be very missed. I've worked with a lot of, you know, companies through the year and most of them been spectacular. And, uh, you guys are definitely in that category. The, the whole partnership, as I said, a little bit early, it was really, really well, very responsive. I would be remiss if I didn't. Thank you guys. So thank you for the opportunity to, and fantastic. And I'd have to also, I want to thank my guys. My, uh, my staff, David worked on this Richie worked on this Lex and Tony just, they did a fantastic job and I want to publicly thank him for all the work they did with you guys and Chev, obviously also. Who's fantastic. So thank you everyone. >>Okay. That's a real great example of speed and action. Now let's get into some follow up questions guys, if I may, Rob, can you talk about the specific nature of the relationship between Cloudera and Nvidia? Is it primarily go to market or you do an engineering work? What's the story there? >>It's really both. It's both go to market and engineering and engineering focus is to optimize and take advantage of invidious platform to drive better price performance, lower cost, faster speeds, and better support for today's emerging data intensive applications. So it's really both >>Great. Thank you. Many of Eric, maybe you could talk a little bit more about why can't we just existing general purpose platforms that are, that are running all this ERP and CRM and HCM and you know, all the, all the Microsoft apps that are out there. What, what do Nvidia and cloud era bring to the table that goes beyond the conventional systems that we've known for many years? >>Yeah. I think Dave, as we've talked about the asset that the customer has is really the data, right? And the same data can be utilized in many different ways. Some machine learning, some AI, some traditional data analytics. So the first step here was really to take a general platform for data processing, Cloudera data platform, and integrate with that. Now Nvidia has a software stack called rapids, which has all of the primitives that make different kinds of data processing go fast on GPU's. And so the integration here has really been taking rapids and integrating it into a Cloudera data platform. So that regardless of the technique, the customer's using to get insight from that data, the acceleration will apply in all cases. And that's why it was important to start with a platform like Cloudera rather than a specific application. >>So I think this is really important because if you think about, you know, the software defined data center brought in, you know, some great efficiencies, but at the same time, a lot of the compute power is now going toward doing things like networking and storage and security offloads. So the good news, the reason this is important is because when you think about these data intensive workloads, we can now put more processing power to work for those, you know, AI intensive, uh, things. And so that's what I want to talk about a little bit, maybe a question for both of you, maybe Rob, you could start, you think about the AI that's done today in the enterprise. A lot of it is modeling in the cloud, but when we look at a lot of the exciting use cases, bringing real-time systems together, transaction systems and analytics systems and real time, AI inference, at least even at the edge, huge potential for business value and a consumer, you're seeing a lot of applications with AI biometrics and voice recognition and autonomous vehicles and the like, and so you're putting AI into these data intensive apps within the enterprise. >>The potential there is enormous. So what can we learn from sort of where we've come from, maybe these consumer examples and Rob, how are you thinking about enterprise AI in the coming years? >>Yeah, you're right. The opportunity is huge here, but you know, 90% of the cost of AI applications is the inference. And it's been a blocker in terms of adoption because it's just been too expensive and difficult from a performance standpoint and new platforms like these being developed by cloud air and Nvidia will dramatically lower the cost, uh, of enabling this type of workload to be done. Um, and what we're going to see the most improvements will be in the speed and accuracy for existing enterprise AI apps like fraud detection, recommendation, engine chain management, drug province, and increasingly the consumer led technologies will be bleeding into the enterprise in the form of autonomous factory operations. An example of that would be robots that AR VR and manufacturing. So driving quality, better quality in the power grid management, automated retail IOT, you know, the intelligent call centers, all of these will be powered by AI, but really the list of potential use cases now are going to be virtually endless. >>I mean, this is like your wheelhouse. Maybe you could add something to that. >>Yeah. I mean, I agree with Rob. I mean he listed some really good use cases. You know, the way we see this at Nvidia, this journey is in three phases or three steps, right? The first phase was for the early adopters. You know, the builders who assembled, uh, use cases, particular use cases like a chat bot, uh, uh, from the ground up with the hardware and the software almost like going to your local hardware store and buying piece parts and constructing a table yourself right now. I think we are in the first phase of the democratization, uh, for example, the work we did with Cloudera, which is, uh, for a broader base of customers, still building for a particular use case, but starting from a much higher baseline. So think about, for example, going to Ikea now and buying a table in a box, right. >>And you still come home and assemble it, but all the parts are there. The instructions are there, there's a recipe you just follow and it's easy to do, right? So that's sort of the phase we're in now. And then going forward, the opportunity we really look forward to for the democratization, you talked about applications like CRM, et cetera. I think the next wave of democratization is when customers just adopt and deploy the next version of an application they already have. And what's happening is that under the covers, the application is infused by AI and it's become more intelligent because of AI and the customer just thinks they went to the store and bought, bought a table and it showed up and somebody placed it in the right spot. Right. And they didn't really have to learn, uh, how to do AI. So these are the phases. And I think they're very excited to be going there. Yeah. You know, >>Rob, the great thing about for, for your customers is they don't have to build out the AI. They can, they can buy it. And, and just in thinking about this, it seems like there are a lot of really great and even sometimes narrow use cases. So I want to ask you, you know, staying with AI for a minute, one of the frustrations and Mick and I talked about this, the guy go problem that we've all studied in college, uh, you know, garbage in, garbage out. Uh, but, but the frustrations that users have had is really getting fast access to quality data that they can use to drive business results. So do you see, and how do you see AI maybe changing the game in that regard, Rob over the next several years? >>So yeah, the combination of massive amounts of data that have been gathered across the enterprise in the past 10 years with an open API APIs are dramatically lowering the processing costs that perform at much greater speed and efficiency, you know, and that's allowing us as an industry to democratize the data access while at the same time, delivering the federated governance and security models and hybrid technologies are playing a key role in making this a reality and enabling data access to be hybridized, meaning access and treated in a substantially similar way, your respect to the physical location of where that data actually resides. >>That's great. That is really the value layer that you guys are building out on top of that, all this great infrastructure that the hyperscalers have have given us, I mean, a hundred billion dollars a year that you can build value on top of, for your customers. Last question, and maybe Rob, you could, you can go first and then manufacture. You could bring us home. Where do you guys want to see the relationship go between cloud era and Nvidia? In other words, how should we, as outside observers be, be thinking about and measuring your project specifically and in the industry's progress generally? >>Yeah, I think we're very aligned on this and for cloud era, it's all about helping companies move forward, leverage every bit of their data and all the places that it may, uh, be hosted and partnering with our customers, working closely with our technology ecosystem of partners means innovation in every industry and that's inspiring for us. And that's what keeps us moving forward. >>Yeah. And I agree with Robin and for us at Nvidia, you know, we, this partnership started, uh, with data analytics, um, as you know, a spark is a very powerful technology for data analytics, uh, people who use spark rely on Cloudera for that. And the first thing we did together was to really accelerate spark in a seamless manner, but we're accelerating machine learning. We accelerating artificial intelligence together. And I think for Nvidia it's about democratization. We've seen what machine learning and AI have done for the early adopters and help them make their businesses, their products, their customer experience better. And we'd like every company to have the same opportunity. >>Okay. Now we're going to dig into the data landscape and cloud of course. And talk a little bit more about that with drew Allen. He's a managing director at Accenture drew. Welcome. Great to see you. Thank you. So let's talk a little bit about, you know, you've been in this game for a number of years. Uh, you've got particular expertise in, in data and finance and insurance. I mean, you know, you think about it within the data and analytics world, even our language is changing. You know, we don't say talk about big data so much anymore. We talk more about digital, you know, or, or, or data driven when you think about sort of where we've come from and where we're going. What are the puts and takes that you have with regard to what's going on in the business today? >>Well, thanks for having me. Um, you know, I think some of the trends we're seeing in terms of challenges and puts some takes are that a lot of companies are already on this digital journey. Um, they focused on customer experience is kind of table stakes. Everyone wants to focus on that and kind of digitizing their channels. But a lot of them are seeing that, you know, a lot of them don't even own their, their channels necessarily. So like we're working with a big cruise line, right. And yes, they've invested in digitizing what they own, but a lot of the channels that they sell through, they don't even own, right. It's the travel agencies or third party, real sellers. So having the data to know where, you know, where those agencies are, that that's something that they've discovered. And so there's a lot of big focus on not just digitizing, but also really understanding your customers and going across products because a lot of the data has built, been built up in individual channels and in digital products. >>And so bringing that data together is something that customers that have really figured out in the last few years is a big differentiator. And what we're seeing too, is that a big trend that the data rich are getting richer. So companies that have really invested in data, um, are having, uh, an outside market share and outside earnings per share and outside revenue growth. And it's really being a big differentiator. And I think for companies just getting started in this, the thing to think about is one of the missteps is to not try to capture all the data at once. The average company has, you know, 10,000, 20,000 data elements individually, when you want to start out, you know, 500, 300 critical data elements, about 5% of the data of a company drives 90% of the business value. So focusing on those key critical data elements is really what you need to govern first and really invest in first. And so that's something we, we tell companies at the beginning of their data strategy is first focus on those critical data elements, really get a handle on governing that data, organizing that data and building data products around >>That day. You can't boil the ocean. Right. And so, and I, I feel like pre pandemic, there was a lot of complacency. Oh yeah, we'll get to that. You know, not on my watch, I'll be retired before that, you know, is it becomes a minute. And then of course the pandemic was, I call it sometimes a forced March to digital. So in many respects, it wasn't planned. It just ha you know, you had to do it. And so now I feel like people are stepping back and saying, okay, let's now really rethink this and do it right. But is there, is there a sense of urgency, do you think? Absolutely. >>I think with COVID, you know, we were working with, um, a retailer where they had 12,000 stores across the U S and they had didn't have the insights where they could drill down and understand, you know, with the riots and with COVID was the store operational, you know, with the supply chain of the, having multiple distributors, what did they have in stock? So there are millions of data points that you need to drill down at the cell level, at the store level to really understand how's my business performing. And we like to think about it for like a CEO and his leadership team of it, like, think of it as a digital cockpit, right? You think about a pilot, they have a cockpit with all these dials and, um, dashboards, essentially understanding the performance of their business. And they should be able to drill down and understand for each individual, you know, unit of their work, how are they performing? That's really what we want to see for businesses. Can they get down to that individual performance to really understand how their business >>Is performing good, the ability to connect those dots and traverse those data points and not have to go in and come back out and go into a new system and come back out. And that's really been a lot of the frustration. W where does machine intelligence and AI fit in? Is that sort of a dot connector, if you will, and an enabler, I mean, we saw, you know, decades of the, the AI winter, and then, you know, there's been a lot of talk about it, but it feels like with the amount of data that we've collected over the last decade and the, the, the low costs of processing that data now, it feels like it's, it's real. Where do you see AI fitting? Yeah, >>I mean, I think there's been a lot of innovation in the last 10 years with, um, the low cost of storage and computing and these algorithms in non-linear, um, you know, knowledge graphs, and, um, um, a whole bunch of opportunities in cloud where what I think the, the big opportunity is, you know, you can apply AI in areas where a human just couldn't have the scale to do that alone. So back to the example of a cruise lines, you know, you may have a ship being built that has 4,000 cabins on the single cruise line, and it's going to multiple deaths that destinations over its 30 year life cycle. Each one of those cabins is being priced individually for each individual destination. It's physically impossible for a human to calculate the dynamic pricing across all those destinations. You need a machine to actually do that pricing. And so really what a machine is leveraging is all that data to really calculate and assist the human, essentially with all these opportunities where you wouldn't have a human being able to scale up to that amount of data >>Alone. You know, it's interesting. One of the things we talked to Nicolson about earlier was just the everybody's algorithms are out of whack. You know, you look at the airline pricing, you look at hotels it's as a consumer, you would be able to kind of game the system and predict that they can't even predict these days. And I feel as though that the data and AI are actually going to bring us back into some kind of normalcy and predictability, uh, what do you see in that regard? Yeah, I think it's, >>I mean, we're definitely not at a point where, when I talked to, you know, the top AI engineers and data scientists, we're not at a point where we have what they call broad AI, right? You can get machines to solve general knowledge problems, where they can solve one problem and then a distinctly different problem, right? That's still many years away, but narrow why AI, there's still tons of use cases out there that can really drive tons of business performance challenges, tons of accuracy challenges. So for example, in the insurance industry, commercial lines, where I work a lot of the time, the biggest leakage of loss experience in pricing for commercial insurers is, um, people will go in as an agent and they'll select an industry to say, you know what, I'm a restaurant business. Um, I'll select this industry code to quote out a policy, but there's, let's say, you know, 12 dozen permutations, you could be an outdoor restaurant. >>You could be a bar, you could be a caterer and all of that leads to different loss experience. So what this does is they built a machine learning algorithm. We've helped them do this, that actually at the time that they're putting in their name and address, it's crawling across the web and predicting in real time, you know, is this a address actually, you know, a business that's a restaurant with indoor dining, does it have a bar? Is it outdoor dining? And it's that that's able to accurately more price the policy and reduce the loss experience. So there's a lot of that you can do even with narrow AI that can really drive top line of business results. >>Yeah. I liked that term, narrow AI, because getting things done is important. Let's talk about cloud a little bit because people talk about cloud first public cloud first doesn't necessarily mean public cloud only, of course. So where do you see things like what's the right operating model, the right regime hybrid cloud. We talked earlier about hybrid data help us squint through the cloud landscape. Yeah. I mean, I think for most right, most >>Fortune 500 companies, they can't just snap their fingers and say, let's move all of our data centers to the cloud. They've got to move, you know, gradually. And it's usually a journey that's taking more than two to three plus years, even more than that in some cases. So they're have, they have to move their data, uh, incrementally to the cloud. And what that means is that, that they have to move to a hybrid perspective where some of their data is on premise and some of it is publicly on the cloud. And so that's the term hybrid cloud essentially. And so what they've had to think about is from an intelligence perspective, the privacy of that data, where is it being moved? Can they reduce the replication of that data? Because ultimately you like, uh, replicating the data from on-premise to the cloud that introduces, you know, errors and data quality issues. So thinking about how do you manage, uh, you know, uh on-premise and, um, public as a transition is something that Accenture thinks, thinks, and helps our clients do quite a bit. And how do you move them in a manner that's well-organized and well thought of? >>Yeah. So I've been a big proponent of sort of line of business lines of business becoming much more involved in, in the data pipeline, if you will, the data process, if you think about our major operational systems, they all have sort of line of business context in them. And then the salespeople, they know the CRM data and, you know, logistics folks there they're very much in tune with ERP, almost feel like for the past decade, the lines of business have been somewhat removed from the, the data team, if you will. And that, that seems to be changing. What are you seeing in terms of the line of line of business being much more involved in sort of end to end ownership, if you will, if I can use that term of, uh, of the data and sort of determining things like helping determine anyway, the data quality and things of that nature. Yeah. I >>Mean, I think this is where thinking about your data operating model and thinking about ideas of a chief data officer and having data on the CEO agenda, that's really important to get the lines of business, to really think about data sharing and reuse, and really getting them to, you know, kind of unlock the data because they do think about their data as a fiefdom data has value, but you've got to really get organizations in their silos to open it up and bring that data together because that's where the value is. You know, data doesn't operate. When you think about a customer, they don't operate in their journey across the business in silo channels. They don't think about, you know, I use only the web and then I use the call center, right? They think about that as just one experience and that data is a single journey. >>So we like to think about data as a product. You know, you should think about a data in the same way. You think about your products as, as products, you know, data as a product, you should have the idea of like every two weeks you have releases to it. You have an operational resiliency to it. So thinking about that, where you can have a very product mindset to delivering your data, I think is very important for the success. And that's where kind of, there's not just the things about critical data elements and having the right platform architecture, but there's a soft stuff as well, like a, a product mindset to data, having the right data, culture, and business adoption and having the right value set mindset for, for data, I think is really >>Important. I think data as a product is a very powerful concept and I think it maybe is uncomfortable to some people sometimes. And I think in the early days of big data, if you will, people thought, okay, data is a product going to sell my data and that's not necessarily what you mean, thinking about products or data that can fuel products that you can then monetize maybe as a product or as a, as, as a service. And I like to think about a new metric in the industry, which is how long does it take me to get from idea I'm a business person. I have an idea for a data product. How long does it take me to get from idea to monetization? And that's going to be something that ultimately as a business person, I'm going to use to determine the success of my data team and my data architecture. Is that kind of thinking starting to really hit the marketplace? Absolutely. >>I mean, I insurers now are working, partnering with, you know, auto manufacturers to monetize, um, driver usage data, you know, on telematics to see, you know, driver behavior on how, you know, how auto manufacturers are using that data. That's very important to insurers, you know, so how an auto manufacturer can monetize that data is very important and also an insurance, you know, cyber insurance, um, are there news new ways we can look at how companies are being attacked with viruses and malware. And is there a way we can somehow monetize that information? So companies that are able to agily, you know, think about how can we collect this data, bring it together, think about it as a product, and then potentially, you know, sell it as a service is something that, um, company, successful companies, you're doing great examples >>Of data products, and it might be revenue generating, or it might be in the case of, you know, cyber, maybe it reduces my expected loss and exactly. Then it drops right to my bottom line. What's the relationship between Accenture and cloud era? Do you, I presume you guys meet at the customer, but maybe you could give us some insight. >>Yeah. So, um, I, I'm in the executive sponsor for, um, the Accenture Cloudera partnership on the Accenture side. Uh, we do quite a lot of business together and, um, you know, Cloudera has been a great partner for us. Um, and they've got a great product in terms of the Cloudera data platform where, you know, what we do is as a big systems integrator for them, we help, um, you know, configure and we have a number of engineers across the world that come in and help in terms of, um, engineer architects and install, uh, cloud errors, data platform, and think about what are some of those, you know, value cases where you can really think about organizing data and bringing it together for all these different types of use cases. And really just as the examples we thought about. So the telematics, you know, um, in order to realize something like that, you're bringing in petabytes and huge scales of data that, you know, you just couldn't bring on a normal, uh, platform. You need to think about cloud. You need to think about speed of, of data and real-time insights and cloud era is the right data platform for that. So, um, >>Having a cloud Cloudera ushered in the modern big data era, we kind of all know that, and it was, which of course early on, it was very services intensive. You guys were right there helping people think through there weren't enough data scientists. We've sort of all, all been through that. And of course in your wheelhouse industries, you know, financial services and insurance, they were some of the early adopters, weren't they? Yeah, absolutely. >>Um, so, you know, an insurance, you've got huge amounts of data with loss history and, um, a lot with IOT. So in insurance, there's a whole thing of like sensorized thing in, uh, you know, taking the physical world and digitizing it. So, um, there's a big thing in insurance where, um, it's not just about, um, pricing out the risk of a loss experience, but actual reducing the loss before it even happens. So it's called risk control or loss control, you know, can we actually put sensors on oil pipelines or on elevators and, you know, reduce, um, you know, accidents before they happen. So we're, you know, working with an insurer to actually, um, listen to elevators as they move up and down and are there signals in just listening to the audio of an elevator over time that says, you know what, this elevator is going to need maintenance, you know, before a critical accident could happen. So there's huge applications, not just in structured data, but in unstructured data like voice and audio and video where a partner like Cloudera has a huge role to play. >>Great example of it. So again, narrow sort of use case for machine intelligence, but, but real value. True. We'll leave it like that. Thanks so much for taking some time. Yes. Thank you so much. Okay. We continue now with the theme of turning ideas into insights. So ultimately you can take action. We heard earlier that public cloud first doesn't mean public cloud only, and a winning strategy comprises data, irrespective of physical location on prem, across multiple clouds at the edge where real time inference is going to drive a lot of incremental value. Data is going to help the world come back to normal. We heard, or at least semi normal as we begin to better understand and forecast demand and supply and balances and economic forces. AI is becoming embedded into every aspect of our business, our people, our processes, and applications. And now we're going to get into some of the foundational principles that support the data and insights centric processes, which are fundamental to digital transformation initiatives. And it's my pleasure to welcome two great guests, Michelle Goetz. Who's a Kuba woman, VP and principal analyst at Forrester, and doing some groundbreaking work in this area. And Cindy, Mikey, who is the vice president of industry solutions and value management at Cloudera. Welcome to both of >>You. Welcome. Thank you. Thanks Dave. >>All right, Michelle, let's get into it. Maybe you could talk about your foundational core principles. You start with data. What are the important aspects of this first principle that are achievable today? >>It's really about democratization. If you can't make your data accessible, um, it's not usable. Nobody's able to understand what's happening in the business and they don't understand, um, what insights can be gained or what are the signals that are occurring that are going to help them with decisions, create stronger value or create deeper relationships, their customers, um, due to their experiences. So it really begins with how do you make data available and bring it to where the consumer of the data is rather than trying to hunt and Peck around within your ecosystem to find what it is that's important. Great. >>Thank you for that. So, Cindy, I wonder in hearing what Michelle just said, what are your thoughts on this? And when you work with customers at Cloudera, does, are there any that stand out that perhaps embody the fundamentals that Michelle just shared? >>Yeah, there's, there's quite a few. And especially as we look across, um, all the industries that we're actually working with customers in, you know, a few that stand out in top of mind for me is one is IQ via and what they're doing with real-world evidence and bringing together data across the entire, um, healthcare and life sciences ecosystems, bringing it together in different shapes and formats, making the ed accessible by both internally, as well as for their, um, the entire extended ecosystem. And then for SIA, who's working to solve some predictive maintenance issues within, there are a European car manufacturer and how do they make sure that they have, you know, efficient and effective processes when it comes to, uh, fixing equipment and so forth. And then also, um, there's, uh, an Indonesian based, um, uh, telecommunications company tech, the smell, um, who's bringing together, um, over the last five years, all their data about their customers and how do they enhance our customer experience? How do they make information accessible, especially in these pandemic and post pandemic times, um, uh, you know, just getting better insights into what customers need and when do they need it? >>Cindy platform is another core principle. How should we be thinking about data platforms in this day and age? I mean, where does, where do things like hybrid fit in? Um, what's cloud era's point >>Of view platforms are truly an enabler, um, and data needs to be accessible in many different fashions. Um, and also what's right for the business. When, you know, I want it in a cost and efficient and effective manner. So, you know, data needs to be, um, data resides everywhere. Data is developed and it's brought together. So you need to be able to balance both real time, you know, our batch historical information. It all depends upon what your analytical workloads are. Um, and what types of analytical methods you're going to use to drive those business insights. So putting and placing data, um, landing it, making it accessible, analyzing it needs to be done in any accessible platform, whether it be, you know, a public cloud doing it on-prem or a hybrid of the two is typically what we're seeing, being the most successful. >>Great. Thank you, Michelle. Let's move on a little bit and talk about practices and practices and processes as the next core principles. Maybe you could provide some insight as to how you think about balancing practices and processes while at the same time managing agility. >>Yeah, it's a really great question because it's pretty complex. When you have to start to connect your data to your business, the first thing to really gravitate towards is what are you trying to do? And what Cindy was describing with those customer examples is that they're all based off of business goals off of very specific use cases that helps kind of set the agenda about what is the data and what are the data domains that are important to really understanding and recognizing what's happening within that business activity and the way that you can affect that either in, you know, near time or real time, or later on, as you're doing your strategic planning, what that's balancing against is also being able to not only see how that business is evolving, but also be able to go back and say, well, can I also measure the outcomes from those processes and using data and using insight? >>Can I also get intelligence about the data to know that it's actually satisfying my objectives to influence my customers in my market? Or is there some sort of data drift or detraction in my, um, analytic capabilities that are allowing me to be effective in those environments, but everything else revolves around that and really thinking succinctly about a strategy that isn't just data aware, what data do I have and how do I use it, but coming in more from that business perspective to then start to be, data-driven recognizing that every activity you do from a business perspective leads to thinking about information that supports that and supports your decisions, and ultimately getting to the point of being insight driven, where you're able to both, uh, describe what you want your business to be with your data, using analytics, to then execute on that fluidly and in real time. And then ultimately bringing that back with linking to business outcomes and doing that in a continuous cycle where you can test and you can learn, you can improve, you can optimize, and you can innovate because you can see your business as it's happening. And you have the right signals and intelligence that allow you to make great decisions. >>I like how you said near time or real time, because it is a spectrum. And you know, one of the spectrum, autonomous vehicles, you've got to make a decision in real time, but, but, but near real-time, or real-time, it's, it's in the eyes of the holder, if you will, it's it might be before you lose the customer before the market changes. So it's really defined on a case by case basis. Um, I wonder Michelle, if you could talk about in working with a number of organizations, I see folks, they sometimes get twisted up and understanding the dependencies that technology generally, and the technologies around data specifically can have on critical business processes. Can you maybe give some guidance as to where customers should start, where, you know, where can we find some of the quick wins and high return, it >>Comes first down to how does your business operate? So you're going to take a look at the business processes and value stream itself. And if you can understand how people and customers, partners, and automation are driving that step by step approach to your business activities, to realize those business outcomes, it's way easier to start thinking about what is the information necessary to see that particular step in the process, and then take the next step of saying what information is necessary to make a decision at that current point in the process, or are you collecting information asking for information that is going to help satisfy a downstream process step or a downstream decision. So constantly making sure that you are mapping out your business processes and activities, aligning your data process to that helps you now rationalize. Do you need that real time near real time, or do you want to start grading greater consistency by bringing all of those signals together, um, in a centralized area to eventually oversee the entire operations and outcomes as they happen? It's the process and the decision points and acting on those decision points for the best outcome that really determines are you going to move in more of a real-time, uh, streaming capacity, or are you going to push back into more of a batch oriented approach? Because it depends on the amount of information and the aggregate of which provides the best insight from that. >>Got it. Let's, let's bring Cindy back into the conversation in your city. We often talk about people process and technology and the roles they play in creating a data strategy. That's that's logical and sound. Can you speak to the broader ecosystem and the importance of creating both internal and external partners within an organization? Yeah. >>And that's, uh, you know, kind of building upon what Michelle was talking about. If you think about datas and I hate to use the phrase almost, but you know, the fuel behind the process, um, and how do you actually become insight-driven? And, you know, you look at the capabilities that you're needing to enable from that business process, that insight process, um, you're extended ecosystem on, on how do I make that happen? You know, partners, um, and, and picking the right partner is important because a partner is one that actually helps under or helps you implement what your decisions are. Um, so, um, looking for a partner that has the capability that believes in being insight-driven and making sure that when you're leveraging data, um, you know, for within process on that, if you need to do it in a time fashion, that they can actually meet those needs of the business, um, and enabling on those, those process activities. So the ecosystem looking at how you, um, look at, you know, your vendors are, and fundamentally they need to be that trusted partner. Um, do they bring those same principles of value of being insight driven? So they have to have those core values themselves in order to help you as a, um, an end of business person enable those capabilities. So, so yeah, I'm >>Cool with fuel, but it's like super fuel when you talk about data, cause it's not scarce, right? You're never going to run out. So Michelle, let's talk about leadership. W w who leads, what does so-called leadership look like in an organization that's insight driven? >>So I think the really interesting thing that is starting to evolve as late is that organizations enterprises are really recognizing that not just that data is an asset and data has value, but exactly what we're talking about here, data really does drive what your business outcomes are going to be data driving into the insight or the raw data itself has the ability to set in motion. What's going to happen in your business processes and your customer experiences. And so, as you kind of think about that, you're now starting to see your CEO, your CMO, um, your CRO coming back and saying, I need better data. I need information. That's representative of what's happening in my business. I need to be better adaptive to what's going on with my customers. And ultimately that means I need to be smarter and have clearer forecasting into what's about ready to come, not just, you know, one month, two months, three months or a year from now, but in a week or tomorrow. >>And so that's, how is having a trickle down effect to then looking at two other types of roles that are elevating from technical capacity to more business capacity, you have your chief data officer that is shaping the exp the experiences, uh, with data and with insight and reconciling, what type of information is necessary with it within the context of answering these questions and creating a future fit organization that is adaptive and resilient to things that are happening. And you also have a chief digital officer who is participating because they're providing the experience and shaping the information and the way that you're going to interact and execute on those business activities, and either running that autonomously or as part of an assistance for your employees and for your customers. So really to go from not just data aware to data driven, but ultimately to be insight driven, you're seeing way more, um, participation, uh, and leadership at that C-suite level. And just underneath, because that's where the subject matter expertise is coming in to know how to create a data strategy that is tightly connected to your business strategy. >>Right. Thank you. Let's wrap. And I've got a question for both of you, maybe Cindy, you could start and then Michelle bring us home. You know, a lot of customers, they want to understand what's achievable. So it's helpful to paint a picture of a, of a maturity model. Uh, you know, I'd love to go there, but I'm not going to get there anytime soon, but I want to take some baby steps. So when you're performing an analysis on, on insight driven organization, city, what do you see as the major characteristics that define the differences between sort of the, the early, you know, beginners, the sort of fat middle, if you will, and then the more advanced, uh, constituents. >>Yeah, I'm going to build upon, you know, what Michelle was talking about as data as an asset. And I think, you know, also being data where, and, you know, trying to actually become, you know, insight driven, um, companies can also have data and they can have data as a liability. And so when you're data aware, sometimes data can still be a liability to your organization. If you're not making business decisions on the most recent and relevant data, um, you know, you're not going to be insight driven. So you've got to move beyond that, that data awareness, where you're looking at data just from an operational reporting, but data's fundamentally driving the decisions that you make. Um, as a business, you're using data in real time. You're, um, you're, you know, leveraging data to actually help you make and drive those decisions. So when we use the term you're, data-driven, you can't just use the term, you know, tongue in cheek. It actually means that I'm using the recent, the relevant and the accuracy of data to actually make the decisions for me, because we're all advancing upon. We're talking about, you know, artificial intelligence and so forth. Being able to do that, if you're just data where I would not be embracing on leveraging artificial intelligence, because that means I probably haven't embedded data into my processes. It's data could very well still be a liability in your organization. So how do you actually make it an asset? Yeah, I think data >>Where it's like cable ready. So, so Michelle, maybe you could, you could, you could, uh, add to what Cindy just said and maybe add as well, any advice that you have around creating and defining a data strategy. >>So every data strategy has a component of being data aware. This is like building the data museum. How do you capture everything that's available to you? How do you maintain that memory of your business? You know, bringing in data from your applications, your partners, third parties, wherever that information is available, you want to ensure that you're capturing and you're managing and you're maintaining it. And this is really where you're starting to think about the fact that it is an asset. It has value, but you may not necessarily know what that value is. Yet. If you move into a category of data driven, what starts to shift and change there is you're starting to classify label, organize the information in context of how you're making decisions and how you do business. It could start from being more, um, proficient from an analytic purpose. You also might start to introduce some early stages of data science in there. >>So you can do some predictions and some data mining to start to weed out some of those signals. And you might have some simple types of algorithms that you're deploying to do a next next best action for example. And that's what data-driven is really about. You're starting to get value out of it. The data itself is starting to make sense in context of your business, but what you haven't done quite yet, which is what insight driven businesses are, is really starting to take away. Um, the gap between when you see it, know it and then get the most value and really exploit what that insight is at the time when it's right. So in the moment we talk about this in terms of perishable insights, data and insights are ephemeral. And we want to ensure that the way that we're managing that and delivering on that data and insights is in time with our decisions and the highest value outcome we're going to have, that that insight can provide us. >>So are we just introducing it as data-driven organizations where we could see, you know, spreadsheets and PowerPoint presentations and lots of mapping to help make sort of longer strategic decisions, or are those insights coming up and being activated in an automated fashion within our business processes that are either assisting those human decisions at the point when they're needed, or an automated decisions for the types of digital experiences and capabilities that we're driving in our organization. So it's going from, I'm a data hoarder. If I'm data aware to I'm interested in what's happening as a data-driven organization and understanding my data. And then lastly being insight driven is really where light between business, data and insight. There is none it's all coming together for the best outcomes, >>Right? So people are acting on perfect or near perfect information or machines or, or, uh, doing so with a high degree of confidence, great advice and insights. And thank you both for sharing your thoughts with our audience today. It's great to have you. Thank you. Thank you. Okay. Now we're going to go into our industry. Deep dives. There are six industry breakouts, financial services, insurance, manufacturing, retail communications, and public sector. Now each breakout is going to cover two distinct use cases for a total of essentially 12 really detailed segments that each of these is going to be available on demand, but you can scan the calendar on the homepage and navigate to your breakout session for choice of choice or for more information, click on the agenda page and take a look to see which session is the best fit for you. And then dive in, join the chat and feel free to ask questions or contribute your knowledge, opinions, and data. Thanks so much for being part of the community and enjoy the rest of the day.

Published Date : Jul 30 2021

SUMMARY :

Have you ever wondered how we sequence the human genome, One of the things that, you know, both Cloudera and Claire sensor very and really honestly have a technological advantage over some of the larger organizations. A lot of the data you find or research you find health is usually based on white men. One of the things that we're concerned about in healthcare is that there's bias in treatment already. So you can make the treatments in the long run. Researchers are now able to use these technologies and really take those you know, underserved environments, um, in healthcare. provide the foundation to develop service center applications, sales reports, It's the era of smart but also the condition of those goods. biggest automotive customers are Volkswagen for the NPSA. And the real-time data collection is key, and this is something we cannot achieve in a classical data Finally, a data platform that lets you say yes, and digital business, but you think about it. And as such the way we use insights is also rapidly evolving. the full results they desire. Great to see you as well, Dave, Hey, so I call it the new abnormal, I finally managed to get some bag and to be able to show up dressed appropriately for you today. events, which is our business hybrid cloud, how are you thinking about the hybrid? Everything there, one item you might not have quite hit on Dave and that's hybrid data. What, what do you mean by hybrid data? So how in the heck do you get both the freedom and security You talked about security, the data flows are going to change. in the office and are not, I know our plans, Dave, uh, involve us kind of mint control of payment systems in manufacturing, you know, the pandemic highlighted America's we, uh, you know, at Cloudera I happened to be leading our own digital transformation of that type of work and the financial services industry you pointed out. You've got to ensure that you can see who just touched, perhaps by the humans, perhaps by the machines that may have led to a particular outcome. You bring it into the discussion, the hybrid data, uh, sort of new, I think, you know, for every industry transformation, uh, change in general is And they begin to deploy that on-prem and then they start Uh, w what, what do you want people to leave Well, it's a great question, but, uh, you know, I think it could be summed up in, uh, in two words. Really thank you for your time. You bet Dave pleasure being with you. And before I hand it off to Robin, I just want to say for those of you who follow me at the cube, we've extensively covered the a data first strategy and accelerating the path to value and hybrid environments. And the reason we're talking about speed and why speed Thank you for joining us over the unit. chip company focused on graphics, but as you know, over the last decade, that data exists in different places and the compute needs to follow the data. And that's the kind of success we're looking forward to with all customers. the infrastructure to support all the ideas that the subject matter experts are coming up with in terms And just to give you context, know how the platforms to run them on just kind of the close out. the work they did with you guys and Chev, obviously also. Is it primarily go to market or you do an engineering work? and take advantage of invidious platform to drive better price performance, lower cost, purpose platforms that are, that are running all this ERP and CRM and HCM and you So that regardless of the technique, So the good news, the reason this is important is because when you think about these data intensive workloads, maybe these consumer examples and Rob, how are you thinking about enterprise AI in The opportunity is huge here, but you know, 90% of the cost of AI Maybe you could add something to that. You know, the way we see this at Nvidia, this journey is in three phases or three steps, And you still come home and assemble it, but all the parts are there. uh, you know, garbage in, garbage out. perform at much greater speed and efficiency, you know, and that's allowing us as an industry That is really the value layer that you guys are building out on top of that, And that's what keeps us moving forward. this partnership started, uh, with data analytics, um, as you know, So let's talk a little bit about, you know, you've been in this game So having the data to know where, you know, And I think for companies just getting started in this, the thing to think about is one of It just ha you know, I think with COVID, you know, we were working with, um, a retailer where they had 12,000 the AI winter, and then, you know, there's been a lot of talk about it, but it feels like with the amount the big opportunity is, you know, you can apply AI in areas where some kind of normalcy and predictability, uh, what do you see in that regard? and they'll select an industry to say, you know what, I'm a restaurant business. And it's that that's able to accurately So where do you see things like They've got to move, you know, more involved in, in the data pipeline, if you will, the data process, and really getting them to, you know, kind of unlock the data because they do where you can have a very product mindset to delivering your data, I think is very important data is a product going to sell my data and that's not necessarily what you mean, thinking about products or that are able to agily, you know, think about how can we collect this data, Of data products, and it might be revenue generating, or it might be in the case of, you know, cyber, maybe it reduces my expected So the telematics, you know, um, in order to realize something you know, financial services and insurance, they were some of the early adopters, weren't they? this elevator is going to need maintenance, you know, before a critical accident could happen. So ultimately you can take action. Thanks Dave. Maybe you could talk about your foundational core principles. are the signals that are occurring that are going to help them with decisions, create stronger value And when you work with customers at Cloudera, does, are there any that stand out that perhaps embody um, uh, you know, just getting better insights into what customers need and when do they need it? I mean, where does, where do things like hybrid fit in? whether it be, you know, a public cloud doing it on-prem or a hybrid of the two is typically what we're to how you think about balancing practices and processes while at the same time activity and the way that you can affect that either in, you know, near time or Can I also get intelligence about the data to know that it's actually satisfying guidance as to where customers should start, where, you know, where can we find some of the quick wins a decision at that current point in the process, or are you collecting and technology and the roles they play in creating a data strategy. and I hate to use the phrase almost, but you know, the fuel behind the process, Cool with fuel, but it's like super fuel when you talk about data, cause it's not scarce, ready to come, not just, you know, one month, two months, three months or a year from now, And you also have a chief digital officer who is participating the early, you know, beginners, the sort of fat middle, And I think, you know, also being data where, and, you know, trying to actually become, any advice that you have around creating and defining a data strategy. How do you maintain that memory of your business? Um, the gap between when you see you know, spreadsheets and PowerPoint presentations and lots of mapping to to be available on demand, but you can scan the calendar on the homepage and navigate to your breakout

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Mick HollistonPERSON

0.99+

DavidPERSON

0.99+

CindyPERSON

0.99+

William GibsonPERSON

0.99+

DavePERSON

0.99+

AccentureORGANIZATION

0.99+

MichellePERSON

0.99+

ArkansasLOCATION

0.99+

Michelle GoetzPERSON

0.99+

NvidiaORGANIZATION

0.99+

AtlantaLOCATION

0.99+

Dave VolantePERSON

0.99+

RobPERSON

0.99+

NVIDIAORGANIZATION

0.99+

Rob BeardenPERSON

0.99+

MarsLOCATION

0.99+

VolkswagenORGANIZATION

0.99+

NebraskaLOCATION

0.99+

AmazonORGANIZATION

0.99+

22QUANTITY

0.99+

MickPERSON

0.99+

ClouderaORGANIZATION

0.99+

90%QUANTITY

0.99+

RobinPERSON

0.99+

threeQUANTITY

0.99+

12QUANTITY

0.99+

4,000 cabinsQUANTITY

0.99+

10,000QUANTITY

0.99+

two wordsQUANTITY

0.99+

millionsQUANTITY

0.99+

IkeaORGANIZATION

0.99+

EricPERSON

0.99+

five yearsQUANTITY

0.99+

one monthQUANTITY

0.99+

NickPERSON

0.99+

100 cardsQUANTITY

0.99+

firstQUANTITY

0.99+

AWS Executive Summit 2020


 

>>From around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Welcome to cube three 60 fives coverage of the Accenture executive summit. Part of AWS reinvent. I'm your host Rebecca Knight. Today we are joined by a cube alum Karthik NurAin. He is Accenture senior managing director and lead Accenture cloud. First, welcome back to the show Karthik. >>Thank you. Thanks for having me here. >>Always a pleasure. So I want to talk to you. You are an industry veteran, you've been in Silicon Valley for decades. Um, I want to hear from your perspective what the impact of the COVID-19 pandemic has been, what are you hearing from clients? What are they struggling with? What are their challenges that they're facing day to day? >>I think, um, COVID-19 is being a eye-opener from, you know, various facets, you know, um, first and foremost, it's a, it's a head, um, situation that everybody's facing, which is not just, uh, highest economic bearings to it. It has enterprise, um, an organization with bedding to it. And most importantly, it's very personal to people, um, because they themselves and their friends, family near and dear ones are going to this challenge, uh, from various different dimension. But putting that aside, when you come to it from an organization enterprise standpoint, it has changed everything well, the behavior of organizations coming together, working in their campuses, working with each other as friends, family, and, uh, um, near and dear colleagues, all of them are operating differently. So that's what big change to get things done in a completely different way, from how they used to get things done. >>Number two, a lot of things that were planned for normal scenarios, like their global supply chain, how they interact with their client customers, how they coordinate with their partners on how that employees contribute to the success of an organization at all changed. And there are no data models that give them a hint of something like this for them to be prepared for this. So we are seeing organizations, um, that have adapted to this reasonably okay, and are, you know, launching to innovate faster in this. And there are organizations that have started with struggling, but are continuing to struggle. And the gap, uh, between the leaders and legs are widening. So this is creating opportunities in a different way for the leaders, um, with a lot of pivot their business, but it's also creating significant challenge for the lag guides, uh, as we defined in our future systems research that we did a year ago, uh, and those organizations are struggling further. So the gap is actually whitening. >>So you've just talked about the widening gap. I've talked about the tremendous uncertainty that so many companies, even the ones who have adapted reasonably well, uh, in this, in this time, talk a little bit about Accenture cloud first and why, why now? >>I think it's a great question. Um, we believe that for many of our clients COVID-19 has turned, uh, cloud from an experimentation aspiration to an origin mandate. What I mean by that is everybody has been doing something on the other end cloud. There's no company that says we don't believe in cloud. Uh, our, we don't want to do cloud. It was how much they did in cloud. And they were experimenting. They were doing the new things in cloud. Um, but they were operating a lot of their core business outside the cloud or not in the cloud. Those organizations have struggled to operate in this new normal, in a remote fashion as with us, uh, that ability to pivot to all the changes the pandemic has brought to them. But on the other hand, the organizations that had a solid foundation in cloud were able to collect faster and not actually gone into the stage of innovating faster and driving a new behavior in the market, new behavior within their organization. >>So we are seeing that spend to make is actually fast-forwarded something that we always believed was going to happen. This, uh, uh, moving to cloud over the next decade is fast, forwarded it to, uh, happen in the next three to five years. And it's created this moment where it's a once in an era, really replatforming of businesses in the cloud that we are going to see. And we see this moment as a cloud first moment where organizations will use cloud as the, the canvas and the foundation with which they're going to reimagine their business after they were born in the cloud. Uh, and this requires a whole new strategy. Uh, and as Accenture, we are getting a lot in cloud, but we thought that this is the moment where we bring all of that capabilities together because we need a strategy for addressing, moving to cloud are embracing cloud in a holistic fashion. And that's what Accenture cloud first brings together a holistic strategy, a team that's 70,000 plus people that's coming together with rich cloud skills, but investing to tie in all the various capabilities of cloud to Delaware, that holistic strategy to our clients. So I want you to >>Delve into a little bit more about what this strategy actually entails. I mean, it's clearly about embracing change and being willing to experiment and, and having capabilities to innovate. Can you tell us a little bit more about what this strategy entails? >>Yeah. The reason why we say that there's a need for the strategy is, like I said, COVID is not new. There's almost every customer client is doing something with the cloud, but all of them have taken different approaches to cloud and different boundaries to cloud. Some organizations say, I just need to consolidate my multiple data centers to a small data center footprint and move the nest to cloud. Certain other organizations say that well, I'm going to move certain workloads to cloud. Certain other organizations said, well, I'm going to build this Greenfield application or workload in cloud. Certain other said, um, I'm going to use the power of AI ML in the cloud to analyze my data and drive insights. But a cloud first strategy is all of this tied with the corporate strategy of the organization with an industry specific cloud journey to say, if in this current industry, if I were to be reborn in the cloud, would I do it in the exact same passion that I did in the past, which means that the products and services that they offer need to be the matching, how they interact with that customers and partners need to be revisited, how they bird and operate their IP systems need to be the, imagine how they unearthed the data from all the systems under which they attract need to be liberated so that you could drive insights of cloud. >>First strategy. Hans is a corporate wide strategy, and it's a C-suite responsibility. It doesn't take the ownership away from the CIO or CIO, but the CIO is, and CDI was felt that it was just their problem and they were to solve it. And everyone as being a customer, now, the center of gravity is elevated to it becoming a C-suite agenda on everybody's agenda, where probably the CDI is the instrument to execute that that's a holistic cloud-first strategy >>And it, and it's a strategy, but the way you're describing it, it sounds like it's also a mindset and an approach, as you were saying, this idea of being reborn in the cloud. So now how do I think about things? How do I communicate? How do I collaborate? How do I get done? What I need to get done. Talk a little bit about how this has changed, the way you support your clients and how Accenture cloud first is changing your approach to cloud services. >>Wonderful. Um, you know, I did not color one very important aspect in my previous question, but that's exactly what you just asked me now, which is to do all of this. I talked about all of the vehicles, uh, an organization or an enterprise is going to go to, but the good part is they have one constant. And what is that? That is their employees, uh, because you do, the employees are able to embrace this change. If they are able to, uh, change them, says, pivot them says retool and train themselves to be able to operate in this new cloud. First one, the ability to reimagine every function of the business would be happening at speed. And cloud first approach is to do all of this at speed, because innovation is deadly proposed there, do the rate of probability on experimentation. You need to experiment a lot for any kind of experimentation. >>There's a probability of success. Organizations need to have an ability and a mechanism for them to be able to innovate faster for which they need to experiment a lot. The more the experiment and the lower cost at which they experiment is going to help them experiment a lot and experiment demic speed, fail fast, succeed more. And hence, they're going to be able to operate this at speed. So the cloud-first mindset is all about speed. I'm helping the clients fast track that innovation journey, and this is going to happen. Like I said, across the enterprise and every function across every department, I'm the agent of this change is going to be the employee's weapon, race, this change through new skills and new grueling and new mindset that they need to adapt to. >>So Karthik what you're describing it, it sounds so exciting. And yet for a pandemic wary workforce, that's been working remotely that may be dealing with uncertainty if for their kid's school and for so many other aspects of their life, it sounds hard. So how are you helping your clients, employees get onboard with this? And because the change management is, is often the hardest part. >>Yeah, I think it's, again, a great question. A bottle has only so much capacity. Something got to come off for something else to go in. That's what you're saying is absolutely right. And that is again, the power of cloud. The reason why cloud is such a fundamental breakthrough technology and capability for us to succeed in this era, because it helps in various forms. What we talked so far is the power of innovation that could create, but cloud can also simplify the life of the employees in an enterprise. There are several activities and tasks that people do in managing their complex infrastructure, complex ID landscape. They used to do certain jobs and activities in a very difficult, uh, underground about with cloud has simplified. And democratised a lot of these activities. So that things which had to be done in the past, like managing the complexity of the infrastructure, keeping them up all the time, managing the, um, the obsolescence of the capabilities and technologies and infrastructure, all of that could be offloaded to the cloud. >>So that the time that is available for all of these employees can be used to further innovate. Every organization is good to spend almost the same amount of money, but rather than spending activities, by looking at the rear view mirror on keeping the lights on, they're going to spend more money, more time, more energy, and spend their skills on things that are going to add value to their organization. Because you, every innovation that an enterprise can give to their end customer need not come from that enterprise. The word of platform economy is about democratising innovation. And the power of cloud is to get all of these capabilities from outside the four walls of the enterprise, >>It will add value to the organization, but I would imagine also add value to that employee's life because that employee, the employee will be more engaged in his or her job and therefore bring more excitement and energy into her, his or her day-to-day activities too. >>Absolutely. Absolutely. And this is, this is a normal evolution we would have seen everybody would have seen in their lives, that they keep moving up the value chain of what activities that, uh, gets performed buying by those individuals. And there's this, um, you know, no more true than how the United States, uh, as an economy has operated where, um, this is the power of a powerhouse of innovation, where the work that's done inside the country keeps moving up to that. You change. And, um, us leverages the global economy for a lot of things that is required to power the United States and that global economic, uh, phenomenon is very proof for an enterprise as well. There are things that an enterprise needs to do them soon. There are things an employee needs to do themselves. Um, but there are things that they could leverage from the external innovation and the power of innovation that is coming from technologies like cloud. >>So at Accenture, you have long, long, deep Stan, sorry, you have deep and long standing relationships with many cloud service providers, including AWS. How does the Accenture cloud first strategy, how does it affect your relationships with those providers? >>Yeah, we have great relationships with cloud providers like AWS. And in fact, in the cloud world, it was one of the first, um, capability that we started about years ago, uh, when we started developing these capabilities. But five years ago, we hit a very important milestone where the two organizations came together and said that we are forging a pharma partnership with joint investments to build this partnership. And we named that as a Accenture, AWS business group ABG, uh, where we co-invest and brought skills together and develop solutions. And we will continue to do that. And through that investment, we've also made several acquisitions that you would have seen in the recent times, like, uh, an invoice and gecko that we made acquisitions in in Europe. But now we're taking this to the next level. What we are saying is two cloud first and the $3 billion investment that we are bringing in, uh, through cloud first, we are going to make specific investment to create unique joint solution and landing zones foundation, um, cloud packs with which clients can accelerate their innovation or their journey to cloud first. >>And one great example is what we are doing with Takeda, uh, billable, pharmaceutical giant, um, between we've signed a five-year partnership. And it was out in the media just a month ago or so, where we are, the two organizations are coming together. We have created a partnership as a power of three partnership where the three organizations are jointly hoarding hats and taking responsibility for the innovation and the leadership position that Decatur wants to get to with this. We are going to simplify their operating model and organization by providing it flexibility. We're going to provide a lot more insights. Tequila has a 230 year old organization. Imagine the amount of trapped data and intelligence that is there. How about bringing all of that together with the power of AWS and Accenture and Takeda to drive more customer insights, um, come up with breakthrough, uh, R and D uh, accelerate clinical trials and improve the patient experience using AI ML and edge technologies. So all of these things that we will do through this partnership with joint investment from Accenture cloud first, as well as partner like AWS, so that Takeda can realize their gain. And, uh, they're seeing you actually made a statement that five years from now, every ticket an employee will have an AI assistant. That's going to make that beginner employee move up the value chain on how they contribute and add value to the future of tequila with the AI assistant, making them even more equipped and smarter than what they could be otherwise. >>So, one last question to close this out here. What is your future vision for, for Accenture cloud first? What are we going to be talking about at next year's Accenture executive summit? Yeah, the future >>Is going to be, um, evolving, but the part that is exciting to me, and this is, uh, uh, a fundamental belief that we are entering a new era of industrial revolution from industry first, second, and third industry. The third happened probably 20 years ago with the advent of Silicon and computers and all of that stuff that happened here in the Silicon Valley. I think the fourth industrial revolution is going to be in the cross section of, uh, physical, digital and biological boundaries. And there's a great article, um, in what economic forum that, that people, uh, your audience can Google and read about it. Uh, but the reason why this is very, very important is we are seeing a disturbing phenomenon that over the last 10 years, they are seeing a Blackwing of the, um, labor productivity and innovation, which has dropped to about 2.1%. When you see that kind of phenomenon over that longer period of time, there has to be breakthrough innovation that needs to happen to come out of this barrier and get to the next base camp, as I would call it to further this productivity, um, lack that we are seeing, and that is going to happen in the intersection of the physical, digital and biological boundaries. >>And I think cloud is going to be the connective tissue between all of these three, to be able to provide that where it's the edge, especially is going to come closer to the human lives. It's going to come from cloud pick totally in your mind, you can think about cloud as central, either in a private cloud, in a data center or in a public cloud, you know, everywhere. But when you think about edge, it's going to be far reaching and coming close to where we live and maybe work and very, um, get entertained and so on and so forth. And there's going to be, uh, intervention in a positive way in the field of medicine, in the field of entertainment, in the field of, um, manufacturing in the field of, um, uh, you know, mobility. When I say mobility, human mobility, people, transportation, and so on and so forth with all of this stuff, cloud is going to be the connective tissue and the vision of cloud first is going to be, uh, you know, blowing through this big change that is going to happen. And the evolution that is going to happen where, you know, the human grace of mankind, um, our person kind of being very gender neutral in today's world. Um, go first needs to be that beacon of, uh, creating the next generation vision for enterprises to take advantage of that kind of an exciting future. And that's why it, Accenture. We say, let there be change as our, as a purpose. >>I genuinely believe that cloud first is going to be in the forefront of that change agenda, both for Accenture as well as for the rest of the world. Excellent. Let there be change, indeed. Thank you so much for joining us Karthik. A pleasure I'm Rebecca night's stay tuned for more of Q3 60 fives coverage of the Accenture executive summit >>From around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS >>Welcome everyone to the Q virtual and our coverage of the Accenture executive summit, which is part of AWS reinvent 2020. I'm your host Rebecca Knight. Today, we are talking about the green, the cloud and joining me is Kishor Dirk. He is Accenture senior managing director cloud first global services lead. Thank you so much for coming on the show. Kishor nice to meet you. So I want to start by asking you what it is that we mean when we say green cloud, we know that sustainability is a business imperative. So many organizations around the world are committing to responsible innovation, lowering carbon emissions, but what's this, what is it? What does it mean when they talk about cloud from a sustainability perspective? I think it's about responsible innovation being cloud is a cloud first approach that has profits and benefit the clients by helping reduce carbon emissions. >>Think about it this way. You have a large number of data centers. Each of these data centers are increasing by 14% every year. And this double digit growth. What you're seeing is these data centers and the consumption is nearly coolant to the kind of them should have a country like Spain. So the magnitude of the problem that is out there and how do we pursue a green approach. If you look at this, our Accenture analysis, in terms of the migration to public cloud, we've seen that we can reduce that by 59 million tons of CO2 per year with just the 5.9% reduction in total ID emissions and equates this to 22 million cars off the road. And the magnitude of reduction can go a long way in meeting climate change commitments, particularly for data sensitive. >>Wow, that's incredible. What the numbers that you're putting forward are, are absolutely mind blowing. So how does it work? Is it a simple cloud migration? So, you know, when companies begin their cloud journey and then they confront, uh, with them a lot of questions, the decision to make, uh, this particular, uh, element sustainable in the solution and benefits they drive and they have to make wise choices, and then they will be unprecedented level of innovation leading to both a greener planet, as well as, uh, a greener balance sheet, I would say, uh, so effectively it's all about ambition data, the ambition, greater the reduction in carbon emissions. So from a cloud migration perspective, we look at it as a, as a simple solution with approaches and sustainability benefits, uh, that vary based on things it's about selecting the right cloud provider, a very carbon thoughtful provider and the first step towards a sustainable cloud journey. >>And here we're looking at cloud operators, obviously they have different corporate commitments towards sustainability, and that determines how they plan, how they build, uh, their, uh, uh, the data centers, how they are consumed and assumptions that operate there and how they, or they retire their data centers. Then, uh, the next element that you want to do is how do you build it ambition, you know, for some of the companies, uh, and average on-prem, uh, drives about 65% energy reduction and the carbon emissions and reduction number was 84%, which is kind of good, I would say. But then if you could go up to 98% by configuring applications to the cloud, that is significant benefit for, uh, for the board. And obviously it's a, a greener cloud that we're talking about. And then the question is, how far can you go? And, uh, you know, the, obviously the companies have to unlock greater financial societal environmental benefits, and Accenture has this cloud based circular operations and sustainable products and services that we bring into play. So it's a, it's a very thoughtful, broader approach that w bringing in, in terms of, uh, just a simple concept of cloud migration, >>We know that in the COVID era, shifting to the cloud has really become a business imperative. How is Accenture working with its clients at a time when all of this movement has been accelerated? How do you partner and what is your approach in terms of helping them with their migration? >>Yeah, I mean, let, let me talk a little bit about the pandemic and the crisis that is there today. And if you really look at that in terms of how we partnered with a lot of our clients in terms of the cloud first approach, I'll give you a couple of examples. We worked with rolls Royce, McLaren, DHL, and others, as part of the ventilator challenge consortium, again, to, uh, coordinate production of medical ventilator surgically needed for the UK health service. Many of these farms I've taken similar initiatives in, in terms of, uh, you know, from a few manufacturers hand sanitizers and to hand sanitizers, and again, leading passionate labels, making PPE, and again, at the UN general assembly, we launched the end-to-end integration guide that helps company essentially to have a sustainable development goals. And that's how we have parking at a very large scale. >>Uh, and, and if you really look at how we work with our clients and what is Accenture's role there, uh, you know, from, in terms of our clients, you know, there are multiple steps that we look at. One is about, uh, planning, building, deploying, and managing an optimal green cloud solution. And Accenture has this concept of, uh, helping clients with a platform to kind of achieve that goal. And here we are having, we are having a platform or a mine app, which has a module called BGR advisor. And this is a capability that helps you provide optimal green cloud, uh, you know, a business case, and obviously a blueprint for each of our clients and right from the start in terms of how do we complete cloud migration recommendation to an improved solution, accurate accuracy to obviously bringing in the end to end perspective, uh, you know, with this green card advisor capability, we're helping our clients capture what we call as a carbon footprint for existing data centers and provide, uh, I would say the current cloud CO2 emission score that, you know, obviously helps them, uh, with carbon credits that can further that green agenda. >>So essentially this is about recommending a green index score, reducing carbon footprint for migration migrating for green cloud. And if we look at how Accenture itself is practicing what we preach, 95% of our applications are in the cloud. And this migration has helped us, uh, to lead to about $14.5 million in benefit. And in the third year and another 3 million analytics costs that are saved through right-sizing a service consumption. So it's a very broad umbrella and a footprint in terms of how we engage societaly with the UN or our clients. And what is it that we exactly bring to our clients in solving a specific problem? >>Accenture isn't is walking the walk, as you say yes. >>So that's that instead of it, we practice what we preach, and that is something that we take it to heart. We want to have a responsible business and we want to practice it. And we want to advise our clients around that >>You are your own use case. And so they can, they know they can take your advice. So talk a little bit about, um, the global, the cooperation that's needed. We know that conquering this pandemic is going to take a coordinated global effort and talk a little bit about the great reset initiative. First of all, what is that? Why don't we, why don't we start there and then we can delve into it a little bit more. >>Okay. So before we get to how we are cooperating, the great reset, uh, initiative is about improving the state of the world. And it's about a group of global stakeholders cooperating to simultaneously manage the direct consequences of their COVID-19 crisis. Uh, and in spirit of this cooperation that we're seeing during COVID-19, uh, which will obviously either to post pandemic, to tackle the world's pressing issues. As I say, uh, we are increasing companies to realize a combined potential of technology and sustainable impact to use enterprise solutions, to address with urgency and scale, and, um, obviously, uh, multiple challenges that are facing our world. One of the ways that you're increasing, uh, companies to reach their readiness cloud with Accenture's cloud core strategy is to build a solid foundation that is resilient and will be able to faster to the current, as well as future times. Now, when you think of cloud as the foundation, uh, that drives the digital transformation, it's about scale speed, streamlining your operations, and obviously reducing costs. >>And as these businesses seize the construct of cloud first, they must remain obviously responsible and trusted. Now think about this, right, as part of our analysis, uh, that profitability can co-exist with responsible and sustainable practices. Let's say that all the data centers, uh, migrated from on-prem to cloud based, we estimate that would reduce carbon emissions globally by 60 million tons per year. Uh, and think about it this way, right? Easier metric would be taking out 22 million cars off the road. Um, the other examples that you've seen, right, in terms of the NHS work that they're doing, uh, in, in UK to build, uh, uh, you know, uh, Microsoft teams in based integration. And, uh, the platform rolled out for 1.2 million in interest users, uh, and got 16,000 users that we were able to secure, uh, instant messages, obviously complete audio video calls and host virtual meetings across India. So, uh, this, this work that we did with NHS is something that we have are collaborating with a lot of tools and powering businesses. >>Well, you're vividly describing the business case for sustainability. What do you see as the future of cloud when thinking about it from this lens of sustainability, and also going back to what you were talking about in terms of how you are helping your, your fostering cooperation within these organizations. >>Yeah, that's a very good question. So if you look at today, right, businesses are obviously environmentally aware and they are expanding efforts to decrease power consumption, carbon emissions, and they want to run a sustainable operational efficiency across all elements of their business. And this is an increasing trend, and there is that option of energy efficient infrastructure in the global market. And this trend is the cloud first thinking. And with the right cloud migration that we've been discussing is about unlocking new opportunity, like clean energy foundations enable enabled by cloud based geographic analysis, material, waste reductions, and better data insights. And this is something that, uh, uh, we'll we'll drive, uh, with obviously faster analytics platform that is out there. Now, the sustainability is actually the future of business, which is companies that are historically different, the financial security or agility benefits to cloud. Now sustainability becomes an imperative for them. And I would on expedience Accenture's experience with cloud migrations, we have seen 30 to 40% total cost of ownership savings. And it's driving a greater workload, flexibility, better service, your obligation, and obviously more energy efficient, uh, public clouds that cost we'll see that, that drive a lot of these enterprise own data centers. So in our view, what we are seeing is that this, this, uh, sustainable cloud position helps, uh, helps companies to, uh, drive a lot of the goals in addition to their financial and other goods. >>So what should organizations who are, who are watching this interview and saying, Hey, I need to know more, what, what do you recommend to them? And what, where should they go to get more information on Greenplum? >>No, if you you're, if you are a business leader and you're thinking about which cloud provider is good, or how, how should applications be modernized to meet our day-to-day needs, which cloud driven innovations should be priorities. Uh, you know, that's why Accenture, uh, formed up the cloud first organization and essentially to provide the full stack of cloud services to help our clients become a cloud first business. Um, you know, it's all about excavation, uh, the digital transformation innovating faster, creating differentiated, uh, and sustainable value for our clients. And we're powering it up at 70,000 cloud professionals, $3 billion investment, and, uh, bringing together and services for our clients in terms of cloud solutions. And obviously the ecosystem partnership that we have that we are seeing today, uh, and the assets that help our clients realize their goals. Um, and again, to do reach out to us, uh, we can help them determine obviously, an optimal, sustainable cloud for solution that meets the business needs and being unprecedented levels of innovation. Our experience will be our advantage. And now more than ever, Rebecca, >>Just closing us out here. Do you have any advice for these companies who are navigating a great deal of uncertainty? We, what, what do you think the next 12 to 24 months? What do you think that should be on the minds of CEOs as they go through? >>So, as CEO's are thinking about rapidly leveraging cloud, migrating to cloud, uh, one of the elements that we want them to be thoughtful about is can they do that, uh, with unprecedent level of innovation, but also build a greener planet and a greener balance sheet, if we can achieve this balance and kind of, uh, have a, have a world which is greener, I think the world will win. And we all along with Accenture clients will win. That's what I would say, uh, >>Optimistic outlook. And I will take it. Thank you so much. Kishor for coming on the show >>That was >>Accenture's Kishor Dirk, I'm Rebecca Knight stay tuned for more of the cube virtuals coverage of the Accenture executive summit >>Around the globe. >>It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Welcome everyone to the cube virtual and our coverage of the Accenture executive summit. Part of AWS reinvent 2020. I'm your host Rebecca Knight. Today, we are talking about the power of three. And what happens when you bring together the scientific know-how of a global bias biopharmaceutical powerhouse in Takeda, a leading cloud services provider in AWS, and Accenture's ability to innovate, execute, and deliver innovation. Joining me to talk about these things. We have Aaron, sorry, Arjun, baby. He is the senior managing director and chairman of Accenture's diamond leadership council. Welcome Arjun Karl hick. He is the chief digital and information officer at Takeda. >>What is your bigger, thank you, Rebecca >>And Brian bowhead, global director, and head of the Accenture AWS business group at Amazon web services. Thanks so much for coming on. Thank you. So, as I said, we're talking today about this relationship between, uh, your three organizations. Carl, I want to talk with you. I know you're at the beginning of your cloud journey. What was the compelling reason? What, what, why, why move to the cloud and why now? >>Yeah, no, thank you for the question. So, you know, as a biopharmaceutical leader, we're committed to bringing better health and a brighter future to our patients. We're doing that by translating science into some really innovative and life transporting therapies, but throughout, you know, we believe that there's a responsible use of technology, of data and of innovation. And those three ingredients are really key to helping us deliver on that promise. And so, you know, while I think, uh, I'll call it, this cloud journey is already always been a part of our strategy. Um, and we've made some pretty steady progress over the last years with a number of I'll call it diverse approaches to the digital and AI. We just weren't seeing the impact at scale that we wanted to see. Um, and I think that, you know, there's a, there's a need ultimately to, you know, accelerate and, uh, broaden that shift. >>And, you know, we were commenting on this earlier, but there's, you know, it's been highlighted by a number of factors. One of those has been certainly a number of the large acquisitions we've made Shire, uh, being the most pressing example, uh, but also the global pandemic, both of those highlight the need for us to move faster, um, at the speed of cloud, ultimately. Uh, and so we started thinking outside of the box because it was taking us too long and we decided to leverage this strategic partner model. Uh, and it's giving us a chance to think about our challenges very differently. We call this the power of three, uh, and ultimately our focus is singularly on our patients. I mean, they're waiting for us. We need to get there faster. It can take years. And so I think that there is a focus on innovation, um, at a rapid speed, so we can move ultimately from treating conditions to keeping people healthy. >>So as you are embarking on this journey, what are some of the insights you want to share about, about what you're seeing so far? >>Yeah, no, it's a great question. So, I mean, look, maybe right before I highlight some of the key insights, uh, I would say that, you know, with cloud now as the, as the launchpad for innovation, you know, our vision all along has been that in less than 10 years, we want every single to kid, uh, associate we're employed to be empowered by an AI assistant. And I think that, you know, that's going to help us make faster, better decisions. That'll help us, uh, fundamentally deliver transformative therapies and better experiences to, to that ecosystem, to our patients, to physicians, to payers, et cetera, much faster than we previously thought possible. Um, and I think that technologies like cloud and edge computing together with a very powerful I'll call it data fabric is going to help us to create this, this real-time, uh, I'll call it the digital ecosystem. >>The data has to flow ultimately seamlessly between our patients and providers or partners or researchers, et cetera. Uh, and so we've been thinking about this, uh, I'll call it legal, hold up, sort of this pyramid, um, that helps us describe our vision. Uh, and a lot of it has to do with ultimately modernizing the foundation, modernizing and rearchitecting, the platforms that drive the company, uh, heightening our focus on data, which means that there's an accelerated shift towards enterprise data platforms and digital products. And then ultimately, uh, uh, P you know, really an engine for innovation sitting at the very top. Um, and so I think with that, you know, there's a few different, uh, I'll call it insights that, you know, are quickly kind of come zooming into focus. I would say one is this need to collaborate very differently. Um, you know, not only internally, but you know, how do we define ultimately, and build a connected digital ecosystem with the right partners and technologies externally? >>I think the second, uh, component that maybe people don't think as much about, but, you know, I find critically important is for us to find ways of really transforming our culture. We have to unlock talent and shift the culture certainly as a large biopharmaceutical very differently. And then lastly, you've touched on it already, which is, you know, innovation at the speed of cloud. How do we re-imagine that, you know, how do ideas go from getting tested and months to kind of getting tested in days? You know, how do we collaborate very differently? Uh, and so I think those are three, uh, perhaps of the larger I'll call it, uh, insights that, you know, the three of us are spending a lot of time thinking about right now. >>So Arjun, I want to bring you into this conversation a little bit. Let's, let's delve into those a bit. Talk first about the collaboration, uh, that Carl was referencing there. How, how have you seen that it is enabling, uh, colleagues and teams to communicate differently and interact in new and different ways? Uh, both internally and externally, as Carl said, >>No, th thank you for that. And, um, I've got to give call a lot of credit, because as we started to think about this journey, it was clear, it was a bold ambition. It was, uh, something that, you know, we had all to do differently. And so the, the concept of the power of three that Carl has constructed has become a label for us as a way to think about what are we going to do to collectively drive this journey forward. And to me, the unique ways of collaboration means three things. The first one is that, um, what is expected is that the three parties are going to come together and it's more than just the sum of our resources. And by that, I mean that we have to bring all of ourselves, all of our collective capabilities, as an example, Amazon has amazing supply chain capabilities. >>They're one of the best at supply chain. So in addition to resources, when we have supply chain innovations, uh, that's something that they're bringing in addition to just, uh, talent and assets, similarly for Accenture, right? We do a lot, uh, in the talent space. So how do we bring our thinking as to how we apply best practices for talent to this partnership? So, um, as we think about this, so that's, that's the first one, the second one is about shared success very early on in this partnership, we started to build some foundations and actually develop seven principles that all of us would look at as the basis for this success shared success model. And we continue to hold that sort of in the forefront, as we think about this collaboration. And maybe the third thing I would say is this one team mindset. So whether it's the three of our CEOs that get together every couple of months to think about, uh, this partnership, or it is the governance model that Carl has put together, which has all three parties in the governance and every level of leadership, we always think about this as a collective group, so that we can keep that front and center. >>And what I think ultimately has enabled us to do is it allowed us to move at speed, be more flexible. And ultimately all we're looking at the target the same way, the North side, the same way. >>Brian, what about you? What have you observed and what are you thinking about in terms of how this is helping teams collaborate differently? >>Yeah, absolutely. And RJ made some, some great points there. And I think if you really think about what he's talking about, it's that, that diversity of talent, diversity of skill and viewpoint and even culture, right? And so we see that in the power of three. And then I think if we drill down into what we see at Takeda, and frankly, Takeda was, was really, I think, pretty visionary and on their way here, right. And taking this kind of cross-functional approach and applying it to how they operate day to day. So moving from a more functional view of the world to more of a product oriented view of the world, right? So when you think about we're going to be organized around a product or a service or a capability that we're going to provide to our customers or our patients or donors in this case, it implies a different structure, although altogether, and a different way of thinking, right? >>Because now you've got technical people and business experts and marketing experts, all working together in this is sort of cross collaboration. And what's great about that is it's really the only way to succeed with cloud, right? Because the old ways of thinking where you've got application people and infrastructure, people in business, people is suboptimal, right? Because we can all access this tool was, and these capabilities and the best way to do that, isn't across kind of a cross collaborative way. And so this is product oriented mindset. It's a keto was already on. I think it's allowed us to move faster in those areas. >>Carl, I want to go back to this idea of unlocking talent and culture. And this is something that both Brian and Arjun have talked about too. People are, are an essential part of their, at the heart of your organization. How will their experience of work change and how are you helping re-imagine and reinforce a strong organizational culture, particularly at this time when so many people are working remotely. >>Yeah. It's a great question. And it's something that, you know, I think we all have to think a lot about, I mean, I think, um, you know, driving this, this call it, this, this digital and data kind of capability building, uh, takes a lot of, a lot of thinking. So, I mean, there's a few different elements in terms of how we're tackling this one is we're recognizing, and it's not just for the technology organization or for those actors that, that we're innovating with, but it's really across all of the Cato where we're working through ways of raising what I'll call the overall digital leaders literacy of the organization, you know, what are the, you know, what are the skills that are needed almost at a baseline level, even for a global bio-pharmaceutical company and how do we deploy, I'll call it those learning resources very broadly. >>And then secondly, I think that, you know, we're, we're very clear that there's a number of areas where there are very specialized skills that are needed. Uh, my organization is one of those. And so, you know, we're fostering ways in which, you know, we're very kind of quickly kind of creating, uh, avenues excitement for, for associates in that space. So one example specifically, as we use, you know, during these very much sort of remote, uh, sort of days, we, we use what we call global it days, and we set a day aside every single month and this last Friday, um, you know, we, we create during that time, it's time for personal development. Um, and we provide active seminars and training on things like, you know, robotic process automation, data analytics cloud, uh, in this last month we've been doing this for months and months now, but in his last month, more than 50% of my organization participated, and there's this huge positive shift, both in terms of access and excitement about really harnessing those new skills and being able to apply them. >>Uh, and so I think that that's, you know, one, one element that, uh, can be considered. And then thirdly, um, of course, every organization to work on, how do you prioritize talent, acquisition and management and competencies that you can't rescale? I mean, there are just some new capabilities that we don't have. And so there's a large focus that I have with our executive team and our CEO and thinking through those critical roles that we need to activate in order to kind of, to, to build on this, uh, this business led cloud transformation. And lastly, probably the hardest one, but the one that I'm most jazzed about is really this focus on changing the mindsets and behaviors. Um, and I think there, you know, this is where the power of three is, is really, uh, kind of coming together nicely. I mean, we're working on things like, you know, how do we create this patient obsessed curiosity, um, and really kind of unlock innovation with a real, kind of a growth mindset. >>Uh, and the level of curiosity that's needed, not to just continue to do the same things, but to really challenge the status quo. So that's one big area of focus we're having the agility to act just faster. I mean, to worry less, I guess I would say about kind of the standard chain of command, but how do you make more speedy, more courageous decisions? And this is places where we can emulate the way that a partner like AWS works, or how do we collaborate across the number of boundaries, you know, and I think, uh, Arjun spoke eloquently to a number of partnerships that we can build. So we can break down some of these barriers and use these networks, um, whether it's within our own internal ecosystem or externally to help, to create value faster. So a lot of energy around ways of working and we'll have to check back in, but I mean, we're early in on this mindset and behavioral shift, um, but a lot of good early momentum. >>Carl you've given me a good segue to talk to Brian about innovation, because you said a lot of the things that I was the customer obsession and this idea of innovating much more quickly. Obviously now the world has its eyes on drug development, and we've all learned a lot about it, uh, in the past few months and accelerating drug development is all, uh, is of great interest to all of us. Brian, how does a transformation like this help a company's, uh, ability to become more agile and more innovative and at a quicker speed to, >>Yeah, no, absolutely. And I think some of the things that Carl talked about just now are critical to that, right? I think where sometimes folks fall short is they think, you know, we're going to roll out the technology and the technology is going to be the silver bullet where we're, in fact it is the culture. It is, is the talent. And it's the focus on that. That's going to be, you know, the determinant of success. And I will say, you know, in this power of three arrangement and Carl talked a little bit about the pyramid, um, talent and culture and that change, and the kind of thinking about that has been a first-class citizen since the very beginning, right. That absolutely is critical for, for being there. Um, and, and so that's been, that's been key. And so we think about innovation at Amazon and AWS, and Carl mentioned some of the things that, you know, partner like AWS can bring to the table is we talk a lot about builders, right? >>So kind of obsessive about builders. Um, and, and we meet what we mean by that is we at Amazon, we hire for builders, we cultivate builders and we like to talk to our customers about it as well. And it also implies a different mindset, right? When you're a builder, you have that, that curiosity, you have that ownership, you have that stake in whatever I'm creating, I'm going to be a co-owner of this product or this service, right. Getting back to that kind of product oriented mindset. And it's not just the technical people or the it people who are builders. It is also the business people as, as Carl talked about. Right. So when we start thinking about, um, innovation again, where we see folks kind of get into a little bit of a innovation pilot paralysis, is that you can focus on the technology, but if you're not focusing on the talent and the culture and the processes and the mechanisms, you're going to be putting out technology, but you're not going to have an organization that's ready to take it and scale it and accelerate it. >>Right. And so that's, that's been absolutely critical. So just a couple of things we've been doing with, with Takeda and Decatur has really been leading the way is, think about a mechanism and a process. And it's really been working backward from the customer, right? In this case, again, the patient and the donor. And that was an easy one because the key value of Decatur is to be a patient focused bio-pharmaceutical right. So that was embedded in their DNA. So that working back from that, that patient, that donor was a key part of that process. And that's really deep in our DNA as well. And Accenture's, and so we were able to bring that together. The other one is, is, is getting used to experimenting and even perhaps failing, right. And being able to iterate and fail fast and experiment and understanding that, you know, some decisions, what we call it at Amazon or two-way doors, meaning you can go through that door, not like what you see and turn around and go back. And cloud really helps there because the costs of experimenting and the cost of failure is so much lower than it's ever been. You can do it much faster and the implications are so much less. So just a couple of things that we've been really driving, uh, with the cadence around innovation, that's been really critical. Carl, where are you already seeing signs of success? >>Yeah, no, it's a great question. And so we chose, you know, uh, with our focus on innovation to try to unleash maybe the power of data digital in, uh, in focusing on what I call sort of a Maven. And so we chose our, our, our plasma derived therapy business, um, and you know, the plasma-derived therapy business unit, it develops critical life-saving therapies for patients with rare and complex diseases. Um, but what we're doing is by bringing kind of our energy together, we're focusing on creating, I'll call it state of the art digitally connected donation centers. And we're really modernizing, you know, the, the, the donor experience right now, we're trying to, uh, improve also I'll call it the overall plasma collection process. And so we've, uh, selected a number of alcohol at a very high speed pilots that we're working through right now, specifically in this, in this area. And we're seeing >>Really great results already. Um, and so that's, that's one specific area of focus are Jen, I want you to close this out here. Any ideas, any best practices advice you would have for other pharmaceutical companies that are, that are at the early stage of their cloud journey? Yes. Sorry. Arjun. >>Yeah, no, I was breaking up a bit. No, I think they, um, the key is what what's sort of been great for me to see is that when people think about cloud, you know, you always think about infrastructure technology. The reality is that the cloud is really the true enabler for innovation and innovating at scale. And, and if you think about that, right, in all the components that you need, uh, ultimately that's where the value is for the company, right? Because yes, you're going to get some cost synergies and that's great, but the true value is in how do we transform the organization in the case of the Qaeda and the life sciences clients, right. We're trying to take a 14 year process of research and development that takes billions of dollars and compress that right. Tremendous amounts of innovation opportunity. You think about the commercial aspect, lots of innovation can come there. The plasma derived therapy is a great example of how we're going to really innovate to change the trajectory of that business. So I think innovation is at the heart of what most organizations need to do. And the formula, the cocktail that Takeda has constructed with this Fuji program really has all the ingredients, um, that are required for that success. >>Great. Well, thank you so much. Arjun, Brian and Carl was really an enlightening conversation. >>Thank you. Yeah, it's been fun. Thanks Rebecca. >>And thank you for tuning into the cube. Virtual is coverage of the Accenture executive summit >>From around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Welcome everyone to the cubes coverage of Accenture executive summit here at AWS reinvent. I'm your host Rebecca Knight for this segment? We have two guests. First. We have Helen Davis. She is the senior director of cloud platform services, assistant director for it and digital for the West Midlands police. Thanks so much for coming on the show, Helen, and we also have Matthew lb. He is Accenture health and public service associate director and West Midlands police account lead. Thanks so much for coming on the show. Matthew, thank you for joining us. So we are going to be talking about delivering data-driven insights to the West Midlands police force. Helen, I want to start with >>You. Can you tell us a little bit about the West Midlands police force? How big is the force and also what were some of the challenges that you were grappling with prior to this initiative? >>Yeah, certainly. So Westerners police is the second largest police force in the UK, outside of the metropolitan police in London. Um, we have an excessive, um, 11,000 people work at Westman ins police serving communities, um, through, across the Midlands region. So geographically, we're quite a big area as well, as well as, um, being population, um, density, having that as a, at a high level. Um, so the reason we sort of embarked on the data-driven insights platform and it, which was a huge change for us was for a number of reasons. Um, namely we had a lot of disparate data, um, which was spread across a range of legacy systems that were many, many years old, um, with some duplication of what was being captured and no single view for offices or, um, support staff. Um, some of the access was limited. You have to be in a, in an actual police building on a desktop computer to access it. Um, other information could only reach the offices on the front line, through a telephone call back to one of our enabling services where they would do a manual checkup, um, look at the information, then call the offices back, um, and tell them what they needed to know. So it was a very long laborious, um, process and not very efficient. Um, and we certainly weren't exploiting the data that we had in a very productive way. >>So it sounds like as you're describing, and I'm old clunky system that needed a technological, uh, reimagination. So what was the main motivation for, for doing, for making this shift? >>It was really, um, about making us more efficient and more effective in how we do how we do business. So, um, you know, certainly as a, as an it leader and some of my operational colleagues, we recognize the benefits, um, that data analytics could bring in, uh, in a policing environment, not something that was, um, really done in the UK at the time. You know, we have a lot of data, so we're very data rich and the information that we have, but we needed to turn it into information that was actionable. So that's where we started looking for, um, technology partners and suppliers to help us and sort of help us really with what's the art of the possible, you know, this hasn't been done before. So what could we do in this space? That's appropriate, >>Helen. I love that idea. What is the art of the possible, can you tell us a little bit about why you chose AWS? >>I think really, you know, as with all things and when we're procuring a partner in the public sector that, you know, there are many rules and regulations quite rightly as you would expect that to be because we're spending public money. So we have to be very, very careful and, um, it's, it's a long process and we have to be open to public scrutiny. So, um, we sort of look to everything, everything that was available as part of that process, but we recognize the benefits that Clyde would provide in this space because, you know, we're like moving to a cloud environment. We would literally be replacing something that was legacy with something that was a bit more modern. Um, that's not what we wanted to do. Our ambition was far greater than that. So I think, um, in terms of AWS, really, it was around scalability, interoperability, you know, just us things like the disaster recovery service, the fact that we can scale up and down quickly, we call it dialing up and dialing back. Um, you know, it's it's page go. So it just sort of ticked all the boxes for us. And then we went through the full procurement process, fortunately, um, it came out on top for us. So we were, we were able to move forward, but it just sort of had everything that we were looking for in that space. >>Matthew, I want to bring you into the conversation a little bit here. How are you working with a wet with the West Midlands police, sorry. And helping them implement this cloud-first >>Yeah, so I guess, um, by January the West Midlands police started, um, favorite five years ago now. So, um, we set up a partnership with the fools. I wanted to operate in a way that was very different to a traditional supplier relationship. Um, secretary that the data difference insights program is, is one of many that we've been working with last on, um, over the last five years, um, as having said already, um, cloud gave a number of, uh, advantages certainly from a big data perspective and things that, that enabled us today. Um, I'm from an Accenture perspective that allowed us to bring in a number of the different teams that we have say, cloud teams, security teams, um, and drafted from an insurance perspective, as well as the more traditional services that people would associate with the country. >>I mean, so much of this is about embracing comprehensive change to experiment and innovate and try different things. Matthew, how, how do you help, uh, an entity like West Midlands police think differently when they are, there are these ways of doing things that people are used to, how do you help them think about what is the art of the possible, as Helen said, >>There's a few things to that enable those being critical is trying to co-create solutions together. Yeah. There's no point just turning up with, um, what we think is the right answer, try and say, um, collectively work three, um, the issues that the fullest is seeing and the outcomes they're looking to achieve rather than simply focusing on a long list of requirements, I think was critical and then being really open to working together to create the right solution. Um, rather than just, you know, trying to pick something off the shelf that maybe doesn't fit the forces requirements in the way that it should too, >>Right. It's not always a one size fits all. >>Obviously, you know, today what we believe is critical is making sure that we're creating something that met the forces needs, um, in terms of the outcomes they're looking to achieve the financial envelopes that were available, um, and how we can deliver those in a, uh, iterative agile way, um, rather than spending years and years, um, working towards an outcome, um, that is gonna update before you even get that. >>So Helen, how, how are things different? What kinds of business functions and processes have been re-imagined in, in light of this change and this shift >>It's, it's actually unrecognizable now, um, in certain areas of the business as it was before. So to give you a little bit of, of context, when we, um, started working with essentially an AWS on the data driven insights program, it was very much around providing, um, what was called locally, a wizzy tool for our intelligence analyst to interrogate data, look at data, you know, decide whether they could do anything predictive with it. And it was very much sort of a back office function to sort of tidy things up for us and make us a bit better in that, in that area or a lot better in that area. And it was rolled out to a number of offices, a small number on the front line. Um, and really it was, um, in line with a mobility strategy that we, hardware officers were getting new smartphones for the first time, um, to do sort of a lot of things on, on, um, policing apps and things like that to again, to avoid them, having to keep driving back to police stations, et cetera. >>And the pilot was so successful. Every officer now has access to this data, um, on their mobile devices. So it literally went from a handful of people in an office somewhere using it to do sort of clever whizzbang things to, um, every officer in the force, being able to access that level of data at their fingertips. Literally. So what they were touched we've done before is if they needed to check and address or check details of an individual, um, just as one example, they would either have to, in many cases, go back to a police station to look it up themselves on a desktop computer. Well, they would have to make a call back to a centralized function and speak to an operator, relay the questions, either, wait for the answer or wait for a call back with the answer when those people are doing the data interrogation manually. >>So the biggest change for us is the self-service nature of the data we now have available. So officers can do it themselves on their phone, wherever they might be. So the efficiency savings from that point of view are immense. And I think just parallel to that is the quality of our, because we had a lot of data, but just because you've got a lot of data and a lot of information doesn't mean it's big data and it's valuable necessarily. Um, so again, it was having the single source of truth as we, as we call it. So you know that when you are completing those safe searches and getting the responses back, that it is the most accurate information we hold. And also you're getting it back within minutes, as opposed to, you know, half an hour, an hour or a drive back to a station. So it's making officers more efficient and it's also making them safer. The more efficient they are, the more time they have to spend out with the public doing what they, you know, we all should be doing, >>Seen that kind of return on investment, because what you were just describing with all the steps that we needed to be taken in prior to this, to verify an address say, and those are precious seconds when someone's life is on the line in, in sort of in the course of everyday police work. >>Absolutely. Yeah, absolutely. It's difficult to put a price on it. It's difficult to quantify. Um, but all the, you know, the minutes here and that certainly add up to a significant amount of efficiency savings, and we've certainly been able to demonstrate the officers are spending less time up police stations as a result or more time out on the front frontline also they're safer because they can get information about what may or may not be and address what may or may not have occurred in an area before very, very quickly without having to wait. >>Thank you. I want to hear your observations of working so closely with this West Midlands police. Have you noticed anything about changes in its culture and its operating model in how police officers interact with one another? Have you seen any changes since this technology change? >>What's unique about the Western new misplaces, the buy-in from the top down, the chief and his exact team and Helen as the leader from an IOT perspective, um, the entire force is bought in. So what is a significant change program? Uh, I'm not trickles three. Um, everyone in the organization, um, change is difficult. Um, and there's a lot of time effort. That's been put into both the technical delivery and the business change and adoption aspects around each of the projects. Um, but you can see the step change that is making in each aspect to the organization, uh, and where that's putting West Midlands police as a leader in, um, technology I'm policing in the UK. And I think globally, >>And this is a question for both of you because Matthew, as you said, change is difficult and there is always a certain intransigence in workplaces about this is just the way we've always done things and we're used to this and don't try us to get us. Don't try to get us to do anything new here. It works. How do you get the buy-in that you need to do this kind of digital transformation? >>I think it, it would be wrong to say it was easy. Um, um, we also have to bear in mind that this was one program in a five-year program. So there was a lot of change going on, um, both internally for some of our back office functions, as well as front Tai, uh, frontline offices. So with DDI in particular, I think the stat change occurred when people could see what it could do for them. You know, we had lots of workshops and seminars where we all talk about, you know, big data and it's going to be great and it's data analytics and it's transformational, you know, and quite rightly people that are very busy doing a day job that not necessarily technologists in the main and, you know, are particularly interested quite rightly so in what we are not dealing with the cloud, you know? >>And it was like, yeah, okay. It's one more thing. And then when they started to see on that, on their phones and what teams could do, that's when it started to sell itself. And I think that's when we started to see, you know, to see the stat change, you know, and, and if we, if we have any issues now it's literally, you know, our help desks in meltdown. Cause everyone's like, well, we call it manage without this anymore. And I think that speaks for itself. So it doesn't happen overnight. It's sort of incremental changes and then that's a step change in attitude. And when they see it working and they see the benefits, they want to use it more. And that's how it's become fundamental to all policing by itself, really, without much selling >>You, Helen just made a compelling case for how to get buy in. Have you discovered any other best practices when you are trying to get everyone on board for this kind of thing? >>We've um, we've used a lot of the traditional techniques, things around comms and engagement. We've also used things like, um, the 30 day challenge and nudge theory around how can we gradually encourage people to use things? Um, I think there's a point where all of this around, how do we just keep it simple and keep it user centric from an end user perspective? I think DDI is a great example of where the, the technology is incredibly complex. The solution itself is, um, you know, extremely large and, um, has been very difficult to, um, get delivered. But at the heart of it is a very simple front end for the user to encourage it and take that complexity away from them. Uh, I think that's been critical through the whole piece of DDR. >>One final word from Helen. I want to hear, where do you go from here? What is the longterm vision? I know that this has made productivity, um, productivity savings equivalent to 154 full-time officers. Uh, what's next, >>I think really it's around, um, exploiting what we've got. Um, I use the phrase quite a lot, dialing it up, which drives my technical architects crazy. But so, because it's apparently not that simple, but, um, you know, we've, we've been through significant change in the last five years and we are still continuing to batch all of those changes into everyday, um, operational policing. But what we need to see is we need to exploit and build on the investments that we've made in terms of data and claims specifically, the next step really is about expanding our pool of data and our functions. Um, so that, you know, we keep getting better and better at this. And the more we do, the more data we have, the more refined we can be, the more precise we are with all of our actions. Um, you know, we're always being expected to, again, look after the public purse and do more for less. >>And I think this is certainly an and our cloud journey and, and cloud first by design, which is where we are now, um, is helping us to be future-proofed. So for us, it's very much an investment. And I see now that we have good at embedded in operational policing for me, this is the start of our journey, not the end. So it's really exciting to see where we can go from here. Exciting times. Indeed. Thank you so much. Lily, Helen and Matthew for joining us. I really appreciate it. Thank you. And you are watching the cube stay tuned for more of the cubes coverage of the AWS reinvent Accenture executive summit. I'm Rebecca Knight from around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Welcome to the cube virtual coverage of the executive summit at AWS reinvent 2020 virtual. This is the cube virtual. We can't be there in person like we are every year we have to be remote. This executive summit is with special programming supported by Accenture where the cube virtual I'm your host John for a year, we had a great panel here called uncloud first digital transformation from some experts, Stuart driver, the director of it and infrastructure and operates at lion Australia, Douglas Regan, managing director, client account lead at lion for Accenture as a deep Islam associate director application development lead for Centure gentlemen, thanks for coming on the cube virtual that's a mouthful, all that digital, but the bottom line it's cloud transformation. This is a journey that you guys have been on together for over 10 years to be really a digital company. Now, some things have happened in the past year that kind of brings all this together. This is about the next generation organization. So I want to ask Stuart you first, if you can talk about this transformation at lion has undertaken some of the challenges and opportunities and how this year in particular has brought it together because you know, COVID has been the accelerant of digital transformation. Well, if you're 10 years in, I'm sure you're there. You're in the, uh, on that wave right now. Take a minute to explain this transformation journey. >>Yeah, sure. So a number of years back, we, we looked at kind of our infrastructure in our landscape trying to figure out where we >>Wanted to go next. And we were very analog based and stuck in the old it groove of, you know, Capitol reef rash, um, struggling to transform, struggling to get to a digital platform and we needed to change it up so that we could become very different business to the one that we were back then obviously cloud is an accelerant to that. And we had a number of initiatives that needed a platform to build on. And a cloud infrastructure was the way that we started to do that. So we went through a number of transformation programs that we didn't want to do that in the old world. We wanted to do it in a new world. So for us, it was partnering up with a dried organizations that can take you on the journey and, uh, you know, start to deliver bit by bit incremental progress, uh, to get to the, uh, I guess the promise land. >>Um, we're not, not all the way there, but to where we're on the way along. And then when you get to some of the challenges like we've had this year, um, it makes all of the hard work worthwhile because you can actually change pretty quickly, um, provide capacity and, uh, and increase your environments and, you know, do the things that you need to do in a much more dynamic way than we would have been able to previously where we might've been waiting for the hardware vendors, et cetera, to deliver capacity. So for us this year, it's been a pretty strong year from an it perspective and delivering for the business needs >>Before I hit the Douglas. I want to just real quick, a redirect to you and say, you know, if all the people said, Oh yeah, you got to jump on cloud, get in early, you know, a lot of naysayers like, well, wait till to mature a little bit, really, if you got in early and you, you know, paying your dues, if you will taking that medicine with the cloud, you're really kind of peaking at the right time. Is that true? Is that one of the benefits that comes out of this getting in the cloud? Yeah, >>John, this has been an unprecedented year, right. And, um, you know, Australia, we had to live through Bush fires and then we had covert and, and then we actually had to deliver a, um, a project on very nice transformational project, completely remote. And then we also had had some, some cyber challenges, which is public as well. And I don't think if we weren't moved into and enabled through the cloud, we would have been able to achieve that this year. It would have been much different and would have been very difficult to do the backing. We're able to work and partner with Amazon through this year, which is unprecedented and actually come out the other end and we've delivered a brand new digital capability across the entire business. Um, in many, you know, wouldn't have been impossible if we could, I guess, stayed in the old world. The fact that we were moved into the new Naval by the new allowed us to work in this unprecedented year. >>Just quilt. What's your personal view on this? Because I've been saying on the Cuban reporting necessity is the mother of all invention and the word agility has been kicked around as kind of a cliche, Oh, it'd be agile. You know, we're going to get the city, you get a minute on specifically, but from your perspective, uh, Douglas, what does that mean to you? Because there is benefits there for being agile. And >>I mean, I think as Stuart mentioned, right, in a lot of these things we try to do and, you know, typically, you know, hardware and, uh, the last >>To be told and, and, and always on the critical path to be done, we really didn't have that in this case, what we were doing with our projects in our deployments, right. We were able to move quickly able to make decisions in line with the business and really get things going. Right. So you see a lot of times in a traditional world, you have these inhibitors, you have these critical path, it takes weeks and months to get things done as opposed to hours and days, and, and truly allowed us to, we had to, you know, VJ things, move things. And, you know, we were able to do that in this environment with AWS to support and the fact that they can kind of turn things off and on as quickly as we needed. >>Yeah. Cloud-scale is great for speed. So DECA, Gardez get your thoughts on this cloud first mission, you know, it, you know, the dev ops world, they saw this early, that jumping in there, they saw the, the, the agility. Now the theme this year is modern applications with the COVID pandemic pressure, there's real business pressure to make that happen. How did you guys learn to get there fast? And what specifically did you guys do at Accenture and how did it all come together? Can you take us inside kind of how it played out? >>Right. So, yeah, we started off with, as we do in most cases with a much more bigger group, and we worked with lions functional experts and, uh, the lost knowledge that allowed the infrastructure had. Um, we then applied our journey to cloud strategy, which basically revolves around the seminars and, and, uh, you know, the deep three steps from our perspective, uh, assessing the current and bottom and setting up the new cloud environment. And as we go modernizing and, and migrating these applications to the cloud now, you know, one of the key things that, uh, you know, we learned along this journey was that, you know, you can have the best plans, but bottom line that we were dealing with, we often than not have to make changes, uh, what a lot of agility and also work with a lot of collaboration with the, uh, lion team, as well as, uh, uh, AWS. I think the key thing for me was being able to really bring it all together. It's not just, uh, you know, we want to hear it's all of us working together to make this happen. >>What were some of the learnings real quick journey there? >>So I think perspective, the key learnings were that, you know, uh, you know, work, when you look back at, uh, the, the infrastructure that was that we were trying to migrate over to the cloud. A lot of the documentation, et cetera, was not, uh, available. We were having to, uh, figure out a lot of things on the fly. Now that really required us to have, uh, uh, people with deep expertise who could go into those environments and, and work out, uh, you know, the best ways to, to migrate the workloads to the cloud. Uh, I think, you know, the, the biggest thing for me was making sure all the had on that real SMEs across the board globally, that we could leverage across the various technologies, uh, uh, and, and, and, you know, that would really work in our collaborative and agile environment with line. >>Let's do what I got to ask you. How did you address your approach to the cloud and what was your experience? >>Yeah, for me, it's around getting the foundations right. To start with and then building on them. Um, so, you know, you've got to have your, your, your process and you've got to have your, your kind of your infrastructure there and your blueprints ready. Um, AWS do a great job of that, right. Getting the foundations right. And then building upon it, and then, you know, partnering with Accenture allows you to do that very successfully. Um, I think, um, you know, the one thing that was probably surprising to us when we started down this journey and kind of after we got a long way down the track and looking backwards is actually how much you can just turn off. Right? So a lot of stuff that you, uh, you get electric with a legacy in your environment, and when you start to work through it with the types of people that civic just mentioned, you know, the technical expertise working with the business, um, you can really rationalize your environment and, uh, you know, cloud is a good opportunity to do that, to drive that legacy out. >>Um, so you know, a few things there, the other thing is, um, you've got to try and figure out the benefits that you're going to get out of moving here. So there's no point in just taking something that is not delivering a huge amount of value in the traditional world, moving it into the cloud, and guess what is going to deliver the same limited amount of value. So you've got to transform it, and you've got to make sure that you build it for the future and understand exactly what you're trying to gain out of it. So again, you need a strong collaboration. You need a good partners to work with, and you need good engagement from the business as well, because the kind of, uh, you know, digital transformation, cloud transformation, isn't really an it project, I guess, fundamentally it is at the core, but it's a business project that you've got to get the whole business aligned on. You've got to make sure that your investment streams are appropriate and that's, uh, you're able to understand the benefits and the value that say, you're going to drive back towards the business. >>Let's do it. If you don't mind me asking, what was some of the obstacles you encountered or learnings, um, that might different from the expectation we all been there, Hey, you know, we're going to change the world. Here's the sales pitch, here's the outcome. And then obviously things happen, you know, you learn legacy, okay. Let's put some containerization around that cloud native, um, all that rational. You're talking about what are, and you're going to have obstacles. That's how you learn. That's how perfection has developed. How, what obstacles did you come up with and how are they different from your expectations going in? >>Yeah, they're probably no different from other people that have gone down the same journey. If I'm totally honest, the, you know, 70 or 80% of what you do is relatively easy of the known quantity. It's relatively modern architectures and infrastructures, and you can upgrade, migrate, move them into the cloud, whatever it is, rehost, replatform, rearchitect, whatever it is you want to do, it's the other stuff, right? It's the stuff that always gets left behind. And that's the challenge. It's, it's getting that last bit over the line and making sure that you haven't been invested in the future while still carrying all of your legacy costs and complexity within your environment. So, um, to be quite honest, that's probably taken longer and has been more of a challenge than we thought it would be. Um, the other piece I touched on earlier on in terms of what was surprising was actually how much of, uh, your environment is actually not needed anymore. >>When you start to put a critical eye across it and understand, um, uh, ask the tough questions and start to understand exactly what, what it is you're trying to achieve. So if you ask a part of a business, do they still need this application or this service a hundred percent of the time, they will say yes until you start to lay out to them, okay, now I'm going to cost you this to migrate it or this, to run it in the future. And, you know, here's your ongoing costs and, you know, et cetera, et cetera. And then, uh, for a significant amount of those answers, you get a different response when you start to layer on the true value of it. So you start to flush out those hidden costs within the business, and you start to make some critical decisions as a company based on, uh, based on that. So that was a little tougher than we first thought and probably broader than we thought there was more of that than we anticipated, um, which actually results in a much cleaner environment, post post migration, >>You know, the old expression, if it moves automated, you know, it's kind of a joke on government, how they want to tax everything, you know, you want to automate, that's a key thing in cloud, and you've got to discover those opportunities to create value Stuart and Siddique. Mainly if you can weigh in on this love to know the percentage of total cloud that you have now, versus when you started, because as you start to uncover whether it's by design for purpose, or you discover opportunity to innovate, like you guys have, I'm sure it kind of, you took on some territory inside Lyon, what percentage of cloud now versus start? >>Yeah. And at the start it was minimal, right. You know, close to zero, right. Single and single digits. Right. It was mainly SAS environments that we had, uh, sitting in clouds when we, uh, when we started, um, Doug mentioned earlier on a really significant transformation project, um, that we've undertaken and recently gone live on a multi-year one. Um, you know, that's all stood up on AWS and is a significant portion of our environment, um, in terms of what we can move to cloud. Uh, we're probably at about 80 or 90% now. And the balance bit is, um, legacy infrastructure that is just going to retire as we go through the cycle rather than migrate to the cloud. Um, so we are significantly cloud-based and, uh, you know, we're reaping the benefits of it in a year, like 2020, and makes you glad that you did all of the hard yards in the previous years when you started that business challenges thrown out as, >>So do you any common reaction still the cloud percentage penetration? >>Sorry, I didn't, I didn't guys don't, but I, I was going to say it was, I think it's like the 80 20 rule, right? We, we, we worked really hard in the, you know, I think 2018, 19 to get any person off, uh, after getting onto the cloud and, or the last year is the 20% that we have been migrating. And Stuart said like a non-athlete that is also, that's going to be the diet. And I think our next big step is going to be obviously, you know, the icing on the cake, which is to decommission all these apps as well. Right. So, you know, to get the real benefits out of, uh, the whole conservation program from a, uh, from a >>Douglas and Stewart, can you guys talk about the decision around the cloud because you guys have had success with AWS, why AWS how's that decision made? Can you guys give some insight into some of those thoughts? >>I can, I can start, start off. I think back when the decision was made and it was, Oh, it was a while back, um, you know, there's some clear advantages of moving relay, Ws, a lot of alignment with some of the significant projects and, uh, the trend, that particular one big transformation project that we've alluded to as well. Um, you know, we needed some, um, some very robust and, um, just future proof and, um, proven technology. And AWS gave that to us. We needed a lot of those blueprints to help us move down the path. We didn't want to reinvent everything. So, um, you know, having a lot of that legwork done for us and an AWS gives you that, right. And particularly when you partner up with, uh, with a company like Accenture as well, you get combinations of the technology and the skills and the knowledge to, to move you forward in that direction. >>So, um, you know, for us, it was a, uh, uh, it was a decision based on, you know, best of breed, um, you know, looking forward and, and trying to predict the future needs and, and, and kind of the environmental that we might need. Um, and, you know, partnering up with organizations that can take you on the journey. Yeah. And just to build on it. So obviously, you know, lion's like an NWS, but, you know, we knew it was a very good choice given that, um, uh, the skills and the capability that we had, as well as the assets and tools we had to get the most out of, um, out of AWS. And obviously our, our CEO globally is just spending, you know, announcement about a huge investment that we're making in cloud. Um, but you know, we've, we've worked very well. AWS, we've done some joint workshops and joint investments, um, some joint POC. So yeah, w we have a very good working relationship, AWS, and I think, um, one incident to reflect upon whether it's cyber it's and again, where we actually jointly, you know, dove in with, um, with Amazon and some of their security experts and our experts. And we're able to actually work through that with mine quite successful. So, um, you know, really good behaviors as an organization, but also really good capabilities. >>Yeah. As you guys, you're essential cloud outcomes, research shown, it's the cycle of innovation with the cloud. That's creating a lot of benefits, knowing what you guys know now, looking back certainly COVID is impacted a lot of people kind of going through the same process, knowing what you guys know now, would you advocate people to jump on this transformation journey? If so, how, and what tweaks they make, which changes, what would you advise? >>Uh, I might take that one to start with. Um, I hate to think where we would have been when, uh, COVID kicked off here in Australia and, you know, we were all sent home, literally were at work on the Friday, and then over the weekend. And then Monday, we were told not to come back into the office and all of a sudden, um, our capacity in terms of remote access and I quadrupled, or more four, five X, what we had on the Friday we needed on the Monday. And we were able to stand that up during the day Monday into Tuesday, because we were cloud-based and, uh, you know, we just spun up your instances and, uh, you know, sort of our licensing, et cetera. And we had all of our people working remotely, um, within, uh, you know, effectively one business day. Um, I know peers of mine in other organizations and industries that are relying on kind of a traditional wise and getting hardware, et cetera, that were weeks and months before they could get there the right hardware to be able to deliver to their user base. >>So, um, you know, one example where you're able to scale and, uh, um, get, uh, get value out of this platform beyond probably what was anticipated at the time you talk about, um, you know, less the, in all of these kinds of things. And you can also think of a few scenarios, but real world ones where you're getting your business back up and running in that period of time is, is just phenomenal. There's other stuff, right? There's these programs that we've rolled out, you do your sizing, um, and in the traditional world, you would just go out and buy more servers than you need. And, you know, probably never realize the full value of those, you know, the capability of those servers over the life cycle of them. Whereas, you know, in a cloud world, you put in what you think is right. And if it's not right, you pump it up a little bit when, when all of your metrics and so on, tell you that you need to bump it up. And conversely you scale it down at the same rate. So for us, with the types of challenges and programs and, uh, uh, and just business need, that's come at as this year, uh, we wouldn't have been able to do it without a strong cloud base, uh, to, uh, to move forward. >>You know, Douglas, one of the things I talked to, a lot of people on the right side of history who have been on the right wave with cloud, with the pandemic, and they're happy, they're like, and they're humble. Like, well, we're just lucky, you know, luck is preparation meets opportunity. And this is really about you guys getting in early and being prepared and readiness. This is kind of important as people realize, then you gotta be ready. I mean, it's not just, you don't get lucky by being in the right place, the right time. And there were a lot of companies were on the wrong side of history here who might get washed away. This is a super important, I think, >>To echo and kind of building on what Stewart said. I think that the reason that we've had success and I guess the momentum is we didn't just do it in isolation within it and technology. It was actually linked to broader business changes, you know, creating basically a digital platform for the entire business, moving the business, where are they going to be able to come back stronger after COVID, when they're actually set up for growth, um, and actually allows, you know, a line to achievements growth objectives, and also its ambitions as far as what it wants to do, uh, with growth in whatever they make, do with acquiring other companies and moving into different markets and launching new products. So we've actually done it in a way that is, you know, real and direct business benefit, uh, that actually enables line to grow >>General. I really appreciate you coming. I have one final question. If you can wrap up here, uh, Stuart and Douglas, you don't mind weighing in what's the priorities for the future. What's next for lion in a century >>Christmas holidays, I'll start Christmas holidays. I spent a good year and then a, and then a reset, obviously, right? So, um, you know, it's, it's figuring out, uh, transform what we've already transformed, if that makes sense. So God, a huge proportion of our services sitting in the cloud. Um, but we know we're not done even with the stuff that is in there. We need to take those next steps. We need more and more automation and orchestration. We need to, um, our environment is more future proof. We need to be able to work with the business and understand what's coming at them so that we can, um, you know, build that into, into our environment. So again, it's really transformation on top of transformation is the way that I'll describe it. And it's really an open book, right? Once you get it in and you've got the capabilities and the evolving tool sets that AWS continue to bring to the market based, um, you know, working with the partners to, to figure out how we unlock that value, um, you know, drive our costs down efficiency, uh, all of those kind of, you know, standard metrics. >>Um, but you know, we're looking for the next things to transform and showed value back out to our customer base, um, that, uh, that we continue to, you know, sell our products to and work with and understand how we can better meet their needs. Yeah, I think just to echo that, I think it's really leveraging this and then did you capability they have and getting the most out of that investment. And then I think it's also moving to, uh, and adopting more new ways of working as far as, you know, the speed of the business, um, is getting up to speed in the market is changing. So being able to launch and do things quickly and also, um, competitive and efficient operating costs, uh, now that they're in the cloud, right? So I think it's really leveraging the most out of the platform and then, you know, being efficient in launching things. So putting them with >>Siddique, any word from you on your priorities by you see this year in folding, >>There's got to say like e-learning squares, right, for me around, you know, just journey. This is a journey to the cloud, right? >>And, uh, you know, as well dug into sort of Saturday, it's getting all, you know, different parts of the organization along the journey business to it, to your, uh, product lenders, et cetera. Right. And it takes time. It is tough, but, uh, uh, you know, you got to get started on it. And, you know, once we, once we finish off, uh, it's the realization of the benefits now that, you know, looking forward, I think for, from Alliance perspective, it is, uh, you know, once we migrate all the workloads to the cloud, it is leveraging, uh, all stack drive. And as I think Stewart said earlier, uh, with, uh, you know, the latest and greatest stuff that AWS it's basically working to see how we can really, uh, achieve more better operational excellence, uh, from a, uh, from a cloud perspective. >>Well, Stewart, thanks for coming on with a and sharing your environment and what's going on and your journey you're on the right wave. Did the work you're in, it's all coming together with faster, congratulations for your success, and, uh, really appreciate Douglas with Steve for coming on as well from essential. Thank you for coming on. Thanks, John. Okay. Just the cubes coverage of executive summit at AWS reinvent. This is where all the thought leaders share their best practices, their journeys, and of course, special programming with Accenture and the cube. I'm Sean ferry, your host, thanks for watching from around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Welcome everyone to the cube virtuals coverage of the Accenture executive summit. Part of AWS reinvent 2020. I'm your host Rebecca Knight. We are talking today about reinventing the energy data platform. We have two guests joining us. First. We have Johan Krebbers. He is the GM digital emerging technologies and VP of it. Innovation at shell. Thank you so much for coming on the show, Johan you're welcome. And next we have Liz Dennett. She is the lead solution architect for O S D U on AWS. Thank you so much, Liz, maybe here. So I want to start our conversation by talking about OSD. You like so many great innovations. It started with a problem. Johann, what was the problem you were trying to solve at shell? We go back a couple of years, we started summer 2017, where we had a meeting with the guys from exploration in shell, and the main problem they had, of course, they got lots of lots of data, but are unable to find the right data. They need to work from all over the place and told him >>To, and we'll probably try to solve is how that person working exploration could find their proper date, not just a day, but also the date you really needed that we did probably talked about is summer 2017. And we said, okay, the only way ABC is moving forward is to start pulling that data into a single data platform. And that, that was at the time that we called it as the, you, the subsurface data universe in there was about the shell name was so in, in January, 2018, we started a project with Amazon to start grating a co fricking that building, that Stu environment, that the, the universe, so that single data level to put all your exploration and Wells data into that single environment that was intent. And every cent, um, already in March of that same year, we said, well, from Michele point of view, we will be far better off if we could make this an industry solution and not just a shelf solution, because Shelby, Shelby, if you can make an industry solution, but people are developing applications for it. >>It also is far better than for shell to say we haven't shell special solution because we don't make money out of how we start a day that we can make money out of it. We have access to the data, we can explore the data. So storing the data we should do as efficiently possibly can. So we monitor, we reach out to about eight or nine other last, uh, or I guess operators like the economics, like the tutorials, like the shepherds of this world and say, Hey, we inshallah doing this. Do you want to join this effort? And to our surprise, they all said, yes. And then in September, 2018, we had our kickoff meeting with your open group where we said, we said, okay, if you want to work together and lots of other companies, we also need to look at, okay, how, how we organize that. >>Or if you started working with lots of large companies, you need to have some legal framework around some framework around it. So that's why we went to the open group and say, okay, let's, let's form the old forum as we call it at the time. So it's September, 2080, where I did a Galleria in Houston, but the kickoff meeting for the OT four with about 10 members at the time. So that's just over two years ago, we started an exercise for me called ODU. They kicked it off. Uh, and so that's really them will be coming from and how we've got there. Also >>The origin story. Um, what, so what digging a little deeper there? What were some of the things you were trying to achieve with the OSU? >>Well, a couple of things we've tried to achieve with you, um, first is really separating data from applications for what is, what is the biggest problem we have in the subsurface space that the data and applications are all interlinked or tied together. And if, if you have them and a new company coming along and say, I have this new application and he's access to the data that is not possible because the data often interlinked with the application. So the first thing we did is really breaking the link between the application, the data as those levels, the first thing we did, secondly, put all the data to a single data platform, take the silos out what was happening in the sub-service space. They got all the data in what we call silos in small little islands out there. So what we're trying to do is first break the link to great, great. >>They put the data single day, the bathroom, and the third part, put a standard layer on top of that, it's an API layer on top to equate a platform. So we could create an ecosystem out of companies to start a valving Schoff application on top of dev data platform across you might have a data platform, but you're only successful if have a rich ecosystem of people start developing applications on top of that. And then you can export the data like small companies, last company, university, you name it, we're getting after create an ecosystem out here. So the three things were first break the link between application data, just break it and put data at the center and also make sure that data, this data structure would not be managed by one company, but it would only be met. It would be managed the data structures by the ODI forum. Secondly, then put a, the data, a single data platform certainly then has an API layer on top and then create an ecosystem. Really go for people, say, please start developing applications, because now you had access to the data. I've got the data no longer linked to somebody whose application was all freely available, but an API layer that was, that was all September, 2018, more or less. >>And hear a little bit. Can you talk a little bit about some of the imperatives from the AWS standpoint in terms of what you were trying to achieve with this? Yeah, absolutely. And this whole thing is Johann said started with a challenge that was really brought out at shell. The challenges that geoscientists spend up to 70% of their time looking for data. I'm a geologist I've spent more than 70% of my time trying to find data in these silos. And from there, instead of just figuring out how we could address that one problem, we worked together to really understand the root cause of these challenges and working backwards from that use case OSU and OSU on AWS has really enabled customers to create solutions that span, not just this in particular problem, but can really scale to be inclusive of the entire energy value chain and deliver value from these use cases to the energy industry and beyond. Thank you, Lee, uh, Johann. So talk a little bit about Accenture's cloud first approach and how it has, uh, helped shell work faster and better with speed. >>Well, of course, access a cloud first approach only works together. It's been an Amazon environment, AWS environment. So we're really looking at, uh, at, at Accenture and others altogether helping shell in this space. Now the combination of the two is what we're really looking at, uh, where access of course can be recent knowledge student to that environment operates support knowledge, do an environment. And of course, Amazon will be doing that to today's environment that underpinning their services, et cetera. So, uh, we would expect a combination, a lot of goods when we started rolling out and put in production, the old you are three and bug because we are anus. Then when the release feed comes to the market in Q1, next year of ODU have already started going to Audi production inside shell. But as the first release, which is ready for prime time production across an enterprise will be released just before Christmas, last year when he's still in may of this year. But really three is the first release we want to use for full scale production deployment inside shell, and also the operators around the world. And there is one Amazon, sorry, at that one. Um, extensive can play a role in the ongoing, in the, in deployment building up, but also support environment. >>So one of the other things that we talk a lot about here on the cube is sustainability. And this is a big imperative at so many organizations around the world in particular energy companies. How does this move to OSD you, uh, help organizations become, how is this a greener solution for companies? >>Well, first we make it's a greatest solution because you start making a much more efficient use of your resources, which is already an important one. The second thing we're doing is also, we started ODU in framers, in the oil and gas space in the expert development space. We've grown, uh, OTU in our strategy of growth. I was, you know, also do an alternative energy sociology. We'll all start supporting next year. Things like solar farms, wind farms, uh, the, the dermatomal environment hydration. So it becomes an and an open energy data platform, not just what I want to get into sleep. That's what new industry, any type of energy industry. So our focus is to create, bring the data of all those various energy data sources to get me to a single data platform you can to use AI and other technologies on top of that, to exploit the data, to meet again into a single data platform. >>Liz, I want to ask you about security because security is, is, is such a big concern when it comes to data. How secure is the data on OSD? You, um, actually, can I talk, can I do a follow up on this sustainability talking? Oh, absolutely. By all means. I mean, I want to interject though security is absolutely our top priority. I don't mean to move away from that, but with sustainability, in addition to the benefits of the OSU data platform, when a company moves from on-prem to the cloud, they're also able to leverage the benefits of scale. Now, AWS is committed to running our business in the most environmentally friendly way possible. And our scale allows us to achieve higher resource utilization and energy efficiency than a typical data center. >>Now, a recent study by four 51 research found that AWS is infrastructure is 3.6 times more energy efficient than the median of surveyed enterprise data centers. Two thirds of that advantage is due to higher, um, server utilization and a more energy efficient server population. But when you factor in the carbon intensity of consumed electricity and renewable energy purchases for 51 found that AWS performs the same task with an 88% lower carbon footprint. Now that's just another way that AWS and OSU are working to support our customers is they seek to better understand their workflows and make their legacy businesses less carbon intensive. >>That's that's incorrect. Those are those statistics are incredible. Do you want to talk a little bit now about security? Absolutely. And security will always be AWS is top priority. In fact, AWS has been architected to be the most flexible and secure cloud computing environment available today. Our core infrastructure is built to satisfy. There are the security requirements for the military, local banks and other high sensitivity organizations. And in fact, AWS uses the same secure hardware and software to build and operate each of our regions. So that customers benefit from the only commercial cloud that's hat hits service offerings and associated supply chain vetted and deemed secure enough for top secret workloads. That's backed by a deep set of cloud security tools with more than 200 security compliance and governmental service and key features as well as an ecosystem of partners like Accenture, that can really help our customers to make sure that their environments for their data meet and or exceed their security requirements. Johann, I want you to talk a little bit about how OSD you can be used today. Does it only handle subsurface data? >>Uh, today it's Honda's subserves or Wells data, we go to add to that production around the middle of next year. That means that the whole upstate business. So we've got goes from exploration all the way to production. You've made it together into a single data platform. So production will be added around Q3 of next year. Then a principal. We have a difficult, the elder data that single environment, and we want to extend them to other data sources or energy sources like solar farms, wind farms, uh, hydrogen, hydro, et cetera. So we're going to add a whore, a whole list of audit day energy source to them and be all the data together into a single data club. So we move from a falling guest data platform to an aniseed data platform. That's really what our objective is because the whole industry, if you look it over, look at our companies are all moving in. That same two acts of quantity of course, are very strong in oil and gas, but also increased the, got into the other energy sources like, like solar, like wind, like th like highly attended, et cetera. So we would be moving exactly. But that same method that, that, that the whole OSU can't really support at home. And as a spectrum of energy sources, >>Of course, and Liz and Johan. I want you to close us out here by just giving us a look into your crystal balls and talking about the five and 10 year plan for OSD. You we'll start with you, Liz. What do you, what do you see as the future holding for this platform? Um, honestly, the incredibly cool thing about working at AWS is you never know where the innovation and the journey is going to take you. I personally am looking forward to work with our customers, wherever their OSU journeys, take them, whether it's enabling new energy solutions or continuing to expand, to support use cases throughout the energy value chain and beyond, but really looking forward to continuing to partner as we innovate to slay tomorrow's challenges, Johann first, nobody can look at any more nowadays, especially 10 years own objective is really in the next five years, you will become the key backbone for energy companies for storing your data. You are efficient intelligence and optimize the whole supply energy supply chain in this world down here, you'll uncovers Liz Dennett. Thank you so much for coming on the cube virtual I'm Rebecca Knight stay tuned for more of our coverage of the Accenture executive summit >>From around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Welcome everyone to the cubes coverage of the Accenture executive summit. Part of AWS reinvent. I'm your host Rebecca Knight today we're welcoming back to Kubila. We have Kishor Dirk. He is the Accenture senior managing director cloud first global services lead. Welcome back to the show Kishore. Thank you very much. Nice to meet again. And, uh, Tristan moral horse set. He is the managing director, Accenture cloud first North America growth. Welcome back to you to trust and great to be back in grapes here again, Rebecca. Exactly. Even in this virtual format, it is good to see your faces. Um, today we're going to be talking about my nav and green cloud advisor capability. Kishor I want to start with you. So my nav is a platform that is really celebrating its first year in existence. Uh, November, 2019 is when Accenture introduced it. Uh, but it's, it has new relevance in light of this global pandemic that we are all enduring and suffering through. Tell us a little bit about the lineup platform, what it is that cloud platform to help our clients navigate the complexity of cloud and cloud decisions to make it faster. And obviously, you know, we have in the cloud, uh, you know, with >>The increased relevance and all the, especially over the last few months with the impact of COVID crisis and exhibition of digital transformation, you know, we are seeing the transformation or the acceleration to cloud much faster. This platform that you're talking about has enabled and 40 clients globally across different industries. You identify the right cloud solution, navigate the complexity, provide a cloud specific solution simulate for our clients to meet the strategy business needs, and the clients are loving it. >>I want to go to you now trust and tell us a little bit about how mine nav works and how it helps companies make good cloud choice. >>Yeah, so Rebecca, we we've talked about cloud is, is more than just infrastructure and that's what mine app tries to solve for it. It really looks at a variety of variables, including infrastructure operating model and fundamentally what client's business outcomes, um, uh, our clients are, are looking for and, and identifies the optimal solution for what they need. And we assign this to accelerate and we mentioned the pandemic. One of the big focus now is to accelerate. And so we worked through a three-step process. The first is scanning and assessing our client's infrastructure, their data landscape, their application. Second, we use our automated artificial intelligence engine to interact with. We have a wide variety and library of a collective plot expertise. And we look to recommend what is the enterprise architecture and solution. And then third, before we aligned with our clients, we look to simulate and test this scaled up model. And the simulation gives our clients a way to see what cloud is going to look like, feel like and how it's going to transform their business before they go there. >>Tell us a little bit about that in real life. Now as a company, so many of people are working remotely having to collaborate, uh, not in real life. How is that helping them right now? >>So, um, the, the pandemic has put a tremendous strain on systems, uh, because of the demand on those systems. And so we talk about resiliency. We also now need to collaborate across data across people. Um, I think all of us are calling from a variety of different places where our last year we were all at the VA cube itself. Um, and, and cloud technologies such as teams, zoom that we're we're leveraging now has fundamentally accelerated and clients are looking to onboard this for their capabilities. They're trying to accelerate their journey. They realize that now the cloud is what is going to become important for them to differentiate. Once we come out of the pandemic and the ability to collaborate with their employees, their partners, and their clients through these systems is becoming a true business differentiator for our clients. >>Keisha, I want to talk with you now about my navs multiple capabilities, um, and helping clients design and navigate their cloud journeys. Tell us a little bit about the green cloud advisor capability and its significance, particularly as so many companies are thinking more deeply and thoughtfully about sustainability. >>Yes. So since the launch of my lab, we continue to enhance, uh, capabilities for our clients. One of the significant, uh, capabilities that we have enabled is the being taught advisor today. You know, Rebecca, a lot of the businesses are more environmentally aware and are expanding efforts to decrease power consumption, uh, and obviously carbon emissions and, uh, and run a sustainable operations across every aspect of the enterprise. Uh, as a result, you're seeing an increasing trend in adoption of energy, efficient infrastructure in the global market. And one of the things that we did a lot of research we found out is that there's an ability to influence our client's carbon footprint through a better cloud solution. And that's what the internet brings to us, uh, in, in terms of a lot of the client connotation that you're seeing in Europe, North America and others, lot of our clients are accelerating to a green cloud strategy to unlock beta financial, societal and environmental benefit, uh, through obviously cloud-based circular, operational, sustainable products and services. That is something that we are enhancing my now, and we are having active client discussions at this point of time. >>So Tristan, tell us a little bit about how this capability helps clients make greener decisions. >>Yeah. Um, well, let's start about the investments from the cloud providers in renewable and sustainable energy. Um, they have most of the hyperscalers today, um, have been investing significantly on data centers that are run on renewable energy, some incredibly creative constructs on the how to do that. And sustainability is there for a key, um, key item of importance for the hyperscalers and also for our clients who now are looking for sustainable energy. And it turns out this marriage is now possible. I can, we marry the, the green capabilities of the comm providers with a sustainability agenda of our clients. And so what we look into the way the mine EF works is it looks at industry benchmarks and evaluates our current clients, um, capabilities and carpet footprint leveraging their existing data centers. We then look to model from an end-to-end perspective, how the, their journey to the cloud leveraging sustainable and, um, and data centers with renewable energy. We look at how their solution will look like and, and quantify carbon tax credits, um, improve a green index score and provide quantifiable, um, green cloud capabilities and measurable outcomes to our clients, shareholders, stakeholders, clients, and customers. Um, and our green plot advisers sustainability solutions already been implemented at three clients. And in many cases in two cases has helped them reduce the carbon footprint by up to 400% through migration from their existing data center to green cloud. Very, very, >>That is remarkable. Now tell us a little bit about the kinds of clients. Is this, is this more interesting to clients in Europe? Would you say that it's catching on in the United States? Where, what is the breakdown that you're seeing right now? >>Sustainability is becoming such a global agenda and we're seeing our clients, um, uh, tie this and put this at board level, um, uh, agenda and requirements across the globe. Um, Europe has specific constraints around data sovereignty, right, where they need their data in country, but from a green, a sustainability agenda, we see clients across all our markets, North America, Europe, and our growth markets adopt this. And we have seen case studies and all three months. >>Keisha, I want to bring you back into the conversation. Talk a little bit about how MindUP ties into Accenture's cloud first strategy, your Accenture's CEO, Julie Sweet has talked about post COVID leadership requiring every business to become a cloud first business. Tell us a little bit about how this ethos is in Accenture and how you're sort of looking outward with it too. >>So Rebecca mine is the launch pad, uh, to a cloud first transformation for our clients. Uh, Accenture, see your jewelry suite, uh, you know, shared the Accenture cloud first and our substantial investment demonstrate our commitment and is delivering greater value for our clients when they need it the most. And with the digital transformation requiring cloud at scale, you know, we're seeing that in the post COVID leadership, it requires that every business should become a cloud business. And my nap helps them get there by evaluating the cloud landscape, navigating the complexity, modeling architecting and simulating an optimal cloud solution for our clients. And as Justin was sharing a greener cloud. >>So Tristan, talk a little bit more about some of the real life use cases in terms of what are we, what are clients seeing? What are the results that they're having? >>Yes. Thank you, Rebecca. I would say two key things right around my neck. The first is the iterative process. Clients don't want to wait, um, until they get started, they want to get started and see what their journey is going to look like. And the second is fundamental acceleration, dependent make, as we talked about, has accelerated the need to move to cloud very quickly. And my nav is there to do that. So how do we do that? First is generating the business cases. Clients need to know in many cases that they have a business case by business case, we talk about the financial benefits, as well as the business outcomes, the green, green clot impact sustainability impacts with minus. We can build initial recommendations using a basic understanding of their environment and benchmarks in weeks versus months with indicative value savings in the millions of dollars arranges. >>So for example, very recently, we worked with a global oil and gas company, and in only two weeks, we're able to provide an indicative savings for $27 million over five years. This enabled the client to get started, knowing that there is a business case benefit and then iterate on it. And this iteration is, I would say the second point that is particularly important with my nav that we've seen in bank, the clients, which is, um, any journey starts with an understanding of what is the application landscape and what are we trying to do with those, these initial assessments that used to take six to eight weeks are now taking anywhere from two to four weeks. So we're seeing a 40 to 50% reduction in the initial assessment, which gets clients started in their journey. And then finally we've had discussions with all of the hyperscalers to help partner with Accenture and leverage mine after prepared their detailed business case module as they're going to clients. And as they're accelerating the client's journey, so real results, real acceleration. And is there a journey? Do I have a business case and furthermore accelerating the journey once we are by giving the ability to work in iterative approach. >>I mean, it sounds as though that the company that clients and and employees are sort of saying, this is an amazing time savings look at what I can do here in, in so much in a condensed amount of time, but in terms of getting everyone on board, one of the things we talked about last time we met, uh, Tristan was just how much, uh, how one of the obstacles is getting people to sign on and the new technologies and new platforms. Those are often the obstacles and struggles that companies face. Have you found that at all? Or what is sort of the feedback that you're getting from employers? >>Sorry. Yes. We clearly, there are always obstacles to a cloud journey. If there were an obstacles, all our clients would be, uh, already fully in the cloud. What man I gives the ability is to navigate through those, to start quickly. And then as we identify obstacles, we can simulate what things are going to look like. We can continue with certain parts of the journey while we deal with that obstacle. And it's a fundamental accelerator. Whereas in the past one, obstacle would prevent a class from starting. We can now start to address the obstacles one at a time while continuing and accelerating the contrary. That is the fundamental difference. >>Kishor I want to give you the final word here. Tell us a little bit about what is next for Accenture might have and what we'll be discussing next year at the Accenture executive summit >>Sort of echo, we are continuously evolving with our client needs and reinventing, reinventing for the future. For mine, as I've been taught advisor, our plan is to help our clients reduce carbon footprint and again, migrate to a green cloud. Uh, and additionally, we're looking at, you know, two capabilities, uh, which include sovereign cloud advisor, uh, with clients, especially in, in Europe and others are under pressure to meet, uh, stringent data norms that Kristen was talking about. And the sovereign cloud advisor health organization to create an architecture cloud architecture that complies with the green. Uh, I would say the data sovereignty norms that is out there. The other element is around data to cloud. We are seeing massive migration, uh, for, uh, for a lot of the data to cloud. And there's a lot of migration hurdles that come within that. Uh, we have expanded mine app to support assessment capabilities, uh, for, uh, assessing applications, infrastructure, but also covering the entire state, including data and the code level to determine the right cloud solution. So we are, we are pushing the boundaries on what mine app can do with mine. Have you created the ability to take the guesswork out of cloud navigate the complexity? We are roaring risks costs, and we are, you know, achieving client's static business objectives while building a sustainable alerts with being cloud >>Any platform that can take some of the guesswork out of the future. I'm I'm onboard with. Thank you so much, Tristin and Kishore. This has been a great conversation. >>Thank you. >>Stay tuned for more of the cubes coverage of the Accenture executive summit. I'm Rebecca Knight from around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Hey, welcome back to the cubes coverage of 80 us reinvent 2020 virtual centric executive summit. The two great guests here to break down the analysis of the relationship with cloud and essential Brian bowhead director ahead of a century 80. It was business group at Amazon web services. And Andy T a B G the M is essentially Amazon business group lead managing director at Accenture. Uh, I'm sure you're super busy and dealing with all the action, Brian. Great to see you. Thanks for coming on. So thank you. You guys essentially has been in the spotlight this week and all through the conference around this whole digital transformation, essentially as business group is celebrating its fifth anniversary. What's new, obviously the emphasis of next gen post COVID generation, highly digital transformation, a lot happening. You got your five-year anniversary, what's new. >>Yeah, it, you know, so if you look back, it's exciting. Um, you know, so it was five years ago. Uh, it was actually October where we, where we launched the Accenture AWS business group. And if we think back five years, I think we're still at the point where a lot of customers were making that transition from, you know, should I move to cloud to how do I move to cloud? Right? And so that was one of the reasons why we launched the business group. And since, since then, certainly we've seen that transition, right? Our conversations today are very much around how do I move to cloud, help me move, help me figure out the business case and then pull together all the different pieces so I can move more quickly, uh, you know, with less risk and really achieve my business outcomes. And I would say, you know, one of the things too, that's, that's really changed over the five years. >>And what we're seeing now is when we started, right, we were focused on migration data and IOT as the big three pillars that we launched with. And those are still incredibly important to us, but just the breadth of capability and frankly, the, the, the breadth of need that we're seeing from customers. And obviously as AWS has matured over the years and launched our new capabilities, we're Eva with Accenture and in the business group, we've broadened our capabilities and deepened our capabilities over the, over the last five years as well. For instance, this year with, with COVID, especially, it's really forced our customers to think differently about their own customers or their citizens, and how do they service those citizens? So we've seen a huge acceleration around customer engagement, right? And we powered that with Accenture customer engagement platform powered by ADA, Amazon connect. And so that's been a really big trend this year. And then, you know, that broadens our capability from just a technical discussion to one where we're now really reaching out and, and, um, and helping transform and modernize that customer and citizen experience as well, which has been exciting to see. >>Yeah, Andy, I want to get your thoughts here. We've been reporting and covering essentially for years. It's not like it's new to you guys. I mean, five years is a great anniversary. You know, check is good relationship, but you guys have been doing the work you've been on the trend line. And then this hits and Andy said on his keynote and I thought he said it beautifully. And he even said it to me in my one-on-one interview with them was it's on full display right now, the whole digital transformation, everything about it is on full display and you're either were prepared for it or you kind of word, and you can see who's there. You guys have been prepared. This is not new. So give us the update from your perspective, how you're taking advantage of this, of this massive shift, highly accelerated digital transformation. >>Well, I think, I think you can be prepared, but you've also got to be prepared to always sort of, I think what we're seeing in, in, um, in, in, in, in recent times and particularly 20 w what is it I think today there are, um, full sense of the enterprise workloads, the cloud, um, you know, that leaves 96 percentile now for him. Um, and I, over the next four to >>Five years, um, we're going to see that sort of, uh, acceleration to the, to the cloud pick up, um, this year is, as Andy touched on, I think, uh, uh, on Tuesday in his, I think the pandemic is a forcing function, uh, for companies to, to really pause and think about everything from, from, you know, how they, um, manage that technology to infrastructure, to just to carotenoids where the data sets to what insights and intelligence that getting from that data. And then eventually even to, to the talent, the talent they have in the organization and how they can be competitive, um, their culture, their culture of innovation, of invention and reinvention. And so I think, I think, you know, when you, when you think of companies out there faced with these challenges, it, it forces us, it forces AWS, it forces AEG to come together and think through how can we help create value for them? How can we help help them move from sort of just causing and rethinking to having real plans in an action and that taking them, uh, into, into implementation. And so that's, that's what we're working on. Um, I think over the next five years, we're looking to just continue to come together and help these, these companies get to the cloud and get the value from the cloud because it's beyond just getting to the cloud attached to them and living in the cloud and, and getting the value from it. >>It's interesting. Andy was saying, don't just put your toe in the water. You got to go beyond the toe in the water kind of approach. Um, I want to get to that large scale cause that's the big pickup this week that I kind of walked away with was it's large scale. Acceleration's not just toe in the water experimentation. Can you guys share, what's causing this large scale end to end enterprise transformation? And what are some of the success criteria have you seen for the folks who have done that? >>Yeah. And I'll, I'll, I'll start. And at the end you can buy a lawn. So, you know, it's interesting if I look back a year ago at re-invent and when I did the cube interview, then we were talking about how the ABG, we were starting to see this shift of customers. You know, we've been working with customers for years on a single of what I'll call a single-threaded programs, right. We can do a migration, we could do SAP, we can do a data program. And then even last year, we were really starting to see customers ask. The question is like, what kind of synergies and what kind of economies of scale do I get when I start bringing these different threads together, and also realizing that it's, you know, to innovate for the business and build new applications, new capabilities. Well, that then is going to inform what data you need to, to hydrate those applications, right? Which then informs your data strategy while a lot of that data is then also embedded in your underlying applications that sit on premises. So you should be thinking through how do you get those applications into the cloud? So you need to draw that line through all of those layers. And that was already starting last year. And so last year we launched the joint transformation program with AEG. And then, so we were ready when this year happened and then it was just an acceleration. So things have been happening faster than we anticipated, >>But we knew this was going to be happening. And luckily we've been in a really good position to help some of our customers really think through all those different layers of kind of pyramid as we've been calling it along with the talent and change pieces, which are also so important as you make this transformation to cloud >>Andy, what's the success factors. Andy Jassy came on stage during the partner day, a surprise fireside chat with Doug Hume and talking about this is really an opportunity for partners to, to change the business landscape with enablement from Amazon. You guys are in a pole position to do that in the marketplace. What's the success factors that you see, >>Um, really from three, three fronts, I'd say, um, w one is the people. Um, and, and I, I, again, I think Andy touched on sort of eight, uh, success factors, uh, early in the week. And for me, it's these three areas that it sort of boils down to these three areas. Um, one is the, the, the, the people, uh, from the leaders that it's really important to set those big, bold visions point the way. And then, and then, you know, set top down goals. How are we going to measure Z almost do get what you measure, um, to be, you know, beyond the leaders, to, to the right people in the right position across the company. We we're finding a key success factor for these end to end transformations is not just the leaders, but you haven't poached across the company, working in a, in a collaborative, shared, shared success model, um, and people who are not afraid to, to invent and fail. >>And so that takes me to perhaps the second point, which is the culture, um, it's important, uh, with finding for the right conditions to be set in the company that enabled, uh, people to move at pace, move at speed, be able to fail fast, um, keep things very, very simple and just keep iterating and that sort of culture of iteration and improvement versus seeking perfection is, is super important for, for success. And then the third part of maybe touch on is, is partners. Um, I think, you know, as we move forward over the next five years, we're going to see an increasing number of players in the ecosystem in the enterprise and state. Um, you're going to see more and more SAS providers. And so it's important for companies and our joint clients out there to pick partners like, um, like AWS or, or Accenture or others, but to pick partners who have all worked together and you have built solutions together, and that allows them to get speed to value quicker. It allows them to bring in pre-assembled solutions, um, and really just drive that transformation in a quicker, it sorts of manner. >>Yeah, that's a great point worth calling out, having that partnership model that's additive and has synergy in the cloud, because one of the things that came out of this this week, this year is reinvented, is there's new things going on in the public cloud, even though hybrid is an operating model, outpost and super relevant. There, there are benefits for being in the cloud and you've got partners API, for instance, and have microservices working together. This is all new, but I got, I got to ask that on that thread, Andy, where did you see your customers going? Because I think, you know, as you work backwards from the customers, you guys do, what's their needs, how do you see them? W you know, where's the puck going? Where can they skate where the puck's going, because you can almost look forward and say, okay, I've got to build modern apps. I got to do the digital transformation. Everything is a service. I get that, but what are they, what solutions are you building for them right now to get there? >>Yeah. And, and of course, with, with, you know, industries blurring and multiple companies, it's always hard to boil down to the exact situations, but you could probably look at it from a sort of a thematic lens. And what we're seeing is as the cloud transformation journey picks up, um, from us perspective, we've seen a material shift in the solutions and problems that we're trying to address with clients that they are asking for us, uh, to, to help, uh, address is no longer just the back office, where you're sort of looking at cost and efficiency and, um, uh, driving gains from that perspective. It's beyond that, it's now materially the top line. It's, how'd you get the driving to the, you know, speed to insights, how'd you get them decomposing, uh, their application set in order to derive those insights. Um, how'd you get them, um, to, to, um, uh, sort of adopt leading edge industry solutions that give them that jump start, uh, and that accelerant to winning the customers, winning the eyeballs. >>Um, and then, and then how'd, you help drive the customer experience. We're seeing a lot of push from clients, um, or ask for help on how do I optimize my customer experience in order to retain my eyeballs. And then how do I make sure I've got a soft self-learning ecosystem of play, um, where, uh, you know, it's not just a practical experience that I can sort of keep learning and iterating, um, how I treat my, my customers, um, and a lot of that, um, that still self-learning, that comes from, you know, putting in intelligence into your, into your systems, getting an AI and ML in there. And so, as a result of that work, we're seeing a lot of push and a lot of what we're doing, uh, is pouring investment into those areas. And then finally, maybe beyond the bottom line, and the top line is how do you harden that and protect that with, um, security and resilience? So I'll probably say those are the three areas. John, >>You know, the business model side, obviously the enablement is what Amazon has. Um, we see things like SAS factory coming on board and the partner network, obviously a century is a big, huge partner of you guys. Um, the business models there, you've got I, as, as doing great with chips, you have this data modeling this data opportunity to enable these modern apps. We heard about the partner strategy for me and D um, talking to me now about how can partners within even Accenture, w w what's the business model, um, side on your side that you're enabling this. Can you just share your thoughts on that? >>Yeah, yeah. And so it's, it's interesting. I think I'm going to build it and then build a little bit on some of the things that Andy really talked about there, right? And that we, if you think of that from the partnership, we are absolutely helping our customers with kind of that it modernization piece. And we're investing a lot and there's hard work that needs to get done there. And we're investing a lot as a partnership around the tools, the assets and the methodology. So in AWS and Accenture show up together as AEG, we are executing office single blueprint with a single set of assets, so we can move fast. So we're going to continue to do that with all the hybrid announcements from this past week, those get baked into that, that migration modernization theme, but the other really important piece here as we go up the stack, Andy mentioned it, right? >>The data piece, like so much of what we're talking about here is around data and insights. Right? I did a cube interview last week with, uh, Carl hick. Um, who's the CIO from Takeda. And if you hear Christophe Weber from Takeda talk, he talks about Takeda being a data company, data and insights company. So how do we, as a partnership, again, build the capabilities and the platforms like with Accenture's applied insights platform so that we can bootstrap and really accelerate our client's journey. And then finally, on the innovation on the business front, and Andy was touching on some of these, we are investing in industry solutions and accelerators, right? Because we know that at the end of the day, a lot of these are very similar. We're talking about ingesting data, using machine learning to provide insights and then taking action. So for instance, the cognitive insurance platform that we're working together on with Accenture, if they give out property and casualty claims and think about how do we enable touchless claims using machine learning and computer vision that can assess based on an image damage, and then be able to triage that and process it accordingly, right? >>Using all the latest machine learning capabilities from AWS with that deep, um, AI machine learning data science capability from Accenture, who knows all those algorithms that need to get built and build that library by doing that, we can really help these insurance companies accelerate their transformation around how they think about claims and how they can speed those claims on behalf of their policy holder. So that's an example of a, kind of like a bottom to top, uh, view of what we're doing in the partnership to address these new needs. >>That's awesome. Andy, I want to get back to your point about culture. You mentioned it twice now. Um, talent is a big part of the game here. Andy Jassy referenced Lambda. The next generation developers were using Lambda. He talked about CIO stories around, they didn't move fast enough. They lost three years. A new person came in and made it go faster. This is a new, this is a time for a certain kind of, um, uh, professional and individual, um, to, to be part of, um, this next generation. What's the talent strategy you guys have to attract and attain the best and retain the people. How do you do it? >>Um, you know, it's, it's, um, it's an interesting one. It's, it's, it's oftentimes a, it's, it's a significant point and often overlooked. Um, you know, people, people really matter and getting the right people, um, in not just in AWS or it, but then in our customers is super important. We often find that much of our discussions with, with our clients is centered around that. And it's really a key ingredient. As you touched on, you need people who are willing to embrace change, but also people who are willing to create new, um, to invent new, to reinvent, um, and to, to keep it very simple. Um, w we're we're we're seeing increasingly that you need people that have a sort of deep learning and a deep, uh, or deep desire to keep learning and to be very curious as, as they go along. Most of all, though, I find that, um, having people who are not willing or not afraid to fail is critical, absolutely critical. Um, and I think that that's, that's, uh, a necessary ingredient that we're seeing, um, our clients needing more off, um, because if you can't start and, and, and you can't iterate, um, you know, for fear of failure, you're in trouble. And, and I think Andy touched on that you, you know, where that CIO, that you referred to last three years, um, and so you really do need people who are willing to start not afraid to start, uh, and, uh, and not afraid to lead >>Was a gut check there. I just say, you guys have a great team over there. Everyone at the center I've interviewed strong, talented, and not afraid to lean in and, and into the trends. Um, I got to ask on that front cloud first was something that was a big strategic focus for Accenture. How does that fit into your business group? That's an Amazon focused, obviously they're cloud, and now hybrid everywhere, as I say, um, how does that all work it out? >>We're super excited about our cloud first initiative, and I think it fits it, um, really, uh, perfectly it's it's, it's what we needed. It's, it's, it's a, it's another accelerant. Um, if you think of count first, what we're doing is we're, we're putting together, um, uh, you know, capability set that will help enable him to and transformations as Brian touched on, you know, help companies move from just, you know, migrating to, to, to modernizing, to driving insights, to bringing in change, um, and, and, and helping on that, on that talent side. So that's sort of component number one is how does Accenture bring the best, uh, end to end transformation capabilities to our clients? Number two is perhaps, you know, how do we, um, uh, bring together pre-assembled as Brian touched on pre-assembled industry offerings to help as an accelerant, uh, for our, for our customers three years, as we touched on earlier is, is that sort of partnership with the ecosystem. >>We're going to see an increasing number of SAS providers in an estate, in the enterprise of snakes out there. And so, you know, panto wild cloud first, and our ABG strategy is to increase our touch points in our integrations and our solutions and our offerings with the ecosystem partners out there, the ISP partners out, then the SAS providers out there. And then number four is really about, you know, how do we, um, extend the definition of the cloud? I think oftentimes people thought of the cloud just as sort of on-prem and prem. Um, but, but as Andy touched on earlier this week, you know, you've, you've got this concept of hybrid cloud and that in itself, um, uh, is, is, is, you know, being redefined as well. You know, when you've got the intelligent edge and you've got various forms of the edge. Um, so that's the fourth part of, of, uh, of occupied for strategy. And for us was super excited because all of that is highly relevant for ABG, as we look to build those capabilities as industry solutions and others, and as when to enable our customers, but also how we, you know, as we, as we look to extend how we go to market, I'll join tele PS, uh, in, uh, in our respective skews and products. >>Well, what's clear now is that people now realize that if you contain that complexity, the upside is massive. And that's great opportunity for you guys. We got to get to the final question for you guys to weigh in on, as we wrap up next five years, Brian, Andy weigh in, how do you see that playing out? What do you see this exciting, um, for the partnership and the cloud first cloud, everywhere cloud opportunities share some perspective. >>Yeah, I, I think, you know, just kinda building on that cloud first, right? What cloud first, and we were super excited when cloud first was announced and you know, what it signals to the market and what we're seeing in our customers, which has cloud really permeates everything that we're doing now. Um, and so all aspects of the business will get infused with cloud in some ways, you know, it, it touches on, on all pieces. And I think what we're going to see is just a continued acceleration and getting much more efficient about pulling together the disparate, what had been disparate pieces of these transformations, and then using automation using machine learning to go faster. Right? And so, as we started thinking about the stack, right, well, we're going to get, I know we are, as a partnership is we're already investing there and getting better and more efficient every day as the migration pieces and the moving the assets to the cloud are just going to continue to get more automated, more efficient. And those will become the economic engines that allow us to fund the differentiated, innovative activities up the stack. So I'm excited to see us kind of invest to make those, those, um, those bets accelerated for customers so that we can free up capital and resources to invest where it's going to drive the most outcome for their end customers. And I think that's going to be a big focus and that's going to have the industry, um, you know, focus. It's going to be making sure that we can >>Consume the latest and greatest of AWS as capabilities and, you know, in the areas of machine learning and analytics, but then Andy's also touched on it bringing in ecosystem partners, right? I mean, one of the most exciting wins we had this year, and this year of COVID is looking at the universe, looking at Massachusetts, the COVID track and trace solution that we put in place is a partnership between Accenture, AWS, and Salesforce, right? So again, bringing together three really leading partners who can deliver value for our customers. I think we're going to see a lot more of that as customers look to partnerships like this, to help them figure out how to bring together the best of the ecosystem to drive solutions. So I think we're going to see more of that as well. >>All right, Andy final word, your take >>Thinks of innovation is, is picking up, um, dismiss things are just going faster and faster. I'm just super excited and looking forward to the next five years as, as you know, the technology invention, um, comes out and continues to sort of set new standards from AWS. Um, and as we, as Accenture wringing, our industry capabilities, we marry the two. We, we go and help our customers super exciting time. >>Well, congratulations on the partnership. I want to say thank you to you guys, because I've reported a few times some stories around real successes around this COVID pandemic that you guys worked together on with Amazon that really changed people's lives. Uh, so congratulations on that too as well. I want to call that out. Thanks for coming >>Up. Thank you. Thanks for coming on. >>Okay. This is the cubes coverage, essentially. AWS partnership, part of a century executive summit at Atrius reinvent 2020 I'm John for your host. Thanks. >>You're watching from around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Hello, and welcome back to the cubes coverage of AWS reinvent 2020. This is special programming for the century executive summit, where all the thought leaders going to extract the signal from the nose to share with you their perspective of this year's reinvent conference, as it respects the customers' digital transformation. Brian Bohan is the director and head of a center. ADA was business group at Amazon web services. Brian, great to see you. And Chris Wegman is the, uh, center, uh, Amazon business group technology lead at Accenture. Um, guys, this is about technology vision, this, this conversation, um, Chris, I want to start with you because you, Andy Jackson's keynote, you heard about the strategy of digital transformation, how you gotta lean into it. You gotta have the guts to go for it, and you got to decompose. He went everywhere. So what, what did you hear? What was striking about the keynote? Because he covered a lot of topics. Yeah. You know, it >>Was Epic, uh, as always for Mandy, a lot of topics, a lot to cover in the three hours. Uh, there was a couple of things that stood out for me, first of all, hybrid, uh, the concept, the new concept of hybrid and how Andy talked about it, you know, uh, bringing the compute and the power to all parts of the enterprise, uh, whether it be at the edge or are in the big public cloud, uh, whether it be in an outpost or wherever it might be right with containerization now, uh, you know, being able to do, uh, Amazon containerization in my data center and that that's, that's awesome. I think that's gonna make a big difference, all that being underneath the Amazon, uh, console and billing and things like that, which is great. Uh, I'll also say the, the chips, right. And I know compute is always something that, you know, we always kind of take for granted, but I think again, this year, uh, Amazon and Andy really focused on what they're doing with the chips and PR and compute, and the compute is still at the heart of everything in cloud. And that continued advancement is, is making an impact and will make a continue to make a big impact. >>Yeah, I would agree. I think one of the things that really, I mean, the container thing was, I think really kind of a nuanced point when you got Deepak sing on the opening day with Andy Jassy and he's, he runs a container group over there, you know, small little team he's on the front and front stage. That really is the key to the hybrid. And I think this showcases this new layer and taking advantage of the graviton two chips that, which I thought was huge. Brian, this is really a key part of the platform change, not change, but the continuation of AWS higher level servers building blocks that provide more capabilities, heavy lifting as they say, but the new services that are coming on top really speaks to hybrid and speaks to the edge. >>It does. Yeah. And it, it, you know, I think like Andy talks about, and we talk about, I, you know, we really want to provide choice to our customers, uh, first and foremost, and you can see that and they re uh, services. We have, we can see it in the, the hybrid options that Chris talked about, being able to run your containers through ECS or EKS anywhere I just get to the customer's choice. And one of the things that I'm excited about as you talk about going up the stack and on the edge are things will certainly outpost. Um, right. So now I'll post those launched last year, but then with the new form factors, uh, and then you look at services like Panorama, right? Being able to take computer vision and embed machine learning and computer vision, and do that as a managed capability at the edge, um, for customers. >>And so we see this across a number of industries. And so what we're really thinking about is customers no longer have to make trade-offs and have to think about those, those choices that they can really deploy, uh, natively in the cloud. And then they can take those capabilities, train those models, and then deploy them where they need to, whether that's on premises or at the edge, you know, whether it be in a factory or retail environment. When we start, I think we're really well positioned when, um, you know, hopefully next year we started seeing the travel industry rebound, um, and the, the need, you know, more than ever really to, uh, to kind of rethink about how we kind of monitor and make those environments safe. Having this kind of capability at the edge is really going to help our customers as, as we come out of this year and hopefully rebound next year. >>Yeah. Chris, I want to go back to you for a second. It's hard to hard to pick your favorite innovation from the keynote, because, you know, just reminded me that Brian just reminded me of some things I forgot happened. It was like a buffet of innovation. Some keynotes have one or two, it was like 20, you got the industrial piece that was huge. Computer vision machine learning. That's just a game changer. The connect thing came out of nowhere, in my opinion, I mean, it's a call center technology. This is boring as hell. What are you gonna do with that? It turns out it's a game changer. It's not about the calls with the contact and that's discern intermediating, um, in the stack as well. So again, a feature that looks old is actually new and relevant. What's your, what was your favorite, um, innovation? >>Uh, it it's, it's, it's hard to say. I will say my personal favorite was the, the maca last. I, I just, I think that is a phenomenal, um, uh, just addition, right? And the fact that AWS is, has worked with Apple to integrate the Nitra chip into, into, uh, you know, the iMac and offer that out. Um, you know, a lot of people are doing development, uh, on for ILS and that stuff. And that there's just gonna be a huge benefit, uh, for the development teams. But, you know, I will say, I'll come back to connect you. You mentioned it. Um, you know, but you're right. It was a, it's a boring area, but it's an area that we've seen huge success with since, since connect was launched and the additional features and the Amazon continues to bring, you know, um, obviously with, with the pandemic and now that, you know, customer engagement through the phone, uh, through omni-channel has just been critical for companies, right. >>And to be able to have those agents at home, working from home versus being in the office, it was a huge, huge advantage for, for several customers that are using connect. You know, we, we did some great stuff with some different customers, but the continue technology, like you said, the, you know, the call translation and during a call to be able to pop up those key words and have a, have a supervisor, listen is awesome. And a lot of that was some of that was already being done, but we were stitching multiple services together. Now that's right out of the box. Um, and that Google's location is only going to make that go faster and make us to be able to innovate faster for that piece of the business. >>It's interesting, you know, not to get all nerdy and, and business school life, but you've got systems of records, systems of engagement. If you look at the call center and the connect thing, what got my attention was not only the model of disintermediating, that part of the engagement in the stack, but what actually cloud does to something that's a feature or something that could be an element, like say, call center, you old days of, you know, calling an 800 number, getting some support you got in chip, you have machine learning, you actually have stuff in the, in the stack that actually makes that different now. So you w you know, the thing that impressed me was Andy was saying, you could have machine learning, detect pauses, voice inflections. So now you have technology making that more relevant and better and different. So a lot going on, this is just one example of many things that are happening from a disruption innovation standpoint. W what do you guys, what do you guys think about that? And is that like getting it right? Can you share it? >>I think, I think, I think you are right. And I think what's implied there and what you're saying, and even in the, you know, the macro S example is the ability if we're talking about features, right. Which by themselves, you're saying, Oh, wow, what's, what's so unique about that, but because it's on AWS and now, because whether you're a developer working on, you know, w with Mac iOS and you have access to the 175 plus services, that you can then weave into your new applications, talk about the connect scenario. Now we're embedding that kind of inference and machine learning to do what you say, but then your data Lake is also most likely running in AWS, right? And then the other channels, whether they be mobile channels or web channels, or in store physical channels, that data can be captured in that same machine learning could be applied there to get that full picture across the spectrum. Right? So that's the, that's the power of bringing together on AWS to access to all those different capabilities of services, and then also the where the data is, and pulling all that together, that for that end to end view, okay, >>You guys give some examples of work you've done together. I know this stuff we've reported on. Um, in the last session we talked about some of the connect stuff, but that kind of encapsulates where this, where this is all going with respect to the tech. >>Yeah. I think one of the, you know, it was called out on Doug's partner summit was, you know, is there a, uh, an SAP data Lake accelerator, right? Almost every enterprise has SAP, right. And SAP getting data out of SAP has always been a challenge, right. Um, whether it be through, you know, data warehouses and AWS, sorry, SAP BW, you know, what we've focused on is, is getting that data when you're on have SAP on AWS getting that data into the data Lake, right. And getting it into, into a model that you can pull the value out of the customers can pull the value out, use those AI models. Um, so that was one thing we worked on in the last 12 months, super excited about seeing great success with customers. Um, you know, a lot of customers had ideas. They want to do this. They had different models. What we've done is, is made it very, uh, simplified, uh, framework that allows customers to do it very quickly, get the data out there and start getting value out of it and iterating on that data. Um, we saw customers are spending way too much time trying to stitch it all together and trying to get it to work technically. Uh, and we've now cut all that out and they can immediately start getting down to, to the data and taking advantage of those, those different, um, services are out there by AWS. >>Brian, you want to weigh in as things you see as relevant, um, builds that you guys done together that kind of tease out the future and connect the dots to what's coming. >>Uh, I, you know, I'm going to use a customer example. Uh, we worked with, um, and it just came out with, with Unilever around their blue air connected, smart air purifier. And what I think is interesting about that, I think it touches on some of the themes we're talking about, as well as some of the themes we talked about in the last session, which is we started that program before the pandemic. Um, and, but, you know, Unilever recognized that they needed to differentiate their product in the marketplace, move to more of a services oriented business, which we're seeing as a trend. We, uh, we enabled this capability. So now it's a smart air purifier that can be remote manage. And now in the pandemic head, they are in a really good position, obviously with a very relevant product and capability, um, to be used. And so that data then, as we were talking about is going to reside on the cloud. And so the learning that can now happen about usage and about, you know, filter changes, et cetera, can find its way back into future iterations of that valve, that product. And I think that's, that's keeping with, you know, uh, Chris was talking about where we might be systems of record, like in SAP, how do we bring those in and then start learning from that data so that we can get better on our future iterations? >>Hey, Chris, on the last segment we did on the business mission, um, session, Andy Taylor from your team, uh, talked about partnerships within a century and working with other folks. I want to take that now on the technical side, because one of the things that we heard from, um, Doug's, um, keynote and that during the partner day was integrations and data were two big themes. When you're in the cloud, technically the integrations are different. You're going to get unique things in the public cloud that you're just not going to get on premise access to other cloud native technologies and companies. How has that, how do you see the partnering of Accenture with people within your ecosystem and how the data and the integration play together? What's your vision? >>Yeah, I think there's two parts of it. You know, one there's from a commercial standpoint, right? So marketplace, you know, you, you heard Dave talk about that in the, in the partner summit, right? That marketplace is now bringing together this ecosystem, uh, in a very easy way to consume by the customers, uh, and by the users and bringing multiple partners together. And we're working with our ecosystem to put more products out in the marketplace that are integrated together, uh, already. Um, you know, I think one from a technical perspective though, you know, if you look at Salesforce, you know, we talked a little earlier about connect another good example, technically underneath the covers, how we've integrated connect and Salesforce, some of it being prebuilt by AWS and Salesforce, other things that we've added on top of it, um, I think are good examples. And I think as these ecosystems, these IFCs put their products out there and start exposing more and more API APIs, uh, on the Amazon platform, make opening it up, having those, those prebuilt network connections there between, you know, the different VPCs and the different areas within, within a customer's network. >>Um, and having them, having that all opened up and connected and having all that networking done underneath the covers. You know, it's one thing to call the API APIs. It's one thing to have access to those. And that's been a big focus of a lot of, you know, ISBNs and customers to build those API APIs and expose them, but having that network infrastructure and being able to stay within the cloud within AWS to make those connections, the past that data, we always talk about scale, right? It's one thing if I just need to pass like a, you know, a simple user ID back and forth, right? That's, that's fine. We're not talking massive data sets, whether it be seismic data or whatever it be passing those of those large, those large data sets between customers across the Amazon network is going to, is going to open up the world. >>Yeah. I see huge possibilities there and love to keep on this story. I think it's going to be important and something to keep track of. I'm sure you guys will be on top of it. You know, one of the things I want to, um, dig into with you guys now is Andy had kind of this philosophy philosophical thing in his keynote, talk about societal change and how tough the pandemic is. Everything's on full display. Um, and this kind of brings out kind of like where we are and the truth. You look at the truth, it's a virtual event. I mean, it's a website and you got some sessions out there with doing remote best weekend. Um, and you've got software and you've got technology and, you know, the concept of a mechanism it's software, it does something, it does a purpose. Essentially. You guys have a concept called living systems where growth strategy powered by technology. How do you take the concept of a, of a living organism or a system and replace the mechanism, staleness of computing and software. And this is kind of an interesting, because we're on the cusp of a, of a major inflection point post COVID. I get the digital transformation being slow that's yes, that's happening. There's other things going on in society. What do you guys think about this living systems concept? >>Yeah, so I, you know, I'll start, but, you know, I think the living system concept, um, you know, it started out very much thinking about how do you rapidly change the system, right? And, and because of cloud, because of, of dev ops, because of, you know, all these software technologies and processes that we've created, you know, that's where it started it, making it much easier to make it a much faster being able to change rapidly, but you're right. I think as you now bring in more technologies, the AI technology self-healing technologies, again, you're hurting Indian in his keynote, talk about, you know, the, the systems and services they're building to the tech problems and, and, and, and give, uh, resolve those problems. Right. Obviously automation is a big part of that living systems, you know, being able to bring that all together and to be able to react in real time to either what a customer, you know, asks, um, you know, either through the AI models that have been generated and turning those AI models around much faster, um, and being able to get all the information that came came in in the last 20 minutes, right. >>You know, society's moving fast and changing fast. And, you know, even in one part of the world, if, um, something, you know, in 10 minutes can change and being able to have systems to react to that, learn from that and be able to pass that on to the next country, especially in this world with COVID and, you know, things changing very quickly with quickly and, and, and, um, diagnosis and, and, um, medical response, all that so quickly to be able to react to that and have systems pass that information learned from that information is going to be critical. >>That's awesome. Brian, one of the things that comes up every year is, Oh, the cloud scalable this year. I think, you know, we've, we've talked on the cube before, uh, years ago, certainly with the censure and Amazon, I think it was like three or four years ago. Yeah. The clouds horizontally scalable, but vertically specialized at the application layer. But if you look at the data Lake stuff that you guys have been doing, where you have machine learning, the data's horizontally scalable, and then you got the specialization in the app changes that changes the whole vertical thing. Like you don't need to have a whole vertical solution or do you, so how has this year's um, cloud news impacted vertical industries because it used to be, Oh, the oil and gas financial services. They've got a team for that. We've got a stack for that. Not anymore. Is it going away? What's changing. Wow. >>I, you know, I think it's a really good question. And I don't think, I think what we're saying, and I was just on a call this morning talking about banking and capital markets. And I do think the, you know, the, the challenges are still pretty sector specific. Um, but what we do see is the, the kind of commonality, when we start looking at the, and we talked about it as the industry solutions that we're building as a partnership, most of them follow the pattern of ingesting data, analyzing that data, and then being able to, uh, provide insights and an actions. Right. So if you think about creating that yeah. That kind of common chassis of that ingest the data Lake and then the machine learning, can you talk about, you know, the announces around SageMaker and being able to manage these models, what changes then really are the very specific industries algorithms that you're, you're, you're writing right within that framework. And so we're doing a lot in connect is a good example of this too, where you look at it. Yeah. Customer service is a horizontal capability that we're building out, but then when you stop it into insurance or retail banking or utilities, there are nuances then that we then extend and build so that we meet the unique needs of those, those industries. And that's usually around those, those models. >>Yeah. And I think this year was the first reinvented. I saw real products coming out that actually solve that problem. And that was their last year SageMaker was kinda moving up the stack, but now you have apps embedding machine learning directly in, and users don't even know it's in there. I mean, Christmas is kind of where it's going. Right. I mean, >>Yeah. Announcements. Right. How many, how many announcements where machine learning is just embedded in? I mean, so, you know, code guru, uh, dev ops guru Panorama, we talked about, it's just, it's just there. >>Yeah. I mean, having that knowledge about the linguistics and the metadata, knowing the, the business logic, those are important specific use cases for the vertical and you can get to it faster. Right. Chris, how is this changing on the tech side, your perspective? Yeah. >>You know, I keep coming back to, you know, AWS and cloud makes it easier, right? None of this stuff, you know, all of this stuff can be done, uh, and has some of it has been, but you know, what Amazon continues to do is make it easier to consume by the developer, by the, by the customer and to actually embedded into applications much easier than it would be if I had to go set up the stack and build it all on that and, and, and, uh, embed it. Right. So it's, shortcutting that process. And again, as these products continue to mature, right. And some of the stuff is embedded, um, it makes that process so much faster. Uh, it makes it reduces the amount of work required by the developers, uh, the engineers to get there. So I I'm expecting, you're going to see more of this. >>Right. I think you're going to see more and more of these multi connected services by AWS that has a lot of the AIML, um, pre-configured data lakes, all that kind of stuff embedded in those services. So you don't have to do it yourself and continue to go up the stack. And we was talking about, Amazon's built for builders, right. But, you know, builders, you know, um, have been super specialized in, or we're becoming, you know, as engineers, we're being asked to be bigger and bigger and to be, you know, uh, be able to do more stuff. And I think, you know, these kinds of integrated services are gonna help us do that >>And certainly needed more. Now, when you have hybrid edge that are going to be operating with microservices on a cloud model, and with all those advantages that are going to come around the corner for being in the cloud, I mean, there's going to be, I think there's going to be a whole clarity around benefits in the cloud with all these capabilities and benefits cloud guru. Thanks my favorite this year, because it just points to why that could happen. I mean, that happens because of the cloud data. If you're on premise, you may not have a little cloud guru, you got to got to get more data. So, but they're all different edge certainly will come into your vision on the edge. Chris, how do you see that evolving for customers? Because that could be complex new stuff. How is it going to get easier? >>Yeah. It's super complex now, right? I mean, you gotta design for, you know, all the different, uh, edge 5g, uh, protocols are out there and, and, and solutions. Right. You know, Amazon's simplifying that again, to come back to simplification. Right. I can, I can build an app that, that works on any 5g network that's been integrated with AWS. Right. I don't have to set up all the different layers to get back to my cloud or back to my, my bigger data side. And I was kind of choking. I don't even know where to call the cloud anymore, big cloud, which is a central and I go down and then I've got a cloud at the edge. Right. So what do I call that? >>Exactly. So, you know, again, I think it is this next generation of technology with the edge comes, right. And we put more and more data at the edge. We're asking for more and more compute at the edge, right? Whether it be industrial or, you know, for personal use or consumer use, um, you know, that processing is gonna get more and more intense, uh, to be able to manage and under a single console, under a single platform and be able to move the code that I develop across that entire platform, whether I have to go all the way down to the, you know, to the very edge, uh, at the, at the 5g level, right? Or all the way into the bigger cloud and how that process, isn't there be able to do that. Seamlessly is going to be allow the speed of development that's needed. >>Well, you guys done a great job and no better time to be a techie or interested in technology or computer science or social science for that matter. This is a really perfect storm, a lot of problems to solve a lot of things, a lot of change happening, positive change opportunities, a lot of great stuff. Uh, final question guys, five years working together now on this partnership with AWS and Accenture, um, congratulations, you guys are in pole position for the next wave coming. Um, what's exciting. You guys, Chris, what's on your mind, Brian. What's, what's getting you guys pumped up >>Again. I come back to G you know, Andy mentioned it in his keynote, right? We're seeing customers move now, right. We're seeing, you know, five years ago we knew customers were going to get a new, this. We built a partnership to enable these enterprise customers to make that, that journey. Right. But now, you know, even more, we're seeing them move at such great speed. Right. Which is super excites me. Right. Because I can see, you know, being in this for a long time, now I can see the value on the other end. And I really, we've been wanting to push our customers as fast as they can through the journey. And now they're moving out of, they're getting, they're getting the religion, they're getting there. They see, they need to do it to change your business. So that's what excites me is just the excites me. >>It's just the speed at which we're, we're in a single movement. Yeah, yeah. I'd agree with, yeah, I'd agree with that. I mean, so, you know, obviously getting, getting customers to the cloud is super important work, and we're obviously doing that and helping accelerate that, it's it, it's what we've been talking about when we're there, all the possibilities that become available right. Through the common data capabilities, the access to the 175 some-odd AWS services. And I also think, and this is, this is kind of permeated through this week at re-invent is the opportunity, especially in those industries that do have an industrial aspect, a manufacturing aspect, or a really strong physical aspect of bringing together it and operational technology and the business with all these capabilities, then I think edge and pushing machine learning down to the edge and analytics at the edge is really going to help us do that. And so I'm super excited by all that possibility is I feel like we're just scratching the surface there, >>Great time to be building out. And you know, this is the time for re reconstruction. Re-invention big themes. So many storylines in the keynote, in the events. It's going to keep us busy here. It's looking at angle in the cube for the next year. Gentlemen, thank you for coming out. I really appreciate it. Thanks. Thank you. All right. Great conversation. You're getting technical. We could've go on another 30 minutes. Lot to talk about a lot of storylines here at AWS. Reinvent 2020 at the Centure executive summit. I'm John furrier. Thanks for watching.

Published Date : Dec 10 2020

SUMMARY :

It's the cube with digital coverage Welcome to cube three 60 fives coverage of the Accenture executive summit. Thanks for having me here. impact of the COVID-19 pandemic has been, what are you hearing from clients? you know, various facets, you know, um, first and foremost, to this reasonably okay, and are, you know, launching to many companies, even the ones who have adapted reasonably well, uh, all the changes the pandemic has brought to them. in the cloud that we are going to see. Can you tell us a little bit more about what this strategy entails? all the systems under which they attract need to be liberated so that you could drive now, the center of gravity is elevated to it becoming a C-suite agenda on everybody's Talk a little bit about how this has changed, the way you support your clients and how That is their employees, uh, because you do, across every department, I'm the agent of this change is going to be the employee's weapon, So how are you helping your clients, And that is again, the power of cloud. And the power of cloud is to get all of these capabilities from outside that employee, the employee will be more engaged in his or her job and therefore And there's this, um, you know, no more true than how So at Accenture, you have long, long, deep Stan, sorry, And through that investment, we've also made several acquisitions that you would have seen in And, uh, they're seeing you actually made a statement that five years from now, Yeah, the future to me, and this is, uh, uh, a fundamental belief that we are entering a new And the evolution that is going to happen where, you know, the human grace of mankind, I genuinely believe that cloud first is going to be in the forefront of that change It's the cube with digital coverage I want to start by asking you what it is that we mean when we say green cloud, So the magnitude of the problem that is out there and how do we pursue a green you know, when companies begin their cloud journey and then they confront, uh, And, uh, you know, We know that in the COVID era, shifting to the cloud has really become a business imperative. uh, you know, from a few manufacturers hand sanitizers and to hand sanitizers, role there, uh, you know, from, in terms of our clients, you know, there are multiple steps And in the third year and another 3 million analytics costs that are saved through right-sizing So that's that instead of it, we practice what we preach, and that is something that we take it to heart. We know that conquering this pandemic is going to take a coordinated And it's about a group of global stakeholders cooperating to simultaneously manage the uh, in, in UK to build, uh, uh, you know, uh, Microsoft teams in What do you see as the different, the financial security or agility benefits to cloud. And obviously the ecosystem partnership that we have that We, what, what do you think the next 12 to 24 months? And we all along with Accenture clients will win. Thank you so much. It's the cube with digital coverage of AWS reinvent executive And what happens when you bring together the scientific And Brian bowhead, global director, and head of the Accenture AWS business group at Amazon Um, and I think that, you know, there's a, there's a need ultimately to, And, you know, we were commenting on this earlier, but there's, you know, it's been highlighted by a number of factors. And I think that, you know, that's going to help us make faster, better decisions. Um, and so I think with that, you know, there's a few different, How do we re-imagine that, you know, how do ideas go from getting tested So Arjun, I want to bring you into this conversation a little bit. It was, uh, something that, you know, we had all to do differently. And maybe the third thing I would say is this one team And what I think ultimately has enabled us to do is it allowed us to move And I think if you really think about what he's talking about, Because the old ways of thinking where you've got application people and infrastructure, How will their experience of work change and how are you helping re-imagine and And it's something that, you know, I think we all have to think a lot about, I mean, And then secondly, I think that, you know, we're, we're very clear that there's a number of areas where there are very Uh, and so I think that that's, you know, one, one element that, uh, can be considered. or how do we collaborate across the number of boundaries, you know, and I think, uh, Arjun spoke eloquently the customer obsession and this idea of innovating much more quickly. and Carl mentioned some of the things that, you know, partner like AWS can bring to the table is we talk a lot about builders, And it's not just the technical people or the it people who are you know, some decisions, what we call it at Amazon or two-way doors, meaning you can go through that door, And so we chose, you know, uh, with our focus on innovation Jen, I want you to close this out here. sort of been great for me to see is that when people think about cloud, you know, Well, thank you so much. Yeah, it's been fun. And thank you for tuning into the cube. It's the cube with digital coverage Matthew, thank you for joining us. and also what were some of the challenges that you were grappling with prior to this initiative? Um, so the reason we sort of embarked So what was the main motivation for, for doing, um, you know, certainly as a, as an it leader and some of my operational colleagues, What is the art of the possible, can you tell us a little bit about why you the public sector that, you know, there are many rules and regulations quite rightly as you would expect Matthew, I want to bring you into the conversation a little bit here. to bring in a number of the different teams that we have say, cloud teams, security teams, um, I mean, so much of this is about embracing comprehensive change to experiment and innovate and Um, rather than just, you know, trying to pick It's not always a one size fits all. Obviously, you know, today what we believe is critical is making sure that we're creating something that met the forces needs, So to give you a little bit of, of context, when we, um, started And the pilot was so successful. And I think just parallel to that is the quality of our, because we had a lot of data, Seen that kind of return on investment, because what you were just describing with all the steps that we needed Um, but all the, you know, the minutes here and that certainly add up Have you seen any changes Um, but you can see the step change that is making in each aspect to the organization, And this is a question for both of you because Matthew, as you said, change is difficult and there is always a certain You know, we had lots of workshops and seminars where we all talk about, you know, see, you know, to see the stat change, you know, and, and if we, if we have any issues now it's literally, when you are trying to get everyone on board for this kind of thing? The solution itself is, um, you know, extremely large and, um, I want to hear, where do you go from here? But so, because it's apparently not that simple, but, um, you know, And I see now that we have good at embedded in operational policing for me, this is the start of our journey, in particular has brought it together because you know, COVID has been the accelerant So a number of years back, we, we looked at kind of our infrastructure in our landscape trying to figure uh, you know, start to deliver bit by bit incremental progress, uh, to get to the, of the challenges like we've had this year, um, it makes all of the hard work worthwhile because you can actually I want to just real quick, a redirect to you and say, you know, if all the people said, Oh yeah, And, um, you know, Australia, we had to live through Bush fires You know, we're going to get the city, you get a minute on specifically, but from your perspective, uh, Douglas, to hours and days, and, and truly allowed us to, we had to, you know, VJ things, And what specifically did you guys do at Accenture and how did it all come one of the key things that, uh, you know, we learned along this journey was that, uh, uh, and, and, and, you know, that would really work in our collaborative and agile environment How did you address your approach to the cloud and what was your experience? And then building upon it, and then, you know, partnering with Accenture allows because the kind of, uh, you know, digital transformation, cloud transformation, learnings, um, that might different from the expectation we all been there, Hey, you know, It's, it's getting that last bit over the line and making sure that you haven't been invested in the future hundred percent of the time, they will say yes until you start to lay out to them, okay, You know, the old expression, if it moves automated, you know, it's kind of a joke on government, how they want to tax everything, Um, you know, that's all stood up on AWS and is a significant portion of And I think our next big step is going to be obviously, So, um, you know, having a lot of that legwork done for us and an AWS gives you that, And obviously our, our CEO globally is just spending, you know, announcement about a huge investment that we're making in cloud. a lot of people kind of going through the same process, knowing what you guys know now, And we had all of our people working remotely, um, within, uh, you know, effectively one business day. So, um, you know, one example where you're able to scale and, uh, And this is really about you guys when they're actually set up for growth, um, and actually allows, you know, a line to achievements I really appreciate you coming. to figure out how we unlock that value, um, you know, drive our costs down efficiency, to our customer base, um, that, uh, that we continue to, you know, sell our products to and work with There's got to say like e-learning squares, right, for me around, you know, It is tough, but, uh, uh, you know, you got to get started on it. It's the cube with digital coverage of Thank you so much for coming on the show, Johan you're welcome. their proper date, not just a day, but also the date you really needed that we did probably talked about So storing the data we should do as efficiently possibly can. Or if you started working with lots of large companies, you need to have some legal framework around some framework around What were some of the things you were trying to achieve with the OSU? So the first thing we did is really breaking the link between the application, And then you can export the data like small companies, last company, standpoint in terms of what you were trying to achieve with this? a lot of goods when we started rolling out and put in production, the old you are three and bug because we are So one of the other things that we talk a lot about here on the cube is sustainability. I was, you know, also do an alternative I don't mean to move away from that, but with sustainability, in addition to the benefits purchases for 51 found that AWS performs the same task with an So that customers benefit from the only commercial cloud that's hat hits service offerings and the whole industry, if you look it over, look at our companies are all moving in. objective is really in the next five years, you will become the key backbone It's the cube with digital coverage And obviously, you know, we have in the cloud, uh, you know, with and exhibition of digital transformation, you know, we are seeing the transformation or I want to go to you now trust and tell us a little bit about how mine nav works and how it helps One of the big focus now is to accelerate. having to collaborate, uh, not in real life. They realize that now the cloud is what is going to become important for them to differentiate. Keisha, I want to talk with you now about my navs multiple capabilities, And one of the things that we did a lot of research we found out is that there's an ability to influence So Tristan, tell us a little bit about how this capability helps clients make greener on renewable energy, some incredibly creative constructs on the how to do that. Would you say that it's catching on in the United States? And we have seen case studies and all Keisha, I want to bring you back into the conversation. And with the digital transformation requiring cloud at scale, you know, we're seeing that in And the second is fundamental acceleration, dependent make, as we talked about, has accelerated the need This enabled the client to get started, knowing that there is a business Have you found that at all? What man I gives the ability is to navigate through those, to start quickly. Kishor I want to give you the final word here. and we are, you know, achieving client's static business objectives while Any platform that can take some of the guesswork out of the future. It's the cube with digital coverage of And Andy T a B G the M is essentially Amazon business group lead managing the different pieces so I can move more quickly, uh, you know, And then, you know, that broadens our capability from just a technical discussion to It's not like it's new to you guys. the cloud, um, you know, that leaves 96 percentile now for him. And so I think, I think, you know, when you, when you think of companies out there faced with these challenges, have you seen for the folks who have done that? And at the end you can buy a lawn. it along with the talent and change pieces, which are also so important as you make What's the success factors that you see, a key success factor for these end to end transformations is not just the leaders, but you And so that takes me to perhaps the second point, which is the culture, um, it's important, Because I think, you know, as you work backwards from the customers, to the, you know, speed to insights, how'd you get them decomposing, uh, their application set and the top line is how do you harden that and protect that with, um, You know, the business model side, obviously the enablement is what Amazon has. And that we, if you think of that from the partnership, And if you hear Christophe Weber from Takeda talk, that need to get built and build that library by doing that, we can really help these insurance companies strategy you guys have to attract and attain the best and retain the people. Um, you know, it's, it's, um, it's an interesting one. I just say, you guys have a great team over there. um, uh, you know, capability set that will help enable him to and transformations as Brian And then number four is really about, you know, how do we, um, extend We got to get to the final question for you guys to weigh in on, and that's going to have the industry, um, you know, focus. Consume the latest and greatest of AWS as capabilities and, you know, in the areas of machine learning and analytics, as you know, the technology invention, um, comes out and continues to sort of I want to say thank you to you guys, because I've reported a few times some stories Thanks for coming on. at Atrius reinvent 2020 I'm John for your host. It's the cube with digital coverage of the century executive summit, where all the thought leaders going to extract the signal from the nose to share with you their perspective And I know compute is always something that, you know, over there, you know, small little team he's on the front and front stage. And one of the things that I'm excited about as you talk about going up the stack and on the edge are things will um, and the, the need, you know, more than ever really to, uh, to kind of rethink about because, you know, just reminded me that Brian just reminded me of some things I forgot happened. uh, you know, the iMac and offer that out. And a lot of that was some of that was already being done, but we were stitching multiple services It's interesting, you know, not to get all nerdy and, and business school life, but you've got systems of records, and even in the, you know, the macro S example is the ability if we're talking about features, Um, in the last session we talked And getting it into, into a model that you can pull the value out of the customers can pull the value out, that kind of tease out the future and connect the dots to what's coming. And I think that's, that's keeping with, you know, uh, Chris was talking about where we might be systems of record, Hey, Chris, on the last segment we did on the business mission, um, session, Andy Taylor from your team, So marketplace, you know, you, you heard Dave talk about that in the, in the partner summit, It's one thing if I just need to pass like a, you know, a simple user ID back and forth, You know, one of the things I want to, um, dig into with you guys now is in real time to either what a customer, you know, asks, um, you know, of the world, if, um, something, you know, in 10 minutes can change and being able to have the data's horizontally scalable, and then you got the specialization in the app changes And so we're doing a lot in connect is a good example of this too, where you look at it. And that was their last year SageMaker was kinda moving up the stack, but now you have apps embedding machine learning I mean, so, you know, code guru, uh, dev ops guru Panorama, those are important specific use cases for the vertical and you can get None of this stuff, you know, all of this stuff can be done, uh, and has some of it has been, And I think, you know, these kinds of integrated services are gonna help us do that I mean, that happens because of the cloud data. I mean, you gotta design for, you know, all the different, um, you know, that processing is gonna get more and more intense, uh, um, congratulations, you guys are in pole position for the next wave coming. I come back to G you know, Andy mentioned it in his keynote, right? I mean, so, you know, obviously getting, getting customers to the cloud is super important work, And you know, this is the time for re reconstruction.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
StevePERSON

0.99+

RebeccaPERSON

0.99+

StewartPERSON

0.99+

Rebecca KnightPERSON

0.99+

Liz DennettPERSON

0.99+

LizPERSON

0.99+

MatthewPERSON

0.99+

AmazonORGANIZATION

0.99+

BrianPERSON

0.99+

StuartPERSON

0.99+

AWSORGANIZATION

0.99+

ABGORGANIZATION

0.99+

CarlPERSON

0.99+

HelenPERSON

0.99+

AustraliaLOCATION

0.99+

Brian bowheadPERSON

0.99+

JohanPERSON

0.99+

January, 2018DATE

0.99+

Johan KrebbersPERSON

0.99+

September, 2018DATE

0.99+

TakedaORGANIZATION

0.99+

Douglas ReganPERSON

0.99+

AccentureORGANIZATION

0.99+

JohnPERSON

0.99+

EuropeLOCATION

0.99+

30QUANTITY

0.99+

JohannPERSON

0.99+

Helen DavisPERSON

0.99+

November, 2019DATE

0.99+

LeePERSON

0.99+

DHLORGANIZATION

0.99+

HondaORGANIZATION

0.99+

ArjunPERSON

0.99+

$3 billionQUANTITY

0.99+

Sean ferryPERSON

0.99+

Steve Touw, Immuta | AWS re:Invent 2020


 

>>from around the globe. It's the Cube with digital coverage of AWS reinvent 2020 sponsored by Intel, AWS and our community partners. All right, you're continuing or we're continuing around the clock coverage and around the world coverage off a W s reinvent 2020 virtual conference This year, I'm guessing hundreds of thousands of folks are tuning in for coverage. And we have we have on the other end of the country a cube alarm. Stephen Towel, co founder and CTO of immunity. Stephen, welcome back to the show. >>Great. Great to be here. Thanks for having me again. I hope to match your enthusiasm. >>You know what is, uh, your co founder? I'm sure you could match the enthusiasm. Plus, we're talking about data governance. You You've been on the cute before, and you kind of laid the foundation for us last year. Talking about challenges around data access and data access control. I want to extend this conversation. I had a conversation with a CEO chief data officer a couple of years ago. He shared how his data analysts his the people that actually take the data and make business decisions or create outcomes to make business decisions spent 80% of their time wrangling the data just doing transformations. >>How's the >>Muda helping solve that problem? >>Yeah, great questions. So it's actually interesting. We're seeing a division of roles in these organizations where we have data engineering teams that are actually managing. Ah, lot of the prep work that goes into exposing data and releasing data analysts. Uh, and as part of their day to day job is to ensure that that data that they're released into the analyst is what they're allowed to see. Um and so we kind of see this, this problem of compliance getting in the way of analysts doing their own transformation. So it would be great if we didn't have to have a limited to just this small data engineering team to release the data. What we believe one of the rial issues behind that is that they are the ones that are trusted. They're the only ones that could see all the data in the clear. So it needs to be a very small subset of humans, so to speak, that can do this transformation work and release it. And that means that the data analyst downstream are hamstrung to a certain extent and bottlenecked by requesting these data engineers do some of this transformation work for them. Eso I think because, as you said, that's so critical to being able to analyze data, that bottleneck could could be a back breaker for organization. So we really think that to you need to tie transformation with compliance in order to streamline your analytics in your organization. >>So that has me curious. What does that actually look like? Because Because when I think of a data analyst, they're not always thinking about Well, who should have this data? They're trying to get the answer to the question Thio provide to the data engineer. What does that functionally looked like when that when you want to see that relationship of collaboration? >>Yeah, So we e think the beauty of a Muda and the beauty of governance solutions done right is that they should be invisible to the downstream analysts to a certain extent. So the data engineering team will takes on some requirements from their legal compliance. Seems such as you need a mask p I I or you need Thio. Hi. These kinds of rose from these kinds of analysts, depending on what the users doing. And we've just seen an explosion of different slices or different ways, you should dice up your data and what who's allowed to see what and not just about who they are, but what they're doing on DSO. You can kind of bake all these policies upfront on your data on a tool like Kamuda, and it will dynamically react based on who the analyst is and what they're doing to ensure that the right policies air being enforced. And we could do that in a way that when the analysts I mean, what we also see is just setting your policies on your data. Once up front, that's not the end of the story. Like a lot of people will tap themselves on the back and say, Look, we've got all our data protected appropriately, job done. But that's not really the case, because the analysts will start creating their own data products and they want to share that with other analysts. And so when you think about this, this becomes a very complex problem of okay. Before someone can share their data with anyone else, we need to understand what they were allowed to see eso being able to control the kind of this downstream flow of of transformations and feature engineering to ensure that Onley the right people, are seeing the things that they're allowed to see. But still, enabling analytics is really the challenges that that we saw that in Muda Thio, you know, help the the data teams create those initial policies at scale but also help the analytical teams build driven data products in a way that doesn't introduce data leaks. >>So as I think about the traditional ways in which we do this, we kind of, you know, take a data sad. Let's say, is the databases and we said, security rules etcetera on those data states. That's what you're painting to ISMM or of Dynamic. Has Muto approaching this problem from just a architectural direction? >>Yeah, great question. So I'm sure you've probably heard the term role based access control on, but it's been around forever where you basically aggregate your users in the roles, and then you build rules around those roles on gritty, much every legacy. Already, BMS manages data access this way. Um, what we're seeing now and I call it the private data era that we're now embarking on or have been embarking on for the past three years or so. Where consumers are more aware of their data, privacy and the needs they had their there's, you know, data regulations coming fast and furious with no end in sight. Um, we believe that this role based access control paradigm is just broken. We've got customers with thousands of roles that they're trying to manage Thio to, you know, slice up the data all the different ways that they need Thio. So instead, we we offer an accurate based access control solution and also policy based access control solution. We're. Instead, it's really about How do you dynamically enforced policy by separating who the user is from the policy that needs to be enforced and and having that execute at runtime? A good analogy to this is role based. Access control is like writing code without being able to use variables. You're writing the same block a code over and over again with slight changes based on the roll where actually based access control is, you're able to use variables and basically the policy gets decided at runtime based on who the user is and what they're doing. So >>that dynamic nature kind of lends itself to the public cloud. Were you seeing this applied in the world off a ws were here Reinvent so our customers using this with a W s >>So it all comes down to scalability so that the same reasons that used to separate storage from compute. You know, you get your storage in one place you could ephemera, lee, spin up, compute like EMR if you want. Um, you can use Athena against your storage in a server lis way that that kind of, um, freedom to choose whatever compute you want. Um, the same kind of concepts of apply with policy enforcement. You wanna separate your policy from your platform on that This private data era has has, you know, created this need just like you have to separate your compute from storage in the big data era. And this allows you to have a single plane of glass to enforce policy consistently, no matter what compute you're using or what a U s resource is you're using, um and so this gives our customers power to not only, um, you know, build the rules that they need to build and not have to do it uniquely her service in the U. S. But also proved to their legal and compliance teams that they're doing it correctly because, um, when when you do it this way, it really simplifies everything. And you have one place to go toe, understand how policies being enforced. And this really gives you the auditing and reporting around, um, be enforcement that you've been doing to put every one of these, that everything is being done correctly and that your data consumers can understand You know how your data is being protected. Their data is being protected. Um, and you could actually answer those questions when they come at you. >>So let's put this idea to the test a little bit. So I have the data engineer who kind of designs the security policy around the data or implements that policy using Kamuda Aziz dictated by the security and chief data officer of the organization. Then I have the analyst, and the analyst is just using the tools at their disposal. Let's say that one analyst wants to use AWS Lambda and another analysts wants to use our type database or analysis tools. You're telling me that Muda allows the flexibility for that analyst to use either tool within a W S. >>That's right, because we enforce policy at the data layer. Eso If you think about a Muda, it's really three layers policy authoring, which you touched on where those requirements get turned into real policies. Policy decision ing. So at query time we see who the user is, what they're doing on what policy has been defined to dynamically build that policy at run time and then enforcement, which is what you're getting at. The enforcement happens at the data layer, for example, we can enforce policies, natively and spark. So no matter how you're connecting to spark, that policy is going to get enforced appropriately. So we don't really care about what the clients Liz, because the enforcement is happening at the data or the compute layer is is a more accurate way todo to say it >>so. A practical reality off collaboration, especially around large data sets, is the ability to share data across organizations. How is immune hoping thio just make that barrier? Ah, little lower but ensuring security so that when I'm sharing data with, uh, analysts with within another firm. They're only seeing the data that they need to see, but we can effectively collaborate on those pieces of content. >>Yeah, I'm glad you asked this. I mean, this is like the, you know, the big finale, right? Like, this is what you get when you have this granularity on your own data ecosystem. It enables you to have that granularity now, when you want to share outside of your internal ecosystem. And so I think an important part about this is that when you think about governance, you can't necessarily have one God users so to speak, that has control over all tables and all policies. You really need segmentation of duty, where different parts of the organ hooking their own data build their own policies in a way where people can't step on each other and then this can expand this out. The third party data sharing where you can set different anonymous ation levels on your data when you're sharing an external the organization verse, if it's internal users and then someone else in your ord could share their data with you and then that also do that Third party. So it really enables and freeze these organizations Thio share with each other in ways that weren't possibly before. Because it happens in the day. The layer, um, these organizations can choose their own compute and still have the same policies being forced again. Going back to that consistency piece, um, it provides. Think of it is almost a authoritative way to share data in your organization. It doesn't have to be ad hoc. Oh, I have to share with this group over here. How should I do it? What policies should enforce. There's a single authoritative way to set policy and share your data. >>So the first thing that comes to my mind, especially when we give more power to the users, is when the auditors come and they say, You know what, Keith? I understand this is the policy, but prove it. How do we provide auditors with the evidence that you know, the we're implementing the policy that we designed and then two were ableto audit that policy? >>Yeah. Good question. So, um, I briefly spoke about this a little bit, but the when you author and define the policies in the Muda there immediately being enforced. So when you write something in our platform, um, it's not a glorified Wikipedia, right? It's actually turning those policies on and enforcing it at the data later. And because of that, any query that's coming through a Muda is going to be audited. But I think even more importantly, to be honest, we keep a history of how policy changes happening over time, too. So you could understand, you know, so and so changed the policy on this table versus other table, you know, got newly added, these people got dropped from it. So you get this rich history of not only who's touching what data and what data is important, but you're also getting a rich history off. Okay, how have we been treating this data from a policy perspective over time? How is it like what were my risk levels over the past year? With B six tables on? You can answer those kinds of questions as well. >>And then we're in the era of cloud. We expect to be able to consume these services via AP I via pay as you go type of thing. How is your relationship with AWS and how in the cutting. Ultimately, the customer. How do I consume a music? >>Yeah, so in Munich can pretty much be deployed anywhere. So obviously we're talking to us here. We have a SAS offering where you can spin up Muda pretrial and just be often running building policies and hooking up hooking our policy enforcement engine into your compute. Um, that runs in our, um you know, infrastructure. There's also a deployment model where you deploy immune it into your VPC s so it can run on your infrastructure. Behind your firewalls on DWI do not require any public Internet access at all for that to run. We don't do any kind of phone homing because, obviously, privacy company, we take this very seriously internally as well. We also have on premise deployments, um, again with zero connectivity air gapped environments. Eso. So we offer that kind of flexibility to our customers wherever they want immediate toe to be deployed. An important thing to remember their two is immediate. Does not actually store any data. We just store metadata and policy information. Um, so it's that also provides the customers some flexibility where if they want to use our SAS, they can simply go policy in there, and then the data still lives in their account. We're just kind of pushing policy down into that. Dynamically. >>So Stephen Towel co founder c t o of immunity. I don't think you have to worry about matching my energy level. I through some pretty tough questions at at you and you were ready there with all the answers. You wanna see more interesting conversations from around the world with founders, builders, AWS reinvent is all about builders and we're talking to the builders throughout this show. Visit us on the web. The Cube. You can engage with us on Twitter. Talk to you next episode off the Cube from AWS reinvent 2020.

Published Date : Dec 8 2020

SUMMARY :

end of the country a cube alarm. I hope to match your enthusiasm. been on the cute before, and you kind of laid the foundation for us last year. And that means that the data analyst downstream are hamstrung to a certain extent and like when that when you want to see that relationship of collaboration? of different slices or different ways, you should dice up your data and what who's allowed to see what So as I think about the traditional ways in which we do this, we kind of, you know, data, privacy and the needs they had their there's, you know, data regulations coming fast that dynamic nature kind of lends itself to the public cloud. you know, created this need just like you have to separate your compute from storage in You're telling me that Muda allows the flexibility for that analyst to use either at the data or the compute layer is is a more accurate way todo to They're only seeing the data that they need to see, but we can effectively collaborate on those when you want to share outside of your internal ecosystem. So the first thing that comes to my mind, especially when we give more power to the users, So when you write something in our platform, AP I via pay as you go type of thing. Um, so it's that also provides the customers some flexibility where if they Talk to you next episode off the Cube from AWS

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
StephenPERSON

0.99+

KeithPERSON

0.99+

AWSORGANIZATION

0.99+

80%QUANTITY

0.99+

Stephen TowelPERSON

0.99+

Steve TouwPERSON

0.99+

MunichLOCATION

0.99+

twoQUANTITY

0.99+

last yearDATE

0.99+

U. S.LOCATION

0.99+

thousandsQUANTITY

0.99+

IntelORGANIZATION

0.98+

This yearDATE

0.98+

ThioPERSON

0.98+

singleQUANTITY

0.98+

SASORGANIZATION

0.97+

first thingQUANTITY

0.96+

three layersQUANTITY

0.96+

WikipediaORGANIZATION

0.95+

ImmutaPERSON

0.94+

oneQUANTITY

0.94+

rolesQUANTITY

0.94+

W s reinvent 2020EVENT

0.93+

couple of years agoDATE

0.92+

MutoPERSON

0.92+

one placeQUANTITY

0.91+

one analystQUANTITY

0.91+

single planeQUANTITY

0.91+

Kamuda AzizPERSON

0.91+

hundreds of thousands of folksQUANTITY

0.89+

CubeCOMMERCIAL_ITEM

0.88+

zeroQUANTITY

0.87+

LambdaTITLE

0.85+

past three yearsDATE

0.85+

AthenaORGANIZATION

0.83+

TwitterORGANIZATION

0.82+

KamudaTITLE

0.82+

ISMMORGANIZATION

0.81+

GodPERSON

0.78+

AWS reinvent 2020EVENT

0.74+

past yearDATE

0.73+

InventEVENT

0.72+

CTOPERSON

0.72+

LizPERSON

0.67+

MudaTITLE

0.67+

BMSORGANIZATION

0.58+

2020DATE

0.57+

EMRTITLE

0.54+

sixQUANTITY

0.51+

DynamicORGANIZATION

0.49+

reinventTITLE

0.49+

DWIORGANIZATION

0.45+

OnleyORGANIZATION

0.45+

ThioLOCATION

0.44+

reEVENT

0.4+

2020TITLE

0.39+

AWS Executive Summit 2020


 

>>From around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Welcome to cube three 60 fives coverage of the Accenture executive summit. Part of AWS reinvent. I'm your host Rebecca Knight. Today we are joined by a cube alum, Karthik, Lorraine. He is Accenture senior managing director and lead Accenture cloud. First, welcome back to the show Karthik. >>Thank you. Thanks for having me here. >>Always a pleasure. So I want to talk to you. You are an industry veteran, you've been in Silicon Valley for decades. Um, I want to hear from your perspective what the impact of the COVID-19 pandemic has been, what are you hearing from clients? What are they struggling with? What are their challenges that they're facing day to day? >>I think, um, COVID-19 is being a eye-opener from, you know, various facets, you know, um, first and foremost, it's a, it's a hell, um, situation that everybody's facing, which is not just, uh, highest economic bearings to it. It has enterprise, um, an organization with bedding to it. And most importantly, it's very personal to people, um, because they themselves and their friends, family near and dear ones are going through this challenge, uh, from various different dimension. But putting that aside, when you come to it from an organization enterprise standpoint, it has changed everything well, the behavior of organizations coming together, working in their campuses, working with each other as friends, family, and, uh, um, near and dear colleagues, all of them are operating differently. So that's what big change to get things done in a completely different way, from how they used to get things done. >>Number two, a lot of things that were planned for normal scenarios, like their global supply chain, how they interact with their client customers, how they go innovate with their partners on how that employees contribute to the success of an organization at all changed. And there are no data models that give them a hint of something like this for them to be prepared for this. So we are seeing organizations, um, that have adapted to this reasonably okay, and are, you know, launching to innovate faster in this. And there are organizations that have started with struggling, but are continuing to struggle. And the gap between the leaders and legs are widening. So this is creating opportunities in a different way for the leaders, um, with a lot of pivot their business, but it's also creating significant challenge for the lag guides, uh, as we defined in our future systems research that we did a year ago, uh, and those organizations are struggling further. So the gap is actually widening. >>So you just talked about the widening gap. I've talked about the tremendous uncertainty that so many companies, even the ones who have adapted reasonably well, uh, in this, in this time, talk a little bit about Accenture cloud first and why, why now? >>I think it's a great question. Um, we believe that for many of our clients COVID-19 has turned, uh, cloud from an experimentation aspiration to an origin mandate. What I mean by that is everybody has been doing something on the other end cloud. There's no company that says we don't believe in cloud are, we don't want to do cloud. It was how much they did in cloud. And they were experimenting. They were doing the new things in cloud, but they were operating a lot of their core business outside the cloud or not in the cloud. Those organizations have struggled to operate in this new normal, in a remote fashion, as well as, uh, their ability to pivot to all the changes the pandemic has brought to them. But on the other hand, the organizations that had a solid foundation in cloud were able to collect faster and not actually gone into the stage of innovating faster and driving a new behavior in the market, new behavior within their organization. >>So we are seeing that spend to make is actually fast-forwarded something that we always believed was going to happen. This, uh, uh, moving to cloud over the next decade is fast forward it to happen in the next three to five years. And it's created this moment where it's a once in an era, really replatforming of businesses in the cloud that we are going to see. And we see this moment as a cloud first moment where organizations will use cloud as the, the, the canvas and the foundation with which they're going to reimagine their business after they were born in the cloud. Uh, and this requires a whole new strategy. Uh, and as Accenture, we are getting a lot in cloud, but we thought that this is the moment where we bring all of that, gave him a piece together because we need a strategy for addressing, moving to cloud are embracing cloud in a holistic fashion. And that's what Accenture cloud first brings together a holistic strategy, a team that's 70,000 plus people that's coming together with rich cloud skills, but investing to tie in all the various capabilities of cloud to Delaware, that holistic strategy to our clients. So I want you to >>Delve into a little bit more about what this strategy actually entails. I mean, it's clearly about embracing change and being willing to experiment and having capabilities to innovate. Can you tell us a little bit more about what this strategy entails? >>Yeah. The reason why we say that as a need for strategy is like I said, cloud is not new. There's almost every customer client is doing something with the cloud, but all of them have taken different approaches to cloud and different boundaries to cloud. Some organizations say, I just need to consolidate my multiple data centers to a small data center footprint and move the nest to cloud. Certain other organizations say that well, I'm going to move certain workloads to cloud. Certain other organizations said, well, I'm going to build this Greenfield application or workload in cloud. Certain other said, um, I'm going to use the power of AI ML in the cloud to analyze my data and drive insights. But a cloud first strategy is all of this tied with the corporate strategy of the organization with an industry specific cloud journey to say, if in this current industry, if I were to be reborn in the cloud, would I do it in the exact same passion that I did in the past, which means that the products and services that they offer need to be the matching, how they interact with that customers and partners need to be revisited, how they bird and operate their IP systems need to be the, imagine how they unearthed the data from all of the systems under which they attract need to be liberated so that you could drive insights of cloud. >>First strategy hands is a corporate wide strategy, and it's a C-suite responsibility. It doesn't take the ownership away from the CIO or CIO, but the CIO is, and CDI was felt that it was just their problem and they were to solve it. And everyone as being a customer, now, the center of gravity is elevated to it becoming a C-suite agenda on everybody's agenda, where probably the CDI is the instrument to execute that that's a holistic cloud-first strategy >>And it, and it's a strategy, but the way you're describing it, it sounds like it's also a mindset and an approach, as you were saying, this idea of being reborn in the cloud. So now how do I think about things? How do I communicate? How do I collaborate? How do I get done? What I need to get done. Talk a little bit about how this has changed, the way you support your clients and how Accenture cloud first is changing your approach to cloud services. >>Wonderful. Um, you know, I did not color one very important aspect in my previous question, but that's exactly what you just asked me now, which is to do all of this. I talked about all of the variables, uh, an organization or an enterprise is going to go through, but the good part is they have one constant. And what is that? That is their employees, uh, because you do, the employees are able to embrace this change. If they are able to, uh, change them, says, pivot them says retool and train themselves to be able to operate in this new cloud. First one, the ability to reimagine every function of the business would be happening at speed. And cloud first approach is to do all of this at speed, because innovation is deadly proposed there, do the rate of probability on experimentation. You need to experiment a lot for any kind of experimentation. >>There's a probability of success. Organizations need to have an ability and a mechanism for them to be able to innovate faster for which they need to experiment a lot, the more the experiment and the lower cost at which they experiment is going to help them experiment a lot. And they experiment demic speed, fail fast, succeed more. And hence, they're going to be able to operate this at speed. So the cloud-first mindset is all about speed. I'm helping the clients fast track that innovation journey, and this is going to happen. Like I said, across the enterprise and every function across every department, I'm the agent of this change is going to be the employees or weapon, race, this change through new skills and new grueling and new mindset that they need to adapt to. >>So Karthik what you're describing it, it sounds so exciting. And yet for a pandemic wary workforce, that's been working remotely that may be dealing with uncertainty if for their kid's school and for so many other aspects of their life, it sounds hard. So how are you helping your clients, employees get onboard with this? And because the change management is, is often the hardest part. >>Yeah, I think it's, again, a great question. A bottle has only so much capacity. Something got to come off for something else to go in. That's what you're saying is absolutely right. And that is again, the power of cloud. The reason why cloud is such a fundamental breakthrough technology and capability for us to succeed in this era, because it helps in various forms. What we talked so far is the power of innovation that can create, but cloud can also simplify the life of the employees in an enterprise. There are several activities and tasks that people do in managing that complex infrastructure, complex ID landscape. They used to do certain jobs and activities in a very difficult underground about with cloud has simplified. And democratised a lot of these activities. So that things which had to be done in the past, like managing the complexity of the infrastructure, keeping them up all the time, managing the, um, the obsolescence of the capabilities and technologies and infrastructure, all of that could be offloaded to the cloud. >>So that the time that is available for all of these employees can be used to further innovate. Every organization is going to spend almost the same amount of money, but rather than spending activities, by looking at the rear view mirror on keeping the lights on, they're going to spend more money, more time, more energy, and spend their skills on things that are going to add value to their organization. Because you, every innovation that an enterprise can give to their end customer need not come from that enterprise. The word of platform economy is about democratising innovation. And the power of cloud is to get all of these capabilities from outside the four walls of the enterprise, >>It will add value to the organization, but I would imagine also add value to that employee's life because that employee, the employee will be more engaged in his or her job and therefore bring more excitement and energy into her, his or her day-to-day activities too. >>Absolutely. Absolutely. And this is, this is a normal evolution we would have seen everybody would have seen in their lives, that they keep moving up the value chain of what activities that, uh, gets performed buying by those individuals. And this is, um, you know, no more true than how the United States, uh, as an economy has operated where, um, this is the power of a powerhouse of innovation, where the work that's done inside the country keeps moving up to value chain. And, um, us leverage is the global economy for a lot of things that is required to power the United States and that global economic, uh, phenomenon is very proof for an enterprise as well. There are things that an enterprise needs to do them soon. There are things an employee needs to do themselves. Um, but there are things that they could leverage from the external innovation and the power of innovation that is coming from technologies like cloud. >>So at Accenture, you have long, long, deep Stan, sorry, you have deep and long-standing relationships with many cloud service providers, including AWS. How does the Accenture cloud first strategy, how does it affect your relationships with those providers? >>Yeah, we have great relationships with cloud providers like AWS. And in fact, in the cloud world, it was one of the first, um, capability that we started about years ago, uh, when we started developing these capabilities. But five years ago, we hit a very important milestone where the two organizations came together and said that we are forging a pharma partnership with joint investments to build this partnership. And we named that as a Accenture, AWS business group ABG, uh, where we co-invest and brought skills together and develop solutions. And we will continue to do that. And through that investment, we've also made several acquisitions that you would have seen in the recent times, like, uh, an invoice and gecko that we made acquisitions in in Europe. But now we're taking this to the next level. What we are saying is two cloud first and the $3 billion investment that we are bringing in, uh, through cloud-first. >>We are going to make specific investment to create unique joint solution and landing zones foundation, um, cloud packs with which clients can accelerate their innovation or their journey to cloud first. And one great example is what we are doing with Takeda, uh, billable, pharmaceutical giant, um, between we've signed a five-year partnership. And it was out in the media just a month ago or so, where we are, the two organizations are coming together. We have created a partnership as a power of three partnership, where the three organizations are jointly hoarding hats and taking responsibility for the innovation and the leadership position that Takeda wants to get to with this. We are going to simplify their operating model and organization by providing and flexibility. We're going to provide a lot more insights. Tequila has a 230 year old organization. Imagine the amount of trapped data and intelligence that is there. >>How about bringing all of that together with the power of AWS and Accenture and Takeda to drive more customer insights, um, come up with breakthrough R and D uh, accelerate clinical trials and improve the patient experience using AI ML and edge technologies. So all of these things that we will do through this partnership with joined investment from Accenture cloud first, as well as partner like AWS, so that Takeda can realize their gain. And, uh, their senior actually made a statement that five years from now, every ticket an employee will have an AI assistant. That's going to make that beginner employee move up the value chain on how they contribute and add value to the future of tequila with the AI assistant, making them even more equipped and smarter than what they could be otherwise. >>So, one last question to close this out here. What is your future vision for, for Accenture cloud first? What are we going to be talking about at next year's Accenture executive summit? Yeah, the future >>Is going to be, um, evolving, but the part that is exciting to me, and this is, uh, uh, a fundamental belief that we are entering a new era of industrial revolution from industry first, second, and third industry. The third happened probably 20 years ago with the advent of Silicon and computers and all of that stuff that happened here in the Silicon Valley. I think the fourth industrial revolution is going to be in the cross section of, uh, physical, digital and biological boundaries. And there's a great article, um, in one economic forum that people, uh, your audience can Google and read about it. Uh, but the reason why this is very, very important is we are seeing a disturbing phenomenon that over the last 10 years are seeing a Blackwing of the, um, labor productivity and innovation, which has dropped to about 2.1%. When you see that kind of phenomenon over that longer period of time, there has to be breakthrough innovation that needs to happen to come out of this barrier and get to the next, you know, base camp, as I would call it to further this productivity, um, lack that we are seeing, and that is going to happen in the intersection of the physical, digital and biological boundaries. >>And I think cloud is going to be the connective tissue between all of these three, to be able to provide that where it's the edge, especially is good to come closer to the human lives. It's going to come from cloud. Yeah. Pick totally in your mind, you can think about cloud as central, either in a private cloud, in a data center or in a public cloud, you know, everywhere. But when you think about edge, it's going to be far reaching and coming close to where we live and maybe work and very, um, get entertained and so on and so forth. And there's good to be, uh, intervention in a positive way in the field of medicine, in the field of entertainment, in the field of, um, manufacturing in the field of, um, you know, mobility. When I say mobility, human mobility, people, transportation, and so on and so forth with all of this stuff, cloud is going to be the connective tissue and the vision of cloud first is going to be, uh, you know, blowing through this big change that is going to happen. And the evolution that is going to happen where, you know, the human grace of mankind, um, our person kind of being very gender neutral in today's world. Um, go first needs to be that beacon of, uh, creating the next generation vision for enterprises to take advantage of that kind of an exciting future. And that's why it, Accenture, are we saying that there'll be change as our, as our purpose? >>I genuinely believe that cloud first is going to be in the forefront of that change agenda, both for Accenture as well as for the rest of the work. Excellent. Let there be change, indeed. Thank you so much for joining us Karthik. A pleasure I'm Rebecca nights stay tuned for more of Q3 60 fives coverage of the Accenture executive summit >>From around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS >>Welcome everyone to the Q virtual and our coverage of the Accenture executive summit, which is part of AWS reinvent 2020. I'm your host Rebecca Knight. Today, we are talking about the green cloud and joining me is Kishor Dirk. He is Accenture senior managing director cloud first global services lead. Thank you so much for coming on the show. Kishor nice to meet you. So I want to start by asking you what it is that we mean when we say green cloud, we know the sustainability is a business imperative. So many organizations around the world are committing to responsible innovation, lowering carbon emissions. But what is this? What is it? What does it mean when they talk about cloud from a sustainability perspective? I think it's about responsible innovation being cloud is a cloud first approach that has benefit the clients by helping reduce carbon emissions. Think about it this way. >>You have a large number of data centers. Each of these data centers are increasing by 14% every year. And this double digit growth. What you're seeing is these data centers and the consumption is nearly coolant to the kind of them should have a country like Spain. So the magnitude of the problem that is out there and how do we pursue a green approach. If you look at this, our Accenture analysis, in terms of the migration to public cloud, we've seen that we can reduce that by 59 million tons of CO2 per year with just the 5.9% reduction in total emissions and equates this to 22 million cars off the road. And the magnitude of reduction can go a long way in meeting climate change commitments, particularly for data sensitive. Wow, that's incredible. The numbers that you're putting forward are, are absolutely mind blowing. So how does it work? Is it a simple cloud migration? So, you know, when companies begin their cloud journey and then they confront, uh, with >>Them a lot of questions, the decision to make, uh, this particular, uh, element sustainable in the solution and benefits they drive and they have to make wise choices, and then they will gain unprecedented level of innovation leading to both a greener planet, as well as, uh, a greener balance sheet, I would say, uh, so effectively it's all about ambition, data ambition, greater the reduction in carbon emissions. So from a cloud migration perspective, we look at it as a, as a simple solution with approaches and sustainability benefits, uh, that vary based on things it's about selecting the right cloud provider, a very carbon thoughtful provider and the first step towards a sustainable cloud journey. And here we're looking at cloud operators know, obviously they have different corporate commitments towards sustainability, and that determines how they plan, how they build, uh, their, uh, uh, the data centers, how they are consumed and assumptions that operate there and how they, or they retire their data centers. >>Then, uh, the next element that you want to do is how do you build it ambition, you know, for some of the companies, uh, and average on-prem, uh, drives about 65% energy reduction and the carbon emission reduction number was 84%, which is kind of good, I would say. But then if you could go up to 98% by configuring applications to the cloud, that is significant benefit for, uh, for the board. And obviously it's a, a greener cloud that we're talking about. And then the question is, how far can you go? And, uh, you know, the, obviously the companies have to unlock greater financial societal environmental benefits, and Accenture has this cloud based circular operations and sustainable products and services that we bring into play. So it's a, it's a very thoughtful, broader approach that w bringing in, in terms of, uh, just a simple concept of cloud migration. >>So we know that in the COVID era, shifting to the cloud has really become a business imperative. How is Accenture working with its clients at a time when all of this movement has been accelerated? How do you partner and what is your approach in terms of helping them with their migrations? >>Yeah, I mean, let, let me talk a little bit about the pandemic and the crisis that is that today. And if you really look at that in terms of how we partnered with a lot of our clients in terms of the cloud first approach, I'll give you a couple of examples. We worked with rolls, Royce, MacLaren, DHL, and others, as part of the ventilator, a UK challenge consortium, again, to, uh, coordinate production of medical ventilator surgically needed for the UK health service. Many of these farms I've taken similar initiatives in, in terms of, uh, you know, from a few manufacturers hand sanitizers, and to answer it as us and again, leading passionate labels, making PPE, and again, at the UN general assembly, we launched the end-to-end integration guide that helps company is essentially to have a sustainable development goals. And that's how we are parking at a very large scale. >>Uh, and, and if you really look at how we work with our clients and what is Accenture's role there, uh, you know, from, in terms of our clients, you know, there are multiple steps that we look at. One is about planning, building, deploying, and managing an optimal green cloud solution. And Accenture has this concept of, uh, helping clients with a platform to kind of achieve that goal. And here we are having, we are having a platform or a mine app, which has a module called BGR advisor. And this is a capability that helps you provide optimal green cloud, uh, you know, a business case, and obviously a blueprint for each of our clients and right from the start in terms of how do we complete cloud migration recommendation to an improved solution, accurate accuracy to obviously bringing in the end to end perspective, uh, you know, with this green card advisor capability, we're helping our clients capture what we call as a carbon footprint for existing data centers and provide, uh, I would say the current cloud CO2 emission score that, you know, obviously helps them, uh, with carbon credits that can further that green agenda. >>So essentially this is about recommending a green index score, reducing carbon footprint for migration migrating for green cloud. And if we look at how Accenture itself is practicing what we preach, 95% of our applications are in the cloud. And this migration has helped us, uh, to lead to about $14.5 million in benefit. And in the third year and another 3 million analytics costs that are saved through right-sizing a service consumption. So it's a very broad umbrella and a footprint in terms of how we engage societaly with the UN or our clients. And what is it that we exactly bring to our clients in solving a specific problem? >>Accenture isn't is walking the walk, as you say, >>Instead of it, we practice what we preach, and that is something that we take it to heart. We want to have a responsible business and we want to practice it. And we want to advise our clients around that >>You are your own use case. And so they can, they know they can take your advice. So talk a little bit about, um, the global, the cooperation that's needed. We know that conquering this pandemic is going to take a coordinated global effort and talk a little bit about the great reset initiative. First of all, what is that? Why don't we, why don't we start there and then we can delve into it a little bit more. >>Okay. So before we get to how we are cooperating, the great reset, uh, initiative is about improving the state of the world. And it's about a group of global stakeholders cooperating to simultaneously manage the direct consequences of their COVID-19 crisis. Uh, and in spirit of this cooperation that we're seeing during COVID-19, uh, which will obviously either to post pandemic, to tackle the world's pressing issues. As I say, uh, we are increasing companies to realize a combined potential of technology and sustainable impact to use enterprise solutions, to address with urgency and scale, and, um, obviously, uh, multiple challenges that are facing our world. One of the ways that are increasing, uh, companies to reach their readiness cloud with Accenture's cloud strategy is to build a solid foundation that is resilient and will be able to faster to the current, as well as future times. Now, when you think of cloud as the foundation, uh, that drives the digital transformation, it's about scale speed, streamlining your operations, and obviously reducing costs. >>And as these businesses seize the construct of cloud first, they must remain obviously responsible and trusted. Now think about this, right, as part of our analysis, uh, that profitability can co-exist with responsible and sustainable practices. Let's say that all the data centers, uh, migrated from on-prem to cloud based, we estimate that would reduce carbon emissions globally by 60 million tons per year. Uh, and think about it this way, right? Easier metric would be taking out 22 million cars off the road. Um, the other examples that you've seen, right, in terms of the NHS work that they're doing, uh, in, in UK to build, uh, uh, you know, uh, Microsoft teams in based integration. And, uh, the platform rolled out for 1.2 million users, uh, and got 16,000 users that we were able to secure, uh, instant messages, obviously complete audio video calls and host virtual meetings across India. So, uh, this, this work that we did with NHS is, is something that we have, we are collaborating with a lot of tools and powering businesses. >>Well, you're vividly describing the business case for sustainability. What do you see as the future of cloud when thinking about it from this lens of sustainability, and also going back to what you were talking about in terms of how you are helping your, your fostering cooperation within these organizations. >>Yeah, that's a very good question. So if you look at today, right, businesses are obviously environmentally aware and they are expanding efforts to decrease power consumption, carbon emissions, and they want to run a sustainable operational efficiency across all elements of their business. And this is an increasing trend, and there is that option of energy efficient infrastructure in the global market. And this trend is the cloud first thinking. And with the right cloud migration that we've been discussing is about unlocking new opportunity, like clean energy foundations enable enabled by cloud based geographic analysis, material, waste reductions, and better data insights. And this is something that, uh, uh, will drive, uh, with obviously faster analytics platform that is out there. Now, the sustainability is actually the future of business, which is companies that are historically different, the financial security or agility benefits to cloud. Now sustainability becomes an imperative for them. And I would own experience Accenture's experience with cloud migrations. We have seen 30 to 40% total cost of ownership savings, and it's driving a greater workload, flexibility, better service, your obligation, and obviously more energy efficient, uh, public clouds that cost, uh, we'll see that, that drive a lot of these enterprise own data centers. So in our view, what we are seeing is that this, this, uh, sustainable cloud position helps, uh, helps companies to, uh, drive a lot of the goals in addition to their financial and other goods. >>So what should organizations who are, who are watching this interview and saying, Hey, I need to know more, what, what do you recommend to them? And what, where should they go to get more information on Greenplum? >>Yeah. If you wanna, if you are a business leader and you're thinking about which cloud provider is good, or how, how should applications be modernized to meet our day-to-day needs, which cloud driven innovations should be priorities. Uh, you know, that's why Accenture, uh, formed up the cloud first organization and essentially to provide the full stack of cloud services to help our clients become a cloud first business. Um, you know, it's all about excavation, uh, the digital transformation innovating faster, creating differentiated, uh, and sustainable value for our clients. And we are powering it up at 70,000 cloud professionals, $3 billion investment, and, uh, bringing together and services for our clients in terms of cloud solutions. And obviously the ecosystem partnership that we have that we are seeing today, uh, and, and the assets that help our clients realize their goals. Um, and again, to do reach out to us, uh, we can help them determine obviously, an optimal, sustainable cloud for solution that meets the business needs and being unprecedented levels of innovation. Our experience, uh, will be our advantage. And, uh, now more than ever Rebecca, >>Just closing us out here. Do you have any advice for these companies who are navigating a great deal of uncertainty? We, what, what do you think the next 12 to 24 months? What do you think that should be on the minds of CEOs as they go through? >>So, as CEO's are thinking about rapidly leveraging cloud, migrating to cloud, uh, one of the elements that we want them to be thoughtful about is can they do that, uh, with unprecedent level of innovation, but also build a greener planet and a greener balance sheet, if we can achieve this balance and kind of, uh, have a, have a world which is greener, I think the world will win. And we all along with Accenture clients will win. That's what I would say, uh, >>Optimistic outlook, and I will take it. Thank you so much. Kishor for coming on the show >>That was >>Accenture's Kishor Dirk, I'm Rebecca Knight stay tuned for more of the cube virtuals coverage of the Accenture executive summit >>Around the globe. >>It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Welcome everyone to the cube virtual and our coverage of the Accenture executive summit. Part of AWS reinvent 2020. I'm your host Rebecca Knight. Today, we are talking about the power of three. And what happens when you bring together the scientific know-how of a global bias biopharmaceutical powerhouse in Takeda, a leading cloud services provider in AWS, and Accenture's ability to innovate, execute, and deliver innovation. Joining me to talk about these things. We have Aaron, sorry, Arjun, baby. He is the senior managing director and chairman of Accenture's diamond leadership council. Welcome Arjun, Karl hick. He is the chief digital and information officer at Takeda. What is your bigger, thank you, Rebecca and Brian bowhead, global director, and head of the Accenture AWS business group at Amazon web services. Thanks so much for coming up. So, as I said, we're talking today about this relationship between, uh, your three organizations. Carl, I want to talk with you. I know you're at the beginning of your cloud journey. What was the compelling reason? What w why, why move to the cloud and why now? >>Yeah, no, thank you for the question. So, you know, as a biopharmaceutical leader, we're committed to bringing better health and a brighter future to our patients. We're doing that by translating science into some really innovative and life transporting therapies, but throughout, you know, we believe that there's a responsible use of technology, of data and of innovation. And those three ingredients are really key to helping us deliver on that promise. And so, you know, while I think, uh, I'll call it, this cloud journey is already always been a part of our strategy. Um, and we've made some pretty steady progress over the last years with a number of I'll call it diverse approaches to the digital and AI. We just weren't seeing the impact at scale that we wanted to see. Um, and I think that, you know, there's a, there's a need ultimately to, you know, accelerate and, uh, broaden that shift. >>And, you know, we were commenting on this earlier, but there's, you know, it's been highlighted by a number of factors. One of those has been certainly a number of the large acquisitions we've made Shire, uh, being the most pressing example, uh, but also the global pandemic, both of those highlight the need for us to move faster, um, at the speed of cloud, ultimately. Uh, and so we started thinking outside of the box because it was taking us too long and we decided to leverage the strategic partner model. Uh, and it's giving us a chance to think about our challenges very differently. We call this the power of three, uh, and ultimately our focus is singularly on our patients. I mean, they're waiting for us. We need to get there faster. It can take years. And so I think that there is a focus on innovation, um, at a rapid speed, so we can move ultimately from treating conditions to keeping people healthy. >>So, as you are embarking on this journey, what are some of the insights you want to share about, about what you're seeing so far? >>Yeah, no, it's a great question. So, I mean, look, maybe right before I highlight some of the key insights, uh, I would say that, you know, with cloud now as the, as the launchpad for innovation, you know, our vision all along has been that in less than 10 years, we want every single to kid, uh, associate we're employed to be empowered by an AI assistant. And I think that, you know, that's going to help us make faster, better decisions. It'll help us, uh, fundamentally deliver transformative therapies and better experiences to, to that ecosystem, to our patients, to physicians, to payers, et cetera, much faster than we previously thought possible. Um, and I think that technologies like cloud and edge computing together with a very powerful I'll call it data fabric is going to help us to create this, this real-time, uh, I'll call it the digital ecosystem. >>The data has to flow ultimately seamlessly between our patients and providers or partners or researchers, et cetera. Uh, and so we've been thinking about this, uh, I'll call it, we call it sort of this pyramid, um, that helps us describe our vision. Uh, and a lot of it has to do with ultimately modernizing the foundation, modernizing and rearchitecting, the platforms that drive the company, uh, heightening our focus on data, which means that there's an accelerated shift towards, uh, enterprise data platforms and digital products. And then ultimately, uh, uh, P you know, really an engine for innovation sitting at the very top. Um, and so I think with that, you know, there's a few different, I'll call it insights that, you know, are quickly kind of come zooming into focus. I would say one is this need to collaborate very differently. Um, you know, not only internally, but you know, how do we define ultimately, and build a connected digital ecosystem with the right partners and technologies externally? >>I think the second component that maybe people don't think as much about, but, you know, I find critically important is for us to find ways of really transforming our culture. We have to unlock talent and shift the culture certainly as a large biopharmaceutical very differently. And then lastly, you've touched on it already, which is, you know, innovation at the speed of cloud. How do we re-imagine that, you know, how do ideas go from getting tested and months to kind of getting tested in days? You know, how do we collaborate very differently? Uh, and so I think those are three, uh, perhaps of the larger I'll call it, uh, insights that, you know, the three of us are spending a lot of time thinking about right now. >>So Arjun, I want to bring you into this conversation a little bit, let let's delve into those a bit. Talk first about the collaboration, uh, that Carl was referencing there. How, how have you seen that? It is enabling, uh, colleagues and teams to communicate differently and interact in new and different ways? Uh, both internally and externally, as Carl said, >>No, th thank you for that. And, um, I've got to give call a lot of credit, because as we started to think about this journey, it was clear, it was a bold ambition. It was, uh, something that, you know, we had all to do differently. And so the, the concept of the power of three that Carl has constructed has become a label for us as a way to think about what are we going to do to collectively drive this journey forward. And to me, the unique ways of collaboration means three things. The first one is that, um, what is expected is that the three parties are going to come together and it's more than just the sum of our resources. And by that, I mean that we have to bring all of ourselves, all of our collective capabilities, as an example, Amazon has amazing supply chain capabilities. >>They're one of the best at supply chain. So in addition to resources, when we have supply chain innovations, uh, that's something that they're bringing in addition to just, uh, talent and assets, similarly for Accenture, right? We do a lot, uh, in the talent space. So how do we bring our thinking as to how we apply best practices for talent to this partnership? So, um, as we think about this, so that's, that's the first one, the second one is about shared success very early on in this partnership, we started to build some foundations and actually develop seven principles that all of us would look at as the basis for this success shared success model. And we continue to hold that sort of in the forefront, as we think about this collaboration. And maybe the third thing I would say is this one team mindset. So whether it's the three of our CEOs that get together every couple of months to think about, uh, this partnership, or it is the governance model that Carl has put together, which has all three parties in the governance and every level of leadership. We always think about this as a collective group, so that we can keep that front and center. And what I think ultimately has enabled us to do is it allowed us to move at speed, be more flexible. And ultimately all we're looking at the target the same way, the North side, the same way. >>Brian, what about you? What have you observed? And are you thinking about in terms of how this is helping teams collaborate differently, >>Lillian and Arjun made some, some great points there. And I think if you really think about what he's talking about, it's that, that diversity of talent, diversity of scale and viewpoint and even culture, right? And so we see that in the power of three. And then I think if we drill down into what we see at Takeda, and frankly, Takeda was, was really, I think, pretty visionary and on their way here, right? And taking this kind of cross functional approach and applying it to how they operate day to day. So moving from a more functional view of the world to more of a product oriented view of the world, right? So when you think about we're going to be organized around a product or a service or a capability that we're going to provide to our customers or our patients or donors in this case, it implies a different structure, although altogether, and a different way of thinking, right? >>Because now you've got technical people and business experts and marketing experts, all working together in this is sort of cross collaboration. And what's great about that is it's really the only way to succeed with cloud, right? Because the old ways of thinking where you've got application people and infrastructure, people in business, people is suboptimal, right? Because we can all access this tool as these capabilities and the best way to do that. Isn't across kind of a cross-collaborative way. And so this is product oriented mindset. It's a keto was already on. I think it's allowed us to move faster in those areas. >>Carl, I want to go back to this idea of unlocking talent and culture. And this is something that both Brian and Arjun have talked about too. People are an essential part of their, at the heart of your organization. How will their experience of work change and how are you helping re-imagine and reinforce a strong organizational culture, particularly at this time when so many people are working remotely. >>Yeah. It's a great question. And it's something that, you know, I think we all have to think a lot about, I mean, I think, um, you know, driving this, this call it, this, this digital and data kind of capability building, uh, takes a lot of, a lot of thinking. So, I mean, there's a few different elements in terms of how we're tackling this one is we're recognizing, and it's not just for the technology organization or for those actors that, that we're innovating with, but it's really across all of the Cato where we're working through ways of raising what I'll call the overall digital leaders literacy of the organization, you know, what are the, you know, what are the skills that are needed almost at a baseline level, even for a global bio-pharmaceutical company and how do we deploy, I'll call it those learning resources very broadly. >>And then secondly, I think that, you know, we're, we're very clear that there's a number of areas where there are very specialized skills that are needed. Uh, my organization is one of those. And so, you know, we're fostering ways in which, you know, we're very kind of quickly kind of creating, uh, avenues excitement for, for associates in that space. So one example specifically, as we use, you know, during these very much sort of remote, uh, sort of days, we, we use what we call global it meet days, and we set a day aside every single month and this last Friday, um, you know, we, we create during that time, it's time for personal development. Um, and we provide active seminars and training on things like, you know, robotic process automation, data analytics cloud, uh, in this last month we've been doing this for months and months now, but in his last month, more than 50% of my organization participated, and there's this huge positive shift, both in terms of access and excitement about really harnessing those new skills and being able to apply them. >>Uh, and so I think that that's, you know, one, one element that, uh, can be considered. And then thirdly, um, of course, every organization to work on, how do you prioritize talent, acquisition and management and competencies that you can't rescale? I mean, there are just some new capabilities that we don't have. And so there's a large focus that I have with our executive team and our CEO and thinking through those critical roles that we need to activate in order to kind of, to, to build on this, uh, this business led cloud transformation. And lastly, probably the hardest one, but the one that I'm most jazzed about is really this focus on changing the mindsets and behaviors. Um, and I think there, you know, this is where the power of three is, is really, uh, kind of coming together nicely. I mean, we're working on things like, you know, how do we create this patient obsessed curiosity, um, and really kind of unlock innovation with a real, kind of a growth mindset. >>Uh, and the level of curiosity that's needed, not to just continue to do the same things, but to really challenge the status quo. So that's one big area of focus we're having the agility to act just faster. I mean, to worry less, I guess I would say about kind of the standard chain of command, but how do you make more speedy, more courageous decisions? And this is places where we can emulate the way that a partner like AWS works, or how do we collaborate across the number of boundaries, you know, and I think, uh, Arjun spoke eloquently to a number of partnerships that we can build. So we can break down some of these barriers and use these networks, um, whether it's within our own internal ecosystem or externally to help, to create value faster. So a lot of energy around ways of working and we'll have to check back in, but I mean, we're early in on this mindset and behavioral shift, um, but a lot of good early momentum. >>Carl you've given me a good segue to talk to Brian about innovation, because you said a lot of the things that I was the customer obsession and this idea of innovating much more quickly. Obviously now the world has its eyes on drug development, and we've all learned a lot about it, uh, in the past few months and accelerating drug development is all, uh, is of great interest to all of us. Brian, how does a transformation like this help a company's, uh, ability to become more agile and more innovative and add a quicker speed to, >>Yeah, no, absolutely. And I think some of the things that Carl talked about just now are critical to that, right? I think where sometimes folks fall short is they think, you know, we're going to roll out the technology and the technology is going to be the silver bullet where in fact it is the culture, it is, is the talent. And it's the focus on that. That's going to be, you know, the determinant of success. And I will say, you know, in this power of three arrangement and Carl talked a little bit about the pyramid, um, talent and culture and that change, and that kind of thinking about that has been a first-class citizen since the very beginning, right. That absolutely is critical for, for being there. Um, and, and so that's been, that's been key. And so we think about innovation at Amazon and AWS, and Carl mentioned some of the things that, you know, partner like AWS can bring to the table is we talk a lot about builders, right? >>So kind of obsessive about builders. Um, and, and we meet what we mean by that is we at Amazon, we hire for builders, we cultivate builders and we like to talk to our customers about it as well. And it also implies a different mindset, right? When you're a builder, you have that, that curiosity, you have that ownership, you have that stake and whatever I'm creating, I'm going to be a co-owner of this product or this service, right. Getting back to that kind of product oriented mindset. And it's not just the technical people or the it people who are builders. It is also the business people as, as Carl talked about. Right. So when we start thinking about, um, innovation again, where we see folks kind of get into a little bit of a innovation pilot paralysis, is that you can focus on the technology, but if you're not focusing on the talent and the culture and the processes and the mechanisms, you're going to be putting out technology, but you're not going to have an organization that's ready to take it and scale it and accelerate it. >>Right. And so that's, that's been absolutely critical. So just a couple of things we've been doing with, with Takeda and Decatur has really been leading the way is, think about a mechanism and a process. And it's really been working backward from the customer, right? In this case, again, the patient and the donor. And that was an easy one because the key value of Decatur is to be a patient focused bio-pharmaceutical right. So that was embedded in their DNA. So that working back from that, that patient, that donor was a key part of that process. And that's really deep in our DNA as well. And Accenture's, and so we were able to bring that together. The other one is, is, is getting used to experimenting and even perhaps failing, right. And being able to iterate and fail fast and experiment and understanding that, you know, some decisions, what we call it at Amazon are two two-way doors, meaning you can go through that door, not like what you see and turn around and go back. And cloud really helps there because the costs of experimenting and the cost of failure is so much lower than it's ever been. You can do it much faster and the implications are so much less. So just a couple of things that we've been really driving, uh, with the cadence around innovation, that's been really critical. Carl, where are you already seeing signs of success? >>Yeah, no, it's a great question. And so we chose, you know, uh, with our focus on innovation to try to unleash maybe the power of data digital in, uh, in focusing on what I call sort of a nave. And so we chose our, our, our plasma derived therapy business, um, and you know, the plasma-derived therapy business unit, it develops critical life-saving therapies for patients with rare and complex diseases. Um, but what we're doing is by bringing kind of our energy together, we're focusing on creating, I'll call it state of the art digitally connected donation centers. And we're really modernizing, you know, the, the, the donor experience right now, we're trying to, uh, improve also I'll call it the overall plasma collection process. And so we've, uh, selected a number of alcohol at a very high speed pilots that we're working through right now, specifically in this, in this area. And we're seeing >>Really great results already. Um, and so that's, that's one specific area of focus are Jen, I want you to close this out here. Any ideas, any best practices advice you would have for other pharmaceutical companies that are, that are at the early stage of their cloud journey? Sorry. Was that for me? Yes. Sorry. Origin. Yeah, no, I was breaking up a bit. No, I think they, um, the key is what's sort of been great for me to see is that when people think about cloud, you know, you always think about infrastructure technology. The reality is that the cloud is really the true enabler for innovation and innovating at scale. And, and if you think about that, right, and all the components that you need, ultimately, that's where the value is for the company, right? Because yes, you're going to get some cost synergies and that's great, but the true value is in how do we transform the organization in the case of the Qaeda and our life sciences clients, right. >>We're trying to take a 14 year process of research and development that takes billions of dollars and compress that right. Tremendous amounts of innovation opportunity. You think about the commercial aspect, lots of innovation can come there. The plasma derived therapy is a great example of how we're going to really innovate to change the trajectory of that business. So I think innovation is at the heart of what most organizations need to do. And the formula, the cocktail that the Qaeda has constructed with this footie program really has all the ingredients, um, that are required for that success. Great. Well, thank you so much. Arjun, Brian and Carl was really an enlightening conversation. Thank you. It's been a lot of, thank you. Yeah, it's been fun. Thanks Rebecca. And thank you for tuning into the cube. Virtual has coverage of the Accenture executive summit >>From around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Welcome everyone to the cubes coverage of Accenture executive summit here at AWS reinvent. I'm your host Rebecca Knight for this segment? We have two guests. First. We have Helen Davis. She is the senior director of cloud platform services, assistant director for it and digital for the West Midlands police. Thanks so much for coming on the show, Helen, and we also have Matthew pound. He is Accenture health and public service associate director and West Midlands police account lead. Thanks so much for coming on the show. Matthew, thank you for having us. So we are going to be talking about delivering data-driven insights to the West Midlands police force. Helen, I want to start with >>You. Can you tell us a little bit about the West Midlands police force? How big is the force and also what were some of the challenges that you were grappling with prior to this initiative? >>Yeah, certainly. So Westerners police is the second largest police force in the UK, outside of the metropolitan police in London. Um, we have an excessive, um, 11,000 people work at Westman ins police serving communities, um, through, across the Midlands region. So geographically, we're quite a big area as well, as well as, um, being population, um, density, having that as a, at a high level. Um, so the reason we sort of embarked on the data-driven insights platform and it, which was a huge change for us was for a number of reasons. Um, namely we had a lot of disparate data, um, which was spread across a range of legacy systems that were many, many years old, um, with some duplication of what was being captured and no single view for offices or, um, support staff. Um, some of the access was limited. You have to be in a, in an actual police building on a desktop computer to access it. Um, other information could only reach the offices on the frontline through a telephone call back to one of our enabling services where they would do a manual checkup, um, look at the information, then call the offices back, um, and tell them what they needed to know. So it was a very long laborious, um, process and not very efficient. Um, and we certainly weren't exploiting the data that we had in a very productive way. >>So it sounds like as you're describing and an old clunky system that needed a technological, uh, reimagination, so what was the main motivation for, for doing, for making this shift? >>It was really, um, about making us more efficient and more effective in how we do how we do business. So, um, you know, certainly as a, as an it leader and sort of my operational colleagues, we recognize the benefits, um, that data and analytics could bring in, uh, in a policing environment, not something that was, um, really done in the UK at the time. You know, we have a lot of data, so we're very data rich and the information that we have, but we needed to turn it into information that was actionable. So that's where we started looking for, um, technology partners and suppliers to help us and sort of help us really with what's the art of the possible, you know, this hasn't been done before. So what could we do in this space that's appropriate for policing? >>I love that idea. What is the art of the possible, can you tell us a little bit about why you chose AWS? >>I think really, you know, as with all things and when we're procuring a partner in the public sector that, you know, there are many rules and regulations, uh, quite rightly as you would expect that to be because we're spending public money. So we have to be very, very careful and, um, it's, it's a long process and we have to be open to public scrutiny. So, um, we sort of look to everything, everything that was available as part of that process, but we recognize the benefits that Clyde would provide in this space because, you know, without moving to a cloud environment, we would literally be replacing something that was legacy with something that was a bit more modern. Um, that's not what we wanted to do. Our ambition was far greater than that. So I think, um, in terms of AWS, really, it was around the scalability, interoperability, you know, disaster things like the disaster recovery service, the fact that we can scale up and down quickly, we call it dialing up and dialing back. Um, you know, it's it's page go. So it just sort of ticked all the boxes for us. And then we went through the full procurement process, fortunately, um, it came out on top for us. So we were, we were able to move forward, but it just sort of had everything that we were looking for in that space. >>Matthew, I want to bring you into the conversation a little bit here. How are you working with a wet with the West Midlands police, sorry. And helping them implement this cloud-first journey? >>Yeah, so I guess, um, by January the West Midlands police started, um, favorite five years ago now. So, um, we set up a partnership with the force. I wanted to operate in a way that it was very different to a traditional supplier relationship. Um, secretary that the data difference insights program is, is one of many that we've been working with last nights on, um, over the last five years. Um, as having said already, um, cloud gave a number of, uh, advantages certainly from a big data perspective and the things that that enabled us today, um, I'm from an Accenture perspective that allowed us to bring in a number of the different themes that we have say, cloud teams, security teams, um, and drafted from an insurance perspective, as well as more traditional services that people would associate with the country. >>I mean, so much of this is about embracing comprehensive change to experiment and innovate and try different things. Matthew, how, how do you help, uh, an entity like West Midlands police think differently when they are, there are these ways of doing things that people are used to, how do you help them think about what is the art of the possible, as Helen said, >>There's a few things to that enable those being critical is trying to co-create solutions together. Yeah. There's no point just turning up with, um, what we think is the right answer, try and say, um, collectively work three, um, the issues that the fullest is seeing and the outcomes they're looking to achieve rather than simply focusing on a long list of requirements, I think was critical and then being really open to working together to create the right solution. Um, rather than just, you know, trying to pick something off the shelf that maybe doesn't fit the forces requirements in the way that it should too, >>Right. It's not always a one size fits all. >>Absolutely not. You know, what we believe is critical is making sure that we're creating something that met the forces needs, um, in terms of the outcomes they're looking to achieve the financial envelopes that were available, um, and how we can deliver those in a, uh, iterative agile way, um, rather than spending years and years, um, working towards an outcome, um, that is gonna update before you even get that. >>So Helen, how, how are things different? What kinds of business functions and processes have been re-imagined in, in light of this change and this shift >>It's, it's actually unrecognizable now, um, in certain areas of the business as it was before. So to give you a little bit of, of context, when we, um, started working with essentially in AWS on the data driven insights program, it was very much around providing, um, what was called locally, a wizzy tool for our intelligence analysts to interrogate data, look at data, you know, decide whether they could do anything predictive with it. And it was very much sort of a back office function to sort of tidy things up for us and make us a bit better in that, in that area or a lot better in that area. And it was rolled out to a number of offices, a small number on the front line. Um, I'm really, it was, um, in line with a mobility strategy that we, hardware officers were getting new smartphones for the first time, um, to do sort of a lot of things on, on, um, policing apps and things like that to again, to avoid them, having to keep driving back to police stations, et cetera. >>And the pilot was so successful. Every officer now has access to this data, um, on their mobile devices. So it literally went from a handful of people in an office somewhere using it to do sort of clever bang things to, um, every officer in the force, being able to access that level of data at their fingertips. Literally. So what they were touched with done before is if they needed to check and address or check details of an individual, um, just as one example, they would either have to, in many cases, go back to a police station to look it up themselves on a desktop computer. Well, they would have to make a call back to a centralized function and speak to an operator, relay the questions, either, wait for the answer or wait for a call back with the answer when those people are doing the data interrogation manually. >>So the biggest change for us is the self-service nature of the data we now have available. So officers can do it themselves on their phone, wherever they might be. So the efficiency savings from that point of view are immense. And I think just parallel to that is the quality of our, because we had a lot of data, but just because you've got a lot of data and a lot of information doesn't mean it's big data and it's valuable necessarily. Um, so again, it was having the single source of truth as we, as we call it. So you know that when you are completing those safe searches and getting the responses back, that it is the most accurate information we hold. And also you're getting it back within minutes, as opposed to, you know, half an hour, an hour or a drive back to a station. So it's making officers more efficient and it's also making them safer. The more efficient they are, the more time they have to spend out with the public doing what they, you know, we all should be doing >>That kind of return on investment because what you were just describing with all the steps that we needed to be taken in prior to this, to verify an address say, and those are precious seconds when someone's life is on the line in, in sort of in the course of everyday police work. >>Absolutely. Yeah, absolutely. It's difficult to put a price on it. It's difficult to quantify. Um, but all the, you know, the minutes here and there certainly add up to a significant amount of efficiency savings, and we've certainly been able to demonstrate the officers are spending less time up police stations as a result or more time out on the front line. Also they're safer because they can get information about what may or may not be and address what may or may not have occurred in an area before very, very quickly without having to wait. >>I do, I want to hear your observations of working so closely with this West Midlands police. Have you noticed anything about changes in its culture and its operating model in how police officers interact with one another? Have you seen any changes since this technology change? >>What's unique about the Western displaces, the buy-in from the top down, the chief and his exact team and Helen as the leader from an IOT perspective, um, the entire force is bought in. So what is a significant change program? Uh, I'm not trickles three. Um, everyone in the organization, um, change is difficult. Um, and there's a lot of time effort that's been put in to bake the technical delivery and the business change and adoption aspects around each of the projects. Um, but you can see the step change that is making in each aspect to the organization, uh, and where that's putting West Midlands police as a leader in, um, technology I'm policing in the UK. And I think globally, >>And this is a question for both of you because Matthew, as you said, change is difficult and there is always a certain intransigence in workplaces about this is just the way we've always done things and we're used to this and don't try us to get us. Don't try to get us to do anything new here. It works. How do you get the buy-in that you need to do this kind of digital transformation? >>I think it would be wrong to say it was easy. Um, um, we also have to bear in mind that this was one program in a five-year program. So there was a lot of change going on, um, both internally for some of our back office functions, as well as front tie, uh, frontline offices. So with DDI in particular, I think the stack change occurred when people could see what it could do for them. You know, we had lots of workshops and seminars where we all talk about, you know, big data and it's going to be great and it's data analytics and it's transformational, you know, and quite rightly people that are very busy doing a day job, but not necessarily technologists in the main and, you know, are particularly interested quite rightly so in what we are not dealing with the cloud, you know? And it was like, yeah, okay. >>It's one more thing. And then when they started to see on that, on their phones and what teams could do, that's when it started to sell itself. And I think that's when we started to see, you know, to see the stat change, you know, and, and if we, if we have any issues now it's literally, you know, our help desks in meltdown. Cause everyone's like, well, we call it manage without this anymore. And I think that speaks for itself. So it doesn't happen overnight. It's sort of incremental changes and then that's a step change in attitude. And when they see it working and they see the benefits, they want to use it more. And that's how it's become fundamental to all policing by itself, really, without much selling >>You, Helen just made a compelling case for how to get buy in. Have you discovered any other best practices when you are trying to get everyone on board for this kind of thing? >>We've um, we've used a lot of the traditional techniques, things around comms and engagement. We've also used things like, um, the 30 day challenge and nudge theory around how can we gradually encourage people to use things? Um, I think there's a point where all of this around, how do we just keep it simple and keep it user centric from an end user perspective? I think DDI is a great example of where the, the technology is incredibly complex. The solution itself is, um, you know, extremely large and, um, has been very difficult to, um, get delivered. But at the heart of it is a very simple front end for the user to encourage it and take that complexity away from them. Uh, I think that's been critical through the whole piece of DDR. >>One final word from Helen. I want to hear, where do you go from here? What is the longterm vision? I know that this has made productivity, um, productivity savings equivalent to 154 full-time officers. Uh, what's next, >>I think really it's around, um, exploiting what we've got. Um, I use the phrase quite a lot, dialing it up, which drives my technical architects crazy, but because it's apparently not that simple, but, um, you know, we've, we've been through significant change in the last five years and we are still continuing to batch all of those changes into everyday, um, operational policing. But what we need to see is we need to exploit and build on the investments that we've made in terms of data and claims specifically, the next step really is about expanding our pool of data and our functions. Um, so that, you know, we keep getting better and better at this. Um, the more we do, the more data we have, the more refined we can be, the more precise we are with all of our actions. Um, you know, we're always being expected to, again, look after the public purse and do more for less. And I think this is certainly an and our cloud journey and cloud first by design, which is where we are now, um, is helping us to be future-proofed. So for us, it's very much an investment. And I see now that we have good at embedded in operational policing for me, this is the start of our journey, not the end. So it's really exciting to see where we can go from here. >>Exciting times. Indeed. Thank you so much. Lily, Helen and Matthew for joining us. I really appreciate it. Thank you. And you are watching the cube stay tuned for more of the cubes coverage of the AWS reinvent Accenture executive summit. I'm Rebecca Knight from around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Hi, everyone. Welcome to the cube virtual coverage of the executive summit at AWS reinvent 2020 virtual. This is the cube virtual. We can't be there in person like we are every year we have to be remote. This executive summit is with special programming supported by Accenture where the cube virtual I'm your host John for a year, we had a great panel here called uncloud first digital transformation from some experts, Stuart driver, the director of it and infrastructure and operates at lion Australia, Douglas Regan, managing director, client account lead at lion for Accenture as a deep Islam associate director application development lead for Accenture gentlemen, thanks for coming on the cube virtual that's a mouthful, all that digital, but the bottom line it's cloud transformation. This is a journey that you guys have been on together for over 10 years to be really a digital company. Now, some things have happened in the past year that kind of brings all this together. This is about the next generation organization. So I want to ask Stuart you first, if you can talk about this transformation at lion has undertaken some of the challenges and opportunities and how this year in particular has brought it together because you know, COVID has been the accelerant of digital transformation. Well, if you're 10 years in, I'm sure you're there. You're in the, uh, on that wave right now. Take a minute to explain this transformation journey. >>Yeah, sure. So number of years back, we looked at kind of our infrastructure and our landscape trying to figure out where we >>Wanted to go next. And we were very analog based and stuck in the old it groove of, you know, Capitol reef rash, um, struggling to transform, struggling to get to a digital platform and we needed to change it up so that we could become very different business to the one that we were back then obviously cloud is an accelerant to that. And we had a number of initiatives that needed a platform to build on. And a cloud infrastructure was the way that we started to do that. So we went through a number of transformation programs that we didn't want to do that in the old world. We wanted to do it in a new world. So for us, it was partnering up with a dried organizations that can take you on the journey and, uh, you know, start to deliver bit by bit incremental progress, uh, to get to the, uh, I guess the promise land. >>Um, we're not, not all the way there, but to where we're on the way along. And then when you get to some of the challenges like we've had this year, um, it makes all of the hard work worthwhile because you can actually change pretty quickly, um, provide capacity and, uh, and increase your environments and, you know, do the things that you need to do in a much more dynamic way than we would have been able to previously where we might've been waiting for the hardware vendors, et cetera, to deliver capacity. So for us this year, it's been a pretty strong year from an it perspective and delivering for the business needs >>Before I hit the Douglas. I want to just real quick, a redirect to you and say, you know, if all the people said, Oh yeah, you got to jump on cloud, get in early, you know, a lot of naysayers like, well, wait till to mature a little bit, really, if you got in early and you, you know, paying your dues, if you will taking that medicine with the cloud, you're really kind of peaking at the right time. Is that true? Is that one of the benefits that comes out of this getting in the cloud? Yeah, >>John, this has been an unprecedented year, right. And, um, you know, Australia, we had to live through Bush fires and then we had covert and, and then we actually had to deliver a, um, a project on very large transformational project, completely remote. And then we also had had some, some cyber challenges, which is public as well. And I don't think if we weren't moved into and enabled through the cloud, we would have been able to achieve that this year. It would have been much different, would have been very difficult to do the backing. We're able to work and partner with Amazon through this year, which is unprecedented and actually come out the other end. Then we've delivered a brand new digital capability across the entire business. Um, in many, you know, wouldn't have been impossible if we could, I guess, state in the old world, the fact that we were moved into the new Naval by the new allowed us to work in this unprecedented year. >>Just quick, what's your personal view on this? Because I've been saying on the Cuban reporting necessity is the mother of all invention and the word agility has been kicked around as kind of a cliche, Oh, it'd be agile. You know, we're going to get the city, you get a minute on specifically, but from your perspective, uh, Douglas, what does that mean to you? Because there is benefits there for being agile. And >>I mean, I think as Stuart mentioned, right, in a lot of these things we try to do and, you know, typically, you know, hardware and of the last >>To be told and, and, and always on the critical path to be done, we really didn't have that in this case, what we were doing with our projects in our deployments, right. We were able to move quickly able to make decisions in line with the business and really get things going. Right. So you see a lot of times in a traditional world, you have these inhibitors, you have these critical path, it takes weeks and months to get things done as opposed to hours and days, and truly allowed us to, we had to, you know, VJ things, move things. And, you know, we were able to do that in this environment with AWS support and the fact that we can kind of turn things off and on as quickly as we need it. >>Yeah. Cloud-scale is great for speed. So DECA, Gardez get your thoughts on this cloud first mission, you know, it, you know, the dev ops world, they saw this early that jumping in there, they saw the, the, the agility. Now the theme this year is modern applications with the COVID pandemic pressure, there's real business pressure to make that happen. How did you guys learn to get there fast? And what specifically did you guys do at Accenture and how did it all come together? Can you take us inside kind of how it played out? >>Oh, right. So yeah, we started off with, as we do in most cases with a much more bigger group, and we worked with lions functional experts and, uh, the lost knowledge that allowed the infrastructure being had. Um, we then applied our journey to cloud strategy, which basically revolves around the seminars and, and, uh, you know, the deep three steps from our perspective, uh, assessing the current environment, setting up the new cloud environment. And as we go modernizing and, and migrating these applications to the cloud now, you know, one of the key things that, uh, you know, we learned along this journey was that, you know, you can have the best plans, but bottom line that we were dealing with, we often than not have to make changes. Uh, what a lot of agility and also work with a lot of collaboration with the, uh, Lyon team, as well as, uh, uh, AWS. I think the key thing for me was being able to really bring it all together. It's not just, uh, you know, essentially mobilize it's all of us working together to make this happen. >>What were some of the learnings real quick journeys? >>So I think so the perspective of the key learnings that, you know, uh, you know, when you look back at, uh, the, the infrastructure that was that we were trying to migrate over to the cloud, a lot of the documentation, et cetera, was not available. We were having to, uh, figure out a lot of things on the fly. Now that really required us to have, uh, uh, people with deep expertise who could go into those environments and, and work out, uh, you know, the best ways to, to migrate the workloads to the cloud. Uh, I think, you know, the, the biggest thing for me was making sure all the had on that real SMEs across the board globally, that we could leverage across the various technologies, uh, uh, and, and, and, you know, that would really work in our collaborative and agile environment with line. >>Let's do what I got to ask you. How did you address your approach to the cloud and what was your experience? >>Yeah, for me, it's around getting the foundations right. To start with and then building on them. Um, so, you know, you've gotta have your, your, your process and you've got to have your, your kind of your infrastructure there and your blueprints ready. Um, AWS do a great job of that, right. Getting the foundations right. And then building upon it, and then, you know, partnering with Accenture allows you to do that very successfully. Um, I think, um, you know, the one thing that was probably surprising to us when we started down this journey and kind of after we got a long way down the track and looking backwards is actually how much you can just turn off. Right? So a lot of stuff that you, uh, you get left with a legacy in your environment, and when you start to work through it with the types of people that civic just mentioned, you know, the technical expertise working with the business, um, you can really rationalize your environment and, uh, you know, cloud is a good opportunity to do that, to drive that legacy out. >>Um, so you know, a few things there, the other thing is, um, you've got to try and figure out the benefits that you're going to get out of moving here. So there's no point just taking something that is not delivering a huge amount of value in the traditional world, moving it into the cloud, and guess what is going to deliver the same limited amount of value. So you've got to transform it, and you've got to make sure that you build it for the future and understand exactly what you're trying to gain out of it. So again, you need a strong collaboration. You need a good partners to work with, and you need good engagement from the business as well, because the kind of, uh, you know, digital transformation, cloud transformation, isn't really an it project, I guess, fundamentally it is at the core, but it's a business project that you've got to get the whole business aligned on. You've got to make sure that your investment streams are appropriate and that you're able to understand the benefits and the value that, so you're going to drive back towards the business. >>Let's do it. If you don't mind me asking, what was some of the obstacles you encountered or learnings, um, that might different from the expectation we all been there, Hey, you know, we're going to change the world. Here's the sales pitch, here's the outcome. And then obviously things happen, you know, you learn legacy, okay. Let's put some containerization around that cloud native, um, all that rational. You're talking about what are, and you're going to have obstacles. That's how you learn. That's how perfection has developed. How, what obstacles did you come up with and how are they different from your expectations going in? >>Yeah, they're probably no different from other people that have gone down the same journey. If I'm totally honest, the, you know, 70 or 80% of what you do is relatively easy of the known quantity. It's relatively modern architectures and infrastructures, and you can upgrade, migrate, move them into the cloud, whatever it is, rehost, replatform, rearchitect, whatever it is you want to do, it's the other stuff, right? It's the stuff that always gets left behind. And that's the challenge. It's, it's getting that last bit over the line and making sure that you haven't invested in the future while still carrying all of your legacy costs and complexity within your environment. So, um, to be quite honest, that's probably taken longer and has been more of a challenge than we thought it would be. Um, the other piece I touched on earlier on in terms of what was surprising was actually how much of, uh, your environment is actually not needed anymore. >>When you start to put a critical eye across it and understand, um, uh, ask the tough questions and start to understand exactly what, what it is you're trying to achieve. So if you ask a part of a business, do they still need this application or this service a hundred percent of the time, they will say yes until you start to lay out to them, okay, now I'm going to cost you this to migrate it or this, to run it in the future. And, you know, here's your ongoing costs and, you know, et cetera, et cetera. And then, uh, for a significant amount of those answers, you get a different response when you start to layer on the true value of it. So you start to flush out those hidden costs within the business, and you start to make some critical decisions as a company based on, uh, based on that. So that was a little tougher than we first thought and probably broader than we thought there was more of that than we anticipated, um, which actually results in a much cleaner environment post and post migration. >>You know, the old expression, if it moves automated, you know, it's kind of a joke on government, how they want to tax everything, you know, you want to automate, that's a key thing in cloud, and you've got to discover those opportunities to create value Stuart and Sadiq. Mainly if you can weigh in on this love to know the percentage of total cloud that you have now, versus when you started, because as you start to uncover whether it's by design for purpose, or you discover opportunities to innovate, like you guys have, I'm sure it kind of, you took on some territory inside Lyon, what percentage of cloud now versus stark? >>Yeah. At the start, it was minimal, right. You know, close to zero, right. Single and single digits. Right. It was mainly SAS environments that we had, uh, sitting in clouds when we, uh, when we started, um, Doug mentioned earlier on a really significant transformation project, um, that we've undertaken and recently gone live on a multi-year one. Um, you know, that's all stood up on AWS and is a significant portion of our environment, um, in terms of what we can move to cloud. Uh, we're probably at about 80 or 90% now. And the balanced bit is, um, legacy infrastructure that is just gonna retire as we go through the cycle rather than migrate to the cloud. Um, so we are significantly cloud-based and, uh, you know, we're reaping the benefits of it. I know you like 20, 20, I'm actually glad that you did all the hard yards in the previous years when you started that business challenges thrown out as, >>So do you any common reaction to the cloud percentage penetration? >>I mean, guys don't, but I was going to say was, I think it's like the 80 20 rule, right? We, we, we worked really hard in the, you know, I think 2018, 19 to get any person off, uh, after getting a loan, the cloud and, or the last year is the 20% that we have been migrating. And Stuart said like, uh, not that is also, that's going to be a good diet. And I think our next big step is going to be obviously, you know, the icing on the tape, which is to decommission all these apps as well. Right. So, you know, to get the real benefits out of, uh, the whole conservation program from a, uh, from a >>Douglas and Stewart, can you guys talk about the decision around the cloud because you guys have had success with AWS, why AWS how's that decision made? Can you guys give some insight into some of those thoughts? >>I can stop, start off. I think back when the decision was made and it was, it was a while back, um, you know, there's some clear advantages of moving relay, Ws, a lot of alignment with some of the significant projects and, uh, the trend, that particular one big transformation project that we've alluded to as well. Um, you know, we needed some, uh, some very robust and, um, just future proof and, um, proven technology. And they Ws gave that to us. We needed a lot of those blueprints to help us move down the path. We didn't want to reinvent everything. So, um, you know, having a lot of that legwork done for us and AWS gives you that, right. And, and particularly when you partner up with, uh, with a company like Accenture as well, you get combinations of the technology and the skills and the knowledge to, to move you forward in that direction. >>So, um, you know, for us, it was a, uh, uh, it was a decision based on, you know, best of breed, um, you know, looking forward and, and trying to predict the future needs and, and, and kind of the environmental that we might need. Um, and, you know, partnering up with organizations that can then take you on the journey. Yeah. And just to build on it. So obviously, you know, lion's like an AWS, but, you know, we knew it was a very good choice given that, um, uh, the skills and the capability that we had, as well as the assets and tools we had to get the most out of, um, AWS and obviously our, our CEO globally, you know, announcement about a huge investment that we're making in cloud. Um, but you know, we've, we've worked very well DWS, we've done some joint workshops and joint investments, um, some joint POC. So yeah, w we have a very good working relationship, AWS, and I think, um, one incident to reflect upon whether it's cyber it's and again, where we actually jointly, you know, dove in with, um, with Amazon and some of their security experts and our experts. And we're able to actually work through that with mine quite successfully. So, um, you know, really good behaviors as an organization, but also really good capabilities. >>Yeah. As you guys, you're essential cloud outcomes, research shown, it's the cycle of innovation with the cloud. That's creating a lot of benefits, knowing what you guys know now, looking back certainly COVID is impacted a lot of people kind of going through the same process, knowing what you guys know now, would you advocate people to jump on this transformation journey? If so, how, and what tweaks they make, which changes, what would you advise? >>Uh, I might take that one to start with. Um, I hate to think where we would have been when, uh, COVID kicked off here in Australia and, you know, we were all sent home, literally were at work on the Friday, and then over the weekend. And then Monday, we were told not to come back into the office and all of a sudden, um, our capacity in terms of remote access and I quadrupled, or more four, five X, uh, what we had on the Friday we needed on the Monday. And we were able to stand that up during the day Monday and into Tuesday, because we were cloud-based. And, uh, you know, we just found up your instances and, uh, you know, sort of our licensing, et cetera. And we had all of our people working remotely, um, within, uh, you know, effectively one business day. >>Um, I know peers of mine in other organizations and industries that are relying on kind of a traditional wise and getting hardware, et cetera, that were weeks and months before they could get their, the right hardware to be able to deliver to their user base. So, um, you know, one example where you're able to scale and, uh, uh, get, uh, get value out of this platform beyond probably what was anticipated at the time you talk about, um, you know, less the, in all of these kinds of things. And you can also think of a few scenarios, but real world ones where you're getting your business back up and running in that period of time is, is just phenomenal. There's other stuff, right? There's these programs that we've rolled out, you do your sizing, um, and in the traditional world, you would just go out and buy more servers than you need. >>And, you know, probably never realize the full value of those, you know, the capability of those servers over the life cycle of them. Whereas you're in a cloud world, you put in what you think is right. And if it's not right, you pump it up a little bit when, when all of your metrics and so on, tell you that you need to bump it up. And conversely you scale it down at the same rate. So for us, with the types of challenges and programs and, uh, uh, and just business need, that's come at as this year, uh, we wouldn't have been able to do it without a strong cloud base, uh, to, uh, to move forward >>Know Douglas. One of the things that I talked to, a lot of people on the right side of history who have been on the right wave with cloud, with the pandemic, and they're happy, they're like, and they're humble. Like, well, we're just lucky, you know, luck is preparation meets opportunity. And this is really about you guys getting in early and being prepared and readiness. This is kind of important as people realize, then you gotta be ready. I mean, it's not just, you don't get lucky by being in the right place, the right time. And there were a lot of companies were on the wrong side of history here who might get washed away. This is a super important, I think, >>To echo and kind of build on what Stewart said. I think that the reason that we've had success and I guess the momentum is we, we didn't just do it in isolation within it and technology. It was actually linked to broader business changes, you know, creating basically a digital platform for the entire business, moving the business, where are they going to be able to come back stronger after COVID, when they're actually set up for growth, um, and actually allows, you know, lying to achievements growth objectives, and also its ambitions as far as what it wants to do, uh, with growth in whatever they make, do with acquiring other companies and moving into different markets and launching new products. So we've actually done it in a way that is, you know, real and direct business benefit, uh, that actually enables line to grow >>General. I really appreciate you coming. I have one final question. If you can wrap up here, uh, Stuart and Douglas, you don't mind weighing in what's the priorities for the future. What's next for lion in a century >>Christmas holidays, I'll start Christmas holidays been a big deal and then a, and then a reset, obviously, right? So, um, you know, it's, it's figuring out, uh, transform what we've already transformed, if that makes sense. So God, a huge proportion of our services sitting in the cloud. Um, but we know we're not done even with the stuff that is in there. We need to take those next steps. We need more and more automation and orchestration. We need to, um, our environment, there's more future growth. We need to be able to work with the business and understand what's coming at them so that we can, um, you know, build that into, into our environment. So again, it's really transformation on top of transformation is the way that I'll describe it. And it's really an open book, right? Once you get it in and you've got the capabilities and the evolving tool sets that, uh, AWS continue to bring to the market, um, you know, working with the partners to, to figure out how we unlock that value, um, you know, drive our costs down efficiency, uh, all of those kind of, you know, standard metrics. >>Um, but you know, we're looking for the next things to transform and show value back out to our customer base, um, that, uh, that we continue to, you know, sell our products to and work with and understand how we can better meet their needs. Yeah, I think just to echo that, I think it's really leveraging this and then did you capability they have and getting the most out of that investment. And then I think it's also moving to, uh, and adopting more new ways of working as far as, you know, the speed of the business, um, is getting up the speed of the market is changing. So being able to launch and do things quickly and also, um, competitive and efficient operating costs, uh, now that they're in the cloud, right? So I think it's really leveraging the most out of the platform and then, you know, being efficient in launching things. So putting them with the business, >>Any word from you on your priorities by you see this year in folding, >>There's got to say like e-learning squares, right, for me around, you know, just journey. This is a journey to the cloud, right. >>And, uh, you know, as well, the sort of Saturday, it's getting all, you know, different parts of the organization along the journey business to it, to your, uh, product lenders, et cetera. Right. And it takes time. It is tough, but, uh, uh, you know, you got to get started on it. And, you know, once we, once we finish off, uh, it's the realization of the benefits now that, you know, looking forward, I think for, from Alliance perspective, it is, uh, you know, once we migrate all the workloads to the cloud, it is leveraging, uh, all staff, right. And as I think students said earlier, uh, with, uh, you know, the latest and greatest stuff that AWS is basically working to see how we can really, uh, achieve more better operational excellence, uh, from a, uh, from a cloud perspective. >>Well, Stewart, thanks for coming on with a and sharing your environment and what's going on and your journey you're on the right wave. Did the work you're in, it's all coming together with faster, congratulations for your success, and, uh, really appreciate Douglas with Steve for coming on as well from Accenture. Thank you for coming on. Thanks, John. Okay. Just the cubes coverage of executive summit at AWS reinvent. This is where all the thought leaders share their best practices, their journeys, and of course, special programming with Accenture and the cube. I'm Sean ferry, your host, thanks for watching from around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Welcome everyone to the cube virtuals coverage of the Accenture executive summit. Part of AWS reinvent 2020. I'm your host Rebecca Knight. We are talking today about reinventing the energy data platform. We have two guests joining us. First. We have Johan Krebbers. He is the GM digital emerging technologies and VP of it. Innovation at shell. Thank you so much for coming on the show, Johan you're welcome. And next we have Liz Dennett. She is the lead solution architect for O S D U on AWS. Thank you so much Liz to be here. So I want to start our conversation by talking about OSD. You like so many great innovations. It started with a problem Johan. What was the problem you were trying to solve at shell? >>Yeah, the ethical back a couple of years, we started shoving 2017 where we had a meeting with the deg, the gas exploration in shell, and the main problem they had. Of course, they got lots of lots of data, but are unable to find the right data. They need to work from all over the place. And totally >>Went to real, probably tried to solve is how that person working exploration could find their proper date, not just a day, but also the date you really needed that we did probably talked about his summer 2017. And we said, okay, they don't maybe see this moving forward is to start pulling that data into a single data platform. And that, that was at the time that we called it as the, you, the subsurface data universe in there was about the shell name was so in, in January, 2018, we started a project with Amazon to start grating a co fricking that building, that Stu environment that subserve the universe, so that single data level to put all your exploration and Wells data into that single environment that was intent. And every cent, um, already in March of that same year, we said, well, from Michelle point of view, we will be far better off if we could make this an industry solution and not just a shelf sluice, because Shelby, Shelby, if you can make an industry solution where people are developing applications for it, it also is far better than for shell to say we haven't shell special solution because we don't make money out of how we start a day that we can make money out of it. >>We have access to the data, we can explore the data. So storing the data we should do as efficiently possibly can. So we monitor, we reach out to about eight or nine other large, uh, or I guess operators like the economics, like the tutorials, like the chefs of this world and say, Hey, we inshallah doing this. Do you want to join this effort? And to our surprise, they all said, yes. And then in September, 2018, we had our kickoff meeting with your open group where we said, we said, okay, if you want to work together with lots of other companies, we also need to look at okay, how, how we organize that. Or if you started working with lots of large companies, you need to have some legal framework around some framework around it. So that's why we went to the open group and say, okay, let's, let's form the old forum as we call it at the time. So it's September, 2080, where I did a Galleria in Houston, but the kickoff meeting for the OT four with about 10 members at the time. So there's just over two years ago, we started an exercise for me called ODU, uh, kicked it off. Uh, and so that's really them will be coming from and how we've got there. Also >>The origin story. Um, what, so what digging a little deeper there? What were some of the things you were trying to achieve with the OSU? >>Well, a couple of things we've tried to achieve with you, um, first is really separating data from applications for what is, what is the biggest problem we have in the subsurface space that the data and applications are all interlinked tied together. And if, if you have them and a new company coming along and say, I have this new application and is access to the data that is not possible because the data often interlinked with the application. So the first thing we did is really breaking the link between the application, the data out as those levels, the first thing we did, secondly, put all the data to a single data platform, take the silos out what was happening in the sub-service space and know they got all the data in what we call silos in small little islands out there. So what we're trying to do is first break the link to great, great. >>They put the data single day, the bathroom, and the third part, put a standard layer on top of that, it's an API layer on top to create a platform. So we could create an ecosystem out of companies to start a valving shop application on top of dev data platform across you might have a data platform, but you're only successful. If you have a rich ecosystem of people start developing applications on top of that. And then you can export the data like small companies, last company, university, you name it, we're getting after create an ecosystem out there. So the three things were as was first break, the link between application data, just break it and put data at the center and also make sure that data, this data structure would not be managed by one company. It would only be met. It will be managed the data structures by the ODI forum. Secondly, then put a data, a single data platform certainly then has an API layer on top and then create an ecosystem. Really go for people, say, please start developing applications because now you have access to the data or the data no longer linked to somebody whose application was all freely available, but an API layer that was, that was all September, 2018, more or less >>To hear a little bit. Can you talk a little bit about some of the imperatives from the AWS standpoint in terms of what you were trying to achieve with this? Yeah, absolutely. And this whole thing is Johann said started with a challenge that was really brought out at shell. The challenges that geoscientists spend up to 70% of their time looking for data. I'm a geologist I've spent more than 70% of my time trying to find data in these silos. And from there, instead of just figuring out how we could address that one problem, we worked together to really understand the root cause of these challenges and working backwards from that use case OSU and OSU on AWS has really enabled customers to create solutions that span, not just this in particular problem, but can really scale to be inclusive of the entire energy value chain and deliver value from these use cases to the energy industry and beyond. >>Thank you, Lee, >>Uh, Johann. So talk a little bit about Accenture's cloud first approach and how it has, uh, helped shell work faster and better with it. >>Well, of course, access a cloud first approach only works together. It's been an Amazon environment, AWS environment. So we really look at, uh, at, at Accenture and others up together helping shell in this space. Now the combination of the two is where we're really looking at, uh, where access of course can be increased knowledge student to that environment operates support knowledge to do an environment. And of course, Amazon will be doing that to this environment that underpinning their services, et cetera. So, uh, we would expect a combination, a lot of goods when we started rolling out and put in production, the old you are three and four because we are anus. Then when release feed comes to the market in Q1 next year of ODU, when he started going to Audi production inside shell, but as the first release, which is ready for prime time production across an enterprise will be released just before Christmas, last year when he's still in may of this year. But really three is the first release we want to use for full scale production deployment inside shell, and also all the operators around the world. And there is one Amazon, sorry, at that one. Um, extensive can play a role in the ongoing, in the, in deployment building up, but also support environment. >>So one of the other things that we talk a lot about here on the cube is sustainability. And this is a big imperative at so many organizations around the world in particular energy companies. How does this move to OSD you, uh, help organizations become, how is this a greener solution for companies? >>Well, first he make it's a greatest solution because you start making a much more efficient use of your resources. is already an important one. The second thing we're doing is also, we started with ODU in framers, in the oil and gas space in the expert development space. We've grown, uh, OTU in our strategy, we've grown. I was, you know, also do an alternative energy sociology. We'll all start supporting next year. Things like solar farms, wind farms, uh, the, the dermatomal environment hydration. So it becomes an and, and an open energy data platform, not just what I want to get into steep that's for new industry, any type of energy industry. So our focus is to create, bring the data of all those various energy data sources to get me to a single data platform you can to use AI and other technology on top of that, to exploit the data, to beat again into a single data platform. >>Liz, I want to ask you about security because security is, is, is such a big concern when it comes to data. How secure is the data on OSD? You, um, actually, can I talk, can I do a follow up on this sustainability talking? Oh, absolutely. By all means. I mean, I want to interject though security is absolutely our top priority. I don't mean to move away from that, but with sustainability, in addition to the benefits of the OSU data platform, when a company moves from on-prem to the cloud, they're also able to leverage the benefits of scale. Now, AWS is committed to running our business in the most environmentally friendly way possible. And our scale allows us to achieve higher resource utilization and energy efficiency than a typical data center. Now, a recent study by four 51 research found that AWS is infrastructure is 3.6 times more energy efficient than the median of surveyed enterprise data centers. Two thirds of that advantage is due to higher, um, server utilization and a more energy efficient server population. But when you factor in the carbon intensity of consumed electricity and renewable energy purchases for 51 found that AWS performs the same task with an 88% lower carbon footprint. Now that's just another way that AWS and OSU are working to support our customers is they seek to better understand their workflows and make their legacy businesses less carbon intensive. >>That's that's incorrect. Those are those statistics are incredible. Do you want to talk a little bit now about security? Absolutely. Security will always be AWS is top priority. In fact, AWS has been architected to be the most flexible and secure cloud computing environment available today. Our core infrastructure is built to satisfy. There are the security requirements for the military global banks and other high sensitivity organizations. And in fact, AWS uses the same secure hardware and software to build an operate each of our regions. So that customers benefit from the only commercial cloud that's hat hits service offerings and associated supply chain vetted and deemed secure enough for top secret workloads. That's backed by a deep set of cloud security tools with more than 200 security compliance and governmental service and key features as well as an ecosystem of partners like Accenture, that can really help our customers to make sure that their environments for their data meet and or exceed their security requirements. Johann, I want you to talk a little bit about how OSD you can be used today. Does it only handle subsurface data? >>Uh, today it's Honda's subserves or Wells data. We got to add to that production around the middle of next year. That means that the whole upstate business. So we've got goes from exploration all the way to production. You've made it together into a single data platform. So production will be added around Q3 of next year. Then a principal. We have a difficult, the elder data that single environment, and we want to extend it then to other data sources or energy sources like solar farms, wind farms, uh, hydrogen, hydro, et cetera. So we're going to add a whore, a whole list of audit day energy source to them and be all the data together into a single data club. So we move from an all in guest data platform to an entity data platform. That's really what our objective is because the whole industry, if you look it over, look at our competition or moving in that same two acts of quantity of course, are very strong in oil and gas, but also increased the, got into other energy sources like, like solar, like wind, like th like highly attended, et cetera. So we would be moving exactly what it's saying, method that, that, that, that the whole OSU can't really support at home. And as a spectrum of energy sources, >>Of course, and Liz and Johan. I want you to close this out here by just giving us a look into your crystal balls and talking about the five and 10 year plan for OSD. We'll start with you, Liz, what do you, what do you see as the future holding for this platform? Um, honestly, the incredibly cool thing about working at AWS is you never know where the innovation and the journey is going to take you. I personally am looking forward to work with our customers, wherever their OSU journeys, take them, whether it's enabling new energy solutions or continuing to expand, to support use cases throughout the energy value chain and beyond, but really looking forward to continuing to partner as we innovate to slay tomorrow's challenges, Johann first, nobody can look at any more nowadays, especially 10 years, but our objective is really in the next five years, you will become the key backbone for energy companies for store your data intelligence and optimize the whole supply energy supply chain, uh, in this world Johan Krebbers Liz Dennett. Thank you so much for coming on the cube virtual. Thank you. I'm Rebecca Knight stay tuned for more of our coverage of the Accenture executive summit >>From around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Welcome everyone to the cubes coverage of the Accenture executive summit. Part of AWS reinvent. I'm your host Rebecca Knight today we're welcoming back to Cuba alum. We have Kishor Dirk. He is the Accenture senior managing director cloud first global services lead. Welcome back to the show Kishore. Thank you very much. Nice to meet again. And, uh, Tristan moral horse set. He is the managing director, Accenture cloud first North American growth. Welcome back to you to Tristin. Great to be back in grapes here again, Rebecca. Exactly. Even in this virtual format, it is good to see your faces. Um, today we're going to be talking about my NAB and green cloud advisor capability. Kishor I want to start with you. So my NAB is a platform that is really celebrating its first year in existence. Uh, November, 2019 is when Accenture introduced it. Uh, but it's, it has new relevance in light of this global pandemic that we are all enduring and suffering through. Tell us a little bit about the lineup platform, what it is that cloud platform to help our clients navigate the complexity of cloud and cloud decisions and to make it faster. And obviously, you know, we have in the cloud, uh, you know, with >>The increased relevance and all the, especially over the last few months with the impact of COVID crisis and exhibition of digital transformation, you know, we are seeing the transformation of the exhibition to cloud much faster. This platform that you're talking about has enabled hardened 40 clients globally across different industries. You identify the right cloud solution, navigate the complexity, provide a cloud specific solution simulate for our clients to meet that strategy business needs. And the clients are loving it. >>I want to go to you now trust and tell us a little bit about how my nav works and how it helps companies make good cloud choice. >>Yeah, so Rebecca, we we've talked about cloud is, is more than just infrastructure and that's what mine app tries to solve for it. It really looks at a variety of variables, including infrastructure operating model and fundamentally what clients' business outcomes, um, uh, our clients are, are looking for and, and identifies the optimal solution for what they need. And we assign this to accelerate. And we mentioned that the pandemic, one of the big focus now is to accelerate. And so we worked through a three-step process. The first is scanning and assessing our client's infrastructure, their data landscape, their application. Second, we use our automated artificial intelligence engine to interact with. We have a wide variety and library of, uh, collective plot expertise. And we look to recommend what is the enterprise architecture and solution. And then third, before we live with our clients, we look to simulate and test this scaled up model. And the simulation gives our clients a way to see what cloud is going to look like, feel like and how it's going to transform their business before they go there. >>Tell us a little bit about that in real life. Now as a company, so many of people are working remotely having to collaborate, uh, not in real life. How is that helping them right now? >>So, um, the, the pandemic has put a tremendous strain on systems, uh, because of the demand on those systems. And so we talk about resiliency. We also now need to collaborate across data across people. Um, I think all of us are calling from a variety of different places where our last year we were all at the VA cube itself. Um, and, and cloud technologies such as teams, zoom that we're we're leveraging now has fundamentally accelerated and clients are looking to onboard this for their capabilities. They're trying to accelerate their journey. They realize that now the cloud is what is going to become important for them to differentiate. Once we come out of the pandemic and the ability to collaborate with their employees, their partners, and their clients through these systems is becoming a true business differentiator for our clients. >>Keisha, I want to talk with you now about my navs multiple capabilities, um, and helping clients design and navigate their cloud journeys. Tell us a little bit about the green cloud advisor capability and its significance, particularly as so many companies are thinking more deeply and thoughtfully about sustainability. >>Yes. So since the launch of my NAB, we continue to enhance capabilities for our clients. One of the significant, uh, capabilities that we have enabled is the being or advisor today. You know, Rebecca, a lot of the businesses are more environmentally aware and are expanding efforts to decrease power consumption, uh, and obviously carbon emissions and, uh, and run a sustainable operations across every aspect of the enterprise. Uh, as a result, you're seeing an increasing trend in adoption of energy, efficient infrastructure in the global market. And one of the things that we did, a lot of research we found out is that there's an ability to influence our client's carbon footprint through a better cloud solution. And that's what we internalize, uh, brings to us, uh, in, in terms of a lot of the client connotation that you're seeing in Europe, North America and others. Lot of our clients are accelerating to a green cloud strategy to unlock greater financial societal and environmental benefit, uh, through obviously cloud-based circular, operational, sustainable products and services. That is something that we are enhancing my now, and we are having active client discussions at this point of time. >>So Tristan, tell us a little bit about how this capability helps clients make greener decisions. >>Yeah. Um, well, let's start about the investments from the cloud providers in renewable and sustainable energy. Um, they have most of the hyperscalers today, um, have been investing significantly on data centers that are run on renewable energy, some incredibly creative constructs on the, how, how to do that. And sustainability is there for a key, um, key item of importance for the hyperscalers and also for our clients who now are looking for sustainable energy. And it turns out this marriage is now possible. I can, we marry the, the green capabilities of the cloud providers with a sustainability agenda of our clients. And so what we look into the way the mind works is it looks at industry benchmarks and evaluates our current clients, um, capabilities and carpet footprint leveraging their existing data centers. We then look to model from an end-to-end perspective, how the, their journey to the cloud leveraging sustainable and, um, and data centers with renewable energy. We look at how their solution will look like and, and quantify carbon tax credits, um, improve a green index score and provide quantifiable, um, green cloud capabilities and measurable outcomes to our clients, shareholders, stakeholders, clients, and customers. Um, and our green plot advisers sustainability solutions already been implemented at three clients. And in many cases in two cases has helped them reduce the carbon footprint by up to 400% through migration from their existing data center to green cloud. Very, very, >>That is remarkable. Now tell us a little bit about the kinds of clients. Is this, is this more interesting to clients in Europe? Would you say that it's catching on in the United States? Where, what is the breakdown that you're seeing right now? >>Sustainability is becoming such a global agenda and we're seeing our clients, um, uh, tie this and put this at board level, um, uh, agenda and requirements across the globe. Um, Europe has specific constraints around data sovereignty, right, where they need their data in country, but from a green, a sustainability agenda, we see clients across all our markets, North America, Europe in our growth markets adopt this. And we have seen case studies and all three months, >>Kesha. I want to bring you back into the conversation. Talk a little bit about how MindUP ties into Accenture's cloud first strategy, your Accenture's CEO, Julie Sweet, um, has talked about post COVID leadership, requiring every business to become a cloud first business. Tell us a little bit about how this ethos is in Accenture and how you're sort of looking outward with it too. >>So Rebecca mine is the launch pad, uh, to a cloud first transformation for our clients. Uh, Accenture, see your jewelry suite, uh, shared the Accenture cloud first and our substantial investment demonstrate our commitment and is delivering greater value for our clients when they need it the most. And with the digital transformation requiring cloud at scale, you know, we're seeing that in the post COVID leadership, it requires that every business should become a cloud business. And my nap helps them get there by evaluating the cloud landscape, navigating the complexity, modeling architecting and simulating an optimal cloud solution for our clients. And as Justin was sharing a greener cloud. >>So Tristan, talk a little bit more about some of the real life use cases in terms of what are we, what are clients seeing? What are the results that they're having? >>Yes. Thank you, Rebecca. I would say two key things right around my notes. The first is the iterative process. Clients don't want to wait, um, until they get started, they want to get started and see what their journey is going to look like. And the second is fundamental acceleration, dependent make, as we talked about, has accelerated the need to move to cloud very quickly. And my nav is there to do that. So how do we do that? First is generating the business cases. Clients need to know in many cases that they have a business case by business case, we talk about the financial benefits, as well as the business outcomes, the green, green clot impact sustainability impacts with minus. We can build initial recommendations using a basic understanding of their environment and benchmarks in weeks versus months with indicative value savings in the millions of dollars arranges. >>So for example, very recently, we worked with a global oil and gas company, and in only two weeks, we're able to provide an indicative savings where $27 million over five years, this enabled the client to get started, knowing that there is a business case benefit and then iterate on it. And this iteration is, I would say the second point that is particularly important with my nav that we've seen in bank of clients, which is, um, any journey starts with an understanding of what is the application landscape and what are we trying to do with those, these initial assessments that used to take six to eight weeks are now taking anywhere from two to four weeks. So we're seeing a 40 to 50% reduction in the initial assessment, which gets clients started in their journey. And then finally we've had discussions with all of the hyperscalers to help partner with Accenture and leverage mine after prepared their detailed business case module as they're going to clients. And as they're accelerating the client's journey, so real results, real acceleration. And is there a journey? Do I have a business case and furthermore accelerating the journey once we are by giving the ability to work in iterative approach. >>I mean, it sounds as though that the company that clients and and employees are sort of saying, this is an amazing time savings look at what I can do here in, in so much in a condensed amount of time, but in terms of getting everyone on board, one of the things we talked about last time we met, uh, Tristin was just how much, uh, how one of the obstacles is getting people to sign on and the new technologies and new platforms. Those are often the obstacles and struggles that companies face. Have you found that at all? Or what is sort of the feedback that you're getting? >>Yeah, sorry. Yes. We clearly, there are always obstacles to a cloud journey. If there were an obstacles, all our clients would be, uh, already fully in the cloud. What man I gives the ability is to navigate through those, to start quickly. And then as we identify obstacles, we can simulate what things are going to look like. We can continue with certain parts of the journey while we deal with that obstacle. And it's a fundamental accelerator. Whereas in the past one, obstacle would prevent a class from starting. We can now start to address the obstacles one at a time while continuing and accelerating the contrary. That is the fundamental difference. >>Kishor I want to give you the final word here. Tell us a little bit about what is next for Accenture might have and what we'll be discussing next year at the Accenture executive summit, >>Rebecca, we are continuously evolving with our client needs and reinventing reinventing for the future. Well, mine has been toward advisor. Our plan is to help our clients reduce carbon footprint and again, migrate to a green cloud. Uh, and additionally, we're looking at, you know, two capabilities, uh, which include sovereign cloud advisor, uh, with clients, especially in, in Europe and others are under pressure to meet, uh, stringent data norms that Kristen was talking about. And the sovereign cloud advisor helps organization to create an architecture cloud architecture that complies with the green. Uh, I would say the data sovereignty norms that is out there. The other element is around data to cloud. We are seeing massive migration, uh, for, uh, for a lot of the data to cloud. And there's a lot of migration hurdles that come within that. Uh, we have expanded mine app to support assessment capabilities, uh, for, uh, assessing applications, infrastructure, but also covering the entire state, including data and the code level to determine the right cloud solution. So we are, we are pushing the boundaries on what mine app can do with mine. Have you created the ability to take the guesswork out of cloud, navigate the complexity? We are rolling risks costs, and we are, you know, achieving client's static business objectives while building a sustainable alerts with being cloud, >>Any platform that can take some of the guesswork out of the future. I am I'm on board with thank you so much, Tristin and Kishore. This has been a great conversation. Stay tuned for more of the cubes coverage of the Accenture executive summit. I'm Rebecca Knight.

Published Date : Dec 1 2020

SUMMARY :

It's the cube with digital coverage Welcome to cube three 60 fives coverage of the Accenture executive summit. Thanks for having me here. impact of the COVID-19 pandemic has been, what are you hearing from clients? you know, various facets, you know, um, first and foremost, to this reasonably okay, and are, you know, launching to So you just talked about the widening gap. all the changes the pandemic has brought to them. in the cloud that we are going to see. Can you tell us a little bit more about what this strategy entails? all of the systems under which they attract need to be liberated so that you could drive now, the center of gravity is elevated to it becoming a C-suite agenda on everybody's And it, and it's a strategy, but the way you're describing it, it sounds like it's also a mindset and an approach, That is their employees, uh, because you do, across every department, I'm the agent of this change is going to be the employees or weapon, So how are you helping your clients, And that is again, the power of cloud. And the power of cloud is to get all of these capabilities from outside that employee, the employee will be more engaged in his or her job and therefore And this is, um, you know, no more true than how So at Accenture, you have long, long, deep Stan, sorry, And in fact, in the cloud world, it was one of the first, um, And one great example is what we are doing with Takeda, uh, billable, So all of these things that we will do Yeah, the future to the next, you know, base camp, as I would call it to further this productivity, And the evolution that is going to happen where, you know, the human grace of mankind, I genuinely believe that cloud first is going to be in the forefront of that change It's the cube with digital coverage I want to start by asking you what it is that we mean when we say green cloud, magnitude of the problem that is out there and how do we pursue a green approach. Them a lot of questions, the decision to make, uh, this particular, And, uh, you know, the, obviously the companies have to unlock greater financial How do you partner and what is your approach in terms of helping them with their migrations? uh, you know, from a few manufacturers hand sanitizers, and to answer it role there, uh, you know, from, in terms of our clients, you know, there are multiple steps And in the third year and another 3 million analytics costs that are saved through right-sizing Instead of it, we practice what we preach, and that is something that we take it to heart. We know that conquering this pandemic is going to take a coordinated And it's about a group of global stakeholders cooperating to simultaneously manage the uh, in, in UK to build, uh, uh, you know, uh, Microsoft teams in What do you see as the different, the financial security or agility benefits to cloud. And obviously the ecosystem partnership that we have that We, what, what do you think the next 12 to 24 months? And we all along with Accenture clients will win. Thank you so much. It's the cube with digital coverage of AWS reinvent executive And what happens when you bring together the scientific and I think that, you know, there's a, there's a need ultimately to, you know, accelerate and, And, you know, we were commenting on this earlier, but there's, you know, it's been highlighted by a number of factors. And I think that, you know, that's going to help us make faster, better decisions. Um, and so I think with that, you know, there's a few different, How do we re-imagine that, you know, how do ideas go from getting tested So Arjun, I want to bring you into this conversation a little bit, let let's delve into those a bit. It was, uh, something that, you know, we had all to do differently. And maybe the third thing I would say is this one team And I think if you really think about what he's talking about, Because the old ways of thinking where you've got application people and infrastructure, How will their experience of work change and how are you helping re-imagine and And it's something that, you know, I think we all have to think a lot about, I mean, And then secondly, I think that, you know, we're, we're very clear that there's a number of areas where there are Uh, and so I think that that's, you know, one, one element that, uh, can be considered. or how do we collaborate across the number of boundaries, you know, and I think, uh, Arjun spoke eloquently the customer obsession and this idea of innovating much more quickly. and Carl mentioned some of the things that, you know, partner like AWS can bring to the table is we talk a lot about builders, And it's not just the technical people or the it people who are And Accenture's, and so we were able to bring that together. And so we chose, you know, uh, with our focus on innovation that when people think about cloud, you know, you always think about infrastructure technology. And thank you for tuning into the cube. It's the cube with digital coverage So we are going to be talking and also what were some of the challenges that you were grappling with prior to this initiative? Um, so the reason we sort of embarked um, you know, certainly as a, as an it leader and sort of my operational colleagues, What is the art of the possible, can you tell us a little bit about why you chose the public sector that, you know, there are many rules and regulations, uh, quite rightly as you would expect Matthew, I want to bring you into the conversation a little bit here. to bring in a number of the different themes that we have say, cloud teams, security teams, um, I mean, so much of this is about embracing comprehensive change to experiment and innovate and and the outcomes they're looking to achieve rather than simply focusing on a long list of requirements, It's not always a one size fits all. um, that is gonna update before you even get that. So to give you a little bit of, of context, when we, um, started And the pilot was so successful. And I think just parallel to that is the quality of our, because we had a lot of data, That kind of return on investment because what you were just describing with all the steps that we needed Um, but all the, you know, the minutes here and there certainly add up Have you seen any changes Um, but you can see the step change that is making in each aspect to the organization, And this is a question for both of you because Matthew, as you said, change is difficult and there is always a certain You know, we had lots of workshops and seminars where we all talk about, you know, you know, to see the stat change, you know, and, and if we, if we have any issues now it's literally, when you are trying to get everyone on board for this kind of thing? The solution itself is, um, you know, extremely large and, um, I want to hear, where do you go from here? crazy, but because it's apparently not that simple, but, um, you know, And you are watching the cube stay tuned for more of the cubes coverage of the AWS in particular has brought it together because you know, COVID has been the accelerant So number of years back, we looked at kind of our infrastructure and our landscape trying to figure uh, you know, start to deliver bit by bit incremental progress, uh, to get to the, of the challenges like we've had this year, um, it makes all of the hard work worthwhile because you can actually I want to just real quick, a redirect to you and say, you know, if all the people said, Oh yeah, And, um, you know, Australia, we had to live through Bush fires You know, we're going to get the city, you get a minute on specifically, but from your perspective, uh, Douglas, to hours and days, and truly allowed us to, we had to, you know, VJ things, And what specifically did you guys do at Accenture and how did it all come together? the seminars and, and, uh, you know, the deep three steps from uh, uh, and, and, and, you know, that would really work in our collaborative and agile environment How did you address your approach to the cloud and what was your experience? And then building upon it, and then, you know, partnering with Accenture allows because the kind of, uh, you know, digital transformation, cloud transformation, learnings, um, that might different from the expectation we all been there, Hey, you know, It's, it's getting that last bit over the line and making sure that you haven't invested in the future hundred percent of the time, they will say yes until you start to lay out to them, okay, You know, the old expression, if it moves automated, you know, it's kind of a joke on government, how they want to tax everything, Um, you know, that's all stood up on AWS and is a significant portion of And I think our next big step is going to be obviously, uh, with a company like Accenture as well, you get combinations of the technology and the skills and the So obviously, you know, lion's like an AWS, but, you know, a lot of people kind of going through the same process, knowing what you guys know now, And we had all of our people working remotely, um, within, uh, you know, effectively one business day. and in the traditional world, you would just go out and buy more servers than you need. And if it's not right, you pump it up a little bit when, when all of your metrics and so on, And this is really about you guys when they're actually set up for growth, um, and actually allows, you know, lying to achievements I really appreciate you coming. to figure out how we unlock that value, um, you know, drive our costs down efficiency, to our customer base, um, that, uh, that we continue to, you know, sell our products to and work with There's got to say like e-learning squares, right, for me around, you know, It is tough, but, uh, uh, you know, you got to get started on it. It's the cube with digital coverage of Thank you so much for coming on the show, Johan you're welcome. Yeah, the ethical back a couple of years, we started shoving 2017 where we it also is far better than for shell to say we haven't shell special solution because we don't So storing the data we should do What were some of the things you were trying to achieve with the OSU? So the first thing we did is really breaking the link between the application, And then you can export the data like small companies, last company, standpoint in terms of what you were trying to achieve with this? uh, helped shell work faster and better with it. a lot of goods when we started rolling out and put in production, the old you are three and four because we are So one of the other things that we talk a lot about here on the cube is sustainability. I was, you know, also do an alternative energy sociology. found that AWS performs the same task with an 88% lower So that customers benefit from the only commercial cloud that's hat hits service offerings and the whole industry, if you look it over, look at our competition or moving in that same two acts of quantity of course, our objective is really in the next five years, you will become the key It's the cube with digital coverage And obviously, you know, we have in the cloud, uh, you know, with and exhibition of digital transformation, you know, we are seeing the transformation of I want to go to you now trust and tell us a little bit about how my nav works and how it helps And then third, before we live with our clients, having to collaborate, uh, not in real life. They realize that now the cloud is what is going to become important for them to differentiate. Keisha, I want to talk with you now about my navs multiple capabilities, And one of the things that we did, a lot of research we found out is that there's an ability to influence So Tristan, tell us a little bit about how this capability helps clients make greener And so what we look into the way the Would you say that it's catching on in the United States? And we have seen case studies and all I want to bring you back into the conversation. And with the digital transformation requiring cloud at scale, you know, we're seeing that in And the second is fundamental acceleration, dependent make, as we talked about, has accelerated the need So for example, very recently, we worked with a global oil and gas company, Have you found that at all? What man I gives the ability is to navigate through those, to start quickly. Kishor I want to give you the final word here. and we are, you know, achieving client's static business objectives while I am I'm on board with thank you so much,

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
RebeccaPERSON

0.99+

BrianPERSON

0.99+

Liz DennettPERSON

0.99+

Rebecca KnightPERSON

0.99+

TakedaORGANIZATION

0.99+

AWSORGANIZATION

0.99+

AmazonORGANIZATION

0.99+

JohnPERSON

0.99+

StevePERSON

0.99+

HelenPERSON

0.99+

Johan KrebbersPERSON

0.99+

StewartPERSON

0.99+

StuartPERSON

0.99+

LizPERSON

0.99+

EuropeLOCATION

0.99+

MatthewPERSON

0.99+

AccentureORGANIZATION

0.99+

KarthikPERSON

0.99+

Douglas ReganPERSON

0.99+

September, 2018DATE

0.99+

January, 2018DATE

0.99+

JohannPERSON

0.99+

$3 billionQUANTITY

0.99+

CarlPERSON

0.99+

LeePERSON

0.99+

ArjunPERSON

0.99+

30QUANTITY

0.99+

MattPERSON

0.99+

DHLORGANIZATION

0.99+

DougPERSON

0.99+

ABGORGANIZATION

0.99+

AustraliaLOCATION

0.99+

3.6 timesQUANTITY

0.99+

LillianPERSON

0.99+

TristinPERSON

0.99+

JohanPERSON

0.99+

LondonLOCATION

0.99+

AWS Executive Summit 2020


 

>>From around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Welcome to cube three 60 fives coverage of the Accenture executive summit. Part of AWS reinvent. I'm your host Rebecca Knight. Today we are joined by a cube alum, Karthik, Lorraine. He is Accenture senior managing director and lead Accenture cloud. First, welcome back to the show Karthik. >>Thank you. Thanks for having me here. >>Always a pleasure. So I want to talk to you. You are an industry veteran, you've been in Silicon Valley for decades. Um, I want to hear from your perspective what the impact of the COVID-19 pandemic has been, what are you hearing from clients? What are they struggling with? What are their challenges that they're facing day to day? >>I think, um, COVID-19 is being a eye-opener from, you know, various facets, you know, um, first and foremost, it's a, it's a hell, um, situation that everybody's facing, which is not just, uh, highest economic bearings to it. It has enterprise, um, an organization with bedding to it. And most importantly, it's very personal to people, um, because they themselves and their friends, family near and dear ones are going through this challenge, uh, from various different dimension. But putting that aside, when you come to it from an organization enterprise standpoint, it has changed everything well, the behavior of organizations coming together, working in their campuses, working with each other as friends, family, and, uh, um, near and dear colleagues, all of them are operating differently. So that's what big change to get things done in a completely different way, from how they used to get things done. >>Number two, a lot of things that were planned for normal scenarios, like their global supply chain, how they interact with their client customers, how they go innovate with their partners on how that employees contribute to the success of an organization at all changed. And there are no data models that give them a hint of something like this for them to be prepared for this. So we are seeing organizations, um, that have adapted to this reasonably okay, and are, you know, launching to innovate faster in this. And there are organizations that have started with struggling, but are continuing to struggle. And the gap between the leaders and legs are widening. So this is creating opportunities in a different way for the leaders, um, with a lot of pivot their business, but it's also creating significant challenge for the lag guides, uh, as we defined in our future systems research that we did a year ago, uh, and those organizations are struggling further. So the gap is actually widening. >>So you just talked about the widening gap. I've talked about the tremendous uncertainty that so many companies, even the ones who have adapted reasonably well, uh, in this, in this time, talk a little bit about Accenture cloud first and why, why now? >>I think it's a great question. Um, we believe that for many of our clients COVID-19 has turned, uh, cloud from an experimentation aspiration to an origin mandate. What I mean by that is everybody has been doing something on the other end cloud. There's no company that says we don't believe in cloud are, we don't want to do cloud. It was how much they did in cloud. And they were experimenting. They were doing the new things in cloud, but they were operating a lot of their core business outside the cloud or not in the cloud. Those organizations have struggled to operate in this new normal, in a remote fashion, as well as, uh, their ability to pivot to all the changes the pandemic has brought to them. But on the other hand, the organizations that had a solid foundation in cloud were able to collect faster and not actually gone into the stage of innovating faster and driving a new behavior in the market, new behavior within their organization. >>So we are seeing that spend to make is actually fast-forwarded something that we always believed was going to happen. This, uh, uh, moving to cloud over the next decade is fast forward it to happen in the next three to five years. And it's created this moment where it's a once in an era, really replatforming of businesses in the cloud that we are going to see. And we see this moment as a cloud first moment where organizations will use cloud as the, the, the canvas and the foundation with which they're going to reimagine their business after they were born in the cloud. Uh, and this requires a whole new strategy. Uh, and as Accenture, we are getting a lot in cloud, but we thought that this is the moment where we bring all of that, gave him a piece together because we need a strategy for addressing, moving to cloud are embracing cloud in a holistic fashion. And that's what Accenture cloud first brings together a holistic strategy, a team that's 70,000 plus people that's coming together with rich cloud skills, but investing to tie in all the various capabilities of cloud to Delaware, that holistic strategy to our clients. So I want you to >>Delve into a little bit more about what this strategy actually entails. I mean, it's clearly about embracing change and being willing to experiment and having capabilities to innovate. Can you tell us a little bit more about what this strategy entails? >>Yeah. The reason why we say that as a need for strategy is like I said, cloud is not new. There's almost every customer client is doing something with the cloud, but all of them have taken different approaches to cloud and different boundaries to cloud. Some organizations say, I just need to consolidate my multiple data centers to a small data center footprint and move the nest to cloud. Certain other organizations say that well, I'm going to move certain workloads to cloud. Certain other organizations said, well, I'm going to build this Greenfield application or workload in cloud. Certain other said, um, I'm going to use the power of AI ML in the cloud to analyze my data and drive insights. But a cloud first strategy is all of this tied with the corporate strategy of the organization with an industry specific cloud journey to say, if in this current industry, if I were to be reborn in the cloud, would I do it in the exact same passion that I did in the past, which means that the products and services that they offer need to be the matching, how they interact with that customers and partners need to be revisited, how they bird and operate their IP systems need to be the, imagine how they unearthed the data from all of the systems under which they attract need to be liberated so that you could drive insights of cloud. >>First strategy hands is a corporate wide strategy, and it's a C-suite responsibility. It doesn't take the ownership away from the CIO or CIO, but the CIO is, and CDI was felt that it was just their problem and they were to solve it. And everyone as being a customer, now, the center of gravity is elevated to it becoming a C-suite agenda on everybody's agenda, where probably the CDI is the instrument to execute that that's a holistic cloud-first strategy >>And it, and it's a strategy, but the way you're describing it, it sounds like it's also a mindset and an approach, as you were saying, this idea of being reborn in the cloud. So now how do I think about things? How do I communicate? How do I collaborate? How do I get done? What I need to get done. Talk a little bit about how this has changed, the way you support your clients and how Accenture cloud first is changing your approach to cloud services. >>Wonderful. Um, you know, I did not color one very important aspect in my previous question, but that's exactly what you just asked me now, which is to do all of this. I talked about all of the variables, uh, an organization or an enterprise is going to go through, but the good part is they have one constant. And what is that? That is their employees, uh, because you do, the employees are able to embrace this change. If they are able to, uh, change them, says, pivot them says retool and train themselves to be able to operate in this new cloud. First one, the ability to reimagine every function of the business would be happening at speed. And cloud first approach is to do all of this at speed, because innovation is deadly proposed there, do the rate of probability on experimentation. You need to experiment a lot for any kind of experimentation. >>There's a probability of success. Organizations need to have an ability and a mechanism for them to be able to innovate faster for which they need to experiment a lot, the more the experiment and the lower cost at which they experiment is going to help them experiment a lot. And they experiment demic speed, fail fast, succeed more. And hence, they're going to be able to operate this at speed. So the cloud-first mindset is all about speed. I'm helping the clients fast track that innovation journey, and this is going to happen. Like I said, across the enterprise and every function across every department, I'm the agent of this change is going to be the employees or weapon, race, this change through new skills and new grueling and new mindset that they need to adapt to. >>So Karthik what you're describing it, it sounds so exciting. And yet for a pandemic wary workforce, that's been working remotely that may be dealing with uncertainty if for their kid's school and for so many other aspects of their life, it sounds hard. So how are you helping your clients, employees get onboard with this? And because the change management is, is often the hardest part. >>Yeah, I think it's, again, a great question. A bottle has only so much capacity. Something got to come off for something else to go in. That's what you're saying is absolutely right. And that is again, the power of cloud. The reason why cloud is such a fundamental breakthrough technology and capability for us to succeed in this era, because it helps in various forms. What we talked so far is the power of innovation that can create, but cloud can also simplify the life of the employees in an enterprise. There are several activities and tasks that people do in managing that complex infrastructure, complex ID landscape. They used to do certain jobs and activities in a very difficult underground about with cloud has simplified. And democratised a lot of these activities. So that things which had to be done in the past, like managing the complexity of the infrastructure, keeping them up all the time, managing the, um, the obsolescence of the capabilities and technologies and infrastructure, all of that could be offloaded to the cloud. >>So that the time that is available for all of these employees can be used to further innovate. Every organization is going to spend almost the same amount of money, but rather than spending activities, by looking at the rear view mirror on keeping the lights on, they're going to spend more money, more time, more energy, and spend their skills on things that are going to add value to their organization. Because you, every innovation that an enterprise can give to their end customer need not come from that enterprise. The word of platform economy is about democratising innovation. And the power of cloud is to get all of these capabilities from outside the four walls of the enterprise, >>It will add value to the organization, but I would imagine also add value to that employee's life because that employee, the employee will be more engaged in his or her job and therefore bring more excitement and energy into her, his or her day-to-day activities too. >>Absolutely. Absolutely. And this is, this is a normal evolution we would have seen everybody would have seen in their lives, that they keep moving up the value chain of what activities that, uh, gets performed buying by those individuals. And this is, um, you know, no more true than how the United States, uh, as an economy has operated where, um, this is the power of a powerhouse of innovation, where the work that's done inside the country keeps moving up to value chain. And, um, us leverage is the global economy for a lot of things that is required to power the United States and that global economic, uh, phenomenon is very proof for an enterprise as well. There are things that an enterprise needs to do them soon. There are things an employee needs to do themselves. Um, but there are things that they could leverage from the external innovation and the power of innovation that is coming from technologies like cloud. >>So at Accenture, you have long, long, deep Stan, sorry, you have deep and long-standing relationships with many cloud service providers, including AWS. How does the Accenture cloud first strategy, how does it affect your relationships with those providers? >>Yeah, we have great relationships with cloud providers like AWS. And in fact, in the cloud world, it was one of the first, um, capability that we started about years ago, uh, when we started developing these capabilities. But five years ago, we hit a very important milestone where the two organizations came together and said that we are forging a pharma partnership with joint investments to build this partnership. And we named that as a Accenture, AWS business group ABG, uh, where we co-invest and brought skills together and develop solutions. And we will continue to do that. And through that investment, we've also made several acquisitions that you would have seen in the recent times, like, uh, an invoice and gecko that we made acquisitions in in Europe. But now we're taking this to the next level. What we are saying is two cloud first and the $3 billion investment that we are bringing in, uh, through cloud-first. >>We are going to make specific investment to create unique joint solution and landing zones foundation, um, cloud packs with which clients can accelerate their innovation or their journey to cloud first. And one great example is what we are doing with Takeda, uh, billable, pharmaceutical giant, um, between we've signed a five-year partnership. And it was out in the media just a month ago or so, where we are, the two organizations are coming together. We have created a partnership as a power of three partnership, where the three organizations are jointly hoarding hats and taking responsibility for the innovation and the leadership position that Takeda wants to get to with this. We are going to simplify their operating model and organization by providing and flexibility. We're going to provide a lot more insights. Tequila has a 230 year old organization. Imagine the amount of trapped data and intelligence that is there. >>How about bringing all of that together with the power of AWS and Accenture and Takeda to drive more customer insights, um, come up with breakthrough R and D uh, accelerate clinical trials and improve the patient experience using AI ML and edge technologies. So all of these things that we will do through this partnership with joined investment from Accenture cloud first, as well as partner like AWS, so that Takeda can realize their gain. And, uh, their senior actually made a statement that five years from now, every ticket an employee will have an AI assistant. That's going to make that beginner employee move up the value chain on how they contribute and add value to the future of tequila with the AI assistant, making them even more equipped and smarter than what they could be otherwise. >>So, one last question to close this out here. What is your future vision for, for Accenture cloud first? What are we going to be talking about at next year's Accenture executive summit? Yeah, the future >>Is going to be, um, evolving, but the part that is exciting to me, and this is, uh, uh, a fundamental belief that we are entering a new era of industrial revolution from industry first, second, and third industry. The third happened probably 20 years ago with the advent of Silicon and computers and all of that stuff that happened here in the Silicon Valley. I think the fourth industrial revolution is going to be in the cross section of, uh, physical, digital and biological boundaries. And there's a great article, um, in one economic forum that people, uh, your audience can Google and read about it. Uh, but the reason why this is very, very important is we are seeing a disturbing phenomenon that over the last 10 years are seeing a Blackwing of the, um, labor productivity and innovation, which has dropped to about 2.1%. When you see that kind of phenomenon over that longer period of time, there has to be breakthrough innovation that needs to happen to come out of this barrier and get to the next, you know, base camp, as I would call it to further this productivity, um, lack that we are seeing, and that is going to happen in the intersection of the physical, digital and biological boundaries. >>And I think cloud is going to be the connective tissue between all of these three, to be able to provide that where it's the edge, especially is good to come closer to the human lives. It's going to come from cloud. Yeah. Pick totally in your mind, you can think about cloud as central, either in a private cloud, in a data center or in a public cloud, you know, everywhere. But when you think about edge, it's going to be far reaching and coming close to where we live and maybe work and very, um, get entertained and so on and so forth. And there's good to be, uh, intervention in a positive way in the field of medicine, in the field of entertainment, in the field of, um, manufacturing in the field of, um, you know, mobility. When I say mobility, human mobility, people, transportation, and so on and so forth with all of this stuff, cloud is going to be the connective tissue and the vision of cloud first is going to be, uh, you know, blowing through this big change that is going to happen. And the evolution that is going to happen where, you know, the human grace of mankind, um, our person kind of being very gender neutral in today's world. Um, go first needs to be that beacon of, uh, creating the next generation vision for enterprises to take advantage of that kind of an exciting future. And that's why it, Accenture, are we saying that there'll be change as our, as our purpose? >>I genuinely believe that cloud first is going to be the forefront of that change agenda, both for Accenture as well as for the rest of the work. >>Excellent. Let there be changed. Indeed. Thank you so much for joining us Karthik. A pleasure I'm Rebecca Knight stay tuned for more of Q3 60 fives coverage of the Accenture executive summit >>From around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Welcome everyone to the cube virtual and our coverage of the Accenture executive summit. Part of AWS reinvent 2020. I'm your host Rebecca Knight. Today, we are talking about the power of three. And what happens when you bring together the scientific, how of a global bias biopharmaceutical powerhouse in Takeda, a leading cloud services provider in AWS, and Accenture's ability to innovate, execute, and deliver innovation. Joining me to talk about these things. We have Aaron, sorry. Arjan Beatty. He is the senior managing director and chairman of Accenture's diamonds leadership council. Welcome Arjun. Thank you, Karl hick. He is the chief digital and information officer at Takeda. >>What is your bigger, thank you, Rebecca >>And Brian Beau Han global director and head of the Accenture AWS business group at Amazon web services. Thanks so much for coming on. Thank you. So, as I said, we're talking today about this relationship between, uh, your three organizations. Carl, I want to talk with you. I know you're at the beginning of your cloud journey. What was the compelling reason? Why w why, why move to the cloud and why now? >>Yeah, no, thank you for the question. So, you know, as a biopharmaceutical leader, we're committed to bringing better health and a brighter future to our patients. We're doing that by translating science into some really innovative and life transporting therapies, but throughout, you know, we believe that there's a responsible use of technology, of data and of innovation. And those three ingredients are really key to helping us deliver on that promise. And so, you know, while I think a I'll call it, this cloud journey is already always been a part of our strategy. Um, and we've made some pretty steady progress over the last years with a number of I'll call it diverse approaches to the digital and AI. We just weren't seeing the impact at scale that we wanted to see. Um, and I think that, you know, there's a, there's a need ultimately to, you know, accelerate and broaden that shift. >>And, you know, we were commenting on this earlier, but there's, you know, it's been highlighted by a number of factors. One of those has been certainly a number of the acquisitions we've made Shire, uh, being the most pressing example, uh, but also the global pandemic, both of those highlight the need for us to move faster, um, at the speed of cloud, ultimately. Uh, and so we started thinking outside of the box because it was taking us too long and we decided to leverage the strategic partner model. Uh, and it's giving us a chance to think about our challenges very differently. We call this the power of three, uh, and ultimately our focus is singularly on our patients. I mean, they're waiting for us. We need to get there faster. It can take years. And so I think that there is a focus on innovation at a rapid speed, so we can move ultimately from treating conditions to keeping people healthy. >>So as you are embarking on this journey, what are some of the insights you want to share about, about what you're seeing so far? >>Yeah, no, it's a great question. So, I mean, look, maybe right before I highlight some of the key insights, uh, I would say that, you know, with cloud now as the, as a launchpad for innovation, you know, our vision all along has been that in less than 10 years, we want every single to kid, uh, the associate or employee to be empowered by an AI assistant. And I think that, you know, that's going to help us make faster, better decisions. That'll help us, uh, fundamentally deliver transformative therapies and better experiences to, to that ecosystem, to our patients, to physicians, to payers, et cetera, much faster than we previously thought possible. Um, and I think that technologies like cloud and edge computing together with a very powerful I'll call it data fabric is going to help us to create this, this real-time, uh, I'll call it the digital ecosystem. >>The data has to flow ultimately seamlessly between our patients and providers or partners or researchers, et cetera. Uh, and so we've been thinking about this, uh, I'll call it weekly, call up sort of this pyramid, um, that helps us describe our vision. Uh, and a lot of it has to do with ultimately modernizing the foundation, modernizing and rearchitecting, the platforms that drive the company, uh, heightening our focus on data, which means that there's an accelerated shift towards, uh, enterprise data platforms and digital products. And then ultimately, uh, uh, uh, you know, really an engine for innovation sitting at the very top. Um, and so I think with that, you know, there's a few different, I'll call it insights that, you know, are quickly kind of come zooming into focus. I would say one is this need to collaborate very differently. Um, you know, not only internally, but you know, how do we define ultimately, and build a connected digital ecosystem with the right partners and technologies externally? >>I think the second component that maybe people don't think as much about, but, you know, I find critically important is for us to find ways of really transforming our culture. We have to unlock talent and shift the culture certainly as a large biopharmaceutical very differently. And then lastly, you've touched on it already, which is, you know, innovation at the speed of cloud. How do we re-imagine that? You know, how do ideas go from getting tested in months to kind of getting tested in days? You know, how do we collaborate very differently? Uh, and so I think those are three, uh, perhaps of the larger I'll call it, uh, insights that, you know, the three of us are spending a lot of time thinking about right now. >>So Arjun, I want to bring you into this conversation a little bit. Let's, let's delve into those a bit. Talk first about the collaboration, uh, that Carl was referencing there. How, how have you seen that? It is enabling, uh, colleagues and teams to communicate differently and interact in new and different ways? Uh, both internally and externally, as Carl said, >>No, thank you for that. And, um, I've got to give call a lot of credit because as we started to think about this journey, it was clear. It was a bold ambition was, uh, something that, you know, we had all to do differently. And so the concept of the power of three that Carl has constructed has become a label for us as a way to think about what are we going to do to collectively drive this journey forward. And to me, the unique ways of collaboration means three things. The first one is that, um, what is expected is that the three parties are going to come together and it's more than just the sum of our resources. And by that, I mean that we have to bring all of ourselves, all of our collective capabilities, as an example, Amazon has amazing supply chain capabilities. They're one of the best at supply chain. >>So in addition to resources, when we have supply chain innovations, uh, that's something that they're bringing in addition to just, uh, talent and assets, similarly for Accenture, right? We do a lot, uh, in the talent space. So how do we bring our thinking as to how we apply best practices for talent to this partnership? So, um, as we think about this, so that's, that's the first one, the second one is about shared success very early on in this partnership, we started to build some foundations and actually develop seven principles that all of us would look at as the basis for this success shared success model. And we continue to hold that sort of in the forefront, as we think about this collaboration. And maybe the third thing I would say is this one team mindset. So whether it's the three of our CEOs that get together every couple of months to think about, uh, this partnership, or it is the governance model that Carl has put together, which has all three parties in the governance and every level of leadership, we always think about this as a collective group so that we can keep that front and center. >>And what I think ultimately has enabled us to do is it's allowed us to move at speed, be more flexible. And ultimately all we're looking at the target the same way, the North side, the same way, >>Brian, about you, what have you observed and what are you thinking about in terms of how this is helping teams collaborate differently? Yeah, >>Absolutely. And RJ made some, some great points there. And I think if you really think about what he's talking about, it's that, that diversity of talent, diversity of skill and viewpoint and even culture, right? And so we see that in the power of three. And then I think if we drill down into what we see at Takeda and frankly Takeda was, was really, I think, pretty visionary and on their way here, right. And taking this kind of cross-functional approach and applying it to how they operate day to day. So moving from a more functional view of the world to more of a product oriented view of the world, right? So when you think about we're going to be organized around a product or a service or a capability that we're going to provide to our customers or our patients or donors in this case, it implies a different structure all to altogether and a different way of thinking, right? >>Because now you've got technical people and business experts and marketing experts all working together in this is sort of cross collaboration. And what's great about that is it's really the only way to succeed with cloud, right? Because the old ways of thinking where you've got application people and infrastructure, people in business, people is suboptimal, right? Because we can all access this tool as these capabilities and the best way to do that. Isn't across kind of a cross collaborative way. And so this is product oriented mindset. It's a keto was already on. I think it's allowed us to move faster. >>Carl, I want to go back to this idea of unlocking talent and culture. And this is something that both Brian and Arjun have talked about too. People are an essential part of their, at the heart of your organization. How will their experience of work change and how are you helping re-imagine and reinforce a strong organizational culture, particularly at this time when so many people are working remotely. >>Yeah. It's a great question. And it's something that, you know, I think we all have to think a lot about, I mean, I think, um, you know, driving this, this color, this, this digital and data kind of capability building, uh, it takes a lot of, a lot of thinking. So, I mean, there's a few different elements in terms of how we're tackling this one is we're recognizing, and it's not just for the technology organization or for those actors that, that we're innovating with, but it's really across all of the Qaeda where we're working through ways of raising what I'll call the overall digital leaders literacy of the organization, you know, what are the, you know, what are the skills that are needed almost at a baseline level, even for a global bio-pharmaceutical company and how do we deploy, I'll call it those learning resources very broadly. >>And then secondly, I think that, you know, we're, we're very clear that there's a number of areas where there are very specialized skills that are needed. Uh, my organization is one of those. And so, you know, we're fostering ways in which, you know, we're very kind of quickly kind of creating, uh, avenues excitement for, for associates in that space. So one example specifically, as we use, you know, during these, uh, very much sort of remote, uh, sort of days, we, we use what we call global it meet days, and we set a day aside every single month and this last Friday, um, you know, we, we create during that time, it's time for personal development. Um, and we provide active seminars and training on things like, you know, robotic process automation, data analytics cloud, uh, in this last month we've been doing this for months and months now, but in his last month, more than 50% of my organization participated, and there's this huge positive shift, both in terms of access and excitement about really harnessing those new skills and being able to apply them. >>Uh, and so I think that that's, you know, one, one element that can be considered. And then thirdly, um, of course every organization has to work on how do you prioritize talent, acquisition and management and competencies that you can't rescale? I mean, there are just some new capabilities that we don't have. And so there's a large focus that I have with our executive team and our CEO and thinking through those critical roles that we need to activate in order to kind of, to, to build on this, uh, this business led cloud transformation. And lastly, probably the hardest one, but the one that I'm most jazzed about is really this focus on changing the mindsets and behaviors. Um, and I think there, you know, this is where the power of three is, is really, uh, kind of coming together nicely. I mean, we're working on things like, you know, how do we create this patient obsessed curiosity, um, and really kind of unlock innovation with a real, kind of a growth mindset. >>Uh, and the level of curiosity that's needed, not to just continue to do the same things, but to really challenge the status quo. So that's one big area of focus we're having the agility to act just faster. I mean, to worry less, I guess I would say about kind of the standard chain of command, but how do you make more speedy, more courageous decisions? And this is places where we can emulate the way that a partner like AWS works, or how do we collaborate across the number of boundaries, you know, and I think, uh, Arjun spoke eloquently to a number of partnerships that we can build. So we can break down some of these barriers and use these networks, um, whether it's within our own internal ecosystem or externally to help, to create value faster. So a lot of energy around ways of working and we'll have to check back in, but I mean, we're early in on this mindset and behavioral shift, um, but a lot of good early momentum. >>Carl you've given me a good segue to talk to Brian about innovation, because you said a lot of the things that I was the customer obsession and this idea of innovating much more quickly. Obviously now the world has its eyes on drug development, and we've all learned a lot about it, uh, in the past few months and accelerating drug development is all, uh, is of great interest to all of us. Brian, how does a transformation like this help a company's ability to become more agile and more innovative and at a quicker speed to, >>Yeah, no, absolutely. And I think some of the things that Carl talked about just now are critical to that, right? I think where sometimes folks fall short is they think, you know, we're going to roll out the technology and the is going to be the silver bullet where in fact it is the culture, it is, is the talent. And it's the focus on that. That's going to be, you know, the determinant of success. And I will say, you know, in this power of three arrangement and Carl talked a little bit about the pyramid, um, talent and culture and that change, and that kind of thinking about that has been a first-class citizen since the very beginning, right. That absolutely is critical for, for being there. Um, and so that's been, that's been key. And so we think about innovation at Amazon and AWS and Chrome mentioned some of the things that, you know, a partner like AWS brings to the table is we talk a lot about builders, right? >>So we're kind of obsessive about builders. Um, and, and we meet what we mean by that is we, we, at Amazon, we hire for builders, we cultivate builders and we like to talk to our customers about it as well. And it also implies a different mindset, right? When you're a builder, you have that, that curiosity, you have that ownership, you have that stake and whatever I'm creating, I'm going to be a co-owner of this product or this service, right. Getting back to that kind of product oriented mindset. And it's not just the technical people or the it people who are builders. It is also the business people as, as Carl talked about. Right. So when we start thinking about, um, innovation again, where we see folks kind of get into a little bit of, uh, innovation, pilot paralysis, is that you can focus on the technology, but if you're not focusing on the talent and the culture and the processes and the mechanisms, you're going to be putting out technology, but you're not going to have an organization that's ready to take it and scale it and accelerate it. >>Right. And so that's, that's been absolutely critical. So just a couple of things we've been doing with, with the Qaeda and Decatur has really been leading the way is, think about a mechanism and a process. And it's really been working backward from the customer, right? In this case, again, the patient and the donor. And that was an easy one because the key value of Decatur is to be a patient focused bio-pharmaceutical right. So that was embedded in their DNA. So that working back from that, that patient, that donor was a key part of that process. And that's really deep in our DNA as well and Accentures. And so we were able to bring that together. The other one is, is, is getting used to experimenting and even perhaps failing, right. And being able to iterate and fail fast and experiment and understanding that, you know, some decisions, what we call it at Amazon are two two-way doors, meaning you can go through that door, not like what you see and turn around and go back. And cloud really helps there because the costs of experimenting and the cost of failure is so much lower than it's ever been. You can do it much faster and the implications are so much less. So just a couple of things that we've been really driving, uh, with Decatur around innovation, that's been really critical. >>Carl, where are you already seeing signs of success? Yeah, no, it's a great question. And so we chose, you know, uh, with our focus on, on innovation to try to unleash maybe the power of data digital in, uh, in focusing on what I call sort of a nave. And so we chose our, our, our plasma derived therapy business, um, and you know, the plasma-derived therapy business unit, it develops critical life-saving therapies for patients with rare and complex diseases. Um, but what we're doing is by bringing kind of our energy together, we're focusing on creating, I'll call it state of the art digitally connected donation centers. And we're really modernizing, you know, the, the, the donor experience right now, we're trying to, uh, improve also I'll call it the overall plasma collection process. And so we've, uh, selected a number of alcohol at a very high-speed pilots that we're working through right now, specifically in this, in this area. And we're seeing really great results already. Um, and so that's, that's one specific area of focus >>Arjun. I want you to close this out here. Any ideas, any best practices advice you would have for other pharmaceutical companies that are, that are at the early stage of their cloud journey for me? Yes. >>Yeah, no, I was breaking up a bit. No, I think they, um, the key is what's sort of been great for me to see is that when people think about cloud, you know, you always think about infrastructure technology. The reality is that the cloud is really the true enabler for innovation and innovating at scale. And, and if you think about that, right, in all the components that you need, that ultimately that's where the value is for the company, right? Because yes, you're going to get some cost synergies and that's great, but the true value is in how do we transform the organization in the case of the Qaeda and the life sciences clients, right. We're trying to take a 14 year process of research and development that takes billions of dollars and compress that, right. Tremendous amounts of innovation opportunity. You think about the commercial aspect, lots of innovation can come there. The plasma derived therapy is a great example of how we're going to really innovate to change the trajectory of that business. So I think innovation is at the heart of what most organizations need to do. And the formula, the cocktail that the Qaeda has constructed with this Fuji program really has all the ingredients, um, that are required for that success. >>Great. Well, thank you so much. Arjun, Brian and Carl was really an enlightening conversation. >>Yeah, it's been fun. Thanks Rebecca. >>Thank you for tuning into the cube virtuals coverage of the Accenture executive summit from around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. Welcome everyone to the cubes of Accenture >>Executive summit here at AWS reinvent. I'm your host Rebecca Knight for this segment? We have two guests. First. We have Helen Davis. She is the senior director of cloud platform services, assistant director for it and digital for the West Midlands police. Thanks so much for coming on the show, Helen, And we also have Matthew lb. He is Accenture health and public service associate director and West Midlands police account lead. Thanks so much for coming on the show. Matthew, thank you for having us. So we are going to be talking about delivering data-driven insights to the West Midlands police force. Helen, I want to start with you. Can you tell us a little bit about the West Midlands police force? How big is the force and also what were some of the challenges that you were grappling with prior to this initiative? >>Yes, certainly. So Westerners police is the second largest police force in the UK, outside of the metropolitan police in London. Um, we have an excessive, um, 11,000 people work at Westminster police serving communities, um, through, across the Midlands region. So geographically, we're quite a big area as well, as well as, um, being population, um, density, having that as a, at a high level. Um, so the reason we sort of embarked on the data-driven insights platform and it, which was a huge change for us was for a number of reasons. Um, namely we had a lot of disparate data, um, which was spread across a range of legacy systems that were many, many years old, um, with some duplication of, um, what was being captured and no single view for offices or, um, support staff. Um, some of the access was limited. You have to be in a, in an actual police building on a desktop computer to access it. Um, other information could only reach officers on the frontline through a telephone call back to one of our enabling services where they would do a manual checkup, um, look at the information, then call the offices back, um, and tell them what they needed to know. So it was a very long laborious process and not very efficient. Um, and we certainly weren't exploiting the data that we had in a very productive way. >>So it sounds like as you're describing and an old clunky system that needed a technological, uh, reimagination, so what was the main motivation for, for doing, for making this shift? >>It was really, um, about making us more efficient and more effective in how we do how we do business. So, um, you know, certainly as a, as an it leader and sort of my operational colleagues, we recognize the benefits, um, that data analytics could bring in, uh, in a policing environment, not something that was, um, really done in the UK at time. You know, we have a lot of data, so we're very data rich and the information that we have, but we needed to turn it into information that was actionable. So that's where we started looking for, um, technology partners and, um, suppliers to help us and sort of help us really with what's the art of the possible, you know, this hasn't been done before. So what could we do in this space that's appropriate for policing >>Helen? I love that idea. What is the art of the possible, can you tell us a little bit about why you chose AWS? >>I think really, you know, as with all things and when we're procuring a partner in the public sector that, you know, there are many rules and regulations quite rightly as you would expect that to be because we're spending public money. So we have to be very, very careful and, um, it's, it's a long process and we have to be open to public scrutiny. So, um, we sort of look to everything, everything that was available as part of that process, but we recognize the benefits that tide would provide in this space because, you know, without moving to a cloud environment, we would literally be replacing something that was legacy with something that was a bit more modern. Um, that's not what we wanted to do. Our ambition was far greater than that. So I think, um, in terms of AWS, really, it was around scalability, interoperability, you know, disaster things like the disaster recovery service, the fact that we can scale up and down quickly, we call it dialing up and dialing back. Um, you know, it's it's page go. So it just sort of ticked all the boxes for us. And then we went through the full procurement process, fortunately, um, it came out on top for us. So we were, we were able to move forward, but it just sort of had everything that we were looking for in that space. >>Matthew, I want to bring you into the conversation a little bit here. How are you working with the wet with the West Midlands police, sorry, and helping them implement this cloud first journey? >>Yeah, so I guess, um, by January the West Midlands police started, um, pay for five years ago now. So, um, we set up a partnership with the force I, and you to operate operation the way that was very different to a traditional supplier relationship. Um, secretary that the data difference insights program is, is one of many that we've been working with less neutral on, um, over the last five years. Um, as having said already, um, cloud gave a number of, uh, advantages certainly from a big data perspective and the things that that enabled us today, um, I'm from an Accenture perspective that allowed us to bring in a number of the different themes that we have say cloud themes, security teams, um, interacted from a design perspective, as well as more traditional services that people would associate with the country. >>So much of this is about embracing comprehensive change to experiment, innovate, and try different things. Matthew, how, how do you help an entity like West Midlands police think differently when they are, there are these ways of doing things that people are used to, how do you help them think about what is the art of the possible, as Helen said, >>There's a few things for that, you know, what's being critical is trying to co-create solutions together. Yeah. There's no point just turning up with, um, what we think is the right answer, try and say, um, collectively work through, um, the issues that the forest are seeing the outcomes they're looking to achieve rather than simply focusing on the long list of requirements I think was critical and then being really open to working together to create the right solution. Um, rather than just, you know, trying to pick something off the shelf that maybe doesn't fit the forces requirements in the way that it should to, right. It's not always a one size fits all. Obviously, you know, today what we thought was critical is making sure that we're creating something that met the forces needs, um, in terms of the outcomes they're looking to achieve the financial envelopes that were available, um, and how we can deliver those in a, uh, iterative agile way, um, rather than spending years and years, um, working towards an outcome, um, that is going to outdate before you even get that. >>How, how are things different? What kinds of business functions and processes have been re-imagined in, in light of this change and this shift >>It's, it's actually unrecognizable now, um, in certain areas of the business as it was before. So to give you a little bit of context, when we, um, started working with essentially century AWS on the data driven insights program, it was very much around providing, um, what was called locally, a wizzy tool for our intelligence analysts to interrogate data, look at data, you know, decide whether they could do anything predictive with it. And it was very much sort of a back office function to sort of tidy things up for us and make us a bit better in that, in that area or a lot better in that area. And it was rolled out to a number of offices, a small number on the front line. Um, I'm really, it was, um, in line with a mobility strategy that we, hardware officers were getting new smartphones for the first time, um, to do sort of a lot of things on, on, um, policing apps and things like that to again, to avoid them, having to keep driving back to police stations, et cetera. >>And the pilot was so successful. Every officer now has access to this data, um, on their mobile devices. So it literally went from a handful of people in an office somewhere using it to do sort of clever whizzbang things to, um, every officer in the force, being able to access that level of data at their fingertips literally. So what they would touch we've done before is if they needed to check and address or check, uh, details of an individual, um, just as one example, they would either have to, in many cases, go back to a police station to look it up themselves on a desktop computer. Well, they would have to make a call back to, um, a centralized function and speak to an operator, relay the questions either, wait for the answer or wait for a call back with the answer when those people are doing the data interrogation manually. >>So the biggest change for us is the self-service nature of the data we now have available. So officers can do it themselves on their phone, wherever they might be. So the efficiency savings, um, from that point of view are immense. And I think just parallel to that is the quality of our data because we had a lot of data, but just because you've got a lot of data and a lot of information doesn't mean it's big data and it's valuable necessarily. Um, so again, it was having the single source of truth as we, as we call it. So you know, that when you are completing those safe searches and getting the responses back, that it is the most accurate information we hold. And also you're getting it back within minutes as opposed to, you know, half an hour, an hour or a drive back to the station. So it's making officers more efficient and it's also making them safer. The more efficient they are, the more time they have to spend, um, out with the public doing what they, you know, we all should be doing. >>And have you seen that kind of return on investment because what you were just describing with all the steps that we'd needed to be taken in prior to this to verify and address say, and those are precious seconds when someone's life is on the line in, in sort of in the course of everyday police work. >>Absolutely. Yeah, absolutely. It's difficult to put a price on it. It's difficult to quantify. Um, but all the, you know, the minutes here and that certainly add up to a significant amount of efficiency savings, and we've certainly been able to demonstrate the officers are spending less time up police stations as a result and more time out on the front line. Also they're safer because they can get information about what may or may not be and address what may or may not have occurred in an area before very, very quickly without having to wait. >>Matthew, I want to hear your observations of working so closely with this West Midlands police. Have you noticed anything about changes in its culture and its operating model in how police officers interact with one another? Have you seen any changes since this technology change, >>Um, unique about the West new misplaces, the buy-in from the top, it depend on the chief and his exact team. And Helen is the leader from an IOT perspective. Um, the entire force is bought in. So what is a significant change program? Uh, uh, not trickles three. Um, everyone in the organization, um, change is difficult. Um, and there's a lot of time effort. That's been put into bake, the technical delivery and the business change and adoption aspects around each of the projects. Um, but you can see the step change that it's making in each aspect to the organization, uh, and where that's putting West Midlands police as a leader in, um, technology I'm policing in the UK. And I think globally, >>And this is a question for both of you because Matthew, as you said, change is difficult and there is always a certain intransigence in workplaces about this is just the way we've always done things and we're used to this and don't try to get us, don't try to get us to do anything new here. It works. How do you get the buy-in that you need to, to do this kind of digital transformation? >>I think it, it would be wrong to say it was easy. Um, um, we also have to bear in mind that this was one program in a five year program. So there was a lot of change going on, um, both internally for some of our back office functions, as well as front tie, uh, frontline offices. So with DDI in particular, I think the stat change occurred when people could see what it could do for them. You know, we had lots of workshops and seminars where we all talk about, you know, big data and it's going to be great and it's data analytics and it's transformational, you know, and quite rightly people that are very busy doing a day job that not necessarily technologists in the main and, you know, are particularly interested quite rightly so in what we are not dealing with the cloud, you know? >>And it was like, yeah, okay. It's one more thing. And then when they started to see on that, on their phones and what teams could do, that's when it started to sell itself. And I think that's when we started to see, you know, to see the stack change, you know, and, and if we, if we have any issues now it's literally, you know, our help desks in meltdown. Cause everyone's like, well, we call it manage without this anymore. And I think that speaks for itself. So it doesn't happen overnight. It's sort of incremental changes and then that's a step change in attitude. And when they see it working and they see the benefits, they want to use it more. And that's how it's become fundamental to our policing by itself, really without much selling >>Matthew, Helen just made a compelling case for how to get buy in. Have you discovered any other best practices when you are trying to get everyone on board for this kind of thing? >>So we've, um, we've used a lot of the traditional techniques, things around comms and engagement. We've also used things like, um, the 30 day challenge and nudge theory around how can we gradually encourage people to use things? Um, I think there's a point where all of this around, how do we just keep it simple and keep it user centric from an end user perspective? I think DDI is a great example of where the, the technology is incredibly complex. The solution itself is, um, you know, extremely large and, um, has been very difficult to, um, get delivered. But at the heart of it is a very simple front end for the user to encourage it and take that complexity away from them. Uh, I think that's been critical through the whole piece of video. >>One final word from Helen. I want to hear, where do you go from here? What is the longterm vision? I know that this made productivity, >>Um, productivity savings equivalent to 154 full-time officers. Uh, what's next, I think really it's around, um, exploiting what we've got. Um, I use the phrase quite a lot, dialing it up, which drives my technical architects crazy, but because it's apparently not that simple, but, um, you know, we've, we've been through significant change in the last five years and we are still continuing to batch all of those changes into everyday, um, operational policing. But what we need to see now is we need to exploit and build on the investments that we've made, um, in terms of data and claims specifically, the next step really is about expanding our pool of data and our functions. Um, so that, you know, we keep getting better and better, um, at this, um, the more we do, the more data we have, the more refined we can be, the more precise we are with all of our actions. >>Um, you know, we're always being expected to, again, look after the public purse and do more for less. And I think this is certainly an and our cloud journey and cloud first by design, which is where we are now, um, is helping us to be future-proofed. So for us, it's very much an investment. And I see now that we have good at embedded in operational policing for me, this is the start of our journey, not the end. So it's really exciting to see where we can go from here. Exciting times. Indeed. Thank you so much. And Matthew for joining us, I really appreciate it. And you are watching the cube stay tuned for more of the cubes coverage of the AWS reinvent Accenture executive summit. I'm Rebecca Knight from around the globe with digital coverage, >>AWS reinvent executive summit, 2020, sponsored by Accenture and AWS. Everyone. Welcome to the cube virtual coverage of the executive summit at AWS reinvent 2020 virtual. This is the cube virtual. We can't be there in person like we are every year we have to be remote. This executive summit is with special programming supported by Accenture where the cube virtual I'm your host John for a year, we had a great panel here called uncloud first digital transformation from some experts, Stuart driver, the director of it and infrastructure and operates at lion Australia, Douglas Regan, managing director, client account lead at lion for Accenture as a deep Islam associate director application development lead for Accenture gentlemen, thanks for coming on the cube virtual that's a mouthful, all that digital, but the bottom line it's cloud transformation. This is a journey that you guys have been on together for over 10 years to be really a digital company. Now, some things have happened in the past year that kind of brings all this together. This is about the next generation organization. So I want to ask Stuart you first, if you can talk about this transformation at lion has undertaken some of the challenges and opportunities and how this year in particular has brought it together because you, you know, COVID has been the accelerant of digital transformation. Well, if you're 10 years in, I'm sure you're there. You're in the, uh, uh, on that wave right now. Take a minute to explain this transformation journey. >>Yeah, sure. So number of years back, we, we looked at kind of our infrastructure and our landscape. I'm trying to figure out where we wanted to go next. And we were very analog based, um, and stuck in the old it groove of, you know, capital refresh, um, struggling to transform, struggling to get to a digital platform and we needed to change it up so that we could, uh, become very different business to the one that we were back then. Um, obviously cloud is an accelerant to that and we had a number of initiatives that needed a platform to build on. And a cloud infrastructure was the way that we started to do that. So we went through a number of transformation programs that we didn't want to do that in the old world. We wanted to do it in a new world. So for us, it was partnering up with a, you know, great organizations that can take you on the journey and, uh, you know, start to deliver a bit by bit incremental progress, uh, to get to the, uh, I guess the promise land. >>Um, we're not, uh, not all the way there, but to where we're a long way along. And then when you get to some of the challenges like we've had this year, um, it makes all of the hard work worthwhile because you can actually change pretty quickly, um, provide capacity and, uh, and increase your environments and, you know, do the things that you need to do in a much more dynamic way than we would have been able to previously where we might've been waiting for the hardware vendors, et cetera, to deliver capacity for us this year, it's been a pretty strong year from an it perspective and delivering for the business needs, >>Forget the Douglas. I want to just real quick and redirect to you and say, you know, for all the people who said, Oh yeah, you got to jump on cloud, get in early, you know, a lot of naysayers like, well, wait till to mature a little bit. Really, if you got in early and you paying your dues, if you will taking that medicine with the cloud, you're really kind of peaking at the right time. Is that true? Is that one of the benefits that comes out of this getting in the cloud, >>John, this has been an unprecedented year, right. And, um, you know, Australia, we had to live through Bush fires and then we had covert and, and then we actually had to deliver a, um, a project I'm very know transformational product project, completely remote. And then we also had had some, some cyber challenges, which is public as well. And I don't think if we weren't moved into and enabled through the cloud would have been able to achieve that this year. It would have been much different. It would have been very difficult to do the fact that we were able to work and partner with Amazon through this year, which is unprecedented and actually come out the other end and we've delivered a brand new digital capability across the entire business. Um, it wouldn't >>Have been impossible if we could, I guess, stayed in the old world. The fact that we moved into the new Naval by the Navy allowed us to work in this unprecedented gear >>Just quick. What's your personal view on this? Because I've been saying on the Cuban reporting, necessity's the mother of all invention and the word agility has been kicked around as kind of a cliche, Oh, it'd be agile. You know, we're gonna get to Sydney. You get a minute on specifically, but from your perspective, uh, Douglas, what does that mean to you? Because there is benefits there for being agile. And >>I mean, I think as Stuart mentioned writing, and a lot of these things we try to do and, you know, typically, you know, hardware capabilities of the last to be told and, and always the only critical path to be done. You know, we really didn't have that in this case, what we were doing with our projects in our deployments, right. We were able to move quickly able to make decisions in line with the business and really get things going, right. So you, a lot of times in a traditional world, you have these inhibitors, you have these critical path, it takes weeks and months to get things done as opposed to hours and days. And it truly allowed us to, we had to VJ things, move things. And, you know, we were able to do that in this environment with AWS to support and the fact that we can kind of turn things off and on as quickly as we need it. Yeah. >>Cloud-scale is great for speed. So DECA got, Gardez get your thoughts on this cloud first mission, you know, it, you know, the dev ops worlds, they saw this early, that jumping in there, they saw the, the, the agility. Now the theme this year is modern applications with the COVID pandemic pressure, there's real business pressure to make that happen. How did you guys learn to get there fast? And what specifically did you guys do at Accenture and how did it all come together? Can you take us inside kind of how it played out? >>All right. So we started off with us and we work with lions experts and, uh, the lost knowledge that allowed reconstructive being had. Um, we then applied our journey group cloud strategy basically revolves around the seven Oz and, and, uh, you know, the deep peaking steps from our perspective, uh, assessing the current bottom, setting up the new cloud in modern. And as we go modernizing and, and migrating these applications to the cloud now, you know, one of the things that, uh, no we did not along this journey was that, you know, you can have the best plans, but bottom of that, we were dealing with, we often than not have to make changes. Uh, what a lot of agility and also work with a lot of collaboration with the, uh, Lyon team, as well as, uh, uh, AWS. I think the key thing for me was being able to really bring it all together. It's not just, uh, you know, essentially mobilize all of us. >>What were some of the learnings real quick, your journey there? >>So I think perspective the key learnings around that, you know, uh, you know, what, when we look back at, uh, the, the infrastructure that was that we were trying to migrate over to the cloud, a lot of the documentation, et cetera, was not, uh, available. We were having to, uh, figure out a lot of things on the fly. Now that really required us to have, uh, uh, people with deep expertise who could go into those environments and, and work out, uh, you know, the best ways to, to migrate the workloads to the cloud. Uh, I think, you know, the, the biggest thing for me was making Jovi had on that real SMEs across the board globally, that we could leverage across various technologies, uh, uh, and, and, and, you know, that would really work in our collaborative and agile environment would line >>Just do what I got to ask you. How did you address your approach to the cloud and what was your experience? >>Yeah, for me, it's around getting the foundations right. To start with and then building on them. Um, so, you know, you've got to have your, your process and you're going to have your, your kind of your infrastructure there and your blueprints ready. Um, AWS do a great job of that, right. Getting the foundations right. And then building upon it, and then, you know, partnering with Accenture allows you to do that very successfully. Um, I think, um, you know, the one thing that was probably surprising to us when we started down this journey and kind of, after we got a long way down, the track of looking backwards is actually how much you can just turn off. Right? So a lot of stuff that you, uh, you get left with a legacy in your environment, and when you start to work through it with the types of people that civic just mentioned, you know, the technical expertise working with the business, um, you can really rationalize your environment and, uh, um, you know, cloud is a good opportunity to do that, to drive that legacy out. >>Um, so you know, a few things there, the other thing is, um, you've got to try and figure out the benefits that you're going to get out of moving here. So there's no point just taking something that is not delivering a huge amount of value in the traditional world, moving it into the cloud, and guess what it's going to deliver the same limited amount of value. So you've got to transform it, and you've got to make sure that you build it for the future and understand exactly what you're trying to gain out of it. So again, you need a strong collaboration. You need a good partners to work with, and you need good engagement from the business as well, because the kind of, uh, you know, digital transformation, cloud transformation, isn't really an it project, I guess, fundamentally it is at the core, but it's a business project that you've got to get the whole business aligned on. You've got to make sure that your investment streams are appropriate and that you're able to understand the benefits and the value that you're going to drive back towards the business. >>Let's do it. If you don't mind me asking what was some of the obstacles encountered or learnings, um, that might've differed from the expectation we all been there, Hey, you know, we're going to change the world. Here's the sales pitch, here's the outcome. And then obviously things happen, you know, you learn legacy, okay. Let's put some containerization around that cloud native, um, all that rational. You're talking about what are, and you're going to have obstacles. That's how you learn. That's how perfection has developed. How, what obstacles did you come up with and how are they different from your expectations going in? >>Yeah, they're probably no different from other people that have gone down the same journey. If I'm totally honest, the, you know, 70 or 80% of what you do is relative music, because they're a known quantity, it's relatively modern architectures and infrastructures, and you can, you know, upgrade, migrate, move them into the cloud, whatever it is, rehost, replatform, rearchitect, whatever it is you want to do, it's the other stuff, right? It's the stuff that always gets left behind. And that's the challenge. It's, it's getting that last bit over the line and making sure that you haven't invested in the future while still carrying all of your legacy costs and complexity within your environment. So, um, to be quite honest, that's probably taken longer and, and has been more of a challenge than we thought it would be. Um, the other piece I touched on earlier on in terms of what was surprising was actually how much of your environment is actually not needed anymore. >>When you start to put a critical eye across it and understand, um, uh, ask the tough questions and start to understand exactly what, what it is you're trying to achieve. So if you ask a part of a business, do they still need this application or this service a hundred percent of the time, they'll say yes, until you start to lay out to them, okay, now I'm going to cost you this to migrate it or this, to run it in the future. And, you know, here's your ongoing costs and, you know, et cetera, et cetera. And then, uh, for a significant amount of those answers, you get a different response when you start to layer on the true value of it. So you start to flush out those hidden costs within the business, and you start to make some critical decisions as a company based on, uh, based on that. So that was a little tougher than we first thought and probably broader than we thought there was more of that than we anticipated, which actually resulted in a much cleaner environment post and post migration. Yeah. >>Well, expression, if it moves automated, you know, it's kind of a joke on government, how they want to tax everything, you know, you want to automate, that's a key thing in cloud, and you've got to discover those opportunities to create value, uh, Stuart and Siddique. Mainly if you can weigh in on this love to know the percentage of total cloud that you have now, versus when you started, because as you start to uncover whether it's by design for purpose, or you discover opportunities to innovate, like you guys have, I'm sure it kind of, you took on some territory inside Lyon, what percentage of cloud now versus >>Yeah. At the start, it was minimal, right. You know, close to zero, right. Single and single digits. Right. It was mainly SAS environments that we had, uh, sitting in cloud when we, uh, when we started, um, Doug mentioned earlier a really significant transformation project that we've undertaken recently gone live on a multi-year one. Um, you know, that's all stood up on AWS and is a significant portion of our environment, um, in terms of what we can move to cloud. Uh, we're probably at about 80 or 90% now. And the balanced bit is, um, legacy infrastructure that is just gonna retire as we go through the cycle rather than migrate to the cloud. Um, so we are significantly cloud-based and, uh, you know, we're reaping the benefits of it in a year, like 2020, and makes you glad that you did all of the hard yards in the previous years when you start business challenges, trying out as, >>So do you get any common reaction to the cloud percentage penetration? >>Sorry, I didn't, I didn't catch that, but I, all I was going to say was, I think it's like the typical 80 20 rule, right? We, we, we worked really hard in the, you know, I think 2018, 19 to get 80% off the, uh, application onto the cloud. And over the last year is the 20% that we have been migrating. And Stuart said, right. A lot of it is also, that's going to be your diet. And I think our next big step is going to be obviously, you know, the icing on the cake, which is to decommission all of these apps as well. Right. So, you know, to get the real benefits out of, uh, out of the whole conservation program from a, uh, from a reduction of CapEx, OPEX perspective, >>Douglas and Stuart, can you guys talk about the decision around the clouds because you guys have had success with AWS? Why AWS how's that decision made? Can you guys give some insight into some of those things? >>I can, I can start, start off. I think back when the decision was made and it was, it was a while back, um, you know, there was some clear advantages of moving relay, Ws, a lot of alignment with some of the significant projects and, uh, the trend, that particular one big transformation project that we've alluded to as well. Um, you know, we needed some, um, some very robust and, um, just future proof and, and proven technology. And AWS gave that to us. We needed a lot of those blueprints to help us move down the path. We didn't want to reinvent everything. So, um, you know, having a lot of that legwork done for us and AWS gives you that, right. And particularly when you partner up with, uh, with a company like Accenture as well, you get combinations of technology and the, the skills and the knowledge to, to move you forward in that direction side. Um, you know, for us, it was a, uh, uh, it was a decision based on, you know, best of breed, um, you know, looking forward and, and trying to predict the future needs and, and, and kind of the environmental that we might need. Um, and, you know, partnering up with organizations that can then take you on the journey >>Just to build on that. So obviously, you know, lines like an antivirus, but, you know, we knew it was a very good choice given the, um, >>Uh, skills and the capability that we had, as well as the assets and tools we had to get the most out of an AWS. And obviously our CEO globally just made an announcement about a huge investment that we're making in cloud. Um, but you know, we've, we've worked very well with AWS. We've done some joint workshops and joint investments, um, some joint POC. So yeah, w we have a very good working relationship, AWS, and I think, um, one incident to reflect upon whether it's cyber it's and again, where we actually jointly, you know, dove in with, um, with Amazon and some of their security experts and our experts. And we're able to actually work through that with mine quite successful. So, um, you know, really good behaviors as an organization, but also really good capabilities. >>Yeah. As you guys, your essential cloud outcomes, research shown, it's the cycle of innovation with the cloud, that's creating a lot of benefits, knowing what you guys know now, looking back certainly COVID has impacted a lot of people kind of going through the same process, knowing what you guys know now, would you advocate people to jump on this transformation journey? If so, how, and what tweaks they make, which changes, what would you advise? >>I might take that one to start with. Um, I hate to think where we would have been when, uh, COVID kicked off here in Australia and, you know, we were all sent home, literally were at work on the Friday, and then over the weekend. And then Monday, we were told not to come back into the office and all of a sudden, um, our capacity in terms of remote access and I quadrupled, or more four, five X, what we had on the Friday we needed on the Monday. And we were able to stand that up during the day Monday into Tuesday, because we were cloud-based and, uh, you know, we just spun up your instances and, uh, you know, sort of our licensing, et cetera. And, and we had all of our people working remotely, um, within, uh, you know, effectively one business day. Um, I know peers of mine in other organizations and industries that are relying on kind of a traditional wise and getting hardware, et cetera, that were weeks and months before they could get the right hardware to be able to deliver to their user base. >>So, um, you know, one example where you're able to scale and, uh, uh, get, uh, get value out of this platform beyond probably what was anticipated at the time you talk about, um, you know, less this, the, and all of these kinds of things. And you can also think of a few scenarios, but real world ones where you're getting your business back up and running in that period of time is, is just phenomenal. There's other stuff, right? There's these programs that we've rolled out, you do your sizing, um, and in the traditional world, you would just go out and buy more servers than you need. And, you know, probably never realize the full value of those, you know, the capability of those servers over the life cycle of them. Whereas, you know, in a cloud world, you put in what you think is right. And if it's not right, you pump it up a little bit when, when all of your metrics and so on telling you that you need to bump it up and conversely Scarlett down at the same rate. So for us with the types of challenges and programs and, uh, uh, and just business need, that's come at as this year, uh, we wouldn't have been able to do it without a strong cloud base, uh, to, uh, to move forward with >>Yeah, Douglas, one of the things that I talked to, a lot of people on the right side of history who have been on the right wave with cloud, with the pandemic, and they're happy, they're like, and they're humble. Like, well, we're just lucky, you know, luck is preparation meets opportunity. And this is really about you guys getting in early and being prepared and readiness. This is kind of important as people realize, then you gotta be ready. I mean, it's not just, you don't get lucky by being in the right place, the right time. And there were a lot of companies were on the wrong side of history here who might get washed away. This is a second >>I think, to echo and kind of build on what Stewart said. I think that the reason that we've had success and I guess the momentum is we, we didn't just do it in isolation within it and technology. It was actually linked to broader business changes, you know, creating basically a digital platform for the entire business, moving the business, where are they going to be able to come back stronger after COVID, when they're actually set up for growth, um, and actually allows, you know, a line new achievements, growth objectives, and also its ambitions as far as what he wants to do, uh, with growth in whatever they may do as acquiring other companies and moving into different markets and launching new product. So we've actually done it in a way that there's, you know, real and direct business benefit, uh, that actually enables line to grow >>General. I really appreciate you coming. I have one final question. If you can wrap up here, uh, Stuart and Douglas, you don't mind waiting, and what's the priorities for the future. What's next for lion and a century >>Christmas holidays, I'll start Christmas holidays. And I spent a third year and then a, and then a reset, obviously, right? So, um, you know, it's, it's figuring out, uh, transform what we've already transformed, if that makes sense. So God, a huge proportion of our services sitting in the cloud. Um, but we know we're not done even with the stuff that is in there. We need to take those next steps. We need more and more automation and orchestration. We need to, um, our environment, there's more future growth. We need to be able to work with the business and understand what's coming at them so that we can, um, you know, build that into, into our environment. So again, it's really transformation on top of transformation is the way that I'll describe it. And it's really an open book, right? Once you get it in and you've got the capabilities and the evolving tool sets that AWS continue to bring to the market base, um, you know, working with the partners to, to figure out how we unlock that value, um, you know, drive our costs down our efficiency, uh, all of those kind of, you know, standard metrics. >>Um, but you know, we're looking for the next things to transform and show value back out to our customer base, um, that, uh, that we continue to, you know, sell our products to and work with and understand how we can better meet their needs. Yeah, I think just to echo that, I think it's really leveraging this and then digital capability they have and getting the most out of that investment. And then I think it's also moving to, >>Uh, and adopting more new ways of working as far as, you know, the state of the business. Um, it's getting up the speed of the market is changing. So being able to launch and do things quickly and also, um, competitive and efficient operating costs, uh, now that they're in the cloud, right. So I think it's really leveraging the most out of a platform and then, you know, being efficient in launching things. So putting the, with the business, >>Cedric, any word from you on your priorities by UC this year and folding. >>Yeah. So, uh, just going to say like e-learning squares, right for me were around, you know, just journey. This is a journey to the cloud, right. And, uh, you know, as well dug into sort of Saturday, it's getting all, you know, different parts of the organization along the journey business to ID to your, uh, product windows, et cetera. Right. And it takes time with this stuff, but, uh, uh, you know, you gotta get started on it and, you know, once we, once we finish off, uh, it's the realization of the benefits now that, you know, I'm looking forward? I think for, from Alliance perspective, it's, it is, uh, you know, once we migrate all the workloads to the cloud, it is leveraging, uh, all stack drive. And as I think Stewart said earlier, uh, with, uh, you know, the latest and greatest stuff that AWS it's basically working to see how we can really, uh, achieve more better operational excellence, uh, from a, uh, from a cloud perspective. >>Well, Stewart, thanks for coming on with a century and sharing your environment and what's going on and your journey you're on the right wave. Did the work you were in that it's all coming together with faster, congratulations for your success, and really appreciate Douglas with Steve for coming on as well from Accenture. Thank you for coming on. Thanks, John. Okay. Just the cubes coverage of executive summit at AWS reinvent. This is where all the thought leaders share their best practices, their journeys, and of course, special programming with the center and the cube. I'm Sean ferry, your host, thanks for watching From around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Welcome everyone to the cube virtuals coverage of the Accenture executive summit. Part of AWS reinvent 2020. I'm your host Rebecca Knight. We are talking today about reinventing the energy data platform. We have two guests joining us. First. We have Johan Krebbers. He is the GM digital emerging technologies and VP of it. Innovation at shell. Thank you so much for coming on the show. Johan you're welcome. And next we have Liz Dennett. She is the lead solution architect for O S D U on AWS. Thank you so much, Liz. You'll be. So I want to start our conversation by talking about OSD. You like so many great innovations. It started with a problem Johan. What was the problem you were trying to solve at shell? >>Yeah, the ethical back a couple of years, we started summer 2017, where we had a meeting with the deg, the gas exploration in shell, and the main problem they had. Of course, they got lots of lots of data, but are unable to find the right data. They need to work from once the day, this was scattered in is scattered my boss kind of Emirates all over the place and turned them into real, probably tried to solve is how that person working exploration could find their proper date, not just a day of loss of date. You really needed that we did probably talked about is summer 2017. We said, okay. The only way ABC is moving forward is to start pulling that data into a single data platform. And that, that was at the time that we called it as the, you, the subsurface data universe in there was about the shell name was so in, in January, 2018, we started a project with Amazon to start grating a freaking that building, that Stu environment that the, that universe, so that single data level to put all your exploration and Wells data into that single environment that was intent and every cent, um, already in March of that same year, we said, well, from Michele point of view, we will be far better off if we could make this an industry solution and not just a shelf solution, because Shelby, Shelby, if you can make this industry solution, but people are developing applications for it. >>It also is far better than for shell to say we haven't shell special solution because we don't make money out of how we start a day that we can make money out of, if you have access to the data, we can explore the data. So storing the data we should do as efficiently possibly can. So in March, we reached out to about eight or nine other large, uh, I gas operators, like the economics, like the totals, like the chefs of this world and say, Hey, we inshallah doing this. Do you want to join this effort? And to our surprise, they all said, yes. And then in September, 2018, we had our kickoff meeting with your open group where we said, we said, okay, if you want to work together, lots of other companies, we also need to look at, okay, how, how we organize that, or is that if you started working with lots of large companies, you need to have some legal framework around some framework around it. So that's why we went to the open group and said, okay, let's, let's form the ODU forum as we call it the time. So it's September, 2080, where I did a Galleria in Houston, but the kick off meeting for the OT four with about 10 members at the time. So there's just over two years ago, we started an exercise for me called ODU, kicked it off. Uh, and so that's really then we'll be coming from and how we got there. Also >>The origin story. Um, well, so what digging a little deeper there? What were some of the things you were trying to achieve with the OSD? >>Well, a couple of things we've tried to achieve with OSU, um, first is really separating data from applications. And what is the, what is the biggest problem we have in the subsurface space that the data and applications are all interlinked or tied together. And if you have them and a new company coming along and say, I have this new application and has access to the data that is not possible because the data often interlinked with the application. So the first thing we did is really breaking the link between the application, the data as those levels, the first thing we did, secondly, put all the data to a single data platform, take the silos out what was happening in the subsurface space. And they got all the data in what we call silos in small little islands out there. So we're trying to do is first break the link to great, great. >>They put the data in a single data bathroom, and a third part who does standard layer. On top of that, it's an API layer on top of the, a platform. So we could create an ecosystem out of companies to start developing soft applications on top of dev data platform across you might have a data platform, but you're only successful. If you have a rich ecosystem of people start developing applications on top of that. And then you can explore today, like small companies, last company, university, you name it, we're getting after create an ecosystem out here. So the three things, whereas was first break the link between application data, just break it and put data at the center and also make sure that data, this data structure would not be managed by one company. It would only be met. It will be managed the data structures by the OT forum. Secondly, then the data of single data platform certainly has an API layer on top and then create an ecosystem. Really go for people, say, please start developing applications because now you have access to the data. I've got the data no longer linked to somebody whose application was all freely available for an API layer. That was, that was all September, 2018, more or less. >>And to bring you in here a little bit, can you talk a little bit about some of the imperatives from the AWS standpoint in terms of what you were trying to achieve with this? Yeah, absolutely. And this whole thing is Johan said started with a challenge that was really brought out at shell. The challenges that geo-scientists spend up to 70% of their time looking for data, I'm a geologist I've spent more than 70% of my time trying to find data in these silos. And from there, instead of just figuring out how we could address that one problem, we worked together to really understand the root cause of these challenges and working backwards from that use case OSU and OSU on AWS has really enabled customers to create solutions that span, not just this in particular problem, but can really scale to be inclusive of the entire energy chain and deliver value from these use cases to the energy industry and beyond. Thank you, Lee, uh, Johann. So talk a little bit about Accenture's cloud first approach and how it has, uh, helped shell work faster and better with speed. >>Well, of course, access a cloud first approach only works together in an Amazon environment, AWS environment. So we really look at, at, at, at Accenture and others altogether helping shell in this space. Now the combination of the two is what we're really looking at, uh, where access of course can be, this is not a student who that environment operates, support knowledge to an environment. And of course, Amazon would be doing that to today's environment that underpinning, uh, services, et cetera. So, uh, we would expect a combination, a lot of goods when we started rolling out and put in production, the old you are three and bubble because we are anus. Then when the release feed comes to the market in Q1 next year of ODU, when he started going to Audi production inside shell, but as the first release, which is ready for prime time production across an enterprise will be released one just before Christmas, last year when he's still in may of this year. But release three is the first release we want to use for full scale production deployment inside shell, and also all the operators around the world. And there is what Amazon, sorry. Um, extensive can play a role in the ongoing, in the, in deployment building up, but also support environment. >>So one of the other things that we talk a lot about here on the cube is sustainability. And this is a big imperative at so many organizations around the world in particular energy companies. How does this move to OSD you, uh, help organizations become, how is this a greener solution for companies? >>Well, firstly make it, it's a great solution because you start making a much more efficient use of your resources, which is, which is already an important one. The second thing they're doing is also, we started with ODU in the oil and gas space with the expert development space. We've grown, uh OTU but in our strategy of growth, OSU now also do an alternative energy sociology. We'll all start supporting next year. Things like solar farms, wind farms, uh, the, the dermatomal environment hydration. So it becomes an and, and an open energy data platform, not just for the, for the, I want to get into steam that's for new industry, any type of energy industry. So our focus is to create, bring that data of all those various energy data sources together into a single data platform. You're going to use AI and other technology on top of that to exploit the data, to meet again in a single data platform. >>Liz, I want to ask you about security because security is, is, is such a big concern when it comes to how secure is the data on OSD you, um, actually, can I talk, can I do a follow up on the sustainability talking? Oh, absolutely. By all means. I mean, I want to interject though security is absolutely our top priority. I don't mean to move away from that, but with sustainability, in addition to the benefits of the OSU data platform, when a company moves from on-prem to the cloud, they're also able to leverage the benefits of scale. Now, AWS is committed to running our business in the most environmentally friendly way possible. And our scale allows us to achieve higher resource utilization and energy efficiency than a typical on-prem data center. Now, a recent study by four 51 research found that AWS is infrastructure is 3.6 times more energy efficient than the median of surveyed enterprise data centers. Two thirds of that advantage is due to higher server utilization and a more energy efficient server population. But when you factor in the carbon intensity of consumed electricity and renewable energy purchases, four 51 found that AWS performs the same task with an 88% lower carbon footprint. Now that's just another way that AWS and OSU are working to support our customers is they seek to better understand their workflows and make their legacy businesses less carbon intensive. >>That's that's those are those statistics are incredible. Do you want to talk a little bit now about security? Absolutely. And security will always be AWS is top priority. In fact, AWS has been architected to be the most flexible and secure cloud computing environment available today. Our core infrastructure is built to satisfy. There are the security requirements for the military global banks and other high sensitivity organizations. And in fact, AWS uses the same secure hardware and software to build and operate each of our regions. So that customers benefit from the only commercial cloud that's had hits service offerings and associated supply chain vetted and deemed secure enough for top secret workloads. That's backed by a deep set of cloud security tools with more than 200 security compliance and governmental service and key features as well as an ecosystem of partners like Accenture, that can really help our customers to make sure that their environments for their data meet and or exceed their security requirements. Johann, I want you to talk a little bit about how OSD you can be used today. Does it only handle subsurface data >>And today it's hundreds of servers or Wells data. We got to add to that production around the middle of next year. That means that the whole upstate business. So we've got, if you look at MC, obviously this goes from exploration all the way to production. You've been at the into to a single data platform. So production will be added the round Q3 of next year. Then it principal, we have a difficult, the elder data that single environment, and we want to extended them to other data sources or energy sources like solar farms, wheat farms, uh, hydrogen hydro at San Francisco. We want to add a whore or a list of other day. >>And he saw a student and B all the data together into a single data club. So we move from an fallen guest, a data platform to an energy data platform. That's really what our objective is because the whole industry we've looked at, I've looked at our company companies all moving in that same direction of quantity, of course are very strong at all, I guess, but also increase the, got into all the other energy sources like, like solar, like wind, like, like the hydrogen, et cetera. So we, we move exactly the same method that, that, that the whole OSU can really support at home. And as a spectrum of energy sources, of course, >>And Liz and Johan. I want you to close us out here by just giving us a look into your crystal balls and talking about the five and 10 year plan for OSD. You we'll start with you, Liz. What do you, what do you see as the future holding for this platform? Um, honestly, the incredibly cool thing about working at AWS is you never know where the innovation and the journey is going to take you. I personally am looking forward to work with our customers, wherever their OSU journeys, take them, whether it's enabling new energy solutions or continuing to expand, to support use cases throughout the energy value chain and beyond, but really looking forward to continuing to partner as we innovate to slay tomorrow's challenges. >>Yeah. First, nobody can look that far ahead, any more nowadays, especially 10 years mean now, who knows what happens in 10 years, but if you look what our whole objective is that really in the next five years owes you will become the key backbone for energy companies for storing your data. You are efficient intelligence and optimize the whole supply energy supply chain in this world out there. >>Rubbers Liz Dennett. Thank you so much for coming on the cube virtual, >>Thank you, >>Rebecca nights, stay tuned for more of our coverage of the Accenture executive summit >>Around the globe. It's the cube with digital coverage of AWS reinvent executive summit 2020, sponsored by Accenture and AWS. >>Welcome everyone to the cubes coverage of the Accenture executive summit. Part of AWS reinvent. I'm your host Rebecca Knight today we're welcoming back to Kubila. We have Kishor Dirk. He is the Accenture senior managing director cloud first global services lead. Welcome back to the show >>Kishore. Thank you very much. >>Nice to meet again. And, uh, Tristin moral horse set. He is the managing director, Accenture cloud first North American growth. Welcome back to YouTube. >>Great to be back in. Great to see you again, Rebecca. >>Exactly. Even in this virtual format, it is good to see your faces. Um, today we're going to be talking about my nav and green cloud advisor >>Capability. Kishor I want to start with you. So my NAB is a platform that is really celebrating its first year in existence. Uh, November, 2019 is when Accenture introduced it. Uh, but it's, it has new relevance in light of this global pandemic that we are all enduring and suffering through. Tell us a little bit about the miner platform, what it is. >>Sure, Rebecca, you know, we lost it and now 2019 and, uh, you know, it is a cloud platform to help our clients navigate the complexity of cloud and cloud decisions and to make it faster and obviously innovate in the cloud, uh, you know, with the increased relevance and all the, especially over the last few months with the impact of COVID crisis and exhibition of digital transformation, you know, we are seeing the transformation of the acceleration to cloud much faster. This platform that you're talking about has enabled hundred and 40 clients globally across different industries. You identify the right cloud solution, navigate the complexity, provide a cloud specific solution simulate for our clients to meet the strategy business needs and the clients are loving it. >>I want to go to you now trust and tell us a little bit about how my nav works and how it helps companies make good cloud choices. >>Yeah. So Rebecca we've talked about cloud is, is more than just infrastructure and that's what mine app tries to solve for. It really looks at a variety of variables, including infrastructure operating model and fundamentally what clients business outcomes, um, uh, our clients are, are looking for and, and identify as the optimal solution for what they need. And we design this to accelerate and we mentioned the pandemic. One of the big focus now is to accelerate. And so we worked through a three-step process. The first is scanning and assessing our client's infrastructure, their data landscape, their application. Second, we use our automated artificial intelligence engine to interact with. We have a wide variety and library of, uh, collective plot expertise. And we look to recommend what is the enterprise architecture and solution. And then third, before we aligned with our clients, we look to simulate and test this scaled up model. And the simulation gives our clients a wait to see what cloud is going to look like, feel like and how it's going to transform their business before they go there. >>Tell us a little bit about that in real life. Now as a company, so many of people are working remotely having to collaborate, uh, not in real life. How is that helping them right now? >>So, um, the, the pandemic has put a tremendous strain on systems, uh, because of the demand on those systems. And so we talk about resiliency. We also now need to collaborate across data across people. Um, I think all of us are calling from a variety of different places where our last year we were all at the cube itself. Um, and, and cloud technologies such as teams, zoom that we're we're leveraging now has fundamentally accelerated and clients are looking to onboard this for their capabilities. They're trying to accelerate their journey. They realize that now the cloud is what is going to become important for them to differentiate. Once we come out of the pandemic and the ability to collaborate with their employees, their partners, and their clients through these systems is becoming a true business differentiator for our clients. >>Sure. I want to talk with you now about my NABS multiple capabilities, um, and helping clients design and navigate their cloud journeys. Tell us a little bit about the green cloud advisor capability and its significance, particularly as so many companies are thinking more deeply and thoughtfully about sustainability. >>Yes. So since the launch of my NAB, we continue to enhance capabilities for our clients. One of the significant, uh, capabilities that we have enabled is the brain trust advisor today. You know, Rebecca, a lot of the businesses are more environmentally aware and are expanding efforts to decrease power consumption, uh, and obviously carbon emissions and, uh, and run a sustainable operations across every aspect of the enterprise. Uh, as a result, you're seeing an increasing trend in adoption of energy, efficient infrastructure in the global market. And one of the things that we did, a lot of research we found out is that there's an ability to influence our client's carbon footprint through a better cloud solution. And that's what we entered by brings to us, uh, in, in terms of a lot of the client connotation that you're seeing in Europe, North America and others, lot of our clients are accelerating to a green cloud strategy to unlock beta financial, societal and environmental benefit, uh, through obviously cloud-based circular, operational and sustainable products and services. That is something that, uh, we are enhancing my now and we are having active client discussions at this point of time. >>So Tristan, tell us a little bit about how this capability helps clients make greener. >>Yeah. Um, well, let's start about the investments from the cloud providers in renewable and sustainable energy. Um, they have most of the hyperscalers today, um, have been investing significantly on data centers that are run or renewable energy, some incredibly creative constructs on the how to do that. And sustainability is therefore a key, um, key item of importance for the hyperscalers and also for our clients who now are looking for sustainable energy. And it turns out this marriage is now possible. I can, we marry the, the green capabilities of the cloud providers with a sustainability agenda of our clients. And so what we look into way the mine EF works is it looks at industry benchmarks and evaluates our current clients, um, capabilities and carpet footprint leveraging their existing data centers. We then look to model from an end-to-end perspective, how the, their journey to the cloud leveraging sustainable and, um, and data centers with renewable energy. We look at how their solution will look like and, and quantify carbon tax credits, um, improve a green index score and provide quantifiable, um, green cloud capabilities and measurable outcomes to our clients, shareholders, stakeholders, clients, and customers, um, and our green plot advisors, sustainability solutions already been implemented at three clients. And in many cases in two cases has helped them reduce the carbon footprint by up to 400% through migration from their existing data center to green club. Very, very important. Yeah, >>That is remarkable. Now tell us a little bit about the kinds of clients. Is this, is this more interesting to clients in Europe? Would you say that it's catching on in the United States where we're at? What is the breakdown that you're seeing right now? >>Sustainability is becoming such a global agenda and we're seeing our clients, um, uh, tie this and put this at board level, um, uh, agenda and requirements across the globe. Um, Europe has specific constraints around data sovereignty, right, where they need their data in country, but from a green, a sustainability agenda, we see clients across all our markets, North America, Europe, and our growth markets adopt this. And we have seen case studies in all three markets >>Kisha. I want to bring you back into the conversation. Talk a little bit about how mine up ties into Accenture's cloud first strategy, your Accenture's CEO, Julie Sweet has talked about post COVID leadership requiring every business to become a cloud first business. Tell us a little bit about how this ethos is in Accenture and how you're sort of looking outward with it too. >>So Rebecca mine is the launch pad, uh, to a cloud first transformation for our clients. Uh, Accenture, see you, uh, Julie Sweet, uh, shared the Accenture cloud first and our substantial investment demonstrate our commitment and is delivering data value for our clients when they need it the most. And with the district transformation requiring cloud at scale, you know, we're seeing that in the post COVID leadership, it requires that every business should become a cloud business. And my nap helps them get there by evaluating the cloud landscape, navigating the complexity, modeling architecting and simulating an optimal cloud solution for our clients. And as Justin was sharing a greener cloud, Tristan, talk a little >>Bit more about some of the real life use cases in terms of what are we, what are clients seeing? What are the results? >>Yes, thank you, Rebecca. I would say two key things right around my now the first is the iterative process. Clients don't want to wait, um, until they get started, they want to get started and see what their journey is going to look like. And the second is fundamental acceleration, dependent make, as we talked about, has accelerated the need to move to cloud very quickly. And my nav is there to do that. So how do we do that? First is generating the business cases. Clients need to know in many cases that they have a business case by business case, we talk about the financial benefits, as well as the business outcomes, the green green cloud impact sustainability impacts with minus we can build initial recommendations using a basic understanding of their environment and benchmarks in weeks versus months with indicative value savings in the millions of dollars arranges. >>So for example, very recently, we worked with a global oil and gas company, and in only two weeks, we're able to provide an indicative savings for $27 million over five years. This enabled the client to get started, knowing that there is a business case benefit and then iterate on it. And this iteration is, I would say the second point that is particularly important with my nav that we've seen in bank, the clients, which is, um, any journey starts with an understanding of what is the application landscape and what are we trying to do with those, these initial assessments that used to take six to eight weeks are now taking anywhere from two to four weeks. So we're seeing a 40 to 50% reduction in the initial assessment, which gets clients started in their journey. And then finally we've had discussions with all of the hyperscalers to help partner with Accenture and leverage mine after prepared their detailed business case module as they're going to clients. And as they're accelerating the client's journey, so real results, real acceleration. And is there a journey? Do I have a business case and furthermore accelerating the journey once we are by giving the ability to work in an iterative approach, >>It sounds as though that the company that clients and and employees are sort of saying, this is an amazing time savings look at what I can do here in, in so much in a condensed amount of time, but in terms of getting everyone on board, one of the things we talked about last time we met, uh, Tristin was just how much, uh, how one of the obstacles is getting people to sign on and the new technologies and new platforms. Those are often the obstacles and struggles that companies face. Have you found that at all? Or what is sort of the feedback that you're getting from? >>Yeah. Sorry. Yes. We clearly, there are always obstacles to a con journey. If there weren't obstacles, all our clients would be already fully in the cloud. What man I gives the ability is to navigate through those, to start quickly. And then as we identify obstacles, we can simulate what things are going to look like. We can continue with certain parts of the journey while we deal with that obstacle. And it's a fundamental accelerator. Whereas in the past one, obstacle would prevent a class from starting. We can now start to address the obstacles one at a time while continuing and accelerating the contrary. That is the fundamental difference. Kishor I want to give you the final word here. Tell us a little bit about what is next for Accenture might have and what we'll be discussing next year at the Accenture executive summit >>Sort of echo, we are continuously evolving with our client needs and reinventing, reinventing for the future. For my advisor, our plan is to help our clients reduce carbon footprint and again, migrate to a green cloud. Uh, and additionally, we're looking at, you know, two capabilities, uh, which include sovereign cloud advisor, uh, with clients, especially in, in Europe and others are under pressure to meet stringent data norms that Kristen was talking about. And the sovereign cloud advisor health organization to create an architecture cloud architecture that complies with the green. Uh, I would say the data sound-bitey norms that is out there. The other element is around data to cloud. We are seeing massive migration, uh, for, uh, for a lot of the data to cloud. And there's a lot of migration hurdles that come within that. Uh, we have expanded mine app to support assessment capabilities, uh, for, uh, assessing applications, infrastructure, but also covering the entire state, including data and the code level to determine the right cloud solution. So we are, we are pushing the boundaries on what might have can do with mine. And we have created the ability to take the guesswork out of cloud, navigate the complexity. We are rolling risks costs, and we are achieving clients strategy, business objectives, while building a sustainable lots with being cloud, >>Any platform that can take some of the guesswork out of the future. I'm I'm on board with. Thank you so much, Kristin and Kishore. This has been a great conversation. Thank you, Rebecca. Thank you, Rebecca. Stay tuned for more of the cubes coverage of the Accenture executive summit. I'm Rebecca Knight. >>Yeah, Yeah.

Published Date : Dec 1 2020

SUMMARY :

It's the cube with digital coverage Welcome to cube three 60 fives coverage of the Accenture executive summit. Thanks for having me here. impact of the COVID-19 pandemic has been, what are you hearing from clients? you know, various facets, you know, um, first and foremost, to this reasonably okay, and are, you know, launching to So you just talked about the widening gap. all the changes the pandemic has brought to them. in the cloud that we are going to see. Can you tell us a little bit more about what this strategy entails? all of the systems under which they attract need to be liberated so that you could drive now, the center of gravity is elevated to it becoming a C-suite agenda on everybody's And it, and it's a strategy, but the way you're describing it, it sounds like it's also a mindset and an approach, the employees are able to embrace this change. across every department, I'm the agent of this change is going to be the employees or weapon, And because the change management is, is often the hardest And that is again, the power of cloud. And the power of cloud is to get all of these capabilities from outside that employee, the employee will be more engaged in his or her job and therefore And this is, um, you know, no more true than how So at Accenture, you have long, long, deep Stan, sorry, And in fact, in the cloud world, it was one of the first, um, And one great example is what we are doing with Takeda, uh, billable, to drive more customer insights, um, come up with breakthrough Yeah, the future to the next, you know, base camp, as I would call it to further this productivity, And the evolution that is going to happen where, you know, the human grace of mankind, I genuinely believe that cloud first is going to be the forefront of that change Thank you so much for joining us Karthik. It's the cube with digital coverage And what happens when you bring together the scientific, And Brian Beau Han global director and head of the Accenture AWS business group at Amazon Um, and I think that, you know, there's a, there's a need ultimately to, And, you know, we were commenting on this earlier, but there's, you know, it's been highlighted by a number of factors. And I think that, you know, that's going to help us make faster, better decisions. Um, and so I think with that, you know, there's a few different, it, uh, insights that, you know, the three of us are spending a lot of time thinking about right now. So Arjun, I want to bring you into this conversation a little bit. uh, something that, you know, we had all to do differently. in the governance and every level of leadership, we always think about this as a collective the same way, the North side, the same way, And I think if you really think about what he's talking about, Because the old ways of thinking where you've got application people and infrastructure, How will their experience of work change and how are you helping re-imagine and And it's something that, you know, I think we all have to think a lot about, I mean, And then secondly, I think that, you know, we're, we're very clear that there's a number of areas where there are Uh, and so I think that that's, you know, one, one element that can be considered. or how do we collaborate across the number of boundaries, you know, and I think, uh, Arjun spoke eloquently the customer obsession and this idea of innovating much more quickly. of the things that, you know, a partner like AWS brings to the table is we talk a lot about builders, And it's not just the technical people or the it people who are you know, some decisions, what we call it at Amazon are two two-way doors, meaning you can go through that door, And so we chose, you know, uh, with our focus on, I want you to close this out here. sort of been great for me to see is that when people think about cloud, you know, Well, thank you so much. Yeah, it's been fun. It's the cube with digital coverage of How big is the force and also what were some of the challenges that you were grappling with Um, so the reason we sort of embarked um, you know, certainly as a, as an it leader and sort of my operational colleagues, What is the art of the possible, can you tell us a little bit about why you the public sector that, you know, there are many rules and regulations quite rightly as you would expect Matthew, I want to bring you into the conversation a little bit here. to bring in a number of the different themes that we have say cloud themes, security teams, um, So much of this is about embracing comprehensive change to experiment, the outcomes they're looking to achieve rather than simply focusing on the long list of requirements I think was critical So to give you a little bit of context, when we, um, started And the pilot was so successful. And I think just parallel to that is the quality of our data because we had a lot of data, And have you seen that kind of return on investment because what you were just describing with all the steps Um, but all the, you know, the minutes here and that certainly add up Have you seen any changes And Helen is the leader from an IOT perspective. And this is a question for both of you because Matthew, as you said, change is difficult and there is always a certain You know, we had lots of workshops and seminars where we all talk about, you know, see, you know, to see the stack change, you know, and, and if we, if we have any issues now it's literally, when you are trying to get everyone on board for this kind of thing? the 30 day challenge and nudge theory around how can we gradually encourage people to use things? I want to hear, where do you go from here? not that simple, but, um, you know, we've, we've been through significant change in the last And I see now that we have good at embedded in operational So I want to ask Stuart you first, if you can talk about this transformation and stuck in the old it groove of, you know, capital refresh, um, of the challenges like we've had this year, um, it makes all of the hard work worthwhile because you can actually I want to just real quick and redirect to you and say, you know, for all the people who said, Oh yeah, And, um, you know, Australia, we had to live through Bush fires by the Navy allowed us to work in this unprecedented gear Because I've been saying on the Cuban reporting, necessity's the mother of all and always the only critical path to be done. And what specifically did you guys do at Accenture and how did it all come applications to the cloud now, you know, one of the things that, uh, no we did not along uh, uh, and, and, and, you know, that would really work in our collaborative and agile environment How did you address your approach to the cloud and what was your experience? And then building upon it, and then, you know, partnering with Accenture allows because the kind of, uh, you know, digital transformation, cloud transformation, learnings, um, that might've differed from the expectation we all been there, Hey, you know, It's, it's getting that last bit over the line and making sure that you haven't invested in the future hundred percent of the time, they'll say yes, until you start to lay out to them, okay, you know, you want to automate, that's a key thing in cloud, and you've got to discover those opportunities to create value, Um, you know, that's all stood up on AWS and is a significant portion of And I think our next big step is going to be obviously, So, um, you know, having a lot of that legwork done for us and AWS gives you that, So obviously, you know, lines like an antivirus, but, you know, we knew it was a very good So, um, you know, really good behaviors as an a lot of people kind of going through the same process, knowing what you guys know now, And, and we had all of our people working remotely, um, within, uh, you know, effectively one business day. the time you talk about, um, you know, less this, the, and all of these kinds of things. And this is really about you guys getting It was actually linked to broader business changes, you know, creating basically a digital platform Stuart and Douglas, you don't mind waiting, and what's the priorities for the future. to figure out how we unlock that value, um, you know, drive our costs down our efficiency, our customer base, um, that, uh, that we continue to, you know, sell our products to and work with Uh, and adopting more new ways of working as far as, you know, the state of the business. And it takes time with this stuff, but, uh, uh, you know, Did the work you were in that it's all coming together with faster, What was the problem you were trying to solve at shell? And that, that was at the time that we called it as the, make money out of how we start a day that we can make money out of, if you have access to the data, we can explore the data. What were some of the things you were trying to achieve with the OSD? So the first thing we did is really breaking the link between the application, I've got the data no longer linked to somebody whose application was all freely available for an API layer. And to bring you in here a little bit, can you talk a little bit about some of the imperatives from the a lot of goods when we started rolling out and put in production, the old you are three and bubble because we are So one of the other things that we talk a lot about here on the cube is sustainability. of that to exploit the data, to meet again in a single data platform. purchases, four 51 found that AWS performs the same task with an So that customers benefit from the only commercial cloud that's had hits service offerings and You've been at the into to a single data platform. And he saw a student and B all the data together into a single data club. Um, honestly, the incredibly cool thing about working at AWS is you who knows what happens in 10 years, but if you look what our whole objective is that really in the next five Thank you so much for coming on the cube virtual, It's the cube with digital coverage of He is the Accenture senior managing director cloud first global services Thank you very much. He is the managing director, Great to see you again, Rebecca. Even in this virtual format, it is good to see your faces. So my NAB is a platform that is really celebrating to make it faster and obviously innovate in the cloud, uh, you know, with the increased relevance I want to go to you now trust and tell us a little bit about how my nav works and how it helps One of the big focus now is to accelerate. having to collaborate, uh, not in real life. They realize that now the cloud is what is going to become important for them to differentiate. about the green cloud advisor capability and its significance, particularly as so many companies And one of the things that we did, a lot of research we found out is that there's an ability to influence or renewable energy, some incredibly creative constructs on the how to do that. What is the breakdown that you're seeing right now? And we have seen case studies in all I want to bring you back into the conversation. And with the district transformation requiring cloud at scale, you know, we're seeing that in And the second is fundamental acceleration, dependent make, as we talked about, has accelerated the need This enabled the client to get started, knowing that there is a business is getting people to sign on and the new technologies and new platforms. What man I gives the ability is to navigate through those, to start quickly. And the sovereign cloud advisor health organization to create an Any platform that can take some of the guesswork out of the future.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
LizPERSON

0.99+

Liz DennettPERSON

0.99+

Rebecca KnightPERSON

0.99+

TakedaORGANIZATION

0.99+

StevePERSON

0.99+

RebeccaPERSON

0.99+

MatthewPERSON

0.99+

StewartPERSON

0.99+

AWSORGANIZATION

0.99+

BrianPERSON

0.99+

JohanPERSON

0.99+

AmazonORGANIZATION

0.99+

JustinPERSON

0.99+

CarlPERSON

0.99+

Arjan BeattyPERSON

0.99+

JohannPERSON

0.99+

AccentureORGANIZATION

0.99+

40QUANTITY

0.99+

Julie SweetPERSON

0.99+

HelenPERSON

0.99+

StuartPERSON

0.99+

EuropeLOCATION

0.99+

KarthikPERSON

0.99+

September, 2018DATE

0.99+

Johan KrebbersPERSON

0.99+

AustraliaLOCATION

0.99+

LeePERSON

0.99+

JohnPERSON

0.99+

KristinPERSON

0.99+

sixQUANTITY

0.99+

$3 billionQUANTITY

0.99+

January, 2018DATE

0.99+

Brian Beau HanPERSON

0.99+

ArjunPERSON

0.99+

OSUORGANIZATION

0.99+