Image Title

Search Results for two biggest considerations:

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+

Day 1 Wrap | KubeCon + CloudNativeCon NA 2022


 

>>Hello and welcome back to the live coverage of the Cube here. Live in Detroit, Michigan for Cub Con, our seventh year covering all seven years. The cube has been here. M John Fur, host of the Cube, co-founder of the Cube. I'm here with Lisa Mart, my co-host, and our new host, Savannah Peterson. Great to see you guys. We're wrapping up day one of three days of coverage, and our guest analyst is Sario Wall, who's the cube analyst who's gonna give us his report. He's been out all day, ear to the ground in the sessions, peeking in, sneaking in, crashing him, getting all the data. Great to see you, Sarvi. Lisa Savannah, let's wrap this puppy up. >>I am so excited to be here. My first coupon with the cube and being here with you and Lisa has just been a treat. I can't wait to hear what you have to say in on the report side. And I mean, I have just been reflecting, it was last year's coupon that brought me to you, so I feel so lucky. So much can change in a year, folks. You never know where you're be. Wherever you're sitting today, you could be living your dreams in just a few >>Months. Lisa, so much has changed. I mean, just look at the past this year. Events we're back in person. Yeah. Yep. This is a big team here. They're still wearing masks, although we can take 'em off with a cube. But mask requirement. Tech has changed. Conversations are upleveling, skill gaps still there. So much has changed. >>So much has changed. There's so much evolution and so much innovation that we've also seen. You know, we started out the keynote this morning, standing room. Only thousands of people are here. Even though there's a mass requirement, the community that is CNCF Co Con is stronger than I, stronger than I saw it last year. This is only my second co con. But the collaboration, what they've done, their devotion to the maintainers, their devotion to really finding mentors for mentees was really a strong message this morning. And we heard a >>Lot of that today. And it's going beyond Kubernetes, even though it's called co con. I also call it cloud native con, which I think we'll probably end up being the name because at the end of day, the cloud native scaling, you're starting to see the pressure points. You're start to see where things are breaking, where automation's coming in, breaking in a good way. And we're gonna break it all down Again. So much going on again, I've overs gonna be in charge. Digital is transformation. If you take it to its conclusion, then you will see that the developers are running the business. It isn't a department, it's not serving the business, it is the business. If that's the case, everything has to change. And we're, we're happy to have Sarib here with us Cube analysts on the badge. I saw that with the press pass. Well, >>Thank you. Thanks for getting me that badge. So I'm here with you guys and >>Well, you got a rapport. Let's get into it. You, I >>Know. Let's hear what you gotta say. I'm excited. >>Yeah. Went around, actually attend some sessions and, and with the analysts were sitting in, in the media slash press, and I spoke to some people at their booth and the, there are a few, few patterns, you know, which are, some are the exaggeration of existing patterns or some are kind of new patterns emerging. So things are getting complex in open source. The lawn more projects, right. They have, the CNCF has graduated some projects even after graduation, they're, they're exploring, right? Kubernetes is one of those projects which has graduated. And on that front, just a side note, the new projects where, which are entering the cncf, they're the, we, we gotta see that process and the three stages and all that stuff. I tweeted all day long, if you wanna know what it is, you can look at my tweets. But when I will look, actually write right on that actually after, after the show ends, what, what I saw there, these new projects need to be curated properly. >>I think they need to be weed. There's a lot of noise in these projects. There's a lot of overlap. So the, the work is cut out for CNCF folks, by the way. They're sort of managerial committee or whatever you call that. The, the people who are leading it, they're try, I think they're doing their best and they're doing a good job of that. And another thing actually, I really liked in the morning's keynote was that lot of women on the stage and minorities represented. I loved it, to be honest with you. So believe me, I'm a minority even though I'm Indian, but from India, I'm a minority. So people who have Punjab either know that I'm a minority, so I, I understand their pain and how hard it is to, to break through the ceiling and all that. So I love that part as well. Yeah, the >>Activity is clear. Yeah. From day one. It's in the, it's in the dna. I mean, they'll reject anything that the opposite >>Representation too. I mean, it's not just that everyone's invited, it's they're celebrated and that's a very big difference. Yeah. It's, you see conferences offer discounts for women for tickets or minorities, but you don't necessarily see them put them running where their mouth is actually recruit the right women to be on stage. Right. Something you know a little bit about John >>Diversity brings better outcomes, better product perspectives. The product is better with all the perspectives involved. Percent, it might go a little slower, maybe a little debates, but it's all good. I mean, it's, to me, the better product comes when everyone's in. >>I hope you didn't just imply that women would make society. So >>I think John men, like slower means a slower, >>More diversity, more debate, >>The worst. Bringing the diversity into picture >>Wine. That's, that's how good groups, which is, which is >>Great. I mean, yeah, yeah, >>Yeah, yeah. I, I take that mulligan back and say, hey, you knows >>That's >>Just, it's gonna go so much faster and better and cheaper, but that not diversity. Absolutely. >>Yes. Well, you make better products faster because you have a variety >>Of perspectives. The bigger the group, there's more debate. More debate is key. But the key to success is aligning and committing. Absolutely. Once you have that, and that's what open sources has been about for. Oh God, yeah. Generations >>Has been a huge theme in the >>Show generations. All right, so, so, >>So you have to add another, like another important, so observation if you will, is that the security is, is paramount right. Requirement, especially for open source. There was a stat which was presented in the morning that 60% of the projects in under CNCF have more vulnerabilities today than they had last year. So that was, That's shocking actually. It's a big jump. It's a big jump. Like big jump means jump, jump means like it can be from from 40 to 60 or or 50 or 60. But still that percentage is high. What, what that means is that lot more people are contributing. It's very sort of di carmic or ironic that we say like, Oh this project has 10,000 contributors. Is that a good thing? Right. We do. Do we know the quality of that, where they're coming from? Are there any back doors being, you know, open there? How stringent is the process of rolling those things, which are being checked in, into production? You know, who is doing that? I've >>Wondered about that. Yeah. The quantity, quality, efficacy game. Yes. And what a balance that must be for someone like CNCF putting in the structure to try and >>That's >>Hard. Curate and regulate and, and you know, provide some bumpers on the bowling lane, so to speak, of, of all of these projects. Yeah. >>Yeah. We thought if anybody thought that the innovation coming from, or the number of services coming from AWS or Google Cloud or likes of them is overwhelming, look at open source, it's even more >>Overwhelming. What's your take on the supply chain discussion? More code more happening. What are you hearing there? >>The supply chain from the software? Yeah. >>Supply chain software, supply chain security pays. Are people talking about that? What are you >>Seeing? Yeah, actually people are talking about that. The creation, the curation, not creation. Curation of suppliers of software I think is best done in the cloud. Marketplaces Ive call biased or what, you know, but curation of open source is hard. It's hard to know which project to pick. It's hard to know which project will pan out. Many of the good projects don't see the day light of the day, but some decent ones like it becomes >>A marketing problem. Exactly. The more you have out there. Exactly. The more you gotta get above the noise. Exactly. And the noise echo that. And you got, you got GitHub stars, you got contributors, you have vanity metrics now coming in to this that are influencing what's real. But sometimes the best project could have smaller groups. >>Yeah, exactly. And another controversial thing a little bit I will say that is that there's a economics of the practitioner, right? I usually talk about that and economics of the, the enterprise, right? So practitioners in our world, in software world especially right in systems world, practitioners are changing jobs every two to three years. And number of developers doubles every three years. That's the stat I've seen from Uncle Bob. He's authority on that software side of things. Wow. So that means there's a lot more new entrance that means a lot of churn. So who is watching out for the enterprise enterprises economics, You know, like are we creating stable enterprises? How stable are our operations? On a side note to that, most of us see the software as like one band, which is not true. When we talk about all these roles and personas, somebody's writing software for, for core layer, which is the infrastructure part. Somebody's writing business applications, somebody's writing, you know, systems of bracket, some somebody's writing systems of differentiation. We talk about those things. We need to distinguish between those and have principle based technology consumption, which I usually write about in our Oh, >>So bottom line in Europe about it, in your opinion. Yeah. What's the top story here at coupon? >>Top story is >>Headline. Yeah, >>The, the headline. Okay. The open source cannot be ignored. That's a headline. >>And what should people be paying attention to if there's a trend coming out? See any kind of trends coming out or any kind of signal, What, what do you see that people should pay attention to here? The put top >>Two, three things. The signal is that, that if you are a big shop, like you'd need to assess your like capacity to absorb open source. You need to be certain size to absorb the open source. If you are below that threshold, I mean we can talk about that at some other time. Like what is that threshold? I will suggest you to go with the managed services from somebody, whoever is providing those managed services around open source. So manage es, right? So from, take it from aws, Google Cloud or Azure or IBM or anybody, right? So use open source as managed offering rather than doing it yourself. Because doing it yourself is a lot more heavy lifting. >>I I, >>There's so many thoughts coming, right? >>Mind it's, >>So I gotta ask you, what's your rapport? You have some swag, What's the swag look >>Like to you? I do. Just as serious of a report as you do on the to floor, but I do, so you know, I come from a marketing background and as I, I know that Lisa does as well. And one of the things that I think about that we touched on in this is, is you know, canceling the noise or standing out from the noise and, and on a show floor, that's actually a huge challenge for these startups, especially when you're up against a rancher or companies or a Cisco with a very large budget. And let's say you've only got a couple grand for an activation here. Like most of my clients, that's how I ended up in the CU County ecosystem, was here with the A client before. So there actually was a booth over there and I, they didn't quite catch me enough, but they had noise canceling headphones. >>So if you just wanted to take a minute on the show floor and just not hear anything, which I thought was a little bit clever, but gonna take you through some of my favorite swag from today and to all the vendors, you know, this is why you should really put some thought into your swag. You never know when you're gonna end up on the cube. So since most swag is injection molded plastic that's gonna end up in the landfill, I really appreciate that garden has given all of us a potable plant. And even the packaging is plantable, which is very exciting. So most sustainable swag goes to garden. Well done >>Rep replicated, I believe is their name. They do a really good job every year. They had some very funny pins that say a word that, I'm not gonna say live on television, but they have created, they brought two things for us, yet it's replicated little etch sketch for your inner child, which is very nice. And given that we are in Detroit, we are in Motor City, we are in the home of Ford. We had Ford on the show. I love that they have done the custom K eight s key chains in the blue oval logo. Like >>Fords right behind us by the way, and are on you >>Interviewed, we had 'em on earlier GitLab taking it one level more personal and actually giving out digital portraits today. Nice. Cool. Which is quite fun. Get lap house multiple booths here. They actually IPOed while they were on the show floor at CubeCon 2021, which is fun to see that whole gang again. And then last but not least, really embracing the ship wheel logo of a Kubernetes is the robusta accrue that is giving out bucket hats. And if you check out my Twitter at sabba Savvy, you can see me holding the ship wheel that they're letting everyone pose with. So we are all in on Kubernetes. That cove gone 2022, that's for sure. Yeah. >>And this is something, day one guys, we've got three. >>I wanna get one of those >>Hats. We we need to, we need a group photo >>By the end of Friday we will have a beverage and hats on to sign off. That's, that's my word. If I can convince John, >>Don, what's your takeaway? You guys did a great kind of kickoff about last week or so about what you were excited about, what your thoughts were going to be. We're only on day one, There's been thousands of people here, we've had great conversations with contributors, the community. What's your take on day one? What's your, what's your tagline? >>Well, Savannah and I had at we up, we, we were talking about what we might see and I think we, we were right. I think we had it right. There's gonna be a lot more people than there were last year. Okay, check. That's definitely true. We're in >>Person, which >>Is refreshing. I was very surprised about the mask mandate that kind of caught me up guard. I was major. Yeah. Cause I've been comfortable without the mask. I'm not a mask person, but I had to wear it and I was like, ah, mask. But I understand I support that. But whatever. It's >>Corporate travel policy. So you know, that's what it is. >>And then, you know, they, I thought that they did an okay job with the gates, but they wasn't slow like last time. But on the content side, definitely Kubernetes security, top line headline, Kubernetes at scale security, that's, that's to me the bumper sticker top things to pay attention to the supply chain and the role of docker and the web assembly was a surprise. You're starting to see containers ecosystem coming back to, I won't say tension growth in the functionality of containers cuz they have to solve the security problem in the container images. Okay, you got scanning technology so it's a little bit in the weeds, but there's a huge movement going on to fix that problem to scale it so it's not a problem area contain. And then Dr sent a great job with productivity interviews. Scott Johnston over a hundred million in revenue so far. That's my number. They have not publicly said that. That's what I'm reporting from sources extremely well financially. And they, and they love their business model. They make productivity for developers. That's a scoop. That's new >>Information. That's a nice scoop we just dropped there on the co casually. >>You're watching that. Pay attention to that. But that, that's proof. But guess what, Red Hat's got developers too. Yes. Other people have to, So developers gonna go where it's the best. Yeah. Developers are voting with their code, they're voting with their feet. You will see the winners with the developers and that's what we've talked about. >>Well and the companies are catering to the developers. Savannah and I had a great conversation with Ford. Yeah. You saw, you showed their fantastic swag was an E for Ev right behind us. They were talking about the, all the cultural changes that they've really focused on to cater towards the developers. The developers becoming the influencers as you say. But to see a company that is as, as historied as Ford Motor Company and what they're doing to attract and retain developer talent was impressive. And honestly that surprised me. Yeah. >>And their head of deb relations has been working for, for, for 29 years. Which I mean first of all, most companies on the show floor haven't been around for 29 years. Right. But what I love is when you put community first, you get employees to stick around. And I think community is one of the biggest themes here at Cuco. >>Great. My, my favorite story that surprised me and was cool was the Red Hat Lockheed Martin interview where they had edge deployments with micro edge, >>Micro shift, >>Micro >>Shift, new projects under, there's, there are three new projects under, >>Under that was so, so cool because it was an edge story in deployment for the military where lives are on the line, they actually had it working. That is a real world example of Kubernetes and tech orchestrating to deploy the industrial edge. And I think that's proof in my mind that Kubernetes and this ecosystem is gonna move faster through this next wave of growth. Because once things start clicking, you get hybrid on premise to super cloud and edge. That was, that was my favorite cause it was real. That was real >>Story that it can make is literally life and death on the battlefield. Yeah, that was amazing. With what they're doing and what >>They're talking check out the Lockheed Martin Red Hat edge story on Silicon Angle and then a press release all pillar. >>Yeah. Another actually it's impressive, which we knew this which is happening, but I didn't know that it was happening at this scale is the finops. The finops is, I saw your is a discipline which most companies are adopting bigger companies, which are spending like hundreds of millions dollars in cloud average. Si a team size of finops for finops is seven people. And average number of tools is I think 3.5 or around 3.7 or something like that. Average number of tools they use to control the cost. So finops is a very generic term for years. It's not financial operations, it's the financial operations for the cloud cost, you know, containing the cloud costs. So that's a finops that is a very emerging sort of discipline >>To keep an eye on. And well, not only is that important, I talked to, well one of the principles over there, it's growing and they have real big players in that foundation. Their, their events are highly attended. It's super important. It's just, it's the cost side of cloud. And, and of course, you know, everyone wants to know what's going on. No one wants to leave there. Their Amazon on Yeah, you wanna leave the lights on the cloud, as we always say, you never know what the bill's gonna look like. >>The cloud is gonna reach $3 billion in next few years. So we might as well control the cost there. Yeah, >>It was, it was funny to get the reaction I found, I don't know if I was, how I react, I dunno how I felt. But we, we did introduce Super Cloud to a couple of guests and a, there were a couple reactions, a couple drawn. There was a couple, right. There was a couple, couple reactions. And what I love about the super cloud is that some people are like, oh, cringing. And some people are like, yeah, go. So it's a, it's a solid debate. It is solid. I saw more in the segments that I did with you together. People leaning in. Yeah. Super fun. We had a couple sum up, we had a couple, we had a couple cringes, I'll say their names, but I'll go back and make sure I, >>I think people >>Get 'em later. I think people, >>I think people cringe on the, on the term not on the idea. Yeah. You know, so the whole idea is that we are building top of the cloud >>And then so I mean you're gonna like this, I did successfully introduce here on the cube, a new term called architectural list. He did? That's right. Okay. And I wanna thank Charles Fitzgerald for that cuz he called super cloud architectural list. And that's exactly the point of super cloud. If you have a great coding environment, you shouldn't have to do an architecture to do. You should code and let the architecture of the Super cloud make it happen. And of course Brian Gracely, who will be on tomorrow at his cloud cast said Super Cloud enables super services. Super Cloud enables what Super services, super service. The microservices underneath the covers have to be different. High performing, automated. So again, the debate and Susan, the goal is to keep it open. And that's our, that's our goal. But we had a lot of fun with that. It was fun to poke the bear a little bit. So >>What is interesting to see just how people respond to it too, with you throwing it out there so consistently, >>You wanna poke the bear, get a conversation going, you know, let let it go. We'll see, it's been positive so far. >>There, there I had a discussion outside somebody who is from Ford but not attending this conference and they have been there for a while. I, I just some moment hit like me, like I said, people, okay, technologists are horizontal, the codes are horizontal. They will go from four to GM to Chrysler to Bank of America to, you know, GE whatever, you know, like cross vertical within vertical different vendors. So, but the culture of a company is local, right? Right. Ford has been building cars for forever. They sort of democratize it. They commercialize it, right? But they have some intense culture. It's hard to change those cultures. And how do we bring in the new thinking? What is, what approach that should be? Is it a sandbox approach for like putting new sensors on the car? They have to compete with te likes our Tesla, right? Yeah. But they cannot, if they are afraid of deluding their existing market or they're afraid of failure there, right? So it's very >>Tricky. Great stuff. Sorry. Great to have you on as our cube analyst breaking down the stories. We'll document that, that we'll roll out a post on it. Lisa Savannah, let's wrap up the show for day one. We got day two and three. We'll start with you. What's your summary? Quick bumper sticker. What's today's show all about? >>I'm a community first gal and this entire experience is about community and it's really nice to see the community come together, celebrate that, share ideas, and to have our community together on stage. >>Yeah. To me, to me it was all real. It's happening. Kubernetes cloud native at scale, it's happening, it's real. And we see proof points and we're gonna have faster time to value. It's gonna accelerate faster from here. >>The proof points, the impact is real. And we saw that in some amazing stories. And this is just a one of the cubes >>Coverage. Ib final word on this segment was well >>Said Lisa. Yeah, I, I think I, I would repeat what I said. I got eight, nine years back at a rack space conference. Open source is amazing for one biggest reason. It gives the ability to the developing nations to be at somewhat at par where the dev develop nations and, and those people to lift up their masses through the automation. Cuz when automation happens, the corruption goes down and the economy blossoms. And I think it's great and, and we need to do more in it, but we have to be careful about the supply chains around the software so that, so our systems are secure and they are robust. Yeah, >>That's it. Okay. To me for SAR B and my two great co-host, Lisa Martin, Savannah Peterson. I'm John Furry. You're watching the Cube Day one in, in the Books. We'll see you tomorrow, day two Cuban Cloud Native live in Detroit. Thanks for watching.

Published Date : Oct 27 2022

SUMMARY :

Great to see you guys. I can't wait to hear what you have to say in on the report side. I mean, just look at the past this year. But the collaboration, what they've done, their devotion If that's the case, everything has to change. So I'm here with you guys and Well, you got a rapport. I'm excited. in the media slash press, and I spoke to some people at their I loved it, to be honest with you. that the opposite I mean, it's not just that everyone's invited, it's they're celebrated and I mean, it's, to me, the better product comes when everyone's in. I hope you didn't just imply that women would make society. Bringing the diversity into picture I mean, yeah, yeah, I, I take that mulligan back and say, hey, you knows Just, it's gonna go so much faster and better and cheaper, but that not diversity. But the key to success is aligning So you have to add another, like another important, so observation And what a balance that must be for someone like CNCF putting in the structure to try and of all of these projects. from, or the number of services coming from AWS or Google Cloud or likes of them is What are you hearing there? The supply chain from the software? What are you Many of the And you got, you got GitHub stars, you got the software as like one band, which is not true. What's the top story here Yeah, The, the headline. I will suggest you to And one of the things that I think about that we touched on in this is, to all the vendors, you know, this is why you should really put some thought into your swag. And given that we are in Detroit, we are in Motor City, And if you check out my Twitter at sabba Savvy, By the end of Friday we will have a beverage and hats on to sign off. last week or so about what you were excited about, what your thoughts were going to be. I think we had it right. I was very surprised about the mask mandate that kind of caught me up guard. So you know, that's what it is. And then, you know, they, I thought that they did an okay job with the gates, but they wasn't slow like last time. That's a nice scoop we just dropped there on the co casually. You will see the winners with the developers and that's what we've The developers becoming the influencers as you say. But what I love is when you put community first, you get employees to stick around. My, my favorite story that surprised me and was cool was the Red Hat Lockheed And I think that's proof in my mind that Kubernetes and this ecosystem is Story that it can make is literally life and death on the battlefield. They're talking check out the Lockheed Martin Red Hat edge story on Silicon Angle and for the cloud cost, you know, containing the cloud costs. And, and of course, you know, everyone wants to know what's going on. So we might as well control the I saw more in the segments that I did with you together. I think people, so the whole idea is that we are building top of the cloud So again, the debate and Susan, the goal is to keep it open. You wanna poke the bear, get a conversation going, you know, let let it go. to Chrysler to Bank of America to, you know, GE whatever, Great to have you on as our cube analyst breaking down the stories. I'm a community first gal and this entire experience is about community and it's really nice to see And we see proof points and we're gonna have faster time to value. The proof points, the impact is real. Ib final word on this segment was well It gives the ability to the developing nations We'll see you tomorrow, day two Cuban Cloud Native live in Detroit.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Lisa MartinPERSON

0.99+

Savannah PetersonPERSON

0.99+

Brian GracelyPERSON

0.99+

Sario WallPERSON

0.99+

LisaPERSON

0.99+

GMORGANIZATION

0.99+

FordORGANIZATION

0.99+

SavannahPERSON

0.99+

Ford Motor CompanyORGANIZATION

0.99+

EuropeLOCATION

0.99+

Lisa MartPERSON

0.99+

DetroitLOCATION

0.99+

JohnPERSON

0.99+

Lisa SavannahPERSON

0.99+

$3 billionQUANTITY

0.99+

John FurryPERSON

0.99+

SarviPERSON

0.99+

60%QUANTITY

0.99+

seventh yearQUANTITY

0.99+

GEORGANIZATION

0.99+

Scott JohnstonPERSON

0.99+

SusanPERSON

0.99+

29 yearsQUANTITY

0.99+

CiscoORGANIZATION

0.99+

40QUANTITY

0.99+

AmazonORGANIZATION

0.99+

IBMORGANIZATION

0.99+

last yearDATE

0.99+

Charles FitzgeraldPERSON

0.99+

10,000 contributorsQUANTITY

0.99+

AWSORGANIZATION

0.99+

3.5QUANTITY

0.99+

60QUANTITY

0.99+

Red HatORGANIZATION

0.99+

50QUANTITY

0.99+

ChryslerORGANIZATION

0.99+

TeslaORGANIZATION

0.99+

tomorrowDATE

0.99+

two thingsQUANTITY

0.99+

todayDATE

0.99+

KubeConEVENT

0.99+

three yearsQUANTITY

0.99+

M John FurPERSON

0.99+

last weekDATE

0.99+

threeQUANTITY

0.99+

IndiaLOCATION

0.99+

three daysQUANTITY

0.99+

Super CloudTITLE

0.99+

seven peopleQUANTITY

0.99+

CubeORGANIZATION

0.99+

oneQUANTITY

0.98+

seven yearsQUANTITY

0.98+

PunjabLOCATION

0.98+

Detroit, MichiganLOCATION

0.98+

first couponQUANTITY

0.98+

hundreds of millions dollarsQUANTITY

0.98+

CucoORGANIZATION

0.97+

over a hundred millionQUANTITY

0.97+

CNCFORGANIZATION

0.97+

KubernetesPERSON

0.97+

Cub ConEVENT

0.97+

Day oneQUANTITY

0.97+

day oneQUANTITY

0.97+

awsORGANIZATION

0.96+

one bandQUANTITY

0.96+

TwoQUANTITY

0.96+

CloudNativeConEVENT

0.96+

day twoQUANTITY

0.95+

three new projectsQUANTITY

0.95+

Eric Herzog, Infinidat | CUBEConversation


 

>>Hey everyone, welcome to this cube conversation. I'm your host Lisa Martin, and I have the pleasure of welcoming back our most prolific guest on the cube in its history, the CMO of Fin Ad, Eric Herzog. Eric, it's great to see you. Welcome back, >>Lisa. It's great to be here. Love being on the cube. I think this might be number 55 or 56. Been doing 'em a long time with the Cube. You guys are great. >>You, you have, and we always recognize you lately with the Hawaiian shirts. It's your brand that's, that's the Eric Hizo brand. We love it. But I like the pin, the infin nut pin on brand. Thank you. >>Yeah. Oh, gotta be on brand. >>Exactly. So talk about the current IT landscape. So much change we've seen in the last couple of years. Specifically, what are some of the big challenges that you are talking with enterprise customers and cloud service providers? About what, what are some of those major things on their minds? >>So there's a couple things. First of all is obviously with the Rocky economy and even before covid, just for storage in particular, CIOs hate storage. I've been doing this now since 1986. I have never, ever, ever met a CIO at any company I've bid with. And I've been with four of the biggest storage companies on this planet. Never met a cio. Used to be a storage guy. So they know they need it, but boy, they really don't like it. So the storage admins have to manage more and more storage. Exabytes, exabytes, it just ballooning for what a storage admin has to do. Then you then have the covid and is it recession? No. Is it a growth? And then clearly what's happened in the last year with what's going on in Europe and the, is it a recession, the inflation. So they're always looking to, how do we cut money on storage yet still get what we need for our applications, workloads, and use cases. So that's definitely the biggest, the first topic. >>So never met a CIO that was a storage admin or as a fan, but as you point out, they need it. And we've seen needs changing in customer landscapes, especially as the threat landscape has changed so dramatically the last couple of years. Ransomware, you've said it before, I say it too. It's no longer if it's when it's how often. It's the frequency. We've gotta be able to recover. Backups are being targeted. Talk to me about some of, in that landscape, some of the evolutions of customer challenges and maybe those CIOs going, We've gotta make sure that our, our storage data is protected. >>So it's starting to change. However, historically with the cio and then when they started hiring CISOs or security directors, whatever they had, depending on the company size, it was very much about protecting the edge. Okay, if you will, the moat and the wall of the castle. Then it was the network in between. So keep the streets inside the castle clean. Then it was tracking down the bad guy. So if they did get over, the issue is, if I remember correctly, the sheriff of Nottingham never really caught Robinhood. So the problem is the dwell time where the ransomware malware's hidden on storage could be as much as 200 days. So I think they're starting to realize at the security level now, forget, forget the guys on the storage side, the security guys, the cso, the CIO, are starting to realize that if you're gonna have a comprehensive cybersecurity strategy, must include storage. And that is new >>That, well, that's promising then. That's new. I mean obviously promising given the, the challenges and the circumstances. So then from a storage perspective, customers that are in this multi-cloud hybrid cloud environment, you talked about the the edge cloud on-prem. What are some of the key things from a storage perspective that customers have to achieve these days to be secure as data volumes continue to grow and spread? >>So what we've done is implement on both primary storage and secondary storage and technology called infin safe. So Infin Safe has the four legs of the storage cyber security stool. So first of all is creating an air gap. In this case, a logical air gap can be local or remote. We create an immutable snapshot, which means it can't be changed, it can't be altered, so you can't change it. We have a fenced forensic environment to check out the storage because you don't wanna recover. Again, malware and rans square can is hidden. So you could be making amenable snapshots of actually malware, ransomware, and never know you're doing it right. So you have to check it out. Then you need to do a rapid recovery. The most important thing if you have an attack is how fast can you be up and going with recovery? So we have actually instituted now a number of cyber storage security guarantees. >>We will guarantee the SLAs on a, the snapshot is absolutely immutable. So they know that what they're getting is what they were supposed to be getting. And then also we are guaranteeing recovery times on primary storage. We're guaranteeing recovery of under one minute. We'll make the snapshot available under one minute and on secondary storage under 20 minutes. So those are things you gotta look for from a security perspective. And then the other thing you gotta practice, in my world, ransomware, malware, cyber tech is basically a disaster. So yes, you got the hurricane, yes, you got the flood, yes, you got the earthquake. Yes, you got the fire in the building. Yes you got whatever it may be. But if you don't practice malware, ransomware, recoveries and protection, then it might as well be a hurricane or earthquake. It will take your data, >>It will take your data on the numbers of customers that pay ransom is pretty high, isn't it? And and not necessarily able to recover their data. So it's a huge risk. >>So if you think about it, the government documented that last year, roughly $6 trillion was spent either protecting against ransomware and malware or paying ransomware attacks. And there's been several famous ones. There was one in Korea, 72 million ransom. It was one of the Korea's largest companies. So, and those are only the ones that make the news. Most of 'em don't make the news. Right. >>So talk to me then, speaking and making the news. Nobody wants to do that. We, we know every industry is vulnerable to this. Some of the ones that might be more vulnerable, healthcare, government, public sector education. I think the Los Angeles Unified School district was just hit as well in September. They >>Were >>What, talk to me about how infin out is helping customers really dial down the risk when the threat actors are becoming more and more sophisticated? >>Well, there's a couple things. First of all, our infin safe software comes free on our main product. So we have a product called infin Guard for Secondary Storage and it comes for free on that. And then our primary storage product's called the Infin Box. It also comes for free. So they don't have to use it, but we embed it. And then we have reference architectures that we give them our ses, our solutions architects and our technical advisors all up to speed on why they should do it, how they should do it. We have a number of customers doing it. You know, we're heavily concentrated the global Fortune 2000, for example, we publicly announced that 26% of the Fortune 50 use our technology, even though we're a small company. So we go to extra lengths to a B, educated on our own front, our own teams, and then B, make sure they portray that to the end users and our channel partners. But the end users don't pay a dime for the software that does what I just described, it's free, it's included when you get you're Infin box or you're ingar, it's included at no charge. >>That's pretty differentiating from a competitive standpoint. I might, I would guess >>It is. And also the guarantee. So for example, on primary storage, okay, whether you'd put your Oracle or put your SAP or I Mongo or your sequel or your highly transactional workloads, right? Your business finance workload, all your business critical stuff. We are the first and only storage company that offers a primary guarantee on cyber storage resilience. And we offer two of them on primary storage. No other vendor offers a guarantee, which we do on primary storage. Whether you the first and right now as of here we are sitting in the middle of October. We are still the only vendor that offers anything on primary storage from a guaranteed SLA on primary storage for cyber storage resilience. >>Let's talk about those guarantees. Walk me through what you just announced. There's been a a very, a lot of productivity at Infin DAT in 2022. A lot of things that you've announced but on crack some of the things you're announcing. Sure. Talk to me specifically about those guarantees and what's in it for me as a customer. It sounds pretty obvious, but I'd love to hear it from you. >>Okay, so we've done really three different types of guarantees. The first one is we have a hundred percent availability guarantee on our primary storage. And we've actually had that for the last, since 2019. So it's a hundred percent availability. We're guaranteed no downtime, a hundred percent availability, which for our customer base being heavily concentrated, the global Fortune 2000 large government enterprises, big universities and even smaller companies, we do a lot of business with CSPs and MSPs. In fact, at the Flash Memory Summit are Infin Box ssa All Flash was named the best product for hyperscaler deployment. Hyperscaler basically means cloud servers provider. So they need a hundred percent availability. So we have a guarantee on that. Second guarantee we have is a performance guarantee. We'll do an analysis, we look at all their workloads and then we will guarantee in writing what the performance should be based on which, which of our products they want to buy are Infin Box or Infin Box ssa, which is all flash. >>Then we have the third one is all about cyber resilience. So we have two on our Infin box, our Infin box SSA for primary storage, which is a one the immutability of the snapshot and immediately means you can't erase the data. Right? Camp tamper with it. Second one is on the recovery time, which is under a minute. We just announced in the middle of October that we are doing a similar cyber storage resilience guarantee on our ARD secondary product, which is designed for backup recovery, et cetera. We will also offer the immutably snapshot guarantee and also one on the recoverability of that data in under 20 minutes. In fact, we just did a demo at our live launch earlier this week and we demoed 20 petabytes of Veeam backup data recovered in 12 minutes. 12 >>Minutes 2012. >>20 petabytes In >>12 bytes in 12 minutes. Yes. That's massive. That's massively differentiating. But that's essential for customers cuz you know, in terms of backups and protecting the data, it's all about recovery >>A and once they've had the attack, it's how fast you get back online, right? That that's what happens if they've, if they can't stop the attack, can't stop the threat and it happens. They need to get that back as fast as they can. So we have the speed of recovery on primary stores, the first in the industry and we have speed on the backup software and we'll do the same thing for a backup data set recovery as well. Talk >>To me about the, the what's in it for me, For the cloud service providers, they're obviously the ones that you work with are competing with the hyperscalers. How does the guarantees and the differentiators that Fin out is bringing to market? How do you help those cloud SPS dial up their competitiveness against the big cheeses? >>Well, what we do is we provide that underlying infrastructure. We, first of all, we only sell things that are petabyte in scale. That's like always sell. So for example, on our in fitter guard product, the raw capacity is over four petabytes. And the effective capacity, cuz you do data reduction is over 85 petabytes on our newest announced product, on our primary storage product, we now can do up to 17 petabytes of effective capacity in a single rack. So the value to the service rider is they can save on what slots? Power and floor. A greener data center. Yeah, right. Which by the way is not just about environmentals, but guess what? It also translate into operational expense. >>Exactly. CapEx office, >>With a lot of these very large systems that we offer, you can consolidate multiple products from our competitors. So for example, with one of the competitors, we had a deal that we did last quarter 18 competitive arrays into one of ours. So talk about saving, not just on all of the operational expense, including operational manpower, but actually dramatically on the CapEx. In fact, one of our Fortune 500 customers in the telco space over the last five years have told us on CapEx alone, we've saved them $104 million on CapEx by consolidating smaller technology into our larger systems. And one of the key things we do is everything is automated. So we call it autonomous automation use AI based technology. So once you install it, we've got several public references who said, I haven't touched this thing in three or four years. It automatically configures itself. It automatically adjusts to changes in performance and new apps. When I put in point a new app at it automatically. So in the old days the storage admin would optimize performance for a new application. We don't do that, we automatically do it and autonomously the admin doesn't even click a button. We just sense there's new applications and we automate ourselves and configure ourselves without the admin having to do anything. So that's about saving operational expense as well as operational manpower. >>Absolutely. I was, one of the things that was ringing in my ear was workforce productivity and obviously those storage admins being able to to focus on more strategic projects. Can't believe the CIOs aren't coming around yet. But you said there's, there's a change, there's a wave coming. But if we think about the the, the what's in it for me as a customer, the positive business outcomes that I'm hearing, lower tco, your greener it, which is key. So many customers that we talk to are so focused on sustainability and becoming greener, especially with an on-prem footprint, workforce productivity. Talk about some of the other key business outcomes that you're helping customers achieve and how it helps them to be more competitive. >>Sure. So we've got a, a couple different things. First of all, storage can't go down. When the storage goes down, everyone gets blamed. Mission. When an app goes down, no one really thinks about it. It's always the storage guy's fault. So you want to be a hundred percent available. And that's today's businesses, and I'd actually argue it's been this way for 20 years are 24 by seven by 365. So that's one thing that we deliver. Second thing is performance. So we have public references talk about their SAP workload that used to take two hours, now takes 20 minutes, okay? We have another customer that was doing SAP queries. They improved their performance three times, Not 3%, not 3%, three times. So 300% better performance just by using our storages. They didn't touch the sap, they didn't touch the servers. All they do is to put our storage in there. >>So performance relates basically to applications, workloads and use cases and productivity beyond it. So think the productivity of supply chain guys, logistics guys, the shipping guys, the finance guys, right? All these applications that run today's enterprises. So we can automate all that. And then clearly the cyber threat. Yeah, that is a huge issue. And every CIO is concerned about the cyber threat. And in fact, it was interesting, Fortune magazine did a survey of CEOs, and this was last May, the number one concern, 66% in that may survey was cyber security number one concern. So this is not just a CIO thing, this is a CEO thing and a board level >>Thing. I was gonna say it's at at the board level that the cyber security threats are so real, they're so common. No one wants to be the next headline, like the colonial pipeline, right? Or the school districts or whatnot. And everybody is at risk. So then what you're enabling with what you've just announced, the all the guarantees on the SLAs, the massively fast recovery times, which is critical in cyber recovery. Obviously resilience is is key there. Modern data protection it sounds like to me. How do you define that and and what are customers looking for with respect to modern cyber resilience versus data protection? >>Yeah, so we've got normal data protection because we work with all the backup vendors. Our in ARD is what's known as a purpose built backup appliance. So that allows you to back at a much faster rate. And we work all the big back backup vendors, IBM spectrum Protect, we work with veritas vem com vault, oracle arm, anybody who does backup. So that's more about the regular side, the traditional backup. But the other part of modern data protection is infusing that with the cyber resilience. Cuz cyber resilience is a new thing. Yes, from a storage guy perspective, it hasn't been around a long time. Many of our competitors have almost nothing. One or two of our competitors have a pretty robust, but they don't guarantee it the way we guarantee it. So they're pretty good at it. But the fact that we're willing to put our money where our mouth is, we think says we price stand above and then most of the other guys in the storage industry are just starting to get on the bandwagon of having cyber resilience. >>So that changes what you do from data protection, what would call modern data protection is a combination of traditional backup recovery, et cetera. Now with this influence and this infusion of cybersecurity cyber resilience into a storage environment. And then of course we've also happened to add it on primary storage as well. So whether it's primary storage or backup and archive storage, we make sure you have that right cyber resilience to make it, if you will, modern data protection and diff different from what it, you know, the old backup of your grandfather, father, son backup in tape or however you used to do it. We're well beyond that now we adding this cyber resilience aspect. Well, >>From a cyber resilience perspective, ransomware, malware, cyber attacks are, that's a disaster, right? But traditional disaster recovery tools aren't really built to be able to pull back that data as quickly as it sounds like in Trinidad is able to facilitate. >>Yeah. So one of the things we do is in our reference architectures and written documentation as well as when we do the training, we'd sell the customers you need to practice, if you practice when there's a fire, a flood, a hurricane, an earthquake or whatever is the natural disaster you're practicing that you need to practice malware and ran somewhere. And because our recovery is so rapid and the case of our ingar, our fenced environment to do the testing is actually embedded in it. Several of our competitors, if you want the fenced environment, you have to buy a second product with us. It's all embedded in the one item. So A, that makes it more effective from a CapEx and opex perspective, but it also makes it easier. So we recommend that they do the practice recoveries monthly. Now whether they do it or not separate issue, but at least that's what we're recommending and say, you should be doing this on a monthly basis just like you would practice a disaster, like a hurricane or fire or a flood or an earthquake. Need to be practicing. And I think people are starting to hear it, but they don't still think more about, you know, the flood. Yeah. Or about >>The H, the hurricane. >>Yeah. That's what they think about. They not yet thinking about cybersecurity as really a disaster model. And it is. >>Absolutely. It is. Is is the theme of cyber resilience, as you said, this is a new concept, A lot of folks are talking about it, applying it differently. Is that gonna help dial up those folks just really being much more prepared for that type of cyber disaster? >>Well, we've made it so it's automated. Once you set up the immutable snapshots, it just does its thing. You don't set it and forget it. We create the logical air back. Once you do it, same thing. Set it and forget it. The fence forensic environment, easy to deploy. You do have to just configure it once and then obviously the recovery is almost instantaneous. It's under a minute guaranteed on primary storage and under 20 minutes, like I told you when we did our launch this week, we did 20 petabytes of Veeam backup data in 12 minutes. So that's pretty incredible. That's a lot of data to have recovered in 12 minutes. So the more automated we make it, which is what our real forte is, is this autonomous automation and automating as much as possible and make it easy to configure when you do have to configure. That's what differentiates what we do from our perspective. But overall in the storage industry, it's the recognition finally by the CISOs and the CIOs that, wait a second, maybe storage might be an essential part of my corporate cybersecurity strategy. Yes. Which it has not been historically, >>But you're seeing that change. Yes. >>We're starting to see that change. >>Excellent. So talk to me a little bit before we wrap here about the go to market one. Can folks get their hands on the updates to in kindergar and Finn and Safe and Penta box? >>So all these are available right now. They're available now either through our teams or through our, our channel partners globally. We do about 80% of our business globally through the channel. So whether you talk to us or talk to our channel partners, we're there to help. And again, we put our money where your mouth is with those guarantees, make sure we stand behind our products. >>That's awesome. Eric, thank you so much for joining me on the program. Congratulations on the launch. The the year of productivity just continues for infinit out is basically what I'm hearing. But you're really going in the extra mile for customers to help them ensure that the inevitable cyber attacks, that they, that they're complete storage environment on prem will be protected and more importantly, recoverable Very quickly. We appreciate your insights and your input. >>Great. Absolutely love being on the cube. Thank you very much for having us. Of >>Course. It's great to have you back. We appreciate it. For Eric Herzog, I'm Lisa Martin. You're watching this cube conversation live from Palo Alto.

Published Date : Oct 12 2022

SUMMARY :

and I have the pleasure of welcoming back our most prolific guest on the cube in Love being on the cube. But I like the pin, the infin nut pin on brand. So talk about the current IT landscape. So the storage admins have to manage more and more So never met a CIO that was a storage admin or as a fan, but as you point out, they need it. So the problem is the dwell time where the ransomware malware's hidden on storage could be as much as 200 days. So then from a storage perspective, customers that are in this multi-cloud hybrid cloud environment, So Infin Safe has the four legs of the storage cyber security stool. So yes, you got the hurricane, yes, you got the flood, yes, you got the earthquake. And and not necessarily able to recover their data. So if you think about it, the government documented that last year, So talk to me then, speaking and making the news. So we have a product called infin Guard for Secondary Storage and it comes for free I might, I would guess We are the first and only storage company that offers a primary guarantee on cyber on crack some of the things you're announcing. So we have a guarantee on that. in the middle of October that we are doing a similar cyber cuz you know, in terms of backups and protecting the data, it's all about recovery of recovery on primary stores, the first in the industry and we have speed on the backup software How does the guarantees and the differentiators that Fin And the effective capacity, cuz you do data reduction Exactly. So in the old days the storage admin would optimize performance for a new application. So many customers that we talk to are so focused on sustainability So that's one thing that we deliver. So performance relates basically to applications, workloads and use cases and productivity beyond it. So then what you're enabling with what you've just announced, So that's more about the regular side, the traditional backup. So that changes what you do from data protection, what would call modern data protection is a combination of traditional built to be able to pull back that data as quickly as it sounds like in Trinidad is able to facilitate. And because our recovery is so rapid and the case And it is. Is is the theme of cyber resilience, as you said, So the more automated we make it, which is what our real forte is, But you're seeing that change. So talk to me a little bit before we wrap here about the go to market one. So whether you talk to us or talk to our channel partners, we're there to help. Congratulations on the launch. Absolutely love being on the cube. It's great to have you back.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Lisa MartinPERSON

0.99+

Eric HerzogPERSON

0.99+

EricPERSON

0.99+

20 minutesQUANTITY

0.99+

OneQUANTITY

0.99+

20 yearsQUANTITY

0.99+

EuropeLOCATION

0.99+

twoQUANTITY

0.99+

CapExORGANIZATION

0.99+

IBMORGANIZATION

0.99+

20 petabytesQUANTITY

0.99+

SeptemberDATE

0.99+

last yearDATE

0.99+

26%QUANTITY

0.99+

2022DATE

0.99+

LisaPERSON

0.99+

Palo AltoLOCATION

0.99+

two hoursQUANTITY

0.99+

$104 millionQUANTITY

0.99+

66%QUANTITY

0.99+

300%QUANTITY

0.99+

12 minutesQUANTITY

0.99+

KoreaLOCATION

0.99+

24QUANTITY

0.99+

firstQUANTITY

0.99+

3%QUANTITY

0.99+

12 bytesQUANTITY

0.99+

third oneQUANTITY

0.99+

Second oneQUANTITY

0.99+

Eric HizoORGANIZATION

0.99+

first topicQUANTITY

0.99+

threeQUANTITY

0.99+

first oneQUANTITY

0.99+

oneQUANTITY

0.99+

last quarterDATE

0.99+

last MayDATE

0.99+

2019DATE

0.99+

one itemQUANTITY

0.99+

Second guaranteeQUANTITY

0.99+

56OTHER

0.99+

1986DATE

0.99+

OracleORGANIZATION

0.99+

Fin AdORGANIZATION

0.98+

four yearsQUANTITY

0.98+

under 20 minutesQUANTITY

0.98+

fourQUANTITY

0.98+

three timesQUANTITY

0.98+

under 20 minutesQUANTITY

0.98+

one thingQUANTITY

0.98+

under a minuteQUANTITY

0.98+

hundred percentQUANTITY

0.98+

middle of OctoberDATE

0.98+

VeeamORGANIZATION

0.98+

55OTHER

0.98+

bothQUANTITY

0.97+

sevenQUANTITY

0.97+

Second thingQUANTITY

0.97+

FirstQUANTITY

0.97+

under one minuteQUANTITY

0.97+

todayDATE

0.97+

second productQUANTITY

0.97+

about 80%QUANTITY

0.96+

over 85 petabytesQUANTITY

0.96+

Los Angeles Unified School districtORGANIZATION

0.96+

Infin box SSACOMMERCIAL_ITEM

0.95+

72 million ransomQUANTITY

0.95+

Marne Martin, IFS | IFS Unleashed 2022


 

(soft electronic music) >> Hey, everyone. Welcome to Miami. I feel like I should be singing that song. Lisa Martin here live with theCUBE at IFS Unleashed. We've been here all day having great conversations with IFS executives, their customers, their partners, lots a... You can hear probably the buzz behind me at the vibe here. Lot of great folks, 1500 plus here. People are excited to be back and to see what IFS has been up to the last few years. I'm pleased to welcome back one of our alumni who was here with us last time we covered IFS, Marne Martin joins us. The president, Service Management, EAM and Global Industry at IFS. Marne, it's great to have you back on theCUBE. >> Yeah, I'm so happy to be here, and thanks for joining us in Miami. Last time it was Boston. >> That's right. >> So definitely much warmer climate this time. >> Much warmer. (Marne laughs) Yes, much warmer. And people here are just smiles on faces. People are excited to be back. There's... But I shouldn't elude that IFS slow down at all during the pandemic. You did not. I was looking at the first half, 2022 financials that came out over the summer and AR are up 33%. So much recurring revenue as well. So your... The business is doing incredibly well. You've pivoted beautifully during the pandemic. Customers are happy. There's a lot of customers here. You guys talk a lot about the moment of service. I love that. Talk to the audience about what that is, and how you're enabling your customers to deliver that to their customers. >> Definitely. So, you know, it's amazing when you have these inflection points and it's a good opportunity, world conference to world conference to celebrate that. We've grown a lot, and the number of customers we've brought in, in tier one global customers as well as in our variety of the various regions around the world and different industry verticals is amazing. And, you know, the participation is what's making IFS be a better company, a better technology vendor as we focus on these industries. So is understanding moment of service. You know, we talk a lot, and certainly CIOs and IT buyers will talk about technology, but putting the technology to work has to be meaningful, not only to the returns that go to shareholders, but what it matters, what matters to the end customers, of our customers. And when we started thinking about the new branding of IFS, because we also rebranded in this time, we thought, "How does that mission crystallize in what we're doing for our customers, and how do we really start put bringing technology to life?" And that is where moment of service came. So it's very rare in our world that you actually come up with a sort of slogan or an objective as a company that not only mobilizes what we do internally here at IFS, delivering great moments of service to our customers, but also that tells a story of the customers to the end customer. You know, service, an area that I work in a lot, it's very obvious that you... We all know when we get a great moment of service, or sometimes a bad moment of service. So if you talk to service organizations, field service organizations, they understand what a moment of service is. But it's also thinking about how we enable the people delivering that great moment of service. Not just like doing a survey or what have you, but what are the digital tools that help them to deliver better moments of service proactively. >> Right. >> One of my pet peeves was always that even like, if you have a voice of the customer program or what have you, that you may get that reactive feedback perhaps to a CMO in an organization, but the insights don't really get actioned. So here, across the line of business applications that we sell, ERP Service Management, EAM, ITSM, or ESM, we're really thinking about with that moment of service, the objective of putting the technology to work. How do we facilitate that alongside the business growth of our customers, but also how do we take the insights they get from their end customers into the business models as well as the functional design, what we develop. So moment of service has become, say the heart of IFS as well as a way of understanding our customers better. >> Really understanding them at much deeper level- >> Correct. Correct. >> And a lot of organizations. Give me some examples of some of the insights that IFS has gleaned from its customers. How you've brought them internally to really evolve the technology. >> So I think what's important is a lot of times technology vendors may say they know their customers, right? If you think about what technology vendor we know with the 360 view of the customer. You know, understanding the customer is a lot more than understanding their renewal date as a software vendor. >> Yeah. (laughs) >> So we have to really think about the moments of service on what matters most at that point of service, right? And it will vary certainly by industry, but there also will be certain things that are very much the same. Like for example, if we, as a customer, can have an asset or a piece of equipment that never breaks, we're a happier customer. If it does break, we, of course, want it to be fixed the first time someone shows up. So those are the obvious things. But how you then fix or manifest that into a different way of utilizing and implementing the technology. Thinking also about taking the operational insights that you have on driving, what we call preventative or predictive maintenance, or maximizing what's called a first time fixed resolution. You know, being able to marry best practices with at times artificial intelligence and machine learning information, with also the operational and personal insights of the people doing the work really enriches the quality of the insights you have around that moment of service and how to recreate a great moment of service, or lessen a poor moment of service. >> Yeah. >> And it also changes a view of what are often IT-driven projects into what's the user feedback that also matters most to enable that. You know, with the talent shortage that we're seeing, you know, customer expectations have only increased. >> Yes. >> So we all know, and customers want great moments of service, but how do we enable the frontline workers, whether they're field service workers or others, to deliver against these expectations when they might be harried, and you know, having to do a lot more work because of talent shortage. So we want to think about what their needs are in a way that's more focused towards delivering that moment of service, that great customer experience. And of course, that always feeds back into brand loyalty, selling more profits, but really getting into it. And you know, the advantage of IFS is that we understand the domain expertise to do things from a UI UX, a business process, but also thinking about how we're developing, to answer your question, the artificial intelligence machine learning. Even thinking about how you put IoT to work in ways that really matter, because there's a lot of money spent on IT projects that actually don't deliver great moments of service, let alone actual business value. >> Right. I love the vertical specialization that IFS has. I was interviewing Darren Roos, your CEO, a little bit earlier today and I said, "You know, we see so many companies... So many vendors, like some of your competitors in the ERP Space, which whom you're outgrowing or growing faster than, or horizontally focused. And the vertical specialization that he was kind of describing how long it's been here really allows IFS to focus on its core competencies. But another thing that I'm hearing throughout the interviews I'm having today, and you just said the same thing, is that you're not just, "We need to meet the customer where they are." Everyone talks about that. You've actually getting the... You're developing and fostering the domain expertise. >> Yes. >> So whether you're talking with an energy company, aerospace and defense company, manufacturing, there's that one to one knowledge within IFS and its customer, or based in that industry that it can only imagine is maybe part of what's leading to, you know, that big increase in ARR that I talked about, the recurring revenue being so high. That domain expertise seems to be a differentiator from my lens. >> Well, let's even talk about how people build relationships, right? You know, we're having a conversation, so we're already having a higher value relationship, right? And that comes through with how vendors engage with their customers. You know, when you have seen your executives like Darren and myself, and Michael and Christian, who still care and really focus on what is most impactful. What is that moment of service? I'm sure Darren talked about the great moment of service book that we just released. >> Yes. >> So understanding at a more visceral and may I say, intimate moment with the customers, what matters most to them. And really working with what are developing, what we call the digital dream team within these customers that understand enough of where they're going in the objective, enables us to do a better job. And it's also where then, it's not only how we're partnering in the sales process implementation in the conventional ways, but product management. What is the most meaningful? How can we prioritize what makes the most impact? Obviously, there's cool stuff we want to do too, but you know, we really think about understanding the verticals and understanding where they're going. And you see that, for example, we're an absolute leader in mobile workforce management specifically, where we have what's called real time optimization. Super hard to do. No one else does it anymore except us. Great. There's other things where you'd say that, "Hey, some of the other vendors talk about this, right?" APM as a performance management or other things, but because they lack the true vertical specialization and the use cases and the ease to put it in, the adoption rate is low. >> Yeah. >> So, you know, in that case, APM might not be something we do only, but if we can actually help commercialize this, something that has a great deal of value in a superior way in that focus verticals, that's what it means to have industry specialization. Because if you spread yourself too thin, you know then, you'll end up with an AI or machine learning platform or something like that that you know, most companies don't have five years to try and configure, build out a Watson or something like that. I mean, most companies in this day and age, with the requirements of competitive pressure and supply chain pressures have to be nimble and have to be getting results fast. So the closest with the customers, the domain expertise, the understanding of what matters most, helps us to be faster to the value outcomes that our customers needs. It helps us to be more focused in what we're developing and also how we're developing. And ultimately, that does benefit us that, you know, we want to make sure that we're not only leading today, but you know, staying ahead of the game in the next 5 to 10 years, which will help us to grow. You know, we're certainly not a small company anymore. We're at a billion in revenue looking to be 2 billion and eventually 5 billion in revenue. >> Okay. >> So that already, you know, puts us well beyond unicorn status into one of the very few. But, you know, we want to take a different track even of how a service now or a sales force or SAP or even, you know, to some degree workday grew by making sure that we remain focused on these key verticals and not lose our focus. And they're plenty big enough verticals for us to achieve our growth goals. >> Well the growth has been impressive, as I mentioned the ARR app in the first half, and I was chatting with Darren earlier as I said, and I said, "Can you gimme any nuggets for a second half?" I imagine the trajectory is up onto the right. And he alluded to the fact that things are going quite well, but the focus there that you have with customers. Also, you talked about this and I had several customers on the program today. Rolls-Royce was here. Aston Martin was here. And it's very obvious that there is a... There was a uniqueness about the relationship that I saw- >> Yes. >> Especially with Rolls-Royce that I thought was quite, I mean, you talked about kind of that customer intimacy and that personalization, which people used to tolerate fragmented experiences. We don't tolerate those anymore. >> No. >> Nobody has the patience for that. >> No. And it's also, you know, this business isn't easy for a lot of these customers to stay ahead, right? You know, especially if you think about a tier one customer that's at the top of their category. How did they continue to innovate? And Rolls Royce and Aston Martin are really cool customers. You know, but we're also thinking about, you know, what are the up-and-comers? Or you know, we also get customers that have come to us because they've started falling behind in their sector because they haven't been able to digitalize and grow forward. You know, we work a lot with SAP customers. Darren, of course, came from SAP. But in that ecosystem and especially in the areas I work in a lot with service management, SAP customers, you know, that are focusing on ERP, you know, SAP hasn't been a great enabler of service management for them. So the SAP customers have actually fallen behind. And the ability to come to a lot of these new type of digitally based value-based service offerings really make aftermarket service revenues a lifeblood of their company. So even there where, you know, we might have in a different ERP choice, we're able to provide what's really the missing link for these tier one companies that they can't get anywhere else. And we see this also, you know, you've obviously Salesforce and CRM. A lot of Salesforce CRM customers. Microsoft with Dynamics also primarily ERP. But the focus and the specialization that we have is rare in the industry, but it's so impactful. >> Yeah. >> And you know, I would even venture to say that there's not a tier one company that has a lot of aftermarket service revenue, or attention on service revenue, or even that is trying to monetize their connected asset or IoT investment that can ignore IFS. >> Yeah. >> Because we are unique enough in our focus verticals that if they want to continue growing and that is a cornerstone of their growth, their customer, their moment of service, then they definitely need to look at IFS. >> Absolutely. Does IFS care that it's not as well known of a brand? I mean, I mentioned you guys are growing. Maybe I didn't mention this, number three in ERP, you are growing faster than the top two biggest competitors, which you mentioned SAP, Oracle as well, but those implementations can be quite complex. Does IFS care that you're doing so well? Darren talked about where you're winning, how you're being competitive, where you went. Do they care about being a big name brand, or is that really kind of not as important nearly as delivering those moments of service? >> So, you know, it's a mirrored question that you asked me, and therefore, I'll give you a multifaceted answer. (Lisa laughs) You know, ERP, we're very proud to be a top three vendor and I think over time we'll continue to dislodge SAP and Oracle in ERP, where companies want to make a different ERP choice, or they're consolidating or whatever. I think already in field service management, we're by far the number one and will continue to be that. And you actually see a lot of our ERP competitors that are dropping down and you seem a... There's not really a lot of what I'd call best-of-breed options other than IFS as well. So... And then enterprise asset management, I really think the opportunity for IFS is how we put technology to work in some of these advanced capabilities in ways that can be automated that is, for example, in IBM Maximo or Watson or what have you haven't been able to be. And then you have some other best-of-breed EAM customers that have kind of not continued innovating and things like that. So the lines where we are really building the brand recognition with the largest companies in the world might be anchored for now more around field service management, enterprise asset management. But of course that brand recognition comes back into ERP. >> Yeah. >> And there will be, you know, as we continue to innovate, as people make ERP decisions every 5, 7, 10 years as those buying cycles are, then it's important that we're using the leadership positions we have. And especially, you know, thinking about these verticals where the asset centric service nature is paramount to them either to meet their moment of service, or to meet their aftermarket service revenue goals that we get the recognition of IFS as being the leader. And all the, you know... And this is where I'll go to the next layer of your question that building that is something I pride myself on and I'll say that we're building the IFS brand recognition at three different levels. >> Okay. >> There's the C-level and the board level, which I'd say my top participation in Darren's keynote this morning was more targeted to messages that would go, you know, "How are you a smarter digital business? How does IFS help you to be that?" >> Yeah. >> Okay. Then we have the operational or kind of the doers in a digital dream team that are below C-level, maybe VPs or directors or SVPs, that actually have the objective of bringing in the new business models, the operational change, the new technology, putting it to work. And there, you know, you have aspects of what do they need now versus how do they change and how do they continue innovating in a way that is easy as possible. >> Yeah. >> And then you definitely need to focus also on the people that are hands-on with those end customers. >> The practitioners. Yeah. >> The people that not only are told about the moment of service, but live the moment of service, right? The actual users in the field. Maybe the dispatchers, you know, the people that are doing the maintenance or the service or things like that. So the domain expertise in how we build the brand recognition has to be in all those three constituencies. We want to make sure that the CEO and the board members know who IFS is. We want to make sure that the operational leaders and the IT leaders who actually are delivering the project trust us to deliver. >> Right. >> And are confident in our ability to deliver with our ecosystem. And then we want to make sure that we're delighting those users of the software that they can deliver the moment of service, not just the business value that we all want from technology, but really that we're enabling them to have a solution that they love. That they can enjoy doing their job, or at least feel that they're doing their job in a way that's helpful to them. >> Right. >> And that ties into the end customers getting the moment of service that we all want. >> Absolutely. Well, very much aligned with what I heard today. It sounds like there's a rock solid strategy across the board at IFS and you... Congratulations on the work that you've done to help put that in place and how it's been evolving. I can only imagine that those second half numbers are going to be fantastic. So we'll have to have you back on the show next year (Marne laughs) to see what else is new. >> Yeah, I can't wait. It's an absolute pleasure and- >> Likewise. >> You know, and really, we're so passionate about what we do here. >> Yes. >> You know, I think just as a final note, as we grow, we want to make sure that doubling the company, doubling the number of customers, that our customers still feel that intimacy and that care. >> Yes. >> Right? >> Yes. >> That they can access senior executives that aren't clueless about their used cases and their vertical and actually have the ability to help them. You know, one of the things I pride myself on is that we... Okay, ideally people choose IFS in the first instance. We have successful projects and move on. Sometimes though, we're taking failed projects from other vendors. >> Yes, right. >> And what I pride myself on, and we all do here at IFS, is that we get those projects live, with those customers live. You know, we have the grit. We have the domain expertise, we see it through. And that even if customers have failed to get the business value or the transformation, you know, in the areas that we specialize at IFS, they can come here and we get it done. >> Right, you got a trusted partner. >> And that's something- Yes, and that, you know, I know every vendor says that- >> They do, but- >> But the reality is that we live it. >> Yeah. >> And it doesn't mean we're perfect. No vendor's perfect. But you know, we have the dedication and the focus and the domain expertise to get it done. And that's what's ultimately driving us into these leadership positions, changing how IFS is viewed. You know, we have people now that are coming to IFS that are saying, "IFS is the only choice in service management if you really want to do this work." And, you know, again, we have to keep earning it. But that's great. >> Exactly. Well, congratulations on all of that. That customer intimacy is a unique differentiator, and it's something that is... It's very... It's a flywheel, right? It's very synergistic. We appreciate your time and your insights for joining us on the program today. Thank you, Marne. >> Absolutely a pleasure. Thank you so much for coming. >> Mine as well. For Marne Martin, I'm Lisa Martin. No relation. (Marne laughs) You're watching theCUBE live from Miami at IFS Unleashed. I'll be back after a short break, so don't go too far. (soft electronic music) (soft electronic music continues)

Published Date : Oct 11 2022

SUMMARY :

and to see what IFS has been Yeah, I'm so happy to be here, So definitely much warmer climate the moment of service. and the number of the technology to work. Correct. of some of the insights the customer is a lot more of the insights you have shortage that we're seeing, the domain expertise to do things And the vertical specialization in ARR that I talked about, that we just released. the ease to put it in, in the next 5 to 10 years, So that already, you know, app in the first half, and that personalization, And the ability to come And you know, and that is a cornerstone of their growth, or is that really kind of that are dropping down and you seem a... and I'll say that we're building that actually have the objective on the people that are hands-on Yeah. and the board members know who IFS is. that we all want from technology, of service that we all want. Congratulations on the It's an absolute pleasure and- we're so passionate about what we do here. doubling the number of customers, and actually have the is that we get those projects live, you got a trusted partner. and the domain expertise to get it done. and it's something that is... Thank you so much for coming. Mine as well.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
MiamiLOCATION

0.99+

Lisa MartinPERSON

0.99+

Rolls-RoyceORGANIZATION

0.99+

MarnePERSON

0.99+

OracleORGANIZATION

0.99+

MichaelPERSON

0.99+

five yearsQUANTITY

0.99+

MicrosoftORGANIZATION

0.99+

2 billionQUANTITY

0.99+

Marne MartinPERSON

0.99+

5 billionQUANTITY

0.99+

IFSORGANIZATION

0.99+

Rolls RoyceORGANIZATION

0.99+

next yearDATE

0.99+

Darren RoosPERSON

0.99+

DarrenPERSON

0.99+

OneQUANTITY

0.99+

BostonLOCATION

0.99+

SAPORGANIZATION

0.99+

first halfQUANTITY

0.99+

7QUANTITY

0.99+

Aston MartinORGANIZATION

0.99+

1500 plusQUANTITY

0.99+

IBMORGANIZATION

0.98+

first instanceQUANTITY

0.98+

2022DATE

0.98+

pandemicEVENT

0.98+

todayDATE

0.98+

ChristianPERSON

0.98+

LisaPERSON

0.98+

oneQUANTITY

0.97+

EAMORGANIZATION

0.97+

second halfQUANTITY

0.96+

first timeQUANTITY

0.96+

10 yearsQUANTITY

0.96+

firstQUANTITY

0.96+

SalesforceORGANIZATION

0.95+

three constituenciesQUANTITY

0.95+

tier oneQUANTITY

0.91+

threeQUANTITY

0.89+

33%QUANTITY

0.88+

IFS UnleashedORGANIZATION

0.86+

360 viewQUANTITY

0.86+

5QUANTITY

0.85+

theCUBEORGANIZATION

0.84+

ARRTITLE

0.84+

this morningDATE

0.84+

my pet peevesQUANTITY

0.81+

Breaking Analysis: We Have the Data…What Private Tech Companies Don’t Tell you About Their Business


 

>> From The Cube Studios in Palo Alto and Boston, bringing you data driven insights from The Cube at ETR. This is "Breaking Analysis" with Dave Vellante. >> The reverse momentum in tech stocks caused by rising interest rates, less attractive discounted cash flow models, and more tepid forward guidance, can be easily measured by public market valuations. And while there's lots of discussion about the impact on private companies and cash runway and 409A valuations, measuring the performance of non-public companies isn't as easy. IPOs have dried up and public statements by private companies, of course, they accentuate the good and they kind of hide the bad. Real data, unless you're an insider, is hard to find. Hello and welcome to this week's "Wikibon Cube Insights" powered by ETR. In this "Breaking Analysis", we unlock some of the secrets that non-public, emerging tech companies may or may not be sharing. And we do this by introducing you to a capability from ETR that we've not exposed you to over the past couple of years, it's called the Emerging Technologies Survey, and it is packed with sentiment data and performance data based on surveys of more than a thousand CIOs and IT buyers covering more than 400 companies. And we've invited back our colleague, Erik Bradley of ETR to help explain the survey and the data that we're going to cover today. Erik, this survey is something that I've not personally spent much time on, but I'm blown away at the data. It's really unique and detailed. First of all, welcome. Good to see you again. >> Great to see you too, Dave, and I'm really happy to be talking about the ETS or the Emerging Technology Survey. Even our own clients of constituents probably don't spend as much time in here as they should. >> Yeah, because there's so much in the mainstream, but let's pull up a slide to bring out the survey composition. Tell us about the study. How often do you run it? What's the background and the methodology? >> Yeah, you were just spot on the way you were talking about the private tech companies out there. So what we did is we decided to take all the vendors that we track that are not yet public and move 'em over to the ETS. And there isn't a lot of information out there. If you're not in Silicon (indistinct), you're not going to get this stuff. So PitchBook and Tech Crunch are two out there that gives some data on these guys. But what we really wanted to do was go out to our community. We have 6,000, ITDMs in our community. We wanted to ask them, "Are you aware of these companies? And if so, are you allocating any resources to them? Are you planning to evaluate them," and really just kind of figure out what we can do. So this particular survey, as you can see, 1000 plus responses, over 450 vendors that we track. And essentially what we're trying to do here is talk about your evaluation and awareness of these companies and also your utilization. And also if you're not utilizing 'em, then we can also figure out your sales conversion or churn. So this is interesting, not only for the ITDMs themselves to figure out what their peers are evaluating and what they should put in POCs against the big guys when contracts come up. But it's also really interesting for the tech vendors themselves to see how they're performing. >> And you can see 2/3 of the respondents are director level of above. You got 28% is C-suite. There is of course a North America bias, 70, 75% is North America. But these smaller companies, you know, that's when they start doing business. So, okay. We're going to do a couple of things here today. First, we're going to give you the big picture across the sectors that ETR covers within the ETS survey. And then we're going to look at the high and low sentiment for the larger private companies. And then we're going to do the same for the smaller private companies, the ones that don't have as much mindshare. And then I'm going to put those two groups together and we're going to look at two dimensions, actually three dimensions, which companies are being evaluated the most. Second, companies are getting the most usage and adoption of their offerings. And then third, which companies are seeing the highest churn rates, which of course is a silent killer of companies. And then finally, we're going to look at the sentiment and mindshare for two key areas that we like to cover often here on "Breaking Analysis", security and data. And data comprises database, including data warehousing, and then big data analytics is the second part of data. And then machine learning and AI is the third section within data that we're going to look at. Now, one other thing before we get into it, ETR very often will include open source offerings in the mix, even though they're not companies like TensorFlow or Kubernetes, for example. And we'll call that out during this discussion. The reason this is done is for context, because everyone is using open source. It is the heart of innovation and many business models are super glued to an open source offering, like take MariaDB, for example. There's the foundation and then there's with the open source code and then there, of course, the company that sells services around the offering. Okay, so let's first look at the highest and lowest sentiment among these private firms, the ones that have the highest mindshare. So they're naturally going to be somewhat larger. And we do this on two dimensions, sentiment on the vertical axis and mindshare on the horizontal axis and note the open source tool, see Kubernetes, Postgres, Kafka, TensorFlow, Jenkins, Grafana, et cetera. So Erik, please explain what we're looking at here, how it's derived and what the data tells us. >> Certainly, so there is a lot here, so we're going to break it down first of all by explaining just what mindshare and net sentiment is. You explain the axis. We have so many evaluation metrics, but we need to aggregate them into one so that way we can rank against each other. Net sentiment is really the aggregation of all the positive and subtracting out the negative. So the net sentiment is a very quick way of looking at where these companies stand versus their peers in their sectors and sub sectors. Mindshare is basically the awareness of them, which is good for very early stage companies. And you'll see some names on here that are obviously been around for a very long time. And they're clearly be the bigger on the axis on the outside. Kubernetes, for instance, as you mentioned, is open source. This de facto standard for all container orchestration, and it should be that far up into the right, because that's what everyone's using. In fact, the open source leaders are so prevalent in the emerging technology survey that we break them out later in our analysis, 'cause it's really not fair to include them and compare them to the actual companies that are providing the support and the security around that open source technology. But no survey, no analysis, no research would be complete without including these open source tech. So what we're looking at here, if I can just get away from the open source names, we see other things like Databricks and OneTrust . They're repeating as top net sentiment performers here. And then also the design vendors. People don't spend a lot of time on 'em, but Miro and Figma. This is their third survey in a row where they're just dominating that sentiment overall. And Adobe should probably take note of that because they're really coming after them. But Databricks, we all know probably would've been a public company by now if the market hadn't turned, but you can see just how dominant they are in a survey of nothing but private companies. And we'll see that again when we talk about the database later. >> And I'll just add, so you see automation anywhere on there, the big UiPath competitor company that was not able to get to the public markets. They've been trying. Snyk, Peter McKay's company, they've raised a bunch of money, big security player. They're doing some really interesting things in developer security, helping developers secure the data flow, H2O.ai, Dataiku AI company. We saw them at the Snowflake Summit. Redis Labs, Netskope and security. So a lot of names that we know that ultimately we think are probably going to be hitting the public market. Okay, here's the same view for private companies with less mindshare, Erik. Take us through this one. >> On the previous slide too real quickly, I wanted to pull that security scorecard and we'll get back into it. But this is a newcomer, that I couldn't believe how strong their data was, but we'll bring that up in a second. Now, when we go to the ones of lower mindshare, it's interesting to talk about open source, right? Kubernetes was all the way on the top right. Everyone uses containers. Here we see Istio up there. Not everyone is using service mesh as much. And that's why Istio is in the smaller breakout. But still when you talk about net sentiment, it's about the leader, it's the highest one there is. So really interesting to point out. Then we see other names like Collibra in the data side really performing well. And again, as always security, very well represented here. We have Aqua, Wiz, Armis, which is a standout in this survey this time around. They do IoT security. I hadn't even heard of them until I started digging into the data here. And I couldn't believe how well they were doing. And then of course you have AnyScale, which is doing a second best in this and the best name in the survey Hugging Face, which is a machine learning AI tool. Also doing really well on a net sentiment, but they're not as far along on that access of mindshare just yet. So these are again, emerging companies that might not be as well represented in the enterprise as they will be in a couple of years. >> Hugging Face sounds like something you do with your two year old. Like you said, you see high performers, AnyScale do machine learning and you mentioned them. They came out of Berkeley. Collibra Governance, InfluxData is on there. InfluxDB's a time series database. And yeah, of course, Alex, if you bring that back up, you get a big group of red dots, right? That's the bad zone, I guess, which Sisense does vis, Yellowbrick Data is a NPP database. How should we interpret the red dots, Erik? I mean, is it necessarily a bad thing? Could it be misinterpreted? What's your take on that? >> Sure, well, let me just explain the definition of it first from a data science perspective, right? We're a data company first. So the gray dots that you're seeing that aren't named, that's the mean that's the average. So in order for you to be on this chart, you have to be at least one standard deviation above or below that average. So that gray is where we're saying, "Hey, this is where the lump of average comes in. This is where everyone normally stands." So you either have to be an outperformer or an underperformer to even show up in this analysis. So by definition, yes, the red dots are bad. You're at least one standard deviation below the average of your peers. It's not where you want to be. And if you're on the lower left, not only are you not performing well from a utilization or an actual usage rate, but people don't even know who you are. So that's a problem, obviously. And the VCs and the PEs out there that are backing these companies, they're the ones who mostly are interested in this data. >> Yeah. Oh, that's great explanation. Thank you for that. No, nice benchmarking there and yeah, you don't want to be in the red. All right, let's get into the next segment here. Here going to look at evaluation rates, adoption and the all important churn. First new evaluations. Let's bring up that slide. And Erik, take us through this. >> So essentially I just want to explain what evaluation means is that people will cite that they either plan to evaluate the company or they're currently evaluating. So that means we're aware of 'em and we are choosing to do a POC of them. And then we'll see later how that turns into utilization, which is what a company wants to see, awareness, evaluation, and then actually utilizing them. That's sort of the life cycle for these emerging companies. So what we're seeing here, again, with very high evaluation rates. H2O, we mentioned. SecurityScorecard jumped up again. Chargebee, Snyk, Salt Security, Armis. A lot of security names are up here, Aqua, Netskope, which God has been around forever. I still can't believe it's in an Emerging Technology Survey But so many of these names fall in data and security again, which is why we decided to pick those out Dave. And on the lower side, Vena, Acton, those unfortunately took the dubious award of the lowest evaluations in our survey, but I prefer to focus on the positive. So SecurityScorecard, again, real standout in this one, they're in a security assessment space, basically. They'll come in and assess for you how your security hygiene is. And it's an area of a real interest right now amongst our ITDM community. >> Yeah, I mean, I think those, and then Arctic Wolf is up there too. They're doing managed services. You had mentioned Netskope. Yeah, okay. All right, let's look at now adoption. These are the companies whose offerings are being used the most and are above that standard deviation in the green. Take us through this, Erik. >> Sure, yet again, what we're looking at is, okay, we went from awareness, we went to evaluation. Now it's about utilization, which means a survey respondent's going to state "Yes, we evaluated and we plan to utilize it" or "It's already in our enterprise and we're actually allocating further resources to it." Not surprising, again, a lot of open source, the reason why, it's free. So it's really easy to grow your utilization on something that's free. But as you and I both know, as Red Hat proved, there's a lot of money to be made once the open source is adopted, right? You need the governance, you need the security, you need the support wrapped around it. So here we're seeing Kubernetes, Postgres, Apache Kafka, Jenkins, Grafana. These are all open source based names. But if we're looking at names that are non open source, we're going to see Databricks, Automation Anywhere, Rubrik all have the highest mindshare. So these are the names, not surprisingly, all names that probably should have been public by now. Everyone's expecting an IPO imminently. These are the names that have the highest mindshare. If we talk about the highest utilization rates, again, Miro and Figma pop up, and I know they're not household names, but they are just dominant in this survey. These are applications that are meant for design software and, again, they're going after an Autodesk or a CAD or Adobe type of thing. It is just dominant how high the utilization rates are here, which again is something Adobe should be paying attention to. And then you'll see a little bit lower, but also interesting, we see Collibra again, we see Hugging Face again. And these are names that are obviously in the data governance, ML, AI side. So we're seeing a ton of data, a ton of security and Rubrik was interesting in this one, too, high utilization and high mindshare. We know how pervasive they are in the enterprise already. >> Erik, Alex, keep that up for a second, if you would. So yeah, you mentioned Rubrik. Cohesity's not on there. They're sort of the big one. We're going to talk about them in a moment. Puppet is interesting to me because you remember the early days of that sort of space, you had Puppet and Chef and then you had Ansible. Red Hat bought Ansible and then Ansible really took off. So it's interesting to see Puppet on there as well. Okay. So now let's look at the churn because this one is where you don't want to be. It's, of course, all red 'cause churn is bad. Take us through this, Erik. >> Yeah, definitely don't want to be here and I don't love to dwell on the negative. So we won't spend as much time. But to your point, there's one thing I want to point out that think it's important. So you see Rubrik in the same spot, but Rubrik has so many citations in our survey that it actually would make sense that they're both being high utilization and churn just because they're so well represented. They have such a high overall representation in our survey. And the reason I call that out is Cohesity. Cohesity has an extremely high churn rate here about 17% and unlike Rubrik, they were not on the utilization side. So Rubrik is seeing both, Cohesity is not. It's not being utilized, but it's seeing a high churn. So that's the way you can look at this data and say, "Hm." Same thing with Puppet. You noticed that it was on the other slide. It's also on this one. So basically what it means is a lot of people are giving Puppet a shot, but it's starting to churn, which means it's not as sticky as we would like. One that was surprising on here for me was Tanium. It's kind of jumbled in there. It's hard to see in the middle, but Tanium, I was very surprised to see as high of a churn because what I do hear from our end user community is that people that use it, like it. It really kind of spreads into not only vulnerability management, but also that endpoint detection and response side. So I was surprised by that one, mostly to see Tanium in here. Mural, again, was another one of those application design softwares that's seeing a very high churn as well. >> So you're saying if you're in both... Alex, bring that back up if you would. So if you're in both like MariaDB is for example, I think, yeah, they're in both. They're both green in the previous one and red here, that's not as bad. You mentioned Rubrik is going to be in both. Cohesity is a bit of a concern. Cohesity just brought on Sanjay Poonen. So this could be a go to market issue, right? I mean, 'cause Cohesity has got a great product and they got really happy customers. So they're just maybe having to figure out, okay, what's the right ideal customer profile and Sanjay Poonen, I guarantee, is going to have that company cranking. I mean they had been doing very well on the surveys and had fallen off of a bit. The other interesting things wondering the previous survey I saw Cvent, which is an event platform. My only reason I pay attention to that is 'cause we actually have an event platform. We don't sell it separately. We bundle it as part of our offerings. And you see Hopin on here. Hopin raised a billion dollars during the pandemic. And we were like, "Wow, that's going to blow up." And so you see Hopin on the churn and you didn't see 'em in the previous chart, but that's sort of interesting. Like you said, let's not kind of dwell on the negative, but you really don't. You know, churn is a real big concern. Okay, now we're going to drill down into two sectors, security and data. Where data comprises three areas, database and data warehousing, machine learning and AI and big data analytics. So first let's take a look at the security sector. Now this is interesting because not only is it a sector drill down, but also gives an indicator of how much money the firm has raised, which is the size of that bubble. And to tell us if a company is punching above its weight and efficiently using its venture capital. Erik, take us through this slide. Explain the dots, the size of the dots. Set this up please. >> Yeah. So again, the axis is still the same, net sentiment and mindshare, but what we've done this time is we've taken publicly available information on how much capital company is raised and that'll be the size of the circle you see around the name. And then whether it's green or red is basically saying relative to the amount of money they've raised, how are they doing in our data? So when you see a Netskope, which has been around forever, raised a lot of money, that's why you're going to see them more leading towards red, 'cause it's just been around forever and kind of would expect it. Versus a name like SecurityScorecard, which is only raised a little bit of money and it's actually performing just as well, if not better than a name, like a Netskope. OneTrust doing absolutely incredible right now. BeyondTrust. We've seen the issues with Okta, right. So those are two names that play in that space that obviously are probably getting some looks about what's going on right now. Wiz, we've all heard about right? So raised a ton of money. It's doing well on net sentiment, but the mindshare isn't as well as you'd want, which is why you're going to see a little bit of that red versus a name like Aqua, which is doing container and application security. And hasn't raised as much money, but is really neck and neck with a name like Wiz. So that is why on a relative basis, you'll see that more green. As we all know, information security is never going away. But as we'll get to later in the program, Dave, I'm not sure in this current market environment, if people are as willing to do POCs and switch away from their security provider, right. There's a little bit of tepidness out there, a little trepidation. So right now we're seeing overall a slight pause, a slight cooling in overall evaluations on the security side versus historical levels a year ago. >> Now let's stay on here for a second. So a couple things I want to point out. So it's interesting. Now Snyk has raised over, I think $800 million but you can see them, they're high on the vertical and the horizontal, but now compare that to Lacework. It's hard to see, but they're kind of buried in the middle there. That's the biggest dot in this whole thing. I think I'm interpreting this correctly. They've raised over a billion dollars. It's a Mike Speiser company. He was the founding investor in Snowflake. So people watch that very closely, but that's an example of where they're not punching above their weight. They recently had a layoff and they got to fine tune things, but I'm still confident they they're going to do well. 'Cause they're approaching security as a data problem, which is probably people having trouble getting their arms around that. And then again, I see Arctic Wolf. They're not red, they're not green, but they've raised fair amount of money, but it's showing up to the right and decent level there. And a couple of the other ones that you mentioned, Netskope. Yeah, they've raised a lot of money, but they're actually performing where you want. What you don't want is where Lacework is, right. They've got some work to do to really take advantage of the money that they raised last November and prior to that. >> Yeah, if you're seeing that more neutral color, like you're calling out with an Arctic Wolf, like that means relative to their peers, this is where they should be. It's when you're seeing that red on a Lacework where we all know, wow, you raised a ton of money and your mindshare isn't where it should be. Your net sentiment is not where it should be comparatively. And then you see these great standouts, like Salt Security and SecurityScorecard and Abnormal. You know they haven't raised that much money yet, but their net sentiment's higher and their mindshare's doing well. So those basically in a nutshell, if you're a PE or a VC and you see a small green circle, then you're doing well, then it means you made a good investment. >> Some of these guys, I don't know, but you see these small green circles. Those are the ones you want to start digging into and maybe help them catch a wave. Okay, let's get into the data discussion. And again, three areas, database slash data warehousing, big data analytics and ML AI. First, we're going to look at the database sector. So Alex, thank you for bringing that up. Alright, take us through this, Erik. Actually, let me just say Postgres SQL. I got to ask you about this. It shows some funding, but that actually could be a mix of EDB, the company that commercializes Postgres and Postgres the open source database, which is a transaction system and kind of an open source Oracle. You see MariaDB is a database, but open source database. But the companies they've raised over $200 million and they filed an S-4. So Erik looks like this might be a little bit of mashup of companies and open source products. Help us understand this. >> Yeah, it's tough when you start dealing with the open source side and I'll be honest with you, there is a little bit of a mashup here. There are certain names here that are a hundred percent for profit companies. And then there are others that are obviously open source based like Redis is open source, but Redis Labs is the one trying to monetize the support around it. So you're a hundred percent accurate on this slide. I think one of the things here that's important to note though, is just how important open source is to data. If you're going to be going to any of these areas, it's going to be open source based to begin with. And Neo4j is one I want to call out here. It's not one everyone's familiar with, but it's basically geographical charting database, which is a name that we're seeing on a net sentiment side actually really, really high. When you think about it's the third overall net sentiment for a niche database play. It's not as big on the mindshare 'cause it's use cases aren't as often, but third biggest play on net sentiment. I found really interesting on this slide. >> And again, so MariaDB, as I said, they filed an S-4 I think $50 million in revenue, that might even be ARR. So they're not huge, but they're getting there. And by the way, MariaDB, if you don't know, was the company that was formed the day that Oracle bought Sun in which they got MySQL and MariaDB has done a really good job of replacing a lot of MySQL instances. Oracle has responded with MySQL HeatWave, which was kind of the Oracle version of MySQL. So there's some interesting battles going on there. If you think about the LAMP stack, the M in the LAMP stack was MySQL. And so now it's all MariaDB replacing that MySQL for a large part. And then you see again, the red, you know, you got to have some concerns about there. Aerospike's been around for a long time. SingleStore changed their name a couple years ago, last year. Yellowbrick Data, Fire Bolt was kind of going after Snowflake for a while, but yeah, you want to get out of that red zone. So they got some work to do. >> And Dave, real quick for the people that aren't aware, I just want to let them know that we can cut this data with the public company data as well. So we can cross over this with that because some of these names are competing with the larger public company names as well. So we can go ahead and cross reference like a MariaDB with a Mongo, for instance, or of something of that nature. So it's not in this slide, but at another point we can certainly explain on a relative basis how these private names are doing compared to the other ones as well. >> All right, let's take a quick look at analytics. Alex, bring that up if you would. Go ahead, Erik. >> Yeah, I mean, essentially here, I can't see it on my screen, my apologies. I just kind of went to blank on that. So gimme one second to catch up. >> So I could set it up while you're doing that. You got Grafana up and to the right. I mean, this is huge right. >> Got it thank you. I lost my screen there for a second. Yep. Again, open source name Grafana, absolutely up and to the right. But as we know, Grafana Labs is actually picking up a lot of speed based on Grafana, of course. And I think we might actually hear some noise from them coming this year. The names that are actually a little bit more disappointing than I want to call out are names like ThoughtSpot. It's been around forever. Their mindshare of course is second best here but based on the amount of time they've been around and the amount of money they've raised, it's not actually outperforming the way it should be. We're seeing Moogsoft obviously make some waves. That's very high net sentiment for that company. It's, you know, what, third, fourth position overall in this entire area, Another name like Fivetran, Matillion is doing well. Fivetran, even though it's got a high net sentiment, again, it's raised so much money that we would've expected a little bit more at this point. I know you know this space extremely well, but basically what we're looking at here and to the bottom left, you're going to see some names with a lot of red, large circles that really just aren't performing that well. InfluxData, however, second highest net sentiment. And it's really pretty early on in this stage and the feedback we're getting on this name is the use cases are great, the efficacy's great. And I think it's one to watch out for. >> InfluxData, time series database. The other interesting things I just noticed here, you got Tamer on here, which is that little small green. Those are the ones we were saying before, look for those guys. They might be some of the interesting companies out there and then observe Jeremy Burton's company. They do observability on top of Snowflake, not green, but kind of in that gray. So that's kind of cool. Monte Carlo is another one, they're sort of slightly green. They are doing some really interesting things in data and data mesh. So yeah, okay. So I can spend all day on this stuff, Erik, phenomenal data. I got to get back and really dig in. Let's end with machine learning and AI. Now this chart it's similar in its dimensions, of course, except for the money raised. We're not showing that size of the bubble, but AI is so hot. We wanted to cover that here, Erik, explain this please. Why TensorFlow is highlighted and walk us through this chart. >> Yeah, it's funny yet again, right? Another open source name, TensorFlow being up there. And I just want to explain, we do break out machine learning, AI is its own sector. A lot of this of course really is intertwined with the data side, but it is on its own area. And one of the things I think that's most important here to break out is Databricks. We started to cover Databricks in machine learning, AI. That company has grown into much, much more than that. So I do want to state to you Dave, and also the audience out there that moving forward, we're going to be moving Databricks out of only the MA/AI into other sectors. So we can kind of value them against their peers a little bit better. But in this instance, you could just see how dominant they are in this area. And one thing that's not here, but I do want to point out is that we have the ability to break this down by industry vertical, organization size. And when I break this down into Fortune 500 and Fortune 1000, both Databricks and Tensorflow are even better than you see here. So it's quite interesting to see that the names that are succeeding are also succeeding with the largest organizations in the world. And as we know, large organizations means large budgets. So this is one area that I just thought was really interesting to point out that as we break it down, the data by vertical, these two names still are the outstanding players. >> I just also want to call it H2O.ai. They're getting a lot of buzz in the marketplace and I'm seeing them a lot more. Anaconda, another one. Dataiku consistently popping up. DataRobot is also interesting because all the kerfuffle that's going on there. The Cube guy, Cube alum, Chris Lynch stepped down as executive chairman. All this stuff came out about how the executives were taking money off the table and didn't allow the employees to participate in that money raising deal. So that's pissed a lot of people off. And so they're now going through some kind of uncomfortable things, which is unfortunate because DataRobot, I noticed, we haven't covered them that much in "Breaking Analysis", but I've noticed them oftentimes, Erik, in the surveys doing really well. So you would think that company has a lot of potential. But yeah, it's an important space that we're going to continue to watch. Let me ask you Erik, can you contextualize this from a time series standpoint? I mean, how is this changed over time? >> Yeah, again, not show here, but in the data. I'm sorry, go ahead. >> No, I'm sorry. What I meant, I should have interjected. In other words, you would think in a downturn that these emerging companies would be less interesting to buyers 'cause they're more risky. What have you seen? >> Yeah, and it was interesting before we went live, you and I were having this conversation about "Is the downturn stopping people from evaluating these private companies or not," right. In a larger sense, that's really what we're doing here. How are these private companies doing when it comes down to the actual practitioners? The people with the budget, the people with the decision making. And so what I did is, we have historical data as you know, I went back to the Emerging Technology Survey we did in November of 21, right at the crest right before the market started to really fall and everything kind of started to fall apart there. And what I noticed is on the security side, very much so, we're seeing less evaluations than we were in November 21. So I broke it down. On cloud security, net sentiment went from 21% to 16% from November '21. That's a pretty big drop. And again, that sentiment is our one aggregate metric for overall positivity, meaning utilization and actual evaluation of the name. Again in database, we saw it drop a little bit from 19% to 13%. However, in analytics we actually saw it stay steady. So it's pretty interesting that yes, cloud security and security in general is always going to be important. But right now we're seeing less overall net sentiment in that space. But within analytics, we're seeing steady with growing mindshare. And also to your point earlier in machine learning, AI, we're seeing steady net sentiment and mindshare has grown a whopping 25% to 30%. So despite the downturn, we're seeing more awareness of these companies in analytics and machine learning and a steady, actual utilization of them. I can't say the same in security and database. They're actually shrinking a little bit since the end of last year. >> You know it's interesting, we were on a round table, Erik does these round tables with CISOs and CIOs, and I remember one time you had asked the question, "How do you think about some of these emerging tech companies?" And one of the executives said, "I always include somebody in the bottom left of the Gartner Magic Quadrant in my RFPs. I think he said, "That's how I found," I don't know, it was Zscaler or something like that years before anybody ever knew of them "Because they're going to help me get to the next level." So it's interesting to see Erik in these sectors, how they're holding up in many cases. >> Yeah. It's a very important part for the actual IT practitioners themselves. There's always contracts coming up and you always have to worry about your next round of negotiations. And that's one of the roles these guys play. You have to do a POC when contracts come up, but it's also their job to stay on top of the new technology. You can't fall behind. Like everyone's a software company. Now everyone's a tech company, no matter what you're doing. So these guys have to stay in on top of it. And that's what this ETS can do. You can go in here and look and say, "All right, I'm going to evaluate their technology," and it could be twofold. It might be that you're ready to upgrade your technology and they're actually pushing the envelope or it simply might be I'm using them as a negotiation ploy. So when I go back to the big guy who I have full intentions of writing that contract to, at least I have some negotiation leverage. >> Erik, we got to leave it there. I could spend all day. I'm going to definitely dig into this on my own time. Thank you for introducing this, really appreciate your time today. >> I always enjoy it, Dave and I hope everyone out there has a great holiday weekend. Enjoy the rest of the summer. And, you know, I love to talk data. So anytime you want, just point the camera on me and I'll start talking data. >> You got it. I also want to thank the team at ETR, not only Erik, but Darren Bramen who's a data scientist, really helped prepare this data, the entire team over at ETR. I cannot tell you how much additional data there is. We are just scratching the surface in this "Breaking Analysis". So great job guys. I want to thank Alex Myerson. Who's on production and he manages the podcast. Ken Shifman as well, who's just coming back from VMware Explore. Kristen Martin and Cheryl Knight help get the word out on social media and in our newsletters. And Rob Hof is our editor in chief over at SiliconANGLE. Does some great editing for us. Thank you. All of you guys. Remember these episodes, they're all available as podcast, wherever you listen. All you got to do is just search "Breaking Analysis" podcast. I publish each week on wikibon.com and siliconangle.com. Or you can email me to get in touch david.vellante@siliconangle.com. You can DM me at dvellante or comment on my LinkedIn posts and please do check out etr.ai for the best survey data in the enterprise tech business. This is Dave Vellante for Erik Bradley and The Cube Insights powered by ETR. Thanks for watching. Be well. And we'll see you next time on "Breaking Analysis". (upbeat music)

Published Date : Sep 7 2022

SUMMARY :

bringing you data driven it's called the Emerging Great to see you too, Dave, so much in the mainstream, not only for the ITDMs themselves It is the heart of innovation So the net sentiment is a very So a lot of names that we And then of course you have AnyScale, That's the bad zone, I guess, So the gray dots that you're rates, adoption and the all And on the lower side, Vena, Acton, in the green. are in the enterprise already. So now let's look at the churn So that's the way you can look of dwell on the negative, So again, the axis is still the same, And a couple of the other And then you see these great standouts, Those are the ones you want to but Redis Labs is the one And by the way, MariaDB, So it's not in this slide, Alex, bring that up if you would. So gimme one second to catch up. So I could set it up but based on the amount of time Those are the ones we were saying before, And one of the things I think didn't allow the employees to here, but in the data. What have you seen? the market started to really And one of the executives said, And that's one of the Thank you for introducing this, just point the camera on me We are just scratching the surface

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
ErikPERSON

0.99+

Alex MyersonPERSON

0.99+

Ken ShifmanPERSON

0.99+

Sanjay PoonenPERSON

0.99+

Dave VellantePERSON

0.99+

DavePERSON

0.99+

Erik BradleyPERSON

0.99+

November 21DATE

0.99+

Darren BramenPERSON

0.99+

AlexPERSON

0.99+

Cheryl KnightPERSON

0.99+

PostgresORGANIZATION

0.99+

DatabricksORGANIZATION

0.99+

NetskopeORGANIZATION

0.99+

AdobeORGANIZATION

0.99+

Rob HofPERSON

0.99+

FivetranORGANIZATION

0.99+

$50 millionQUANTITY

0.99+

21%QUANTITY

0.99+

Chris LynchPERSON

0.99+

19%QUANTITY

0.99+

Jeremy BurtonPERSON

0.99+

$800 millionQUANTITY

0.99+

6,000QUANTITY

0.99+

OracleORGANIZATION

0.99+

Redis LabsORGANIZATION

0.99+

November '21DATE

0.99+

ETRORGANIZATION

0.99+

FirstQUANTITY

0.99+

25%QUANTITY

0.99+

last yearDATE

0.99+

OneTrustORGANIZATION

0.99+

two dimensionsQUANTITY

0.99+

two groupsQUANTITY

0.99+

November of 21DATE

0.99+

bothQUANTITY

0.99+

BostonLOCATION

0.99+

more than 400 companiesQUANTITY

0.99+

Kristen MartinPERSON

0.99+

MySQLTITLE

0.99+

MoogsoftORGANIZATION

0.99+

The CubeORGANIZATION

0.99+

thirdQUANTITY

0.99+

GrafanaORGANIZATION

0.99+

H2OORGANIZATION

0.99+

Mike SpeiserPERSON

0.99+

david.vellante@siliconangle.comOTHER

0.99+

secondQUANTITY

0.99+

twoQUANTITY

0.99+

firstQUANTITY

0.99+

28%QUANTITY

0.99+

16%QUANTITY

0.99+

SecondQUANTITY

0.99+

2022 000CC Tim Everson CC


 

(upbeat music) >> Hello, welcome to this CUBE Conversation here in Palo Alto, California. I'm John Furrier, host of theCUBE. We're here with Tim Everson, CISO at Kalahari Resorts & Conventions. Tim, great to see you. Thanks for coming on theCUBE. >> Thank you for having me. Looking forward to it. >> So, you know, RSA is going on this week. We're talking a lot about security. You've got a lot of conferences. Security is a big scale now across all enterprises, all businesses. You're in the hospitality, you got conventions. You're in the middle of it. You have an interesting environment. You've got a lot of diverse use cases. And you've got a lot of needs. They're always changing. I mean, you talk about change. You've got a network that has to be responsive, robust and support a lot of tough customers who want to have fun or do business. >> Exactly, yeah. We have customers that come in, that we were talking about this before the segment. And we have customers that come in that bring their own Roku Sticks their own Amazon devices. All these different things they bring in. You know, our resort customers need dedicated bandwidth. So they need dedicated network segments stood up at a moment's notice to do the things they're doing and run the shows they're showing. So it's never, never ending. It's constantly changing in our business. And there's just data galore to keep an eye on. So it's really interesting. >> Can you scope the scale of the current cybersecurity challenges these days in the industry? Because they're wide and far, they're deep. You got zero trust on one end, which is essentially don't trust anything. And then you got now on the software supply chain, things like more trust. So you got the conflict between a direction that's more trusted and then zero trust, and everything in between. From, endpoint protection. It's a lot going on. What's the scale of this situation right now in cyber? >> You know, right now everything's very, very up in the air. You talk about zero trust. And zero trust can be defined a lot of ways depending on what security person you talk to today. So, I won't go into my long discussion about zero trust but suffice to say, like I said zero trust can be perceived so many different ways. From a user perspective, from a network perspective, from an end point. I look more broadly at the regulatory side of things and how that affects things too. Because, regulations are changing daily. You've got your GDPRs, your CCPAs, your HIPAA regulations, PCI. All these different things that affect businesses, and affect businesses different ways. I mean, at Kalahari we're vulnerable or we're not vulnerable, but we're subject to a lot of these different regulations, more so than other people. You wouldn't expect a lot of hotels to have HIPAA regulations for instance. We have health people at our resorts. So we actually are subject to HIPAA in a lot of cases. So there's a lot of these broad scenarios that apply and they come into play with all different industries. And again, things you don't expect. So, when you see these threats coming, when you see all the hacks coming. Even today I got an email that the Marriott breach data from a few years ago, or the MGM breach from a few years ago. We've got all these breaches out there in the world, are coming back to the surface and being looked at again. And our users and our guests and our corporate partners, and all these different people see those things and they rely on us to protect them. So it makes that scope just exponentially bigger. >> Yeah, there's so many threads to pull on here. One is, you know we've observed certainly with the pandemic and then now going forward is that if you weren't modern in your infrastructure, in your environment, you are exposed. Even, I'm not talking old and antiquated like in the dark ages IT. We're talking like really state of the art, current. If you're lagging just by a few years, the hackers have an advantage. So, the constant bar raising, leveling up on technology is part of this arms race against the bad guys. >> Absolutely. And you said it, you talked earlier about the supply chain. Supply chain, these attacks that have come through the SolarWinds attacks and some of these other supply chain attacks that are coming out right now. Everybody's doing their best to stay on top of the latest, greatest. And the problem with that is, when you rely on other vendors and other companies to be able to help you do that. And you're relying on all these different tool sets, the supply chain attack is hugely critical. It makes it really, really important that you're watching where you're getting your software from, what they're doing with it, how they secure it. And that when you're dealing with your vendors and your different suppliers, you're making sure that they're securing things as well as you are. And it just, it adds to the complexity, it adds to the footprint and it adds to the headache that a lot of these security teams have. Especially small teams where they don't have the people to manage those kind of contacts. >> It's so interesting, I think zero trust is a knee jerk reaction to the perimeter being gone. It's like, you got to People love the zero trust. Oh it's like, "We're going to protect this that nobody, and then vet them in." But once you're trusted, trust also is coming in to play here. And in your environment, you're a hotel, you're a convention. You have a lot of rotation of guests coming in. Very much high velocity. And spear phishing and phishing, I could be watching and socially engineering someone that could be on your property at any given time. You got to be prepared for that. Or, you got ransomware coming around the corners or heavily. So, you got the ransomware threat and you got potentially spear phishing that could be possible at your place. These are things that are going on, right? That you got to protect for. What's your reaction to that? >> Absolutely. We see all those kind of attacks on a daily basis. I see spear phishing attacks. I see, web links and I chase them down and see what's going on. I see that there's ransomware trying to come in. We see these things every single day. And the problem you have with it is not only, especially in a space where you have a high volume of customers and a high turnover of customers like you're talking about that are in and out of our resorts, in and out of our facilities. Those attacks aren't just coming from our executives and their email. We can have a guest sitting on a guest network, on a wireless network. Or on one of our business center machines, or using our resort network for any one of a number of the conference things that they're doing and the different ports that we have to open and the different bandwidth scenarios that you've got dealing with. All of these things come into play because if any attack comes from any of those channels you have to make sure that segmentation is right, that your tooling is proper and that your team is aware and watching for it. And so it does. It makes it a very challenging environment to be in. >> You know, I don't want to bring up the budget issue but I'll bring up the budget issue. You can have unlimited budget because there's so many tools out there and platforms now. I mean, if you've look at the ecosystem map of the cybersecurity landscape that you have to navigate through as a customer. You've got a lot of people knocking on your door to sell you stuff. So I have to ask you, what is the scale? I mean, you can't have unlimited budget. But the reality is you have to kind of, do the right thing. What's the most helpful kind of tools and platforms for you that you've seen that you've had experience with? Where's this going in terms of the most effective mechanisms and software and platforms that are available out there? >> From the security perspective specifically, the three things that are most important to me are visibility. Whether it's asset visibility or log visibility. You know, being able to see the data, being able to see what's going on. End user. Making sure that the end user has been trained, is aware and that you're watching them. Because the end user, the human is always the weakest link. The human doesn't have digital controls that can be hard set and absolutely followed. The human changes every day. And then our endpoint security solutions. Those are the three biggest things for me. You know, you have your network perimeter, your firewalls. But attackers aren't always looking for those. They're coming from the inside, they're finding a way around those. The biggest three things for me are endpoint, visibility and the end user. >> Yeah, it's awesome. And a lot of companies are really looking at their posture right now. So I would ask you as a CISO, who's in the front end of all this great stuff and protecting your networks and all your environments and the endpoints and assets. What advice would you have for other CISOs who are kind of trying to level up to where you're at, in terms of rethinking their security posture? What advice would you give them? >> The advice I would give you is surround yourself with people that are like-minded on the security side. Make sure that these people are aware but that they're willing to grow. Because security's always changing. If you get a security person that's dead set that they're going to be a network security person and that's all they're going to do. You know, you may have that need and you may fill it. But at the end of the day, you need somebody who's open rounded and ready to change. And then you need to make sure that you can have somebody, and the team that you work with is able to talk to your executives. It never fails, the executives. They understand security from the standpoint of the business, but they don't necessarily understand security from the technical side. So you have to make sure that you can cross those two boundaries. And when you grow your team you have to make sure that that's the biggest focus. >> I have to ask the pandemic question, but I know cybersecurity hasn't changed. In fact, it's gotten more aggressive in the pandemic. How has the post pandemic or kind of like towards the tail end of where we're at now, affect the cybersecurity landscape? Has it increased velocity? Has it changed any kind of threat vectors? Has it changed in any way? Can you share your thoughts on what happened during the pandemic and now has we come out of it into the next, well post pandemic? >> Absolutely. It affected hospitality in a kind of unique way. Because, a lot of the different governments, state, federal. I'm in Ohio. I work out of our Ohio resort. A lot of the governments literally shut us down or limited severely how many guests we could have in. So on the one hand you've got less traffic internal over the network. So you've got a little bit of a slow down there. But on the flip side it also meant a lot of our workers were working from home. So now you've got a lot of remote access coming in. You've got people that are trying to get in from home and work machines. You have to transition call centers and call volume and all of the things that come along with that. And you have to make sure that that human element is accounted for. Because, again, you've got people working from home, you no longer know if the person that's calling you today, if it's not somebody you're familiar with you don't know if that person is Joe Blow from the front desk or if that person's a vendor or who they are. And so when you deal with a company with 5,000 ish employees or 10,000 that some of these bigger companies are. 15,000, whatever the case may be. You know, the pandemic really put a shift in there because now you're protecting not only against the technologies, but you're dealing with all of the scams, all of the phishing attempts that are coming through that are COVID related. All of these various things. And it really did. It threw a crazy mix into cybersecurity. >> I can imagine that the brain trust over there is prior thinking, "Hey, we were a hybrid experience." Now, if people who have come and experienced our resorts and conventions can come in remotely, even in a hybrid experience with folks that are there. You've seen a lot of hybrid events for instance go on, where there's shared experience. I can almost imagine your service area is now extending to the homes of those guests. That you got to start thinking differently. Has that been something that you guys are looking at? >> We're looking at it from the standpoint of trying to broaden some of the events. In the case of a lot of our conventions, things of that nature. The conventions that aren't actually Kalahari's run conventions, we host them, we manage them. But it does... When you talk about workers coming from home to attend these conventions. Or these telecommuters that are attending these conventions. It does affect us in the stance that, like I said we have to provision network for these various events. And we have to make sure that the network and the security around the network are tight. So it does. It makes a big deal as far as how Kalahari does its business. Being able to still operate these different meetings and different conventions, and being able to host remotely as well. You know, making sure that telecommunications are available to them. Making sure that network access and room access are available to them. You know for places where we can't gather heavily in meetings. You know, these people still being able to be near each other, still being able to talk, but making sure that that technology is there between them. >> Well, Tim is great to have you on for this CUBE Conversation. CISO from the middle of all the action. You're seeing a lot. There's a lot of surface area you got to watch. There's a lot of data you got to observe. You got to get that visibility. You can only protect what you can see, and the more you see the better it is. The better the machine learning. You brought up the the common area about like-minded individuals. I want to just ask you on the final point here, on hiring and talent coming into the marketplace. I mean, this younger generation coming out of university and college is, or not even going to school. There's no cyber degree. I mean, there are now. But I mean, the world's changing. It's easy to level up. So, skill sets you can't get a degree in certain things. I mean, you got to have a broad set. What do you look for in talent? Is there a trend you see in terms of what makes a good cybersecurity professional, developer, analyst? Is there roles that you see emerging that you think people should pay attention to? What's your take on this as someone who's looking at the future? And- >> You know, it's very interesting that you bring this up. I actually have two of my team members, one directly working for me and another team member at Kalahari that are currently going through college degree programs for cybersecurity. And I wrote recommendations for them. I've worked with them, I'm helping them study. But as you bring people up, you know the other thing I do is I mentor at a couple of the local technical schools as well. I go in, I talk to people, I help them design their programs. And the biggest thing I try to get across to them is, number one, if you're in the learning side of it. Not even talking about the hiring side of it. If you're in the learning side of it, you need to come into it with a kind of an understanding to begin with to where you want to fit into security. You know, do you want to be an attacker, a defender, a manager? Where do you want to be? And then you also need to look at the market and talk to the businesses in the area. You know, I talk to these kids regularly about what their need is. Because if you're in school and you're taking Cisco classes, and focusing on firewalls and what an organization needs as somebody who can read log and do things like that. Or somebody who can do pen testing. You know, that's a huge thing. So I would say if you're on the hiring side of that equation, you know. Like you said, there's no super degrees that I can speak to. There's a lot of certifications. There's a lot of different things like that. The goal for me is finding somebody who can put hands to the ground and feet to the ground, and show me that they know what they know. You know, I'll pull somebody in, I'll ask them to show me a certain specific or I'll ask them for specific information and try to feel that out. Because at the end of the day, there's no degree that's going to protect my network. There's no degree that's a hundred percent going to understand Kalahari, for instance. So I want to make sure that the people I talk to, I get a broad interview scope, I get a number of people to talk to. And really get a feel for what it is they know, and what tools they want to work with and make sure it's going to align with us. >> Well, Tim, that's great that you do that. I think the industry needs that. And I think that's really paying it forward, by getting in and using your time to help shape the young curriculums and the young guns out there. It's interesting you know, like David Vellante and I talk on theCUBE all the time. Cyber is like sports. If you're playing football, you got to know the game. If you're playing football and you come in as a baseball player, the skills might not translate, right? So it's really more of, categorically cyber has a certain pattern to it. Math, open mindedness, connecting dots, seeing things around corners. Maybe it's more holistic views, if you're at the visibility level or getting the weeds with data. A lot of different skill sets needed. The aperture of the job requirements are changing a lot. >> They are. And you know, you touched on that really well. You know, they talk about hacking and the hacker mindset. You know, all the security stuff revolves around hacker. And people mislabel hacker. Hacking in general is making something do something that it wasn't originally designed to do. And when I hire people in security, I want people that have that mindset. I want people that not only are going to work with the tool set we have, and use that mathematical ability and that logic and that reasoning. But I want them to use a reasoning of, "Hey, we have this tool here today. How can this tool do what I want it do but what else can it do for me?" Because like any other industry we have to stretch our dollar. So if I have a tool set that can meet five different needs for me today, rather than investing in 16 different tool sets and spreading that data out and spreading all the control around. Let's focus on those tool sets and let's focus on using that knowledge and that adaptive ability that the human people have on the security side, and put that to use. Make them use the tools that work for them but make 'em develop things, new tools, new methods, new techniques that help us get things across. >> Grow the capabilities, protect, trust all things coming in. And Tim, you're a tech athlete, as we say and you've got a great thing going on over there. And again, congratulations on the work you're doing on the higher ed and the education side and the Kalahari Resorts & Conventions. Thanks for coming on theCUBE. I really appreciate the insight you're sharing. Thank you. >> Thanks for having me. >> Okay. I'm John Furrier here in Palo Alto for theCUBE. Thanks for watching. (somber music)

Published Date : Jun 10 2022

SUMMARY :

Tim, great to see you. Thank you for having You're in the middle of it. the things they're doing and And then you got now on that the Marriott breach data like in the dark ages IT. the people to manage It's like, you got to And the problem you have But the reality is you have to You know, you have your network and the endpoints and assets. and the team that you work with aggressive in the pandemic. and all of the things I can imagine that the brain trust and the security around and the more you see the better it is. of that equation, you know. great that you do that. on the security side, and put that to use. and the Kalahari Resorts & Conventions. here in Palo Alto for theCUBE.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
David VellantePERSON

0.99+

MarriottORGANIZATION

0.99+

OhioLOCATION

0.99+

twoQUANTITY

0.99+

TimPERSON

0.99+

Tim EversonPERSON

0.99+

AmazonORGANIZATION

0.99+

John FurrierPERSON

0.99+

Palo AltoLOCATION

0.99+

todayDATE

0.99+

MGMORGANIZATION

0.99+

KalahariORGANIZATION

0.99+

Joe BlowPERSON

0.99+

HIPAATITLE

0.99+

Palo Alto, CaliforniaLOCATION

0.99+

10,000QUANTITY

0.99+

CiscoORGANIZATION

0.99+

oneQUANTITY

0.99+

Kalahari Resorts & ConventionsORGANIZATION

0.99+

16 different tool setsQUANTITY

0.98+

two boundariesQUANTITY

0.98+

zero trustQUANTITY

0.98+

one endQUANTITY

0.98+

5,000 ish employeesQUANTITY

0.97+

hundred percentQUANTITY

0.96+

pandemicEVENT

0.96+

this weekDATE

0.96+

five different needsQUANTITY

0.96+

three thingsQUANTITY

0.95+

OneQUANTITY

0.92+

theCUBEORGANIZATION

0.92+

three biggest thingsQUANTITY

0.91+

CISOPERSON

0.9+

few years agoDATE

0.87+

RSAORGANIZATION

0.85+

COVIDOTHER

0.85+

SolarWindsORGANIZATION

0.8+

CCPAsTITLE

0.78+

GDPRsTITLE

0.77+

Roku SticksORGANIZATION

0.76+

single dayQUANTITY

0.71+

. 15,000QUANTITY

0.69+

yearsQUANTITY

0.66+

team membersQUANTITY

0.61+

CUBE ConversationEVENT

0.56+

lot of dataQUANTITY

0.53+

2022 000CCOTHER

0.53+

PCITITLE

0.52+

KalahariPERSON

0.46+

The Cube at Dell Technologies World 2022 | Dell Technologies World 2022


 

>> Announcer: TheCUBE presents Dell Technologies World brought to you by Dell. >> Welcome back to theCUBE's coverage, day one, Dell Technologies World live from Las Vegas at the Venetian. Lisa Martin here with Dave Vellante and John Furrier. Guys let's talk, first of all, first time back in person since Dell Tech World 2019. Lots going on, lots of news today. I'm going to start with you, Dave, since you're closest to me. What are some of the things that have impressed you at this first in-person event in three years? >> Well, the first thing I want to say is, so John and I, we started theCUBE in 2010, John, right? In Boston, EMC World. Now of course, Dell owns EMC, so wow. It's good to be back here. Dell's built this beautiful set. I'd say the number one thing that's surprised me was how many people were here. Airport was packed, cab lines, the line at the Palazzo, the hotel, to get in was, you know, probably an hour long. And there's, I thought there'd be maybe 5,000 people here. I would say it's closer to eight. So the hall was packed today and everybody was pumped. Michael Dell was so happy to be up on stage. He talked, I dunno if you guys saw his keynote. He basically talked, obviously how great it is to be back, but he talked about their mission, building technologies that enable that better human condition. There was a big, you know, chewy words, right? And then they got into, you know, all the cool stuff they're doing so we can get into it. But they had CVS up on stage, they had USAA on stage. A big theme was trust. Which of course, if you're Dell, you know, you want people to trust you. I guess the other thing is this is the first live event they've had since the VMware spin. >> Right. >> So in 2019 they owned VMware. VMware's no longer a part of the income statement. Dell had a ton of debt back then. Now Dell's balance sheet looks actually better than VMware's because they restructured everything. And so it's a world without VMware where now with VMware their gross margins were in the 30-plus percent range. Now they're down to 20%. So we're now asking what's next for Dell? And they stood up on stage, we can talk about it some more, but a lot of multi-cloud, a lot of cyber resilience, obviously big themes around APEX, you know, hybrid work, John. So, well let's get into that. >> What are some of the key things that you heard today? >> Well, first of all, the customers on stage are always great. Dell's Technologies, 10 years for theCUBE and their history. I saw something back here, 25 years with celebrating precision, the history of Michael Dell's journey and the current Dell Technologies with EMC folded in and a little bit of VMware DNA still in there even though they're separated out. Just has a loyal set of customers. And you roam the hallways here, you see a lot of people know Dell, love Dell. Michael Dell himself was proud to talk before the event about he's number one, Dave, in PC market share. That's been his goal to beat HP for years. (laughing) And so he's got that done. But they're transforming their business cause they have to, the data center is now cloud. Cloud is now the distributed computing. Dell has all the piece parts today. We've covered this three years ago. Now it's turned into multi-cloud, which is multi-vendor, as a service is how the consumers consume, innovate with data, that's kind of the raw material. Future of work, and obviously the partners that they have. So I think Dell is going to continue to maintain the news of being the great in the front lines as a data-center-slash-enterprise, now cloud, Edge player. So, you know, I'm impressed with their constant reinvention of the company and the news hits all the cards: Snowflake partnership, cutting edge company in the cloud, partnership with Snowflake, APEX, their product that's innovating at the Edge, this new kind of product that's going to bring it together. Unifying, all those themes, Dave, are all hitting the marks. >> Chuck Whitten up on stage, obviously he was the multicloud, you know, conversation. And I think the vision that they they're laying out and Jeff Clarke talked about it as well, is a term that John and I coined. We can't remember who coined it, John or me, "supercloud." >> Yeah. (laughing) >> And they're talking about building an abstraction layer, building on top of the clouds, connecting on-prem to the clouds, across clouds, out to the Edge, hiding the underlying complexity, Dell managing all that. That's their vision. It's aspirational today but that really is supercloud. And it's more than multi-cloud. >> You coined the term supercloud. >> Did I? >> We riffed together. I called it sub-cloud. >> Oh, that's right. And then I said, no, it's got to float over. Super! Superman flies. (John laughs) Right, that's right. >> Sub-cloud, not really a good name. Nobody wants to be sub of anything. >> I think my kid gave it to me, John, actually. (laughing) >> Well if we do know that Michael Dell watches theCUBE, he's been on theCUBE many times. He watches theCUBE, clearly he's paying attention! >> Yeah, well I hope so. I mean, we write a lot about this and we talk to a lot of customers and talk to a lot of people. But let's talk about the announcements if we can. So... The APEX cyber recovery service, you know, ransomware recovery. They're now also running that on AWS and Azure. So that's big. We heard Presidio, they was super thrilled about that. So they're... The thing I'd say about that is, you know, Dell used to be really defensive about cloud. Now I think they're leaning in. They're saying, "Hey we're not going to spend, you know, Charles Fitzgerald, the snarky guy, does some good work on CAPEX. I mean, you look at how much the cloud guys are spending on CAPEX a year, $30, $40 billion. >> They can't compete. >> On cloud CAPEX. Dell doesn't want compete. >> John: You can't compete. >> Build on top of that, so that's a gift. So that's cool. You mentioned the Snowflake announcement. I thought that was big. What that is... It's very interesting, so Frank Slootman has always said, "We're not doing a half-way house, we're in the cloud." Okay, so square that circle for me. Now Snowflake's coming on-prem. Well, yeah, what they're doing is allowing customers to keep data in a Dell object store, ECS or other object stores. But use Snowflake. So non-native Snowflake data on-prem. So that expands Snowflake cloud. What it also does is give Dell a little sizzle, a little better partner and there's a path to cloud migration if that's where the customers want to go. >> Well, I mean, I would say that that's a dangerous game because we've seen that movie before, VMware and AWS. >> Yeah but that we've talked about this. Don't you think that was the right move for VMware? >> At the time, but if you don't nurture the relationship AWS will take all those customers, ultimately, from VMware. >> But that product's still doing very well. We'll see with NetApp is another one. NetApp on AWS. I forget what they call it, but yeah, file and AWS. So that was, go ahead. >> I was just going to say, what's the impact of Snowflake? Why do you think Snowflake chose Dell? >> Because Dell's a $101 billion company and they have a huge distribution channel and a lot of common customers. >> They own storage on the premise. >> Yep. And so Snowflake's looking for, you know, storage options on which they can, you know, bring data into their cloud. Snowflake wants the data to go from on-prem into the cloud. There's no question about that. >> And I would add another thing, is that Snowflake can't do what Dell Technologies does on-premises with storage and Dell can't do what Snowflake's doing. So I think it's a mutual short-term and medium-term benefit to say, "Hey you want to run on Snowflake? You need some services there? Great, but come back and use Dell." So that to me, I think that's a win-win for Snowflake. Just the dangerous game is, whoever can develop the higher-level services in the cloud will ultimately be the winner. >> But I think the thing I would say there is, as I said, Snowflake would love for the migration to occur, but they realize it's not always going to happen. And so why not partner with a company like Dell, you know, start that pipeline. And for Dell, hey, you know, why fight fashion, as Jeremy Burton would say. The other thing was Project Alpine, which is file, block and object across cloud. That's again setting up this supercloud. And then APEX. I mean, APEX is the discussion. We had a one-on-one session, a bunch of analysts with Jeff Woodrow who runs ISG. We were supposed to be talking about ISG, all we talked about is APEX. Then we had another session with APEX and all we talked about, of course, is APEX. So, they're still figuring that out, I would say, at this point. They don't quite have product market fit and I think they'd admit that, but they're working hard on scaling engineering, trying to figure out the channel model, the compensation. You know, taking their time even, but moving fast if you know what I mean. >> I mean, Dave, I think the big trend that's jumping out of me here is that, something that we've been covering, the headless cloud, meaning if you can do as a service, which is one of Dell's major points today, that to me, everyone is a PaaS layer. I think everyone that's building digital transformation apps has to be their own SaaS. So they either do that with somebody, a man in service, which fits beautifully into that trend, or do it own. Now e-commerce has this nailed down. Shopify or build your own on top of the cloud. So headless retail's a hot trend. You're going to start to see that come into the enterprise where the enterprise can have their cake and eat it too and take advantage of managed services where they don't have expertise. So those two things right there I think is going to drive a lot of growth for Dell. >> So essentially Lisa, what Dell is doing is saying, "Okay, the timing's good with the VMware spin." They say, "Now we're going to build our own cloud as a service, APEX." And they're starting with infrastructure as a service, you know, storage as a service. Obviously cyber recovery is a service. So you're going to get compute and storage and data protection. Eventually they'll move into other areas. And it's really important for them to do that to have their own cloud, but they've got to build up the ecosystem. Snowflake is a small example. My view, they need hundreds and hundreds of Snowflakes to fill the gaps, you know, move up the stack in middleware and database and DevOps. I mean, they should be partnering with HashiCorp. They should be partnering with all these companies that do DevOps stuff. They should be... I'd like to see them, frankly, partner with competitors to their data protection group. Why, you know, sounds crazy, but if you're going to build a cloud, look at AWS. They partner with everybody, right? And so that's what a true cloud experience looks like. You've got this huge menu. And so I think Dell's going to have to try to differentiate from HP. HPE was first, right, and they're all in. Dell's saying we're going to let the customers tell us where to go. And so they, I think one differentiation is their ecosystem, their ability to build that ecosystem. Yeah, but HP's got a good distribution channel too. Just not as big as Dell's. >> They all got the assets in it, but they're transforming. So I think at the end of the day, as Dell and even HPE transforms, they got to solve the customer problems and reduce the complexity. So again, the managed services piece with APEX is huge. I think having the building blocks for multi hybrid cloud at the Edge, just, you can't go wrong with that. If the customers can deploy it and consume it. >> What were some of the messages that you heard from, you mentioned CVS on stage, USAA on stage. Dell's always been very, very customer-focused. They've got some great brands. What did you hear from that customer's voice that shows you they're going in the right direction? >> Well first of all, the customers are longstanding customers of Dell Technologies, so that's one recognition of the ongoing partnerships. But they're also messaged up with Dell's messaging, right? They're telling the Dell story. And what I heard from the Dell story was moving fast and reducing complexity is their number one goal. They see the cloud option has to be there. Cloud native, Edge came up a little bit and the role of data. So I think all the new application development today that's relevant has a data as code kind of concept. Data engineering is the hottest skillset on the planet right now. And data engineering is not data science. So you start to see top-level CSOs and CIOs saying the new modern applications have to have data embedded in. It's just too hard. It's too hard to find that engineering team. So I heard the customer saying, we love the direction, we love the managed services. And by the way, we want to have that supply chain and cyber risk reduced. So yeah, big endorsement for Dell. >> You know, the biggest transformation in Dell, the two biggest transformations. One was the financials. You know, the income statement is totaled at a $101 billion company, growing at 17% a year. That's actually quite remarkable. But the flip side of that, the other big transformation was the customer. And with the acquisition of EMC but specifically VMware, it changed the whole conversation for Dell with customers. I think pre-2015, you wouldn't have had that type of narrative up on stage with customers. Cause it was, you know, compellant and it was equal logic and it was small businesses. Now you're talking about really deep strategic relationships that were enabled by that transformation. So my point is, to answer your question, it's going to be really interesting to see what happens post-VMware because when VMware came together with Dell, the industry didn't like it. The VMware ecosystem was like (growls) Dell. Okay, but customers loved it, right? And that's one of the things I heard on stage today. They didn't say, oh, well we love the VMware. But he mentioned VMware, the CTO from USAA. So Dell configured this commercial agreement with VMware, Michael Dell's the chairman of both companies. So that was part of the incentive. The other incentive is Dell is the number one distribution channel for VMware. So I think they now have that muscle memory in place where they've earned that trust. And I think that will continue on past the spin. It was actually quite brilliant the way they've orchestrated that. >> Yeah, Lisa, one more thing I want to add to that is that what I heard also was, you got the classic "here's how you be a leader in the modern era." It's a big leadership message. But then when you heard some of the notes, software-defined, multi-cloud with an emphasis on operations, Dave. So, okay, if you're a good leader, stay with Dell in operations. So you see strategy and operations kind of coming together around cloud. But big software defined multi-cloud data operational story. And I think those customers are kind of on that. You know, you got to maintain your operations. DevOps is operations, DevSecOps is operations. So big, like, don't get too greedy on the modern, shiny new toy, you know, in the cloud. >> Yeah, it's a safe bet, right? For infrastructure. I mean, HPE is a good bet too, but I mean Dell's got a way broader portfolio, bigger supply chain. It's got the end-to-end with the desktop, laptop, you know, the client side business, you know, a bigger services organization. And now the big challenge in my mind for Dell is okay, what's next? And I think they got to get into data management, obviously build up as a service, build up their cloud. They need software in their portfolio. I mean, you know, 20% gross margin company, it just, Wall Street's not as interested. You know, if they want to build more value, which they do, they've got to get more into software and I think you're going to see that. Again, I think you're going to see more M&A. I'd love to see more organic R&D instead of stock buybacks but I get why they have to do that. >> Well one of the things I'm looking at, Dave, in terms of what I think the future impact's going to be is the generational shift with the gen-Z and millennials running IT in the modern era. Not your old school rack-and-stack data center mentality. And then ultimately the scoreboard will determine, in my mind, the winner in their race is, where are the workloads running? Right? The workloads, and then also what's the application development scene look like? What do the apps look like? What are they building on? What's scaling them, what's running them? And the Edge is going to be a big part of that. So to me, operations, Edge, workloads and the development and then the workforce shift. >> And I do think Edge, I'm glad you brought up Edge. Edge is, you know, so fragmented but I think there's going to be a massive opportunity in Edge. There's going to be so much compute at the Edge. Dell talked about it, so much data. It's unclear to me right now how they go after that other than in pockets, like we heard from Gill. I believe they're going to do really well in retail. No question there. >> Yeah. >> But there's so much other industrial aisle IT- >> The telco space of towers, Edge. >> And Dell's, you know, Dell's server business, eh okay, it's got Intel and AMD inside, okay great. Their high margins come from storage, not from compute. Not the case with AWS. AWS had 35% operating margins last quarter. Oracle and Microsoft, that's the level that they're at. And I'd love to see Dell figure out a way to get paid more for their compute expertise. And that's going to take some R&D. >> John: Yeah, yeah. >> Last question guys, as we wrap up our wrap of day one. Given everything that we've all been through the last couple of years, what is your overall summary of what Dell announced today? The vibe of the show? How well have they fared the last two years? >> Well, I mean, they had a remarkable last two years. In a large part thanks to the client business. I think today you're seeing, you know, them lift the veil on what's next. And I think their story is coherent. There's, again, financially, they're a much more sound company, much better balance sheet. Not the most attractive income statement from a margin standpoint and they got work to do there. But wow, as far as driving revenue, they know how to sell. >> Yeah, I mean to me, I think looking back to before the pandemic, when we were here on the stage last, we were talking end-to-end, Dell leadership. And I say the biggest thing is Dell's catching up fast, faster than I thought. And I think they got, they're skating to where the puck is going, Dave, and I'll tell you why. The end-to-end I thought wouldn't be a total flyer if the Edge got too dynamic, but the fact that the Edge is growing so fast, it's more complex, that's actually given Dell more time. So to me, what I see happening is Dell having that extra time to nail the Edge piece, cause if they get there, if they get there, then they'll have their core competency. And why do I say that? Cause hardware is back. Server god boxes are going to be back. You're going to see servers at the Edge. And look at the failure of Amazon's Outpost, okay? Amazon's Outpost was essentially hardware. That's Dell's business. So you talk about like compute as a cloud but they really didn't do well with deploying compute like Dell does with servers. EKS is kicking ass at the Edge. So serverless with hardware, I think, is going to be the killer solution at the Edge. A combination of cloud and Edge hardware. And the Edge looks more like a data center than the cloud looks like the data center, so- >> So you're saying hardware matters? >> HardwareMatters.com. >> I think that's what I heard. >> HardwareMatters.com, check out that site, coming soon. (all laughing) >> I think it matters more than ever, you know- >> Blockchain, silicon advances. >> I think reason hardware matters is cause it's barbelling. It's going from the box to the silicon and it's going, you know, upstream into software defined. >> Horizontally, scalability means good silicon at the Edge, under the cover, scaling all the stuff and machine learning and AI in the application. So we've said this on theCUBE now, what, five years now? >> Dave: Yeah, yep. >> Guys, we've got an action packed night tonight. Two days tomorrow and Wednesday. Michael Dell is on tomorrow. Chuck Whitten is on, Jeff Clarke, et cetera, et cetera. Caitlin Gordon is on Wednesday. >> All the heavy hitters are coming on. >> They're coming on, they're going to be... >> Dave: Allison Dew's coming on. >> Allison Dew's coming on. >> We're going to talk about the Matthew McConaughey interview, which was, I thought, fantastic. J.J. Davis is coming on. So we're going to have a great channel discussion, as well, with Cheryl Cook. >> That's right. >> A lot of the product people are coming on. We're going to be talking APEX, it's going to be good. With cyber recovery, the Storage Alchemist is coming on, John! (all laughing) >> Boy, I can't wait to see that one. >> Well stick around guys for our coverage all day tomorrow, Tuesday and Wednesday. Lisa Martin with Dave Vellante and John Furrier coming to you live from the Venetian in Las Vegas. This is Dell Technologies World 2022. We look forward to seeing you tomorrow and the next day. (bouncy, upbeat music)

Published Date : May 3 2022

SUMMARY :

brought to you by Dell. What are some of the things the hotel, to get in was, of the income statement. Cloud is now the distributed computing. And I think the vision that the underlying complexity, I called it sub-cloud. it's got to float over. Sub-cloud, not really a good name. it to me, John, actually. Well if we do know that But let's talk about the Dell doesn't want compete. You mentioned the Snowflake announcement. that that's a dangerous game the right move for VMware? At the time, but if you So that was, go ahead. and a lot of common customers. And so Snowflake's looking for, you know, So that to me, I think that's the migration to occur, I think is going to drive And so I think Dell's going to have to try So again, the managed services in the right direction? They see the cloud option has to be there. And that's one of the things in the modern era." And I think they got to And the Edge is going to but I think there's going to be Not the case with AWS. the last two years? Not the most attractive income statement And I say the biggest thing out that site, coming soon. It's going from the box to the silicon AI in the application. Michael Dell is on tomorrow. they're going to be... We're going to talk about the A lot of the product We look forward to seeing you

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Frank SlootmanPERSON

0.99+

MicrosoftORGANIZATION

0.99+

Jeremy BurtonPERSON

0.99+

Jeff WoodrowPERSON

0.99+

Jeff ClarkePERSON

0.99+

DavePERSON

0.99+

Dave VellantePERSON

0.99+

OracleORGANIZATION

0.99+

VMwareORGANIZATION

0.99+

Cheryl CookPERSON

0.99+

Michael DellPERSON

0.99+

Lisa MartinPERSON

0.99+

J.J. DavisPERSON

0.99+

JohnPERSON

0.99+

$30QUANTITY

0.99+

DellORGANIZATION

0.99+

WednesdayDATE

0.99+

Jeff ClarkePERSON

0.99+

John FurrierPERSON

0.99+

AMDORGANIZATION

0.99+

APEXORGANIZATION

0.99+

Allison DewPERSON

0.99+

EMCORGANIZATION

0.99+

AWSORGANIZATION

0.99+

LisaPERSON

0.99+

2019DATE

0.99+

20%QUANTITY

0.99+

Las VegasLOCATION

0.99+

Chuck WhittenPERSON

0.99+

AmazonORGANIZATION

0.99+

2010DATE

0.99+

BostonLOCATION

0.99+

Charles FitzgeraldPERSON

0.99+

$101 billionQUANTITY

0.99+

$40 billionQUANTITY

0.99+

SnowflakeORGANIZATION

0.99+

Two daysQUANTITY

0.99+

tomorrowDATE

0.99+

Caitlin GordonPERSON

0.99+

5,000 peopleQUANTITY

0.99+

Murli Thirumale, Portworx | AWS Summit SF 2022


 

(upbeat music) >> Okay, welcome back everyone to theCUBE's coverage of AWS Summit 2022, here at Moscone Center live on the floor, I'm John Furry host of theCUBE, all the action day two, remember AWS Summit in New York City is coming in the summer. We'll be there as well. Got a great guest Murli Murli who's the VP and GM of Cloud Native Business Unit Portworx, been in theCUBE multiple times. We were just talking about the customer he had on Ford from Detroit, where kubernetes will be this year. >> That's right. >> Great to see you. >> Yeah, same here, John. Great to see. >> So, what's the update? Quickly this, before we get into the country, give the update on what's going on in the company, what's happening? >> Well, you know, we've been acquired by Pure Storage it's well over a year. So we've had one full year of being inside of Pure. It's been wonderful, right? So we've had a great ride so far, The products have been renewed. We've got a bunch of integrations with Pure. We more than doubled our business and more than doubled our head count. So things are going great. >> I always had a, congratulations by the way. And I was going to ask about the integration but before I get there, yeah, we've been always like play some jokes on theCUBE and because serverless is so hot, I've been using storage lists and actually saw a startup yesterday had the word networking lists in their title. So this idea of like making things easier, but me, I mean serverless of this is basically servers that make it easier. >> Yeah, yeah >> So this is kind of where we see Cloud Native going. Can you share your thoughts on how Pure and Portworx are bringing this together? Because you can almost connect the dots in my mind. So say specifically what is the Cloud Native angle with Pure? >> Yeah. So look, I'll kind of start by being captain an obvious, I guess. Just sort of stating some obvious stuff and then get to what I hope will be a little bit more new and interesting. So the obvious stuff to start with is just the fact that Cloud Native is exploding. Containers are exploding. It's kind of a well known fact that 85% of the enterprise organizations around the world are pretty much going to be deploying containers, if not already in the next couple of years, right? So one it's really happening. The, buzz is now, it's not just in the future, the hype is now. The second part of that is it's really part of that is things are going production. 56% of these organizations are in production already. And that's the number is going to climb to 80 fairly quickly. So not only is this stuff being deployed as being deployed in sort of fairly mission critical, especially Greenfield applications. So that's kind of one, right? Now, the second thing that we're seeing is as they go in into production, John, the migraines are starting, right? Customer migraines, right? It's always happens in stuff that they have not looked around the corner and anticipated. So one of them is, again, a fairly obvious one is as they go into production, they need to be able to kind of recover from some oops that happens, right? And the kinds of think about this, right? John, this stuff is rapidly changing, right? Look at how many versions of kubernetes come out on a regular basis. On top of that, you got all these app, virgins, new database virgins, new stuff, vendors like us, ourselves have new virgins. So with all these new virgins, when you put it all together the stack, sometimes misbehave. So you got to kind of, "Hey, let me go recover." Right? You have outages. So essentially the whole area of data protection becomes a lot more critical. That's the migraine that people are beginning to get now, right? They can feel the migraine coming on. The good news is this is not new stuff. People know on- >> John: The DevOps. >> Yeah. Well, and in fact it is that transition from DevOps to ITOps, right? People know that they're going into production, that they need backup and data protection and disaster recovery. So in a way it's kind of good news, bad news, the good news is they know that they need it. The bad news is, it turns out that it's kind of interesting as they go Cloud Native, the technology stack has changed. So 82% of customers who are kind of deploying Cloud Native are worried about data protection. And in fact, I'll go one step further 67% of those people have actually kind of looked at what they can get from existing vendors and are going, "Hey, this is not it. This is not going to do my stuff for me." >> And by the way, just to throw a little bit more gas on that fire is ransomware attacks. So any kind of vulnerability opening? Maybe make people are scared. >> Murli: Absolutely. >> So with- >> Murli: Its a board level topic, right? >> Yeah, and then you bring down the DevOps, which is we all know the innovation formula launch in iterate, pivot, iterate, pivot, then innovation you get the formula, all your metrics, but it's a system. >> Correct. >> Storage is part now of a system when you bring Cloud Native into it, you have a consequence if something changes. >> Murli: Correct. >> So I see that. And the question I have for you is, where are we in the stability side of it? Are we close to getting there and what's coming out to help that, is it more tooling? Because the trend is people are building tools around their Cloud Native thing. I was just talking to MongoDB and they got a database, now that's all tooling. Vertically integrate into the asset or the product, because it integrates with APIs, right? So that makes total sense. >> So I think there's kind of again, a good news, bad news there, right? There's a lot of good news, right? In the world of containers and kubernetes what are some of the good news items, right? A lot of the APIs have settled down have been defined well, CNCF has done a great job promoting that, right? So the APIs are stable, right? Second, the product feature set, have become more stable, particularly sort of the the core kubernetes product security kind of stuff, right? Now what's the bad news. The bad news is, while these things are stable they are not ready for scale in every case yet, right? And when you integrate at scale, so and typically the tipping point is around 20 to 30 nodes, right? So typically when you go beyond 20 to 30 nodes then the stuff starts to come a apart, right? Like, the wheels come off of the train and all of that. And that's typically because there's a lot of the products that were designed for DevOps, are not well suited for ITOps. So really there is a new- >> And the talent culture. >> Exactly. >> Talent and culture sometimes aren't ready or are changing. >> So it's a whole bunch of people trying to use kind of a maturing product set with skill sets that are pretty low, right? So when we get into production, then other factors come into play, high availability, right? Security, you talk about ransomware, disaster recovery backup. So these are things that are sort of, I would say not 101 problems, but 201 problems, so right? This is natural as we go to that part of the thing. And that's the kind of stuff that, Portworx and Pure Storage have been kind of focused on solving. And that's kind of been how we've made our mark in the industry, right? We've helped people really get to production on some of these different points. >> Expectation on both companies have been strong, high quality, obviously performance on Pure side from day one, just did a great job with the products. Now, when you go into Cloud Native you have now this connection okay. To the customer, again I think huge point on the changing landscape. How do you see that IT to DevOps emerging? Because the trend that we're seeing is, abstracting way the complexities of management. So I won't say managed services are more of a trend, they've always been around but the notion of making it easier for customers. >> Yep, absolutely right. >> Super important. So can you guys share what you guys are doing to make it easier because not everyone has a DevOps team. >> Yeah, so look, the number one way things are made more easy, is to make it more consumable by making it as a service. So this is one of the things, here we are, at AWS Summit, right? And delighted to be here by the way. And we have a strategic alliance with with AWS, and specifically, what we're here to announce really is that we're announcing a backup as a SaaS product. Coming up in a few weeks we're going to be giing running on AWS as a service integrated with AWS. So essentially what happens is, if you have a containerized set of applications you're deploying it on EKS, ECS, AWS, what have you. We will automatically provide the ability for that to be backed up scaled and to be very, very container granular, very app specific, right? Yeah, so it's designed specifically for kubernetes. Now here's the kind of key thing to say, right? Backup's been around for a long time. You've interviewed, tons of backup people in the past. But traditional backup is just not going to work for kubernetes. And it's very simple if you think about it, John. >> John: And why is that? >> It's a very simple thing, right? Traditional backup focuses on apps and data, right? Those are the two kind of legs of that. And they create catalogs and then do a great job there. Well, here's, what's happened with Cloud Native. You have a thing inserted in the middle called kubernetes. So when you take a snapshot, I'm now kind of going into a specific kind of, world of storage, right? When you take a snapshot, what Portworx does is we take a 3D snapshot. What you really need to recover, from a backup situation where, you want to go back to the earlier stage to be kubernetes specific, you need a app snapshot, snapshot of the kubernetes spec, pod spec, And third of snapshot of the data. Well, traditional, backup folks are not taking that middle snapshot. So we do a 3D snapshot and we recover all three which is really what you need to be able to kind of like get backed up, get recovered in minutes. >> Okay and so the alternative to not doing that is what? What will happen? >> You To do that, to do your old machine level backup? So what happens with traditional backups are typically VM level or machine level, right? So you're taking a snapshot of the whole kind of machine and server or VM setup and then you recover all of that, and then you run kubernetes on that and then you try to recover it- >> John: To either stand everything up again. >> Yeah, yeah. >> John: Pretty much. >> Yeah. Whereas, what do most people want to do? This is a very different use case, by the way, right? How does this work? What people are doing for kubernetes is they're not doing archival kind of backup. What they're doing is real time, right? You're running an ops. Like I said, you got an oops, "Hey, a new release for one of the new databases then work right? Boom! I want to just go back to like yesterday, right? So how do I do that? Well, here you can just go back for that one database, one app, and recover back to that. So it's operational backup and recovery as opposed to archival backup and recovery. So for that, to be able to recover in seconds, right? You need to be, he kind of want integrated with AWS which is what we are. So it's integrated, it's automated, and it's very, very container granular. And so these three things are the things that make it sort of, very specific way. >> I love the integration story. 'Cause I think that's the big mega trend we're seeing now is is that integrating in. And, but again, it's a systems concept. It's not standalone storage, detached storage. >> Murli: Exactly. >> It's always, even though it might be decoupled a little bit it's glued together through say- >> John, you said it right. The easy button is for the system, right? Not for the individual component. Look, all of us vendors in this ecosystem are going around framing, having a being easy. But when we say that, what do we mean? We mean, oh, I'm easy to use. Well that doesn't help the user. Who's got to put all this stuff together. So it's really kind of making that stack work. >> This is easy to use, but it made these things more complex. This is what we do in the enterprise solve complexity with more complexity. >> Putting the problem to the other guy. Yeah. So it's that end to end ease of use is kind of what I would say, is the number one benefit, right? One it's container specific and designed for kubernetes. And second, it really, really is easy. >> Well, I really like the whole thing and I want to get your thoughts as we close out, what should people know about Pure and Portworx's relationship now and in the Amazon integration, what's the new narrative the north Star's still the same? High performance store, backup, securely recover and deliver the data in whatever mechanism we can. That north Star's clear, never changes, which is great. I feel love about Pure and Cloud Native. It's just taking the blockers away- >> I think the single biggest thing I would say, is all of these things, what we're turning into it is as a service offering. So if we're going to backup as a service our Portworx product now is going to be the Portworx enterprise Pure Storage product is going to be offered as a service. So with, as a service, it's easy to consume. It's easy to deploy. It's fully automated. That's the kind of the single biggest aha! Especially for the folks who are deploying on AWS today, AWS is well known for being easy to use. It's kind of fully automated. Well here, now you have this functionality for Cloud Native workloads. >> Final question, real quick, customer reaction so far, I'm assuming marketplace integration, buying terms, join selling, go to market? >> So yeah, it is integrated billing and all of that is part of that kind of offering, right? So when we say easy, it's not just about being easy to use it's about being easy to buy. It's being easy to expand all of that and scaling. Yeah. And being able to kind of automatically or automagically as I like to say, scale it, right? So all of that is absolutely part of it, right? So it is really kind of... It's not about having the basics anymore. We've been in the market now for six, seven years, so right? We have sort of an advanced offering that not only knows what customer want but anticipates what ones can expect and that's a key difference. >> I was talking to Dr. Matt Wood real quick. I know we got to wrap up on the schedule, but earlier today about AI and business analytics division's running and we were talking about serverless and the impact of serverless. And he really kind of came down the same lines where you are with the storage and the cloud data which is, "Hey, some people just want storage and the elastic leap analytics without all the under the cover stuff." Some people want to look under the covers, fine whatever choice. So really two things, so. >> Yeah, yeah. All the way from you can buy the individual components or you can buy the as a service offering, which just packages it all up in a on easy to consume kind of solution, right? >> Final, final question. What's it like at Pure everything going well, things good? >> We love it, man. I'll tell you these folks have welcomed us with open arms. And look, I've been acquired twice before. And I say this, that one of the key linchpins to a successful integration or acquisition is not just the strategic intent that always exists but really around a common culture. And, we've been blessed. I think the two companies have a strong common culture of being customer first, product excellence, and team wins every time. And these three things kind of have pulled us together. It's been a pleasure. >> One of the benefits of doing the queue for 13 years is that you get the seats things. Scott came on the queue to announce Pure Storage on theCUBE, cuz he was a nobody else. There was, oh, you're never going to get escape Velocity, EMC's going to kill, you never owned you. Nope. >> Well, we're talking about marketplaces and theCUBE is the marketplace of big announcements, John. So this is, delighted- >> Announcements. >> Yeah. Yeah. Well that was the AWS announcement. Yeah. So that's, that is big >> Final words, share the audience. What's what to expect in the next year for you guys? What's the big come news coming down? What's coming around the corner? >> I think you can expect from from Pure and Portworx the as a service set of offerings around, HADR backup, but also a brand new stuff, keep an eye out. We'll be back with John. I hope that talking about this is data services. So we have a Portworx data service product that is going to be announced. And it's magic. It's allowing people to deploy databases in a very, very, it's the easy button for database deployment. >> Congratulations on all your success. The VP and General Manager of the Cloud Native Business Unit. >> You make it sound bigger than it actually is, John. >> Thanks for coming on. Appreciate it. >> Thanks. >> Okay theCUBE coverage be back for more coverage. You're watching theCUBE here, live in Moscone on the ground at an event AWS Summit 2022. I'm John Furrier. Thanks for watching. (upbeat music)

Published Date : Apr 22 2022

SUMMARY :

is coming in the summer. So things are going great. about the integration connect the dots in my mind. So the obvious stuff to start with the good news is they And by the way, just to bring down the DevOps, when you bring Cloud Native into it, And the question I have for you is, So the APIs are stable, right? Talent and culture sometimes And that's the kind of stuff but the notion of making So can you guys share what you guys Yeah, so look, the number one way Those are the two kind of legs of that. John: To either stand So for that, to be able to I love the integration story. The easy button is for the system, right? This is easy to use, So it's that end to end ease of use and deliver the data in That's the kind of the single biggest aha! So all of that is absolutely and the impact of serverless. All the way from you can buy What's it like at Pure everything is not just the strategic intent Scott came on the queue to is the marketplace of So that's, that is big the next year for you guys? it's the easy button of the Cloud Native Business Unit. You make it sound bigger Thanks for coming on. on the ground at an event AWS Summit 2022.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
JohnPERSON

0.99+

AWSORGANIZATION

0.99+

Murli MurliPERSON

0.99+

John FurrierPERSON

0.99+

sixQUANTITY

0.99+

DetroitLOCATION

0.99+

two companiesQUANTITY

0.99+

201 problemsQUANTITY

0.99+

13 yearsQUANTITY

0.99+

John FurryPERSON

0.99+

56%QUANTITY

0.99+

85%QUANTITY

0.99+

Moscone CenterLOCATION

0.99+

MosconeLOCATION

0.99+

ScottPERSON

0.99+

Matt WoodPERSON

0.99+

101 problemsQUANTITY

0.99+

New York CityLOCATION

0.99+

67%QUANTITY

0.99+

20QUANTITY

0.99+

one appQUANTITY

0.99+

next yearDATE

0.99+

82%QUANTITY

0.99+

PortworxORGANIZATION

0.99+

Murli ThirumalePERSON

0.99+

yesterdayDATE

0.99+

AmazonORGANIZATION

0.99+

twiceQUANTITY

0.99+

second thingQUANTITY

0.99+

north StarORGANIZATION

0.99+

EMCORGANIZATION

0.99+

two thingsQUANTITY

0.99+

both companiesQUANTITY

0.99+

MurliPERSON

0.99+

SecondQUANTITY

0.99+

Pure StorageORGANIZATION

0.99+

second partQUANTITY

0.98+

80QUANTITY

0.98+

OneQUANTITY

0.98+

oneQUANTITY

0.98+

one databaseQUANTITY

0.98+

this yearDATE

0.98+

thirdQUANTITY

0.98+

CNCFORGANIZATION

0.97+

AWS Summit 2022EVENT

0.97+

one full yearQUANTITY

0.97+

Dr.PERSON

0.97+

FordORGANIZATION

0.97+

PureORGANIZATION

0.97+

three thingsQUANTITY

0.97+

firstQUANTITY

0.97+

AWS SummitEVENT

0.97+

two kindQUANTITY

0.96+

secondQUANTITY

0.96+

seven yearsQUANTITY

0.96+

Cloud NativeTITLE

0.95+

threeQUANTITY

0.95+

todayDATE

0.94+

theCUBEORGANIZATION

0.91+

Jon Sakoda, Decibel Partners | AWS Summit SF 2022


 

>>Hello. Welcome back to the cubes coverage here live in San Francisco, California. I'm John furrier, host of the cubes cube coverage of AWS summit 2022 here in San Francisco, where all the developers are the bay air at Silicon valley. And of course, eights summit in New York city is coming up in this summer. We'll be there as well. SF and NYC cube coverage. Look for us, of course, reinforcing Boston and re Mars with the whole robotics AI thing, all coming together. Lots of coverage. Stay with us. Say we've got a great guest from Deibel VC. John Skoda, founding partner, entrepreneurial venture is a venture firm. Your next act, welcome to the cube. Good to see you. >>Good to see you, Matt. I feel like it's been forever since we've been able to do something in person. Well, >>I'm glad you're here because we run into each other all the time. We've known each other for over a decade. Um, >>It's been at least 10 years, at >>Least 10 years more, and we don't wanna actually go back as freeze back the old school web 1.0 days. But anyway, we're in web three now. So we'll get to that in >>It's a little bit of a throwback to the path though, in my opinion, >>It's all the same. It's all distributed computing and software. We ran each other in Cuban. You're investing in a lot of tech startup founders. Okay. This next level, next gen entrepreneurs have a new makeup and it's software. It's hardcore tech in some cases, not hardcore tech, but using software, take old something old and make it better new, faster. So tell us about decibel. What's the firm. I know you're the founder, uh, which is cool. What's going on. Explain >>What you're doing. I mean, you remember I'm a recovering entrepreneur, right? So of course I, I, >>No, you're never recovering. You're always entrepreneur >>Always, but we are also always recovering. So I, um, sort of my was company when I was 24, if you remember before there was Facebook and friends, there was instant messaging. People were using that product at work every day, they were creating a security vulnerability between their network and the outside world. So I plugged that hole and built an instant messaging firewall. It was my first company. The company was called IM logic and we were required by Symantec. Uh, then spent 12 years investing in the next generation of software companies, uh, early investor in open source companies and cloud companies and spent a really wonderful 12 years, uh, at a firm called NEA. So I, I feel like my whole life I've been either starting enterprise software companies or helping founders start enterprise software C is, and I'll tell you, there's never been a better time than right now to start an enterprise software company. >>So, uh, the passion for starting a new firm was really a recognition that founders today that are starting an enterprise software company, they, they tend to be, as you said, a more technical founder, right? Usually it's a software engineer or builder. Uh, they are building products that are serving a slightly different market than what we've traditionally seen in enterprise software. Right? I think traditionally we've seen it buyers or CIOs that have agendas and strategies, which, you know, purchase software that is traditionally bought and sold tops down. But you know, today I think the most successful enterprise software companies are the ones that are built more bottoms up and have more technical early adopters. And generally speaking, they're free to use. They're free to try. They're very commonly community. So source or open source companies where you have a large technical cook community that's supporting them. So there's a, there's kind of a new normal now I think in great enterprise software. And it starts with great technical founders with great products and great bottoms of motions. And I think there's no better place to, uh, service those people than in the cloud and uh, in, in your community. >>Well, first of all, congratulations, and by the way, you got a great pedigree and great grow, super smart admire of your work and your, and, and your founding, but let's face it. Enterprise is hot because digital transformation is all companies there's no, I mean, consumer is enterprise now everything is what was once a niche. No, I won't say niche category, but you know, not for the faint of heart, you, you know, investors, >>You know, it's so funny that you say that enterprise is hot because you, and I feel that way now. But remember, like right now, there's also a giant tech and VC conference in Miami <laugh> and it's covering cryptocurrencies and FCS and web three. So I think beauty is definitely in the eye of the beholder <laugh> but no, I, I will tell you, >>Ts is one big enterprise, cuz you gotta have imutability you got performance issues. You have, I IOPS issues. Well, >>And, and I think all of us here that are, uh, may maybe students of history and have been involved in open source in the cloud would say that we're, you know, much of what we're doing is, uh, the predecessors of the web web three movement. And many of us I think are contributors to the web three. >>The hype is definitely one, three. You >>Yeah, but, >>But you know, for >>Sure. Yeah, no, but now you're taking us further east to Miami. So, uh, you know, look, I think, I, I think, um, what is unquestioned with the case now? And maybe it's, it's more obvious the more time you spend in this world is this is the fastest growing part of enterprise software. And if you include cloud infrastructure and caught infrastructure spend, you know, it is by many measures over, uh, 500 billion in growing, you know, 20 to 30% a year. So it it's a, it's a just incredibly fast, >>Well, let's getting, let's get into some of the cultural and the, the shifts that are happening, cuz again, you, you have the luxury of being in enterprise when it was hard, it's getting easier and more cooler. I get at it and more relevant <laugh> but there's also the hype of like the web three, for instance, but you know, for, uh, um, um, the CEO snowflake, okay. Has wrote a book and Dave Valenti and I were talking about it and uh, Frank Luman has says, there's no playbooks. We always ask the CEOs, what's your playbook. And he's like, there's no playbook, situational awareness, always Trump's playbooks. So in the enterprise playbook, oh, higher, a direct sales force and SAS kind of crushed that now SAS is being redefined, right. So what is SAS? Is snowflake a SaaS or is that a platform? So again, new unit economics are emerging, whole new situation, you got web three. So to me there's a cultural shift, the young entrepreneurs, the, uh, user experience, they look at Facebook and say, ah, you know, they own all my data. And you know, we know that that cliche, um, they, you know, the product. So as this next gen, the gen Z and the millennials come in and our customers and the founders, they're looking at things a little bit differently and the Tech's better. >>Yeah. I mean, I mean, I think we can, we can see a lot of commonalities across all successful startups and the overall adoption of technology. Uh, and, and I would tell you, this is all one big, giant revolution. I call it the user driven revolution, right? It's the rise of the user. And you might say product like growth is currently the hottest trend in enterprise software. It's actually user like growth, right. They're one and the same. So sometimes people think the product, uh, is what is driving. >>You just pull the >>Product through. Exactly, exactly. And so that's that I, that I think is really this revolution that you see and it, and it does extend into things like crypto or currencies and web three and, you know, sort of like the control that is taken back by the user. Um, but you know, many would say that, that the origins of this movement maybe started with open source where users were contributors, you know, contributors were users and looking back decades and seeing how, how it fast forward to today. I think that's really the trend that we're all writing and it's enabling these end users. These end users in our world are developers, data engineers, cybersecurity practitioners, right. They're really the users. And they're really the, the beneficiaries and the most, you know, kind of valued people in this. >>I wanna come back to the data engineers in a second, but I wanna make a comment and get your reaction to, I have a, I'm a gen Xer technically. So for not a boomer, but I have some boomer friends who are a little bit older than me who have, you know, experienced the sixties. And I've been saying on the cube for probably about eight years now that we are gonna hit a digital hippie revolution, meaning a rebellion against the sixties was rebellion against the fifties and the man and, you know, summer of love. That was a cultural differentiation from the other one other group, the predecessors. So we're kind of having that digital moment now where it's like, Hey boomers, Hey people, we're not gonna do that anymore. We hate how you organize shit. >>Right. But isn't this just technology. I mean, isn't it, isn't it like there used to be the old adage, like, you know, you would never get fired for buying IBM, but now it's like, you obviously probably would get fired if you bought IBM. And I mean, it, it it's just like the, the, I think >>During the mainframe days, those renegades were breaking into Stanford, starting the home brew club. So what I'm trying to get at is that, do you see the young cultural revolution also, culturally, just, this is my identity NFTs to me speak volumes about my, I wanna associate with NFTs, not single sign. >>Absolutely. And, and I think like, I think you're hitting on something, which is like this convergence of, of, you know, societal trends with technology trends and how that manifests in our world is yes. I think like there is unquestionably almost a religion yeah. Around the way in which a product is built. Right. And we can use open source, one example of that religion. Some people will say, look, I'll just never try a product in the cloud if it's not open source. Yeah. I think cloud, native's another example of that, right? It's either, it's, you know, it either is cloud native or it's not. And I think a lot of people will look at a product and say, look, you know, you were not designed in the cloud era. Therefore I just won't try. I you, and sometimes, um, like it or not, it's a religious decision, right? Yeah. It's some, it's something that people just believe to be true almost without, uh, necessarily caring >>About I data, data drives all decision making. Let me ask you this next question. As a VC. Now you look at pitch, well, you've been a VC for many years, but you also have the founder entrepreneurial mindset, but you can empathize with the founders. You know, hustle is a big part of the, that first founder check, right? You gotta convince someone to part with their ch their money and the first money in which you do a lot of is about believing in the person. So faking it till you make it is hard. Now you, the data's there, you either have it cloud native, you either have the adaption or traction. So honesty is a big part of that pitch. You can't think, oh, >>AB absolutely. You know, there used to be this concept of like the persona of an entrepreneur, right. And the persona of the entrepreneur would be, you know, somebody who was a great salesperson or somebody who tell a great story. And I still think that that's important, right. It still is a human need for people to believe in narratives and stories. Yeah. But having said that you're right. The proof is in the pudding, right. At some point you click download and you try the product and does it, is it gonna, it's gonna do, or it doesn't, or it either stands out to the load test or it doesn't. And so I, I feel like in this new economy that we live in really, it's a shift from maybe the storytellers and the creators to, to the builders, right. The people that know how to build great product. And in some ways the people that can build great product stand out for on the crowd. And they're the ones that can build communities around their products. And, you know, in some ways can, um, you know, kind of own more of the narrative because their products exactly >>The volume back to the user led >>Growth. Exactly. And it's the religion of, I just love your product. Right. And I, I, I, um, Doug song is the founder of Joe security used to say, Hey, like, you know, the, the really like today's world of like consumption based software, like the user is only gonna give you 90 seconds to figure out whether or not you're a company that's easy to do business with. Right. And so you can say, and do all the things that you want about how easy you are to work with. But if the product isn't easy to install, if it's not easy to try, if it's, if the, you know, it's gotta speak >>To the, to the user. But let me ask you a question for the people watching, who are maybe entrepreneurial entre entrepreneurs, um, masterclass here is in session. So I have to ask you, do you prefer, um, an entrepreneur come in and say, look at John. Here's where I'm at. Okay. First of all, storytelling's fine. Whether you're an extrovert or introvert, have your style, sell the story in a way that's authentic, but do you, what do you prefer? Just say, here's where I'm at. Look, I have an idea. Here's my traction. I think here's my MVP prototype. I need help. Or do you wanna just see more stats? What's the, what's the preferred way that you like to see entrepreneurs come in and engage? >>There's tons of different styles, man. I think the single most important thing that every founder should know is that we, we don't invest in what things are today. We invest in what we think something will become. Right. And I think that's why we all get up in the morning and try to build something different, right? It's that we see the world a different way. We want it to be a different way, and we wanna work every single moment of the day to try to make bad vision of reality. So I think the more that you can show people where you want to be, the more likely somebody is gonna align with your vision and, and want to invest in you wanna be along for the ride. So I, I wholeheartedly believe in showing off what you got today, because eventually we all get down to like, where are we and what are we gonna do together? But, um, no, I, you gotta show the path. I think the single most important thing for any founder and VC relationship is that they have the same vision. Uh, if you have the same vision, you can, you can get through bumps in the road, you can get through short term spills. You can all sorts of things in the middle. The journey can happen. Yeah. But it doesn't matter as much. If you share the long term vision, >>Don't flake out and, and be fashionable with the, the latest trends. Cause it's over before you even get >>There. Exactly. I think many people that, that do what we do for a living will say, you know, ultimately the future is relatively easy to predict, but it's the timing that's impossible to predict. So you, you know, you sort of have to balance the, you know, we, we, we know that the world is going this way and therefore we're gonna invest a lot of money to try to make this a reality. Uh, but sometimes it happens in six months. Sometimes it takes six years. Sometimes it takes 16 years. Uh, >>What's the hottest thing in enterprise that you see the biggest wave that people should pay attention to that you're looking at right now with Desel partners, Tebel dot your site. What's the big wave. What's your big >>Wave. There, there's three big trends that we invest in. And they're the, they're the only things we do day in, day out. One is the explosion and open source software. So I think many people think that all software is unquestionably moving to an open source model in some form or another yeah. Tons of reasons to debate whether or not that is gonna happen on AMWA timeline >>Happening forever. >>But, uh, it is, it is accelerating faster than we've ever seen. So I, I think it's, it's one big, massive wave that we continue to ride. Um, second is the rise of data engineering. Uh, I think data engineering is in and of itself now a category of software. It's not just that we store data. It's now we move data and we develop applications. And, uh, I think data is in and of itself as big of a market as any of the other markets that we invest in. Uh, and finally, it's the gift that keeps on giving. I've spent my entire career in it. We still feel that security is a market that is underinvested. It is, it continues to be the place where people need to continue to invest and spend more, more. Yeah. Uh, and those are the three major trends that we >>Run and security, you think we all need a dessert do over, right? I mean, do we need a do over in security or is what's the core problem? I, >>I, I keep using this word underinvested because I think it's the right way to think about the problem. I think if you, I think people generally speaking, look at cybersecurity as an add-on. Yeah. But if you think about it, the whole economy is moving online. And so in, in some ways like security is core to protecting the digital economy. And so it's, it shouldn't be an afterthought, right? It should be core to what everyone is doing. And that's why I think relat to the trillions of dollars that are at stake, uh, I believe the market size for cybersecurity is around 150 billion and it still is a fraction of what >>We're, what we're national security even boom is booming now. So you get the convergence of national security, geopolitics, internet digital that's >>Right. You mean arguably, right. Arguably again, it's the area of the world that people should be spending more time and more money given what to stake. >>I love your thesis. I gotta outta say, I gotta love your firm. Love what you're doing. We're big supporters of your mission. Congratulations on your entrepreneurial venture. And, uh, we'll be, we'll be talking we'll maybe see a Coon. Uh, absolutely certainly EU maybe even north Americans in Detroit this year. >>Huge fan of what you guys are doing here. Thank you so much for helping me on the >>Show. Guess a bell V see Johnson here on the cube. Check him out. Founder for founders here on the cube, more coverage from San Francisco, California. After this short break, stay with us.

Published Date : Apr 21 2022

SUMMARY :

host of the cubes cube coverage of AWS summit 2022 here in San Francisco, Good to see you, Matt. I'm glad you're here because we run into each other all the time. So we'll get to that in It's all the same. I mean, you remember I'm a recovering entrepreneur, right? No, you're never recovering. if you remember before there was Facebook and friends, there was instant messaging. that have agendas and strategies, which, you know, purchase software that is traditionally bought and sold tops Well, first of all, congratulations, and by the way, you got a great pedigree and great grow, super smart admire of your work You know, it's so funny that you say that enterprise is hot because you, and I feel that way now. Ts is one big enterprise, cuz you gotta have imutability you got performance issues. of history and have been involved in open source in the cloud would say that we're, you know, much of what we're doing is, The hype is definitely one, three. the more time you spend in this world is this is the fastest growing part of I get at it and more relevant <laugh> but there's also the hype of like the web three, for instance, but you know, And you might say product like growth is the beneficiaries and the most, you know, kind of valued people in this. you know, experienced the sixties. like, you know, you would never get fired for buying IBM, but now it's like, you obviously probably would So what I'm trying to get at is that, do you see the young cultural revolution of, you know, societal trends with technology trends and how that manifests in our world is yes. You gotta convince someone to part with their ch their money and the first money in which you do a lot of is And the persona of the entrepreneur would be, you know, somebody who was a great salesperson or somebody who tell a great story. of Joe security used to say, Hey, like, you know, the, the really like today's world of like consumption But let me ask you a question for the people watching, who are maybe entrepreneurial entre entrepreneurs, So I think the more that you can show Cause it's over before you even get I think many people that, that do what we do for a living will say, you know, What's the hottest thing in enterprise that you see the biggest wave that people should pay attention to that you're looking at right So I think many people think that all software is unquestionably moving to an Uh, and finally, it's the gift that keeps on giving. But if you think about it, the whole economy is moving online. So you get the convergence of national security, Arguably again, it's the area of the world that people should I gotta outta say, I gotta love your firm. Huge fan of what you guys are doing here. Founder for founders here on the cube,

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
DavePERSON

0.99+

DavidPERSON

0.99+

StefaniePERSON

0.99+

Dave ValentiPERSON

0.99+

AmazonORGANIZATION

0.99+

Dave VellantePERSON

0.99+

Frank LumanPERSON

0.99+

MicrosoftORGANIZATION

0.99+

JoePERSON

0.99+

JohnPERSON

0.99+

AndyPERSON

0.99+

Andy JassyPERSON

0.99+

Deutsche BankORGANIZATION

0.99+

ExxonORGANIZATION

0.99+

Dave VolantePERSON

0.99+

WernerPERSON

0.99+

AWSORGANIZATION

0.99+

SymantecORGANIZATION

0.99+

Joe FitzgeraldPERSON

0.99+

Ashesh BadaniPERSON

0.99+

2013DATE

0.99+

Sanjay PoonenPERSON

0.99+

ItalyLOCATION

0.99+

JessiePERSON

0.99+

ExxonMobilORGANIZATION

0.99+

Jon SakodaPERSON

0.99+

NvidiaORGANIZATION

0.99+

EuropeLOCATION

0.99+

Stefanie ChirasPERSON

0.99+

IBMORGANIZATION

0.99+

AsheshPERSON

0.99+

JessePERSON

0.99+

Adrian CockcroftPERSON

0.99+

LALOCATION

0.99+

Red HatORGANIZATION

0.99+

JohnsonPERSON

0.99+

Dave allantePERSON

0.99+

MiamiLOCATION

0.99+

CIAORGANIZATION

0.99+

AWS Summit San Francisco 2022


 

More bottoms up and have more technical early adopters. And generally speaking, they're free to use. They're free to try. They're very commonly community source or open source companies where you have a large technical community that's supporting them. So there's a, there's kind of a new normal now I think in great enterprise software and it starts with great technical founders with great products and great bottoms of emotions. And I think there's no better place to, uh, service those people than in the cloud and uh, in, in your community. >>Well, first of all, congratulations, and by the way, you got a great pedigree and great background, super smart, but Myer of your work and your, and, and your founding, but let's face it. Enterprise is hot because digital transformation is all companies there's no, I mean, consumer is enterprise now, everything is what was once a niche. No, I won't say niche category, but you know, not for the faint of heart, you know, investors, >>You know, it's so funny that you say that enterprise is hot because you, and I feel that way now. <laugh> but remember, like right now there's also a tech and VC conference in Miami <laugh> and it's covering cryptocurrencies and FCS and web three. So I think beauty is definitely in the eye of the beholder <laugh> but no, I, I will tell you, >>Ts is one big enterprise, cuz you gotta have imutability you got performance issues. You have, I IOPS issues. >>Well, and, and I think all of us here that are, uh, may maybe students of history and have been involved in open source in the cloud would say that we're, you know, much of what we're doing is, uh, the predecessors of the web web three movement. And many of us I think are contributors to the web three >>Movement. The hype is definitely one web three. Yeah. >>But, >>But you know, >>For sure. Yeah, no, but now you're taking us further east of Miami. So, uh, you know, look, I think, I, I think, um, what is unquestioned with the case now? And maybe it's, it's more obvious the more time you spend in this world is this is the fastest growing part of enterprise software. And if you include cloud infrastructure and cloud infrastructure spend, you know, it is by many measures over, uh, $500 billion in growing, you know, 20 to 30% a year. So it it's a, it's a just incredibly fast, well, >>Let's get, let's get into some of the cultural and the, the shifts that are happening, cuz again, you, you have the luxury of being in enterprise when it was hard, it's getting easier and more cooler. I get it and more relevant <laugh> but there's also the hype of like the web three, for instance, but you know, for, uh, um, um, the CEO snowflake, okay. Has wrote a book and Dave Valenti and I were talking about it and uh, Frank Luman has says, there's no playbooks. We always ask the CEOs, what's your playbook. And he's like, there's no playbook, situational awareness, always Trump's playbooks. So in the enterprise playbook, oh, higher, a direct sales force and SAS kind of crushed that now SAS is being redefined, right. So what is SAS is snowflake assassin or is that a platform? So again, new unit economics are emerging, whole new situation, you got web three. So to me there's a cultural shift, the young entrepreneurs, the, uh, user experience, they look at Facebook and say, ah, you know, they own all my data and you know, we know that that cliche, um, they, you know, the product. So as this next gen, the gen Z and the millennials come in and our customers and the founders, they're looking at things a little bit differently and the tech better. >>Yeah. I mean, I mean, I think we can, we can see a lot of common across all successful startups and the overall adoption of technology. Um, and, and I would tell you, this is all one big giant revolution. I call it the user driven revolution. Right. It's the rise of the user. Yeah. And you might say product like growth is currently the hottest trend in enterprise software. It's actually like growth, right. They're one and the same. So sometimes people think the product, uh, is what is driving growth. >>You just pull the product >>Through. Exactly, exactly. And so that's that I, that I think is really this revolution that you see, and, and it does extend into things like cryptocurrencies and web three and, you know, sort of like the control that is taken back by the user. Um, but you know, many would say that, that the origins of this, but maybe started with open source where users were contributors, you know, contributors were users and looking back decades and seeing how it, how it fast forward to today. I think that's really the trend that we're all writing. It's enabling these end users. And these end users in our world are developers, data engineers, cybersecurity practitioners, right. They're really the, and they're really the, the beneficiaries and the most, you know, kind of valued people in >>This. I wanna come back to the data engineers in a second, but I wanna make a comment and get your reaction to, I have a, I'm a gen Xer technically. So for not a boomer, but I have some boomer friends who are a little bit older than me who have, you know, experienced the sixties. And I have what been saying on the cube for probably about eight years now that we are gonna hit digital hippie revolution, meaning a rebellion against in the sixties was rebellion against the fifties and the man and, you know, summer of love. That was a cultural differentiation from the other one other group, the predecessors. So we're kind of having that digital moment now where it's like, Hey boomers, Hey people, we're not gonna do that anymore. You, we hate how you organize shit. >>Right. But isn't this just technology. I mean, isn't it, isn't it like there used to be the old adage, like, you know, you would never get fired for buying IBM, but now it's like, you obviously probably would get fired if you bought IBM. And I mean, it's just like the, the, I think, I think >>During the mainframe days, those renegades were breaking into Stanford, starting the home group. So what I'm trying to get at is that, do you see the young cultural revolution also, culturally, just, this is my identity NFTs to me speak volumes about my, I wanna associate with NFTs, not single sign on. Well, >>Absolutely. And, and I think like, I think you're hitting on something, which is like this convergence of, of, you know, societal it'll trends with technology trends and how that manifests in our world is yes. I think like there is unquestionably almost a religion yeah. Around the way in which a product is built. Right. And we can use open source, one example of that religion. Some people will say, look, I'll just never try a product in the cloud if it's not open source. Yeah. I think cloud, native's another example of that, right? It's either it's, you know, it either is cloud native or it's not. And I think a lot of people will look at a product and say, look, you know, you were not designed in the cloud era. Therefore I just won't try you. And sometimes, um, like it or not, it's a religious decision, right? Yeah. It's so it's something that people just believe to be true almost without, uh, necessarily caring >>About data. Data drives all decision making. Let me ask you this next question. As a VC. Now you look at pitch, well, you've been a VC for many years, but you also have the founder entrepreneurial mindset, but you can get empathize with the founders. You know, hustle is a big part of the, that first founder check, right? You gotta convince someone to part with their ch their money and the first money in which you do a lot of it's about believing in the person. So faking it till you make it is hard. Now you, the data's there, you either have it cloud native, you either have the adaption or traction. So honesty is a big part of that pitch. You can't fake it. >>Oh, AB absolutely. You know, there used to be this concept of like the persona of an entrepreneur. Right. And the persona of the entrepreneur would be, you know, so somebody who was a great salesperson or somebody who tell a great story, and I still think that that's important, right. It still is a human need for people to believe in narratives and stories. Yeah. But having said that you're right. The proof is in the pudding, right. At some point you click download and you try the product and it does what it says it gonna it's gonna do, or it doesn't, or it either stands up to the load test or it doesn't. And so I, I feel like in the new economy that we live in, really, it's a shift from maybe the storytellers and the creators to, to the builders, right. The people that know how to build great product. And in some ways the people that can build great product yeah. Stand out from the crowd. And they're the ones that can build communities around their products. And, you know, in some ways can, um, you know, kind of own more of the narrative of because their product begins exactly >>The volume you back to the user led growth. >>Exactly. And it's the religion of, I just love your product. Right. And I, I, I, um, Doug song is the founder of du security used to say, Hey, like, you know, the, the really like in today's world of like consumption based software, like the user is only gonna give you 90 seconds to figure out whether or not you're a company that's easy to do business with. Right. And so you can say, and do all the things that you want about how easy you are to work with. But if the product isn't easy to install, if it's not easy to try, if it's not, if, if the it's gotta speak to the, >>Speak to the user, but let me ask a question now that for the people watching, who are maybe entrepreneurial entre, preneurs, um, masterclass here in session. So I have to ask you, do you prefer, um, an entrepreneur come in and say, look at John. Here's where I'm at. Okay. First of all, storytelling's fine with you an extrovert or introvert, have your style, sell the story in a way that's authentic, but do you, what do you prefer to say? Here's where I'm at? Look, I have an idea. Here's my traction. I think here's my MVP prototype. I need help. Or do, do you wanna just see more stats? What's the, what's the preferred way that you like to see entrepreneurs come in and engage? >>There's tons of different styles, man. I think the single most important thing that every founder should know is that we, we don't invest in what things are today. We invest in what we think something will become. Right. And I think that's why we all get up in the morning and try to build something different, right? It's that we see the world a different way. We want it to be a different way. And we wanna work every single moment of the day to try to make that vision a reality. So I think the more that you can show people where you want to be the, of more likely somebody is gonna align with your vision and, and wanna invest in you and wanna be along for the ride. So I, I wholeheartedly believe in showing off what you got today, because eventually we all get down to like, where are we and what are we gonna do together? But, um, no, I, you gotta >>Show the >>Path. I think the single most important thing for any founder and VC relationship is that they have the same vision. Uh, if you have the same vision, you can, you can get through bumps in the road, you can get through short term spills. You can all sorts of things in the middle. The journey can happen. Yeah. But it doesn't matter as much if you share the same long term vision, >>Don't flake out and, and be fashionable with the latest trends because it's over before you can get there. >>Exactly. I think many people that, that do what we do for a living, we'll say, you know, ultimately the future is relatively easy to predict, but it's the timing that's impossible to predict. <laugh> so you, you know, you sort of have to balance the, you know, we, we know that the world is going in this way and therefore we're gonna invest a lot of money to try to make this a reality. Uh, but some times it happens in six months. Sometimes it takes six years. Sometimes it takes 16 years. Uh, >>What's the hottest thing in enterprise that you see the biggest wave that people should pay attention to that you're looking at right now with Bel partners, Tebel dot your site. What's the big wave. What's your big >>Wave. There's three big trends that we invest in. And the they're the only things we do day in, day out one is the explosion and open source software. So I think many people think that all software is unquestionably moving to an open source model in some form or another yeah. Tons of reasons to debate whether or not that is gonna happen, an alwa timeline >>Happening forever. >>But, uh, it is, it is accelerating faster than we've ever seen. So I, I think it's, it's one big, massive wave that we continue to ride. Um, second is the rise of data engineering. Uh, I think data engineering is in and of itself now, a category of software. It's not just that we store data. It's now we move data and we develop applications on data. And, uh, I think data is in and of itself as big of a market as any of the other markets that we invest in. Uh, and finally, it's the gift that keeps on giving. I've spent my entire career in it. We still feel that security is a market that is underinvested. It is, it continues to be the place where people need to continue to invest and spend more money. Yeah. Uh, and those are the three major trends that we run >>And security, you think we all need a dessert do over, right? I mean, do we need you do over in security or is what's the core problem? I, >>I, I keep using this word underinvested because I think it's the right way to think about the problem. I think if you, I think people generally speaking, look at cybersecurity as an add-on. Yeah. But if you think about it, the whole economy is moving online. And so in, in some ways like security is core to protecting the digital economy. And so it's, it shouldn't be an afterthought, right? It should be core to what everyone is doing. And that's why I think relative to the trillions of dollars that are at stake, uh, I believe the market size for cybersecurity is run $150 billion. And it still is a fraction of what we're, >>What we're and national security even boom is booming now. So you get the convergence of national security, geopolitics, internet digital that's >>Right. You mean arguably, right? I mean, arguably again, it's the area of the world that people should be spending more time and more money given what to stake. >>I love your thesis. I gotta, I gotta say, you gotta love your firm. Love. You're doing we're big supporters, your mission. Congratulations on your entrepreneurial venture. And, uh, we'll be, we'll be talking and maybe see a Cuban. Uh, absolutely not. Certainly EU maybe even north Americans in Detroit this year. >>Huge fan of what you guys are doing here. Thank you so much for helping me on the show. >>Guess be VC Johnson here on the cube. Check him out. Founder for founders here on the cube, more coverage from San Francisco, California. After this short break, stay with us. Everyone. Welcome to the cue here. Live in San Francisco. K warn you for AWS summit 2022 we're live we're back with events. Also we're virtual. We got hybrid all kinds of events. This year, of course, summit in New York city is happening this summer. We'll be there with the cube as well. I'm John. Again, John host of the cube. Got a great guest here, Justin Kobe owner, and CEO of innovative solutions. Their booth is right behind us. Justin, welcome to the cube. >>Thank you. Thank you for having me. >>So we're just chatting, uh, uh, off camera about some of the work you're doing. You're the owner of and CEO. Yeah. Of innovative. Yeah. So tell us the story. What do you guys do? What's the elevator pitch. >>Yeah. <laugh> so the elevator pitch is we are, uh, a hundred percent focused on small to mid-size businesses that are moving to the cloud, or have already moved to the cloud and really trying to understand how to best control security, compliance, all the good stuff that comes along with it. Um, exclusively focused on AWS and, um, you know, about 110 people, uh, based in Rochester, New York, that's where our headquarters is, but now we have offices down in Austin, Texas, up in Toronto, uh, Canada, as well as Chicago. Um, and obviously in New York, uh, you know, the business was never like this, uh, five years ago, um, founded in 1989, made the decision in 2018 to pivot and go all in on the cloud. And, uh, I've been a part of the company for about 18 years, bought the company about five years ago. And it's been a great ride. >>It's interesting. The manages services are interesting with cloud cause a lot of the heavy liftings done by a of us. So we had Matt on your team on earlier talking about some of the edge stuff. Yeah. But you guys are a managed cloud service. You got cloud advisory, you know, the classic service that's needed, but the demands coming from cloud migrations and application modernization, but obviously data is a huge part of it. Huge. How is this factoring into what you guys do and your growth cuz you guys are the number one partner on the SMB side for edge. Yeah. For AWS, you got results coming in. Where's the, where's the forcing function. What's the pressure point. What's the demand like? >>Yeah. It's a great question. Every CEO I talk to, that's a small mids to size business. They're all trying to understand how to leverage technology better to help either drive a revenue target for their own business, uh, help with customer service as so much has gone remote now. And we're all having problems or troubles or issues trying to hire talent. And um, you know, tech is really at the, at the forefront and the center of that. So most customers are coming to us and they're of like, listen, we gotta move to the cloud or we move some things to the cloud and we want to do that better. And um, there's this big misnomer that when you move to the cloud, you gotta automatically modernize. Yeah. And what we try to help as many customers understand as possible is lifting and shifting, moving the stuff that you maybe currently have OnPrem and a data center to the cloud first is a first step. And then so, uh, progressively working through a modernization strategy is always the better approach. And so we spend a lot of time with small to mid-size businesses who don't have the technology talent on staff to be able to do >>That. Yeah. And they want to get set up. But the, the dynamic of like latency is huge. We're seeing that edge product is a big part of it. This is not a one-off happening around everywhere. It is not it's manufacturing, it's the physical plant or location >>Literally. >>And so, and you're seeing more IOT devices. What's that like right now from a challenge and problem statement standpoint, are the customers, not staff, is the it staff kind of old school? Is it new skills? What's the core problem. And you guys solve >>In the SMB space. The core issue nine outta 10 times is people get enamored with the latest and greatest. And the reality is not everything that's cloud based. Not all cloud services are the latest and greatest. Some things have been around for quite some time and our hardened solutions. And so, um, what we try to do with, to technology staff that has traditional on-prem, uh, let's just say skill sets and they're trying to move to a cloud-based workload is we try to help those customers through education and through some practical, let's just call it use case. Um, whether that's a proof of concept that we're doing or whether that's, we're gonna migrate a small workload over, we try to give them the confidence to be able to not, not necessarily go it alone, but, but to, to, to have the, uh, the Gusto and to really have the, um, the, the opportunity to, to do that in a wise way. Um, and what I find is that most CEOs that I talk to yeah. Feel like, listen, at the end of the day, I'm gonna be spending money in one place or another, whether that's on primer in the cloud, I just want know that I'm doing that way. That helps me grow as quickly as possible status quo. I think every, every business owner knows that COVID taught us anything that status quo is, uh, is, is no. No. Good. >>How about factoring in the, the agility and speed equation? Does that come up a lot? It >>Does. I think, um, I think there's also this idea that if, uh, if we do a deep dive analysis and we really take a surgical approach to things, um, we're gonna be better off. And the reality is the faster you move with anything cloud based, the better you are. And so there's this assumption that we gotta get it right the first time. Yeah. In the cloud, if you start down your journey in one way and you realize midway that it's not the right, let's just say the right place to go. It's not like buying a piece of iron that you put in the closet and now you own it in the cloud. You can turn those services on and off. It's a, gives you a much higher density for making decisions and failing >>Forward. Well actually shutting down the abandoning, the projects that early, not worrying about it, you got it mean most people don't abandon stuff cuz they're like, oh, I own it. >>Exactly. >>And they get, they get used to it. Like, and then they wait too long. >>That's exactly. >>Yeah. Frog and boiling water, as we used to say, oh, it's a great analogy. So I mean, this, this is a dynamic. That's interesting. I wanna get more thoughts on it because like I'm a, if I'm a CEO of a company, like, okay, I gotta make my number. Yeah. I gotta keep my people motivated. Yeah. And I gotta move faster. So this is where you guys come in. I get the whole thing. And by the way, great service, um, professional services in the cloud right now are so hot because so hot, you can build it and then have option optionality. You got path decisions, you got new services to take advantage of. It's almost too much for customers. It is. I mean, everyone I talked to at reinvent, that's a customer. Well, how many announcements did Andy jazzy announcer Adam? You know, the 5,000 announcement or whatever. They did huge amounts. Right. Keeping track of it all. Oh, is huge. So what's the, what's the, um, the mission of, of your company. How does, how do you talk to that alignment? Yeah. Not just processes. I can get that like values as companies, cuz they're betting on you and your people. >>They are, they are >>Values. >>Our mission is, is very simple. We want to help every small to midsize business leverage the power of the cloud. Here's the reality. We believe wholeheartedly. This is our vision that every company is going to become a technology company. So we go to market with this idea that every customer's trying to leverage the power of the cloud in some way, shape or form, whether they know it or don't know it. And number two, they're gonna become a 10 a company in the process of that because everything is so tech-centric. And so when you talk about speed and agility, when you talk about the, the endless options and the endless permutations of solutions that a customer can buy in the cloud, how are you gonna ask a team of one or two people in your it department to make all those decisions going it alone or trying to learn it as you go, it only gets you so far working with a partner. >>I'll just give you some perspective. We work with about a thousand small to midsize business customers. More than 50% of those customers are on our managed services. Meaning they know that we have their back and we're the safety net. So when a customer is saying, right, I'm gonna spend a couple thousand and dollars a month in the cloud. They know that that bill, isn't gonna jump to $10,000 a month going in alone. Who's there to help protect that. Number two, if you have a security posture and let's just say your high profile and you're gonna potentially be more vulnerable to security attacks. If you have a partner that's offering you some managed services. Now you, again, you've got that backstop and you've got those services and tooling. We, we offer, um, seven different products, uh, that are part of our managed services that give the customer the tooling, that for them to go out and buy on their own for a customer to go out today and go buy a new Relic solution on their own. It, it would cost 'em a four, >>The training alone would be insane. A risk factor. I mean the cost. Yes, absolutely opportunity cost is huge, >>Huge, absolutely enormous training and development. Something. I think that is often, you know, it's often overlooked technologists. Typically they want to get their skills up. They, they love to get the, the stickers and the badges and the pins, um, at innovative in 2018. When, uh, when we, he made the decision to go all in on the club, I said to the organization, you know, we have this idea that we're gonna pivot and be aligned with AWS in such a way that it's gonna really require us all to get certified. My executive assistant at the time looks at me. She said, even me, I said, yeah, even you, why can't you get certified? Yeah. And so we made, uh, a conscious, it wasn't requirement. It still isn't today to make sure everybody in the company has the opportunity to become certified. Even the people that are answering the phones at the front >>Desk and she could be running the Kubernetes clusters. I >>Love it. It's >>Amazing. >>But I'll tell you what, when that customer calls and they have a real Kubernetes issue, she'll be able to assist and get >>The right people with. And that's a cultural factor that you guys have. So, so again, this is back to my whole point out SMBs and businesses in general, small and large it staffs are turning over the gen Z and millennials are in the workforce. They were provisioning top of rack switches. Right. First of all. And so if you're a business, there's also the, I call the buildout, um, uh, return factor, ROI piece. At what point in time as an owner, SMB, do I get to ROI? Yeah. I gotta hire a person to manage it. That person's gonna have five zillion job offers. Yep. Uh, maybe who knows? Right. I got cyber security issues. Where am I gonna find a cyber person? Yeah. A data compliance. I need a data scientist and a compliance person. Right. Maybe one in the same. Right. Good luck. Trying to find a data scientist. Who's also a compliance person. Yep. And the list goes on. I can just continue. Absolutely. I need an SRE to manage the, the, uh, the sock report and we can pen test. Right. >>Right. >>These are, these are >>Like critical issues. >>This is just like, these are the table stakes. >>Yeah. And, and every, every business owner's thinking about this, >>That's, that's what, at least a million in loading, if not three or more Just to get that app going. Yeah. Then it's like, where's the app. Yeah. So there's no cloud migration. There's no modernization on the app side. No. And they remind AI and ML. >>That's right. That's right. So to try to go it alone, to me, it's hard. It it's incredibly difficult. And the other thing is, is there's not a lot of partners, so the partner, >>No one's raising their hand boss. I'll do all that exactly. In the it department. >>Exactly. >>So like, can we just call up, uh, you know, our old vendor that's >>Right. <laugh> right. Our old vendor. I like it, >>But that's so true. I mean, when I think about how, if I was a business owner starting a business today and I had to build my team, um, and the amount of investment that it would take to get those people skilled up and then the risk factor of those people now having the skills and being so much more in demand and being recruited away, that's a real, that's a real issue. And so how you build your culture around that is, is very important. It's something that we talk about every, with every one of our small to mid-size >>Businesses. So just, I want get, I want to get your story as CEO. Okay. Take us through your journey. You said you bought the company and your progression to, to being the owner and CEO of innovative yeah. Award winning guys doing great. Uh, great bet on a good call. Yeah. Things are good. Tell your story. What's your journey? >>It's real simple. I was, uh, I was a sophomore at the Rochester Institute of technology in 2003. And, uh, I knew that I, I was going to school for it and I, I knew I wanted to be in tech. I didn't know what I wanted to do, but I knew I didn't wanna code or configure routers and switches. So I had this great opportunity with the local it company that was doing managed services. We didn't call it at that time innovative solutions to come in and, uh, jump on the phone and dial for dollars. I was gonna cold call and introduced other, uh, small to midsize businesses locally in Rochester, New York go to Western New York, um, who innovative was now. We were 19 people at the time. Yeah. I came in, I did an internship for six months and I loved it. I learned more in those six months than I probably did in my first couple of years at, uh, at RT long story short. >>Um, for about seven years, I worked, uh, to really help develop, uh, sales process and methodology for the business so that we could grow and scale. And we grew to about 30 people. And, um, I went to the owners at the time in 2000 and I was like, Hey, I'm growing the value of this business. And who knows where you guys are gonna be another five years? What do you think about making me an owner? And they were like, listen, you got long ways before you're gonna be an owner. But if you stick it out in your patient, we'll, um, we'll work through a succession plan with you. And I said, okay, there were four other individuals at the time that were gonna also buy the business with me. >>And they were the owners, no outside capital, >>None zero, well, 2014 comes around. And, uh, the other folks that were gonna buy into the business with me that were also working at innovative for different reasons. They all decided that it wasn't for them. One started a family. The other didn't wanna put capital in. Didn't wanna write a check. Um, the other had a real big problem with having to write a check. If we couldn't make payroll, I'm like, well, that's kind of like, if we're own, we're gonna have to like cover that stuff. <laugh> so >>It's called the pucker factor. >>Exactly. So, uh, I sat down with the CEO in early 2015 and, uh, we made the decision that I was gonna buy the three partners out, um, go through an earn out process, uh, coupled with, uh, an interesting financial strategy that wouldn't strap the BI cuz they cared very much. The company still had the opportunity to keep going. So in 2016 I bought the business, um, became the sole owner. And, and at that point we, um, we really focused hard on what do we want this company to be? We had built this company to this point. Yeah. And, uh, and by 2018 we knew that pivoting all going all in on the cloud was important for us. And we haven't looked back. >>And at that time, the proof points were coming clearer and clearer 2012 through 15 was the early adopters, the builders, the startups and early enterprises. Yes. The capital ones of the world. Exactly the, uh, and those kinds of big enterprises. The GA I don't wanna say gamblers, but ones that were very savvy. The innovators, the FinTech folks. Yep. The hardcore glass eating enterprises >>Agreed, agreed to find a small to midsize business to migrate completely to the cloud is as infrastructure was considered, that just didn't happen as often. Um, what we were seeing where the, a lot of our small to midsize business customers, they wanted to leverage cloud based backup, or they wanted to leverage a cloud for disaster recovery because it lent itself. Well, early days, our most common cloud customer though, was the customer that wanted to move messaging and collaboration. The, the Microsoft suite to the cloud. And a lot of 'em dipped their toe in the water. But by 2017 we knew infrastructure was around the corner. Yeah. And so, uh, we only had two customers on AWS at the time. Um, and we, uh, we, we made the decision to go all in >>Justin. Great to have you on the cube. Thank you. Let's wrap up. Uh, tell me the hottest product that you have. Is it migrations? Is the app modernization? Is it data? What's the hot product and then put a plugin for the company. Awesome. >>So, uh, there's no question. Every customer is looking migrate workloads and try to figure out how to modernize for the future. We have very interesting, sophisticated yet elegant funding solutions to help customers with the cash flow, uh, constraints that come along with those migrations. So any SMB that's thinking about migrating into the cloud, they should be talking innovative solutions. We know how to do it in a way that allows those customer is not to be cash strapped and gives them an opportunity to move forward in a controlled, contained way so they can modernize. So >>Like insurance, basically for them not insurance class in the classic sense, but you help them out on the, on the cash exposure. >>Absolutely. We are known for that and we're known for being creative with those customers and being empathetic to where they are in their journey. >>And that's the cloud upside is all about doubling down on the variable win that's right. Seeing the value and ING down on it. Absolutely not praying for it. Yeah. <laugh> all right, Justin. Thanks for coming on. You really appreciate >>It. Thank you very much for having me. >>Okay. This is the cube coverage here live in San Francisco, California for AWS summit, 2022. I'm John for your host. Thanks for watching. We're back with more great coverage for two days after this short break >>Live on the floor in San Francisco for Aus summit. I'm John for host of the cube here for the next two days, getting all the actual back in person we're at AWS reinvent a few months ago. Now we're back events are coming back and we're happy to be here with the cube. Bring all the action. Also virtual. We have a hybrid cube, check out the cube.net, Silicon angle.com for all the coverage. After the event. We've got a great guest ticking off here. Matthew Park, director of solutions, architecture with innovation solutions. The booth is right here. Matthew, welcome to the cube. >>Thank you very much. I'm glad to be here. >>So we're back in person. You're from Tennessee. We were chatting before you came on camera. Um, it's great to be back through events. It's >>Amazing. This is the first, uh, summit I've been to, to in what two, three >>Years. That's awesome. We'll be at the, uh, a AWS summit in New York as well. A lot of developers and the big story this year is as developers look at cloud going distributed computing, you got on premises, you got public cloud, you got the edge. Essentially the cloud operations is running everything devs sec ops, everyone kind of sees that you got containers, you got Benet, he's got cloud native. So the, the game is pretty much laid out. Mm-hmm <affirmative> and the edge is with the actions you guys are number one, premier partner at SMB for edge. >>That's >>Right. Tell us about what you guys doing at innovative and, uh, what you do. >>That's right. Uh, so I'm the director of solutions architecture. Uh, me and my team are responsible for building out the solutions. The at our around, especially the edge public cloud for us edge is anything outside of an AWS availability zone. Uh, we are deploying that in countries that don't have AWS infrastructure in region. They don't have it. Uh, give >>An example, >>Uh, example would be Panama. We have a customer there that, uh, needs to deploy some financial tech data and compute is legally required to be in Panama, but they love AWS and they want to deploy AWS services in region. Uh, so they've taken E EKS anywhere. We've put storage gateway and, uh, snowball, uh, in region inside the country and they're running or FinTech on top of AWS services inside Panama. >>You know, what's interesting, Matthew is that we've been covering Aw since 2013 with the cube about their events. And we watched the progression and jazzy was, uh, was in charge and became the CEO. Now Adam slaps in charge, but the edge has always been that thing they've been trying to avoid. I don't wanna say trying to avoid, of course, Amazon would listens to the customer. They work backwards from the customer. We all know that. Uh, but the real issue was they were they're bread and butters EC two and S three. And then now they got tons of services and the cloud is obviously successful and seeing that, but the edge brings up a whole nother level. >>It does >>Computing. >>It >>Does. That's not centralized in the public cloud now they got regions. So what is the issue with the edge what's driving? The behavior. Outpost came out as a reaction to competitive threats and also customer momentum around OT, uh, operational technologies. And it merging. We see with the data at the edge, you got five GM having. So it's pretty obvious, but there was a slow transition. What was the driver for the edge? What's the driver now for edge action for AWS >>Data in is the driver for the edge. Data has gravity, right? And it's pulling compute back to where the customer's generating that data and that's happening over and over again. You said it best outpost was a reaction to a competitive situation. Whereas today we have over 15 AWS edge services and those are all reactions to things that customers need inside their data centers on location or in the field like with media companies. >>Outpost is interesting. We always use the riff on the cube, uh, cause it's basically Amazon in a box, pushed in the data center, running native, all this stuff, but now cloud native operations are kind of becoming standard. You're starting to see some standard. Deepak syncs group is doing some amazing work with opensource Raul's team on the AI side, obviously, uh, you got SW who's giving the keynote tomorrow. You got the big AI machine learning big part of that edge. Now you can say, okay, outpost, is it relevant today? In other words, did outpost do its job? Cause EKS anywhere seems to be getting a lot of momentum. You see local zones, the regions are kicking ass for Amazon. This edge piece is evolving. What's your take on EKS anywhere versus say outpost? >>Yeah, I think outpost did its job. It made customers that were looking at outpost really consider, do I wanna invest in this hardware? Do I, do I wanna have, um, this outpost in my datas center, do I want to manage this over the long term? A lot of those customers just transitioned to the public cloud. They went into AWS proper. Some of those customers stayed on prem because they did have use cases that were, uh, not a good fit for outpost. They weren't a good fit. Uh, in the customer's mind for the public AWS cloud inside an availability zone now happening is as AWS is pushing these services out and saying, we're gonna meet you where you are with 5g. We're gonna meet you where you are with wavelength. We're gonna meet you where you are with EKS anywhere. Uh, I think it has really reduced the amount of times that we have conversations about outposts and it's really increased. We can deploy fast. We don't have to spin up outpost hardware can go deploy EKS anywhere in your VMware environment. And it's increasing the speed of adoption >>For sure. Right? So you guys are making a lot of good business decisions around managed cloud service. That's right. Innovative. Does that get the cloud advisory, the classic professional services for the specific edge piece and, and doing that outside of the availability zones and regions for AWS, um, customers in these new areas that you're helping out are they want cloud, like they want to have modernization a modern applications. Obviously they got data machine learning and AI, all part of that. What's the main product or, or, or gap that you're filling for AWS, uh, outside of their availability zones or their regions that you guys are delivering. What's the key is that they don't have a footprint. Is it that it's not big enough for them? What's the real gap. What's why, why are you so successful? >>So what customers want when they look towards the cloud is they want to focus on what's making them money as a business. They wanna focus on their applications. They wanna focus on their customers. So they look towards AWS cloud and a AWS. You take the infrastructure, you take, uh, some of the higher layers and we'll focus on our revenue generating business, but there's a gap there between infrastructure and revenue generating business that innovative slides into, uh, we help manage the AWS environment. Uh, we help build out these things in local data centers for 32 plus year old company. We have traditional on-premises people that know about deploying hardware that know about deploying VMware to host EKS anywhere. But we also have most of our company totally focused on the AWS cloud. So we're that gap in helping deploy these AWS services, manage them over the long term. So our customers can go to just primarily and totally focusing on their revenue generating business. So >>Basically you guys are basically building AWS edges, >>Correct? >>For correct companies, correct? Mainly because the, the needs are there, you got data, you got certain products, whether it's, you know, low latency type requirements, right. And then they still work with the regions, right. It's all tied together, right. Is that how it >>Works? Right. And, and our customers, even the ones in the edge, they also want us to build out the AWS environment inside the availability zone, because we're always gonna have a failback scenario. If we're gonna deploy fin in the Caribbean, we're gonna talk about hurricanes. And we're gonna talk about failing back into the AWS availability zones. So innovative is filling that gap across the board, whether it be inside the AWS cloud or on the AWS edge. >>All right. So I gotta ask you on the, since you're at the edge in these areas, I won't say underserved, but developing areas where now have data and you have applications that are tapping into that, that requirement. It makes total sense. We're seeing that across the board. So it's not like it's a, it's an outlier it's actually growing. Yeah. There's also the crypto angle. You got the blockchain. Are you seeing any traction at the edge with blockchain? Because a lot of people are looking at the web three in these areas like Panama, you mentioned FinTech. And in, in the islands there a lot of, lot of, lot of web three happening. What's your, what your view on the web three world right now, relative >>To we, we have some customers actually deploying crypto, especially, um, especially in the Caribbean. I keep bringing the Caribbean up, but it's, it's top of my mind right now we have customers that are deploying crypto. A lot of, uh, countries are choosing crypto to underlie parts of their central banks. Yeah. Um, so it's, it's up and coming. Uh, I, I have some, you know, personal views that, that crypto is still searching for a use case. Yeah. And, uh, I think it's searching a lot and, and we're there to help customers search for that use case. Uh, but, but crypto, as a, as a, uh, technology, um, lives really well on the AWS edge. Yeah. Uh, and, and we're having more and more people talk to us about that. Yeah. And ask for assistance in the infrastructure, because they're developing new cryptocurrencies every day. Yeah. It's not like they're deploying Ethereum or anything specific. They're actually developing new currencies and, and putting them out there on >>It's interesting. I mean, first of all, we've been doing crypto for many, many years. We have our own little, um, you know, project going on. But if you look talk to all the crypto people that say, look, we do a smart contract, we use the blockchain. It's kind of over a lot of overhead and it's not really their technical already, but it's a cultural shift, but there's underserved use cases around use of money, but they're all using the blockchain just for like smart contracts, for instance, or certain transactions. And they go to Amazon for the database. Yeah. <laugh> they all don't tell anyone we're using a centralized service. Well, what happened to decentralized? >>Yeah. And that's, and that's the conversation performance issue. Yeah. And, and it's a cost issue. Yeah. And it's a development issue. Um, so I think more and more as, as some of these, uh, currencies maybe come up, some of the smart contracts get into, uh, they find their use cases. I think we'll start talking about how does that really live on, on AWS and, and what does it look like to build decentralized applications, but with AWS hardware and services. >>Right. So take me through, uh, a use case of a customer Matthew around the edge. Okay. So I'm a customer, pretend I'm a customer, Hey, you know, I'm, we're in an underserved area. I want to modernize my business. And I got my developers that are totally peaked up on cloud, but we've identified that it's just a lot of overhead latency issues. I need to have a local edge and serve my a, I also want all the benefit of the cloud. So I want the modern, and I wanna migrate to the cloud for all those cloud benefits and the goodness of the cloud. What's the answer. >>Yeah. Uh, big thing is, uh, industrial manufacturing, right? That's, that's one of the best use cases, uh, inside industrial manufacturing, we can pull in many of the AWS edge services we can bring in, uh, private 5g, uh, so that all the, uh, equipment that, that manufacturing plant can be hooked up, they don't have to pay huge overheads to deploy 5g it's, uh, better than wifi for the industrial space. Um, when we take computing down to that industrial area, uh, because we wanna do pre-procesing on the data. Yeah. We want to gather some analytics. We deploy that with a regular commercially available hardware running VMware, and we deploy EKS anywhere on that. Inside of that manufacturing plant, we can do pre-procesing on things coming out of the robotics, depending on what we're manufacturing. Right. And then we can take those refined analytics and for very low cost with maybe a little bit longer latency transmit those back, um, to the AWS availability zone, the, the standard >>For data, data lake, or whatever, >>To the data lake. Yeah. Data lake house, whatever it might be. Um, and we can do additional data science on that once it gets to the AWS cloud. Uh, but a lot of that, uh, just in time business decisions, just time manufacturing decisions can all take place on an AWS service or services inside that manufacturing plant. And that's, that's one of the best use cases that we're >>Seeing. And I think, I mean, we've been seeing this on the queue for many, many years, moving data around is very expensive. Yeah. But also compute going to the data that saves that cost yeah. On the data transfer also on the benefits of the latency. So I have to ask you, by the way, that's standard best practice now for the folks watching don't move the data unless you have to. Um, but those new things are developing. So I wanna ask you what new patterns are you seeing emerging once this new architecture's in place? Love that idea, localize everything right at the edge, manufacturing, industrial, whatever, the use case, retail, whatever it is. Right. But now what does that change in the, in the core cloud? There's a, there's a system element here. Yeah. What's the new pattern. There's >>Actually an organizational element as well, because once you have to start making the decision, do I put this compute at the point of use or do I put this compute in the cloud? Uh, now you start thinking about where business decisions should be taking place. Uh, so not only are you changing your architecture, you're actually changing your organization because you're thinking, you're thinking about a dichotomy you didn't have before. Uh, so now you say, okay, this can take place here. Uh, and maybe, maybe this decision can wait. Right. And then how do I visualize that? By >>The way, it could be a bot tube doing the work for management. Yeah. <laugh> exactly. You got observability going, right. But you gotta change the database architecture on the back. So there's new things developing. You've got more benefit. There >>Are, there are, and we have more and more people that, that want to talk less about databases and want to talk about data lakes because of this. They want to talk more about customers are starting to talk about throwing away data. Uh, you know, for the past maybe decade. Yeah. It's been store everything. And one day we will have a data science team that we hire in our organization to do analytics on this decade of data. And well, >>I mean, that's, that's a great point. We don't have time to drill into, maybe we do another session this, but the one pattern we're seeing come of the past year is that throwing away data's bad. Even data lakes that so-called turn into data swamps, actually, it's not the case. You look at data, brick, snowflake, and other successes out there. And even time series data, which may seem irrelevant efforts over actually matters when people start retrain their machine learning algorithms. Yep. So as data becomes co as we call it in our last showcase, we did a whole whole an event on this. The data's good in real time and in the lake. Yeah. Because the iteration of the data feeds the machine learning training. Things are getting better with the old data. So it's not throw away. It's not just business benefits. Yeah. There's all kinds of new scale. There >>Are. And, and we have, uh, many customers that are running petabyte level. Um, they're, they're essentially data factories on, on, on premises, right? They're, they're creating so much data and they're starting to say, okay, we could analyze this, uh, in the cloud, we could transition it. We could move petabytes of data to AWS cloud, or we can run, uh, computational workloads on premises. We can really do some analytics on this data transition, uh, those high level and sort of raw analytics back to AWS run 'em through machine learning. Um, and we don't have to transition 10, 12 petabytes of data into AWS. >>So I gotta end the segment on a, on a, kind of a, um, fun, I was told to ask you about your personal background on premise architect, Aus cloud, and skydiving instructor. How does that all work together? What tell, what does this mean? >>Yeah. Uh, I, >>You jumped out a plane and got a job. You got a customer to jump >>Out kind of. So I was, you jumped out. I was teaching Scott eing, uh, before I, before I started in the cloud space, this was 13, 14 years ago. I was a, I still am a Scott I instructor. Uh, I was teaching Scott eing and I heard out of the corner of my ear, uh, a guy that owned an MSP that was lamenting about, um, you know, storing data and how his customers are working. And he can't find enough people to operate all these workloads. So I walked over and said, Hey, this is, this is what I went to school for. Like, I'd love to, you know, I was living in a tent in the woods, teaching skydiving. I was like, I'd love to not live in a tent in the woods. So, uh, I started in the first day there, we had a, and, uh, EC two had just come out <laugh> um, and, uh, like, >>This is amazing. >>Yeah. And so we had this discussion, we should start moving customers here. And, uh, and that totally revolutionized that business, um, that, that led to, uh, that that guy actually still owns a skydiving airport. But, um, but through all of that, and through being in on premises, migrated me and myself, my career into the cloud, and now it feels like, uh, almost, almost looking back and saying, now let's take what we learned in the cloud and, and apply those lessons and those services to premises. >>So it's such a great story. You know, I was gonna, you know, you know, the, the, the, the whole, you know, growth mindset pack your own parachute, you know, uh, exactly. You know, the cloud in the early days was pretty much will the shoot open. Yeah. It was pretty much, you had to roll your own cloud at that time. And so, you know, you, you jump on a plane, you gotta make sure that parachute is gonna open. >>And so was Kubernetes by the way, 2015 or so when, uh, when that was coming out, it was, I mean, it was, it was still, and I, maybe it does still feel like that to some people, right. Yeah. But, uh, it was, it was the same kind of feeling that we had in the early days of AWS, the same feeling we have when we >>It's much now with you guys, it's more like a tandem jump. Yeah. You know, but, but it's a lot of, lot of this cutting stuff like jumping out of an airplane. Yeah. You guys, the right equipment, you gotta do the right things. Exactly. >>Right. >>Matthew, thanks for coming on the cube. Really appreciate it. Absolutely great conversation. Thanks for having me. Okay. The cubes here, lot in San Francisco for AWS summit, I'm John for your host of the cube. Uh, we'll be at a summit in New York coming up in the summer as well. Look up for that. Look at this calendar for all the cube, actually@thecube.net. We'll right back with our next segment after this break. >>Okay. Welcome back everyone to San Francisco live coverage here, we're at the cube, a summit 2022. We're back in person. I'm John furry host of the cube. We'll be at the, a us summit in New York city this summer, check us out then. But right now, two days in San Francisco getting all coverage, what's going on in the cloud, we got a cube alumni and friend of the cube, my dos car CEO, investor, a Sierra, and also an investor and a bunch of startups, angel investor. Gonna do great to see you. Thanks for coming on the cube. Good to see you. Good to see you, Pam. Cool. How are you? Good. >>How are you? >>So congratulations on all your investments. Uh, you've made a lot of great successes, uh, over the past couple years, uh, and your company raising, uh, some good cash as Sarah so give us the update. How much cash have you guys raised? What's the status of the company product what's going on? First >>Of all, thank you for having me. We're back to be business with you never while after. Great to see you. Um, so is a company started around four years back. I invested with a few of the investors and now I'm the CEO there. Um, we have raised close to a hundred million there. Uh, the investors are people like nor west Menlo, true ventures, coast, lo ventures, Ram Shera, and all those people, all known guys that Antibe chime Paul Mayard web. So a whole bunch of operating people and, uh, Silicon valley vs are involved. >>And has it gone? >>It's going well. We are doing really well. We are going almost 300% year over year. Uh, for last three years, the space ISR is going after is what I call the applying AI for customer service. It operations, it help desk the same place I used to work at ServiceNow. We are partners with ServiceNow to take, how can we argument for employees and customers, Salesforce, and ServiceNow to take it to the next stage? Well, >>I love having you on the cube, Dave and I, and Dave Valenti as well loves having you on too, because you not only bring the entrepreneurial CEO experience, you're an investor. You're like a, you're like a guest analyst. <laugh>, >>You know, >>You >>Get, the comment is fun to talk to you though. >>You get the commentary, you, your, your finger on the pulse. Um, so I gotta ask you obviously, AI and machine learning, machine learning AI, or you want to phrase it. Isn't every application. Now, AI first, uh, you're seeing a lot of that going on. You're starting to see companies build the modern applications at the top of the stack. So the cloud scale has hit. We're seeing cloud out scale. You predicted that we talked about in the cube many times. Now you have that past layer with a lot more services and cloud native becoming a standard layer. Containerizations growing Docker just raised a hundred million on our $2 billion valuation back from the dead after they pivoted from an enterprise services. So open source developers are booming. Um, where's the action. I mean, is there data control, plane emerging, AI needs data. There's a lot of challenges around this. There's a lot of discussions and a lot of companies being funded observability there's 10 million observability companies. Data is the key. This is what's your angle on this. What's your take. Yeah, >>No, look, I think I'll give you the view that I see, right? I, from my side, obviously data is very clear. So the things that room system of record that you and me talked about, the next layer is called system of intelligence. That's where the AI will play. Like we talk cloud native, it'll be called AI. NA NA is a new buzzword and using the AI for customer service, it operations. You talk about observability. I call it AI ops, applying AOPs for good old it operation management, cloud management. So you'll see the AOPs applied for whole list of, uh, application from observability doing the CMDB, predicting the events insurance. So I see a lot of work clicking for AIOps and AI service desk. What needs to be helped desk with ServiceNow BMC <inaudible> you see a new ALA emerging as a system of intelligence. Uh, the next would be is applying AI with workflow automation. So that's where you'll see a lot of things called customer workflows, employee workflows. So think of what UI path automation, anywhere ServiceNow are doing, that area will be driven with AI workflows. So you'll see AI going >>Off is RPA a company is AI, is RPA a feature of something bigger? Or can someone have a company on RPA UI S one will be at their event this summer? Um, or is it a product company? I mean, I mean, RPA is almost, should be embedded in everything. >>It's a feature. It is very good point. Very, very good thinking. So one is, it's a category for sure. Like, as we thought, it's a category, it's an area where RPA may change the name. I call it much more about automation, workflow automation, but RPA and automation is a category. Um, it's a company also, but that automation should be a, in every area. Yeah. Like we call cloud NA and AI NATO it'll become automation. NA yeah. And that's your thinking. >>It's almost interesting me. I think about the, what you're talking about what's coming to mind is I'm kind having flashbacks to the old software model of middleware. Remember at middleware, it was very easy to understand it was middleware. It sat between two things and then the middle and it was software was action. Now you have all kinds of workflows abstractions everywhere. Right? So multiple databases, it's not a monolithic thing. Right? Right. So as you break that down, is this the new modern middleware? Because what you're talking about is data workflows, but they might be siloed or they integrated. I mean, these are the challenges. This is crazy. What's the, >>So don't about the databases become all polyglot databases. I call this one polyglot automation. So you need automation as a layer, as a category, but you also need to put automation in every area, like, as you were talking about, it should be part of ServiceNow. It should be part of ISRA, like every company, every Salesforce. So that's why you see MuleSoft and Salesforce buying RPA companies. So you'll see all the SaaS companies could cloud companies having an automation as a core. So it's like how you have a database and compute and sales and networking. You'll also will have an automation as a layer <inaudible> inside every stack. >>All right. So I wanna shift gears a little bit and get your perspective on what's going on behind us. You can see, uh, behind us, you got the expo hall. You got, um, we're back to vents, but you got, you know, am Clume Ove, uh, Dynatrace data dog, innovative all the companies out here that we know, we interview them all. They're trying to be suppliers to this growing enterprise market. Right. Okay. But now you also got the entrepreneurial equation. Okay. We're gonna have John Sado on from Deibel later today. He's a former NEA guy and we always talk to Jerry, Jen, we know all the, the VCs. What does the startups look like? What does the state of the, in your mind, cause you, I know you invest the entrepreneurial founder situation. Cloud's bigger. Mm-hmm <affirmative> global, right? Data's part of it. You mentioned data's. Yes. Basically. Data's everything. What's it like for a first an entrepreneur right now who's starting a company. What's the white space. What's the attack plan. How do they get in the market? How do they engineer everything? >>Very good. So I'll give it to, uh, two things that I'm seeing out there. Remember leaders, how Amazon created the startups 15 years back, everybody built on Amazon now, Azure and GCP. The next layer would be is people don't just build on Amazon. They're gonna build it on top of snowflake. Companies are snowflake becomes a data platform, right? People will build on snowflake. Right? So I see my old boss flagman try to build companies on snowflake. So you don't build it just on Amazon. You build it on Amazon and snowflake. Snowflake will become your data store. Snowflake will become your data layer. Right? So I think that's the next level of <inaudible> trying to do that. So if I'm doing observability AI ops, if I'm doing next level of Splunk SIM, I'm gonna build it on snowflake, on Salesforce, on Amazon, on Azure, et cetera. >>It's interesting. You know, Jerry Chan has it put out a thesis of a couple months ago called castles in the cloud where your Mo is what you do in the cloud. Not necessarily in, in the, in the IP. Um, Dave LAN and I had last reinvent, coined the term super cloud, right? He's got a lot of traction and a lot of people throwing, throwing mud at us, but we were, our thesis was, is that what Snowflake's doing? What Goldman S Sachs is doing. You starting to see these clouds on top of clouds. So Amazon's got this huge CapEx advantage, and guys, Charles Fitzgerald out there who we like was kind of shitting on us saying, Hey, you guys terrible, they didn't get it. Like, yeah, I don't think he gets it, but that's a whole, can't wait to debate him publicly on this. <laugh> cause he's cool. Um, but snowflake is on Amazon. Now. They say they're on Azure now. Cause they've got a bigger market and they're public, but ultimately without a AWS snowflake doesn't exist. And, and they're reimagining the data warehouse with the cloud, right? That's the billion dollar opportunity. It >>Is. It is. They both are very tight. So imagine what Frank has done at snowflake and Amazon. So if I'm a startup today, I want to build everything on Amazon where possible whatever is, I cannot build. I'll make the pass layer. Remember the middle layer pass will be snowflake so I can build it on snowflake. I can use them for data layer if I really need to size build it on force.com Salesforce. Yeah. Right. So I think that's where you'll see. So >>Basically the, if you're an entrepreneur, the, the north star in terms of the, the outcome is be a super cloud. >>It is, >>That's the application on another big CapEx ride, the CapEx of AWS or cloud, >>And that reduce your product development, your go to market and you get use the snowflake marketplace to drive your engagement. Yeah. >>Yeah. How are, how is Amazon and the clouds dealing with these big whales, the snowflakes of the world? I mean, I know they got a great relationship, uh, but snowflake now has to run a company they're public. Yeah. So, I mean, I'll say, I think they had Redshift. Amazon has got Redshift. Um, but Snowflake's a big customer in the, they're probably paying AWS, I think big bills too. So >>Joe on very good. Cause it's like how Netflix is and Amazon prime, right. Netflix runs on Amazon, but Amazon has Amazon prime that co-optation will be there. So Amazon will have Redshift, but Amazon is also partnering with, uh, snowflake to have native snowflake data warehouses or data layer. So I think depending on the application use case, you have to use each of the above. I think snowflake is here for a long term. Yeah. Yeah. So if I'm building an application, I want to use snowflake then writing from stats. >>Well, I think that it comes back down to entrepreneurial hustle. Do you have a better product? Right. Product value will ultimately determine it as long as the cloud doesn't, you know, foreclose, your, you that's right with some sort of internal hack. Uh, but I think, I think the general question that I have is that I, I think it's okay to have a super cloud like that because the rising tide is still happening at some point, when does the rising tide stop and do the people shopping up their knives, it gets more competitive or is it just an infinite growth? So >>I think it's growth. You call it cloud scale, you invented the word cloud scale. So I think look, cloud will continually agree, increase. I think there's as long as there more movement from on, uh, OnPrem to the classical data center, I think there's no reason at this point, the rumor, the old lift and shift that's happening in like my business. I see people lift and shifting from the it operations. It helpless, even the customer service service now and, uh, ticket data from BMCs CAS like Microfocus, all those workloads are shifted to the cloud, right? So cloud ticketing system is happening. Cloud system of record is happening. So I think this train has still a long way to go >>Made. I wanna get your thoughts for the folks watching that are, uh, enterprise buyers are practitioners, not suppliers to the more market, feel free to text me or DMing. The next question's really about the buying side, which is if I'm a customer, what's the current, um, appetite for startup products, cuz you know, the big enterprises now and you know, small, medium, large and large enterprise are all buying new companies cuz a startup can go from zero to relevant very quickly. So that means now enterprises are engaging heavily with startups. What's it like what's is there a change in order of magnitude of the relationship between the startup selling to, or growing startup selling to an enterprise? Um, have you seen changes there? I mean I'm seeing some stuff, but why don't get your thoughts on that? What, >>No, it is. If I growing by or 2007 or eight, when I used to talk to you back then and Amazon started very small, right? We are an Amazon summit here. So I think enterprises on the average used to spend nothing with startups. It's almost like 0% or 1% today. Most companies are already spending 20, 30% with startups. Like if I look at a CIO or line of business, it's gone. Yeah. Can it go more? I think it can in the next four, five years. Yeah. Spending on the startups. >>Yeah. And check out, uh, AWS startups.com. That's a site that we built for the startup community for buyers and startups. And I want to get your reaction because I reference the URL cause it's like, there's like a bunch of companies we've been promoting because the solutions that startups have actually are new stuff. Yes. It's bending, it's shifting for security or using data differently or um, building tools and platforms for data engineering. Right. Which is a new persona that's emerging. So you know, a lot of good resources there. Um, and goes back now to the data question. Now, getting back to your, what you're working on now is what's your thoughts around this new, um, data engineering persona, you mentioned AIOps, we've been seeing AIOps IOPS booming and that's creating a new developer paradigm that's right. Which we call coin data as code data as code is like infrastructure is code, but it's for data, right? It's developing with data, right? Retraining machine learnings, going back to the data lake, getting data to make, to do analysis, to make the machine learning better post event or post action. So this, this data engineers like an SRE for data, it's a new, scalable role we're seeing. Do you see the same thing? Do you agree? Um, do you disagree or can you share >>Yourself a lot of first is I see the AIOP solutions in the future should be not looking back. I need to be like we are in San Francisco bay. That means earthquake prediction. Right? I want AOPs to predict when the outages are gonna happen. When there's a performance issue. I don't think most AOPs vendors have not gone there yet. Like I spend a lot of time with data dog, Cisco app Dyna, right? Dynatrace, all this solution. We will go future towards predict to proactive solution with AOPs. But what you bring up a very good point on the data side. I think like we have a Amazon marketplace and Amazon for startup, there should be data exchange where you want to create for AOPs and AI service desk. Customers are give the data, share the data because we thought the data algorithms are useless. I can them, but I gotta train them, modify them, tweak them, make them >>Better, >>Make them better. Yeah. And I think their whole data exchange is the industry has not thought through something you and me talk many times. Yeah. Yeah. I think the whole, that area is very important. >>You've always been on, um, on the Vanguard of data because, uh, it's been really fun. Yeah. >>Going back to big data days back in 2009, you know, >>Look at, look how much data Rick has grown. >>It is. They doubled the >>Key cloud air kinda went private. So good stuff, man. What are you working on right now? Give a, give a, um, plug for what you're working on. You'll still investing. >>I do still invest, but look, I'm a hundred percent on ISRA right now. I'm the CEO there. Yeah. Okay. So right. ISRA is my number one baby right now. So I'm looking at that growing customers and my customers are some of them, you like it's zoom auto desk McAfee, uh, grand to so all the top customers, um, mainly for it help desk customer service. AIOps those are three product lines and going after enterprise and commercial deals. >>And when should someone buy your product? What's what's their need? What category is it? >>I think they look whenever somebody needs to buy the product is if you need AOP solution to predict, keep your lights on predict is one area. If you want to improve employee experience, you are using a slack teams and you want to automate all your workflows. That's another value problem. Third is customer service. You don't want to hire more people to do it. Some of the areas where you want to scale your company, grow your company, eliminate the cost customer service. >>Great stuff, man. Great to see you. Thanks for coming on. Congratulations on the success of your company and your investments. Thanks for coming on the cube. Okay. I'm John fur here at the cube live in San Francisco for day one of two days of coverage of Aish summit 2022. And we're gonna be at Aus summit in San, uh, in New York in the summer. So look for that on this calendar, of course go to eight of us, startups.com. I mentioned that it's decipher all the hot startups and of course the cube.net and Silicon angle.com. Thanks for watching. We'll be back more coverage after this short break. >>Okay. Welcome back everyone. This the cubes coverage here in San Francisco, California, a Davis summit, 2022, the beginning of the event season, as it comes back, little bit smaller footprint, a lot of hybrid events going on, but this is actually a physical event, a summit in new York's coming in the summer. We'll be there too with the cube on the set. We're getting back in the groove psych to be back. We were at reinvent, uh, as well, and we'll see more and more cube, but you're can see a lot of virtual cube outta hybrid cube. We wanna get all those conversations, try to get more interviews, more flow going. But right now I'm excited to have Corey Quinn here on the back on the cube chief cloud economists with bill group. He's the founder, uh, and chief content person always got great angles, fun comedy, authoritative Corey. Great to see you. Thank >>You. Thanks. Coming on. Sure is a lot of words to describe is shit posting, which is how I describe what I tend to do. Most days, >>Shit posting is an art form now. And if you look at mark, Andrew's been doing a lot of shit posting lately. All a billionaires are shit hosting, but they don't know how to do it. Like they're not >>Doing it right? So there's something opportunity there. It's like here's how to be even more obnoxious and incisive. It's honestly the most terrifying scenario for anyone is if I have that kind of budget to throw at my endeavors, it's like, I get excited with a nonsense I can do with a $20 gift card for an AWS credit compared to, oh well, if I could buy a midsize island, do begin doing this from, oh, then we're having fun. >>This shit posting trend. Interesting. I was watching a thread go on about, saw someone didn't get a job because of their shit posting and the employer didn't get it. And then someone on this side I'll hire the guy cuz I get that's highly intelligent shit posting. So for the audience that doesn't know what shit posting is, what is shit posting? >>It's more or less talking about the world of enter prize technology, which even that sentence is hard to finish without falling asleep and toppling out of my chair in front of everyone on the livestream. But it's doing it in such a way that brings it to life that says the quiet part. A lot of the audience is thinking, but generally doesn't say either because they're polite or not a jackass or more prosaically are worried about getting fired for better or worse. I don't don't have that particular constraint, >>Which is why people love you. So let's talk about what you, what you think is, uh, worthy and not worthy in the industry right now, obviously, uh, coupons coming up in Spain, which they're having a physical event, you see the growth of cloud native Amazon's of all the Adams, especially new CEO. Andy's move on to be the chief of all Amazon. Just so I'm the cover of was it time met magazine? Um, he's under a lot of stress. Amazon's changed. Invoice has changed. What's working. What's not, what's rising, what's falling. What's hot. What's not, >>It's easy to sit here and criticize almost anything. These folks do. They're they're effectively in a fishbowl, but I have trouble imagining the logistics. It takes to wind up handling the catering for a relatively downscale event like this one this year, let alone running a 1.7 million employee company having to balance all the competing challenges and pressures and the rest. I, I just can't fathom what it would be like to look at all of AWS. And it's, it's sprawling immense that dominates our entire industry and say, okay, this is a good start, but I, I wanna focus on something with a broader remit. What is that? How do you even get into that position? And you can't win once you're there. All you can do is hold onto the tiger and hope you don't get mold. >>Well, there's a lot of force for good conversations. Seeing a lot of that going on, Amazon's trying to port eight of us is trying to portray themselves as you know, the Pathfinder, you know, you're the pioneer, um, force for good. And I get that and I think that's a good angle as cloud goes mainstream. There's still the question of, we had a guy on just earlier, who was a skydiving instructor and we were joking about the early days of cloud. Like that was like skydiving, build a parachute open, you know, and now same kind of thing. As you move to edge, things are like reliable in some areas, but still new, new fringe, new areas. That's crazy. Well, >>Since the last time we've spoken, uh, Steve Schmidt is now the CISO for all of Amazon and his backfill replacement. The AWS CISO is CJ. Moses who as a hobby races, a as a semi-pro race car driver to my understanding, which either, I don't know what direction to take that in either. This is what he does to relax or ultimately, or ultimately it's. Huh? That, that certainly says something about risk assessment. I'm not entirely sure what, but okay. <laugh> either way, sounds like more exciting. Like I better >>Have a replacement ready <laugh> I, in case something goes wrong on the track, highly >>Available >>CSOs. I gotta say one of the things I do like in the recent trend is that the tech companies are getting into the formula one, which I was never a fan of until I watched that Netflix series. But when you look at the formula one, it's pretty cool. Cause it's got some tech angles, I get the whole data instrumentation thing, but the most coolest thing about formula one is they have these new rigs out. Yeah. Where you can actually race in east sports with other people in pure simulation of the race car. You gotta get the latest and videographic card, but it's basically a tricked out PC with amazing monitors and you have all the equipment of F1 and you're basically simulating racing. >>Oh, it's great too. And I can see the appeal of these tech companies getting into it because these things are basically rocket shifts. When those cars go, like they're sitting there, we can instrument every last part of what is going on inside that vehicle. And then AWS crops up. And we can bill on every one of those dimensions too. And it's like slow down their hasty pudding one step at a time. But I do see the appeal. >>So I gotta ask you about, uh, what's going on in your world. I know you have a lot of great success. We've been following you in the queue for many, many years. Got a great newsletter, check out Corey Quinn's newsletter, uh, screaming in the cloud program. Uh, you're on the cutting edge and you've got a great balance between really being snarky and, and, and really being delivering content. That's exciting, uh, for people, uh, with a little bit of an edge, um, how's that going? Uh, what's the blowback, any blowback late? Has there been uptick? What was, what are some of the things you're hearing from your audience, more Corey, more Corey. And then of course the, the PR team's calling you >>The weird thing about having an audience beyond a certain size is far and away as a landslide. The most common response I get is silence where it's high. I'm emailing an awful lot of people at last week in AWS every week and okay. They must not have heard me it. That is not actually true. People just generally don't respond to email because who responds to email newsletters. That sounds like something, a lunatic might do same story with response to live streams and podcasts. It's like, I'm gonna call into that am radio show and give them a piece of my mind. People generally don't do >>That. We should do that. Actually. I think you're people would call in, oh, >>I, I think >>I guarantee we had that right now. People would call in and say, Corey, what do you think about X? >>Yeah. It not, everyone understands the full context of what I do. And in fact, increasingly few people do and that's fine. I, I keep forgetting that sometimes people do not see what I'm doing in the same light that I do. And that's fine. Blowback has been largely minimal. Honestly, I am surprised about anything by how little I have gotten over the last five years of doing this, but it would be easier to dismiss me if I weren't generally. Right. When, okay, so you launch this new service and it seems pretty crappy to me cuz when I try and build something, it falls over and begs for help. And people might not like hearing that, but it's what customers are finding too. Yeah. I really am the voice of the >>Customer. You know, I always joke with Dave Alane about how John Fort's always at, uh, um, reinvent getting the interview with jazzy now, Andy we're there, you're there. And so we have these rituals at the events. It's all cool. Um, one of the rituals I like about your, um, your content is you like to get on the naming product names. Um, and, and, and, and, and kind of goof on that. Now why I like is because I used to work at ETT Packard where they used to name things as like engineers, HP 1 0, 0 5, or we can't call, we >>Have a new monitor. How are we gonna name it? Throw the wireless keyboard down the stairs again. And then there you go. Yeah. >>It's and the old joke at HP was if they, if they invented SU sushi, they'd say, yeah, we can't call sushi. It's cold, dead fish. That's what it is. And so the joke was cold. Dead fish is a better name than sushi. So you know is fun. So what's the, what are the, how's the Amazon doing in there? Have they changed their naming, uh, strategy, uh, on some of their, their >>Producting. So they're going in different directions. When they named Amazon Aurora, they decided to explore a new theme of Disney princesses as they go down those paths. And some things are more descriptive. Some people are clearly getting bonused on number of words, they can shove into it. Like the better a service is the longer it's name. Like AWS systems manager, session manager is a great one. I love the service ridiculous name. They have a systems manager, parameter store, which is great. They have secrets manager, which does the same thing. It's two words less, but that one costs money in a way that systems manage your parameter store does not. It's fun. >>What's your, what's your favorite combination of acronyms >>Combination >>Of gots. You got EMR, you got EC two, you got S3 SQS. Well, RedShift's not an acronym you >>Gets is one of my personal favorites because it's either elastic block store or elastic bean stock, depending entirely on the context of the conversation, they >>Shook up bean stock or is that still around? Oh, >>They never turn anything off. They're like the anti Google, Google turns things off while they're still building it. Whereas Amazon is like, well, we built this thing in 2005 and everyone hates it, but while we certainly can't change it, now it has three customers on it. John three <laugh>. Okay. Simple BV still haunts our dreams. >>I, I actually got an email on, I saw one of my, uh, servers, all these C twos were being deprecated and I got an email I'm I couldn't figure out. Why can you just like roll it over? Why, why are you telling me? Just like, give me something else. All right. Okay. So let me talk about, uh, the other things I want to ask you, is that like, okay. So as Amazon better in some areas where do they need more work in your opinion? Because obviously they're all interested in new stuff and they tend to like put it out there for their end to end customers. But then they've got ecosystem partners who actually have the same product. Yes. And, and this has been well documented. So it's, it's not controversial. It's just that Amazon's got a database Snowflake's got out database service. So Redshift, snowflake data breach is out there. So you got this co-op petition. Yes. How's that going? And what do you hearing about the reaction to any of that stuff? >>Depends on who you ask. They love to basically trot out a bunch of their partners who will say nice things about them. And it very much has heirs of, let's be honest, a hostage video, but okay. Cuz these companies do partner with, and they cannot afford to rock the boat too far. I'm not partnered with anyone. I can say what I want. And they're basically restricted to taking away my birthday at worse so I can live with that. >>All right. So I gotta ask about multicloud. Cause obviously the other cloud shows are coming up. Amazon hated that word multicloud. Um, a lot of people though saying, you know, it's not a real good marketing word. Like multicloud sounds like, you know, root canal. Mm-hmm <affirmative> right. So is there a better description for multicloud? >>Multiple single >>Cloudant loves that term. Yeah. >>You know, you're building in multiple single points of failure, do it for the right reasons or don't do it as a default. I believe not doing it is probably the right answer. However, and if I were, if I were Amazon, I wouldn't want to talk about my multi-cloud either as the industry leader, let's talk about other clouds, bad direction to go in from a market cap perspective. It doesn't end well for you, but regardless of what they want to talk about, or don't want to talk about what they say, what they don't say, I tune all of it out. And I look at what customers are doing and multi-cloud exists in a variety of forms. Some brilliant, some brain dead. It depends a lot on, but my general response is when someone gets on stage from a company and tells me to do a thing that directly benefits their company. I am skeptical at best. Yeah. When customers get on stage and say, this is what we're doing because it solves problems. That's when I shut up and listen. >>Yeah, course. Awesome. Corey, I gotta ask you a question cause I know you we've been, you know, fellow journeyman and the, and the cloud journey going to all the events and then the pandemic hit. We now in the third year, who knows what it's gonna gonna end. Certainly events are gonna look different. They're gonna be either changing footprint with the virtual piece, new group formations. Community's gonna emerge. You've got a pretty big community growing and it's growing like crazy. What's the weirdest or coolest thing or just big changes you've seen with the pandemic, uh, from your perspective, cuz you've been in the you're in the middle of the whitewater rafting. You've seen the events you circle offline. You saw the online piece, come in, you're commentating, you're calling balls and strikes in the industry. You got a great team developing over there. Duck build group. What's the big aha moment that you saw with the pandemic. Weird, funny, serious, real in the industry and with customers what's >>Accessibility. Reinvent is a great example. When in the before times it's open to anyone who wants to attend, who can pony up two grand and a week in Las Vegas and get to Las Vegas from wherever they happen to be by moving virtually suddenly it, it embraces the reality that talent is evenly. Distributed. Opportunity is not. And that means that suddenly these things are accessible to a wide swath of audience and potential customer base and the rest that hadn't been invited to the table previously, it's imperative that we not lose that. It's nice to go out and talk to people and have people come up and try and smell my hair from time to time, I smelled delightful. Let me assure you. But it was, but it's also nice to be. >>I have a product for you if you want, you know? Oh, >>Oh excellent. I look forward to it. What is it? Pudding? Why not? <laugh> >>What else have you seen? So when accessibility for talent. Yes. Which by the way is totally home run. What weird things have happened that you've seen? Um, that's >>Uh, it's, it's weird, but it's good that an awful lot of people giving presentation have learned to tighten their message and get to the damn point because most people are not gonna get up from a front row seat in a conference hall, midway through your Aing talk and go somewhere else. But they will change a browser tab and you won't get them back. You've gotta be on point. You've gotta be compelling if it's going to be a virtual discussion. Yeah. >>And you turn off your iMessage too. >>Oh yes. It's always fun in the, in the meetings when you're ho to someone and their colleague is messaging them about, should we tell 'em about this? And I'm sitting there reading it and it's >>This guy is really weird. Like, >>Yes I am and I bring it into the conversation and then everyone's uncomfortable. It goes, wow. Why >>Not? I love when my wife yells at me over I message. When I'm on a business call, like, do you wanna take that about no, I'm good. >>No, no. It's better off. I don't the only entire sure. It's >>Fine. My kids text. Yeah, it's fine. Again, that's another weird thing. And, and then group behavior is weird. Now people are looking at, um, communities differently. Yes. Very much so, because if you're fatigued on content, people are looking for the personal aspect. You're starting to see much more of like yeah. Another virtual event. They gotta get better. One and two who's there. >>Yeah. >>The person >>That's a big part of it too is the human stories are what are being more and more interesting. Don't get up here and tell me about your product and how brilliant you are and how you built it. That's great. If I'm you, or if I wanna work with you or I want to compete with you or I want to put on my engineering hat and build it myself. Cause why would I buy anything? That's more than $8. But instead, tell me about the problem. Tell me about the painful spot that you specialize in. Yeah. Tell me a story there. >>I, I think >>That gets a glimpse in a hook and makes >>More, more, I think you nailed it. Scaling storytelling. Yes. And access to better people because they don't have to be there in person. I just did a thing. I never, we never would've done the queue. We did. Uh, Amazon stepped up in sponsors. Thank you, Amazon for sponsoring international women's day, we did 30 interviews, APAC. We did five regions and I interviewed this, these women in Asia, Pacific eight, PJ, they call for in this world. And they're amazing. I never would've done those interviews cuz I never, would've seen 'em at an event. I never would've been in pan or Singapore, uh, to access them. And now they're in the index, they're in the network. They're collaborating on LinkedIn. So a threads are developing around connections that I've never seen before. Yes. Around the content. >>Absolutely >>Content value plus and >>Effecting. And that is the next big revelation of this industry is going to realize you have different companies. And, and I Amazon's case different service teams all competing with each other, but you have the container group and you have the database group and you have the message cuing group. But customers don't really want to build things from spare parts. They want a solution to a problem. I want to build an app that does Twitter for pets or whatever it is I'm trying to do. I don't wanna basically have to pick and choose and fill my shopping cart with all these different things. I want something that's gonna basically give me what I'm trying to get as close to turnkey as possible. Moving up the stack. That is the future. And just how it gets here is gonna be >>Well we're here at Corey Quinn, the master of the master of content here in the a ecosystem. Of course we we've been following up from the beginning. His great guy, check out his blog, his site, his newsletter screaming podcast. Corey, final question for, uh, what are you here doing? What's on your agenda this week in San Francisco and give a plug for the duck build group. What are you guys doing? I know you're hiring some people what's on the table for the company. What's your focus this week and put a plug in for the group. >>I'm here as a customer and basically getting outta my cage cuz I do live here. It's nice to actually get out and talk to folks who are doing interesting things at the duck bill group. We solved one problem. We fixed the horrifying AWS bill, both from engineering and architecture, advising as well as negotiating AWS contracts because it turns out those things are big and complicated. And of course my side media projects last week in aws.com, we are, it it's more or less a content operation where I in my continual and ongoing love affair with the sound of my own voice. >><laugh> and you're good. It's good content it's on, on point fun, Starky and relevant. So thanks for coming to the cube and sharing with us. Appreciate it. No >>Thank you button. >>You. Okay. This the cube covers here in San Francisco, California, the cube is back going to events. These are the summits, Amazon web services summits. They happen all over the world. We'll be in New York and obviously we're here in San Francisco this week. I'm John fur. Keep, keep it right here. We'll be back with more coverage after this short break. Okay. Welcome back everyone. This's the cubes covers here in San Francisco, California, we're live on the show floor of AWS summit, 2022. I'm John for host of the cube and remember AWS summit in New York city coming up this summer, we'll be there as well. And of course reinvent the end of the year for all the cube coverage on cloud computing and AWS two great guests here from the APN global APN Sege chef Jenko and Jeff Grimes partner lead Jeff and Sege is doing partnerships global APN >>AWS global startup program. Yeah. >>Okay. Say that again. >>AWS. We'll start >>Program. That's the official name. >>I love >>It too long, too long for me. Thanks for coming on. Yeah, >>Of course. >>Appreciate it. Tell us about what's going on with you guys. What's the, how was you guys organized? You guys we're obviously we're in San Francisco bay area, Silicon valley, zillions of startups here, New York. It's got another one we're gonna be at tons of startups. A lot of 'em getting funded, big growth and cloud big growth and data secure hot in all sectors. >>Absolutely. >>So maybe, maybe we could just start with the global startup program. Um, it's essentially a white glove service that we provide to startups that are built on AWS. And the intention there is to help identify use cases that are being built on top of AWS. And for these startups, we want to pro vibe white glove support in co building products together. Right. Um, co-marketing and co-selling essentially, um, you know, the use cases that our customers need solved, um, that either they don't want to build themselves or are perhaps more innovative. Um, so the, a AWS global startup program provides white glove support. Dedicat at headcount for each one of those pillars. Um, and within our program, we've also provided incentives, programs go to market activities like the AWS startup showcase that we've built for these startups. >>Yeah. By the way, AWS startup, AWS startups.com is the URL, check it out. Okay. So partnerships are key. Jeff, what's your role? >>Yeah. So I'm responsible for leading the overall effort for the AWS global startup program. Um, so I've got a team of partner managers that are located throughout the us, uh, managing a few hundred startup ISVs right now. <laugh> >>Yeah, you got a >>Lot. We've got a lot. >>There's a lot. I gotta, I gotta ask a tough question. Okay. I'm I'm a startup founder. I got a team. I just got my series a we're grown. I'm trying to hire people. I'm super busy. What's in it for me. Yeah. What do you guys bring to the table? I love the white glove service, but translate that what's in it for what do I get out of it? What's >>A story. Good question. I focus, I think. Yeah, because we get, we get to see a lot of partners building their businesses on AWS. So, you know, from our perspective, helping these partners focus on what, what do we truly need to build by working backwards from customer feedback, right? How do we effectively go to market? Because we've seen startups do various things, um, through trial and error, um, and also just messaging, right? Because oftentimes partners or rather startups, um, try to boil the ocean with many different use cases. So we really help them, um, sort of laser focus on what are you really good at and how can we bring that to the customer as quickly as possible? >>Yeah. I mean, it's truly about helping that founder accelerate the growth of their company, right. And there's a lot that you can do with AWS, but focus is truly the key word there because they're gonna be able to find their little piece of real estate and absolutely deliver incredible outcomes for our customers. And then they can start their growth curve there. >>What are some of the coolest things you've seen with the APN that you can share publicly? I know you got a lot going on there, a lot of confidentiality. Um, but you know, we're here a lot of great partners on the floor here. I'm glad we're back at events. Uh, a lot of stuff going on digitally with virtual stuff and, and hybrid. What are some of the cool things you guys have seen in the APN that you can point to? >>Yeah, absolutely. I mean, I can point to few, you can take them. So, um, I think what's been fun over the years for me personally, I came from a startup brand sales at an early stage startup and, and I went through the whole thing. So I have a deep appreciation for what these guys are going through. And what's been interesting to see for me is taking some of these early stage guys, watching them progress, go public, get acquired and see that big day mm-hmm <affirmative>, uh, and being able to point to very specific items that we help them to get to that point. Uh, and it's just a really fun journey to watch. >>Yeah. I, and part of the reason why I really, um, love working at the AWS, uh, global startup program is working with passionate founders. Um, I just met with a founder today that it's gonna, he's gonna build a very big business one day, um, and watching them grow through these stages and supporting that growth. Um, I like to think of our program as a catalyst for enterprise is sort of scale. Yeah. Um, and through that we provide visibility, credibility and growth opportunities. >>Yeah. A lot, a lot of partners too. What I found talking to staff founders is when they have that milestone, they work so hard for it. Whether it's a B round C round Republic or get bought. Yeah. Um, then they take a deep breath and they look back at wow, what a journey it's been. So it's kind of emotional for sure. But still it's a grind. Right? You gotta, I mean, when you get funding, it's still day one. You don't stop. It's no celebrate, you got a big round or valuation. You still gotta execute >>And look it's hypercompetitive and it's brutally difficult. And our job is to try to make that a little less difficult and navigate those waters. Right. Where ever everyone's going after similar things. >>Yeah. And I think as a group element too, I observe that startups that I, I meet through the APN has been interesting because they feel part of AWS. Yeah, totally. As a group of community, as a vibe there. Um, I know they're hustling, they're trying to make things happen. But at the same time, Amazon throws a huge halo effect. I mean, that's a huge factor. I mean, you guys are the number one cloud in the business, the growth in every sector is booming. Yeah. And if you're a startup, you don't have that luxury yet. And look at companies like snowflake that built on top of AWS. I mean, people are winning by building on AWS. >>Yeah. And our, our, our program really validates their technology first. So we have, what's all the foundation's technical review that we put all of our startups through before we go to market. So that when enterprise customers are looking at startup technology, they know that it's already been vetted. And, um, to take that a step further and help these partners differentiate, we use programs like the competency programs, the DevOps competencies, the security competency, which continues to help, um, provide sort of a platform for these startups, help them differentiate. And also there's go to market benefits that are associated with that. >>Okay. So let me ask the, the question that's probably on everyone's mind, who's watching, certainly I asked this a lot. There's a lot of companies startups out there who makes the cut, is there a criteria cut? It's not like it's sports team or anything, but like sure. Like there's activate program, which is like, there's hundreds of thousands of startups out there. Not everyone is at the APN. Right? Correct. So ISVs again, that's a whole nother, that's a more mature partner that might have, you know, huge market cap or growth. How, how do you guys focus? How do you guys focus? I mean, you got a good question, you know, thousand flowers blooming all the time. Is there a new way you guys are looking at it? I know there's been some talk about restructure or, or new focus. What's the focus. >>Yeah. It's definitely not an easy task by any means. Um, but you know, I recently took over this role and we're really trying to establish focus areas, right. So obviously a lot of the ISVs that we look after are infrastructure ISVs. That's what we do. Uh, and so we have very specific pods that look after different type of partners. So we've got a security pod, we've got a DevOps pod, we've got core infrastructure, et cetera. And really, we're trying to find these ISVs that can solve, uh, really interesting AWS customer. >>You guys have a deliberate, uh, focus on these pillars. So what infrastructure, >>Security, DevOps, and data and analytics, and then line of business >>Line, business line business, like web >>Marketing, business apps, >>Owner type thing. Exactly. >>Yeah, exactly. >>So solutions there. Yeah. More solutions and the other ones are like hardcore. So infrastructure as well, like storage back up ransomware kind of stuff, or, >>Uh, storage, networking. >>Okay. Yeah. The classic >>Database, et cetera. Right. >>And so there's teams on each pillar. >>Yep. So I think what's, what's fascinating for the startups that we cover is that they've got, they truly have support from a build market sell perspective, right. So you've got someone who's technical to really help them get the technology, figured out someone to help them get the marketing message dialed and spread, and then someone to actually do the co-sell, uh, day to day activities to help them get in front of customers. >>Probably the number one request that we always ask for Amazon is can wish that sock report, oh, download it on the console, which we use all the time. <laugh> exactly. But security's a big deal. I mean, you know, ask the res are evolving, that role of DevOps is taking on dev SecOps. Um, I, I can see a lot of customers having that need for a relationship to move things faster. Do you guys provide like escalation or is that a part of a service or that not part of, uh, uh, >>Yeah, >>So the partner development manager can be an escalation for absolutely. Think of that. 'em as an extension of your business inside of AWS. >>Great. And you guys, how is that partner managers, uh, measure >>On those three pillars? Right. Got it. Are we billing, building valuable use cases? So product development go to market, so go to market activities, think blog, posts, webinars, case studies, so on and so forth. And then co-sell not only are we helping these partners win their current opportunities that they are sourcing, but can we also help them source net new deals? Yeah. Right. That's very, >>I mean, top asked from the partners is get me in front of customers. Right. Um, not an easy task, but that's a huge goal of ours to help them grow their top line. >>Right. Yeah. In fact, we had some interviews here on the cube earlier talking about that dynamic of how enterprise customers are buying. And it's interesting, a lot more POCs. I have one partner here that you guys work with, um, on observability, they got a huge POC with capital one mm-hmm <affirmative> and the enterprises are engaging the star ups and bringing them in. So the combination of open source software enterprises are leaning into that hard and bringing young growing startups in mm-hmm <affirmative>. Yep. So I could see that as a huge service that you guys can bring people in. >>Right. And they're bringing massively differentiated technology to the table. The challenge is they just might not have the brand recognition. The, at the big guys have mm-hmm <affirmative>. And so that's, our job is how do you get that great tech in front of the right situations? >>Okay. So my next question is about the show here, and then we'll talk globally. So here in San Francisco sure. You know, Silicon valley bay area, San Francisco bay area, a lot of startups, a lot of VCs, a lot of action. Mm-hmm <affirmative> so probably a big market for you guys. Yeah. So what's exciting here in SF. And then outside of SF, you guys have a global pro, have you see any trends that are geography based or is it sure areas more mature? There's certain regions that are better. I mean, I just interviewed a company here. That's doing, uh, a AWS edge really well in these cases. It's interesting that these, the partners are filling a lot of holes and gaps in the opportunities with a AWS. So what's exciting here. And then what's the global perspective. >>Yeah, totally. So obviously see a ton of partners from the bay area that we support. Um, but we're seeing a lot of really interesting technology come out of AMEA specifically. Yeah. Uh, and making a lot of noise here in the United States, which is great. Um, and so, you know, we definitely have that global presence and, and starting to see super differentiated technology come out of those regions. >>Yeah. Especially Tel Aviv. Yeah. >>Amy and real quick before you get into surge. It's interesting. The VC market in, in Europe is hot. They've got a lot of unicorns coming in. We've seen a lot of companies coming in. They're kind of rattling their own, you know, cage right now. Hey, look at us. Let's see if they crash, you know, but we don't see that happening. I mean, people have been predicting a crash now in, in the startup ecosystem for least a year. It's not crashing. In fact, funding's up. >>Yeah. The pandemic was hard on a lot of startups for sure. Yeah. Um, but what we've seen is many of these startups, they, as quickly as they can grow, they can also pivot as, as, as well. Um, and so I've actually seen many of our startups grow through the demo because their use cases are helping customers either save money, become more operationally efficient and provide value to leadership teams that need more visibility into their infrastructure during a pandemic. >>It's an interesting point. I talked to Andy jazzy and Adam Celski both say the same thing during the pandemic. Necessity's the mother of all invention. Yep. And startups can move fast. So with that, you guys are there to assist if I'm a startup and I gotta pivot cuz remember iterate and pivot, iterate and pivot. So you get your economics, that's the playbook of the ventures and the models. >>Exactly. How >>Do you guys help me do that? Give me an example of what me through. Pretend me, I'm a start up. Hey, I'm on the cloud. Oh my God. Pandemic. They need video conferencing. Hey cube. Yeah. What do I need? Search? What, what do >>I do? That's a good question. First thing is just listen. Yeah. I think what we have to do is a really good job of listening to the partner. Um, what are their needs? What is their problem statement? Where do they want to go at the end of the day? Um, and oftentimes because we've worked with, so how many successful startups that have come out of our program, we have, um, either through intuition or a playbook determined what is gonna be the best path forward and how do we get these partners to stop focusing on things that will eventually, um, just be a waste of time. Yeah. And, or not provide, or, you know, bring any fruit to the table, which, you know, essentially revenue. >>Well, we love startups here in the cube because one, um, they have good stories, they're oil and cutting edge, always pushing the envelope and they're kind of disrupting someone else. Yeah. And so they, they have an opinion. They don't mind sharing on camera. So love talking to startups. We love working with you guys on our startups. Showcases startups.com. Check out AWS startups.com and she got the showcase. So is, uh, final word. I'll give you guys the last word. What's the bottom line bumper sticker for AP globe. The global APN program summarize the opportunity for startups, what you guys bring to the table and we'll close it out. Totally. We'll start >>With you. Yeah. I think the AWS global startup programs here to help companies truly accelerate their business full stop. Right. And that's what we're here for. Love it. >>It's a good way to, it's a good way to put it. Dato yeah. >>All right. Thanks for coming out. Thanks John. Great to see you love working with you guys. Hey, startups need help. And the growing and huge market opportunities, the shift cloud scale data engineering, security infrastructure, all the markets are exploding in growth because of the digital transformation of realities here, open source and cloud. I'll making it happen here in the cube in San Francisco, California. I'm John furrier, your host. Thanks for >>Watching Cisco, John. >>Hello and welcome back to the Cube's live coverage here in San Francisco, California for AWS summit, 2022. I'm John for host of the cube. Uh, two days of coverage, AWS summit, 2022 in New York city coming up this summer will be there as well. Events are back. The cube is back of course, with the cube virtual cube hybrid, the cube.net. Check it out a lot of content this year more than ever a lot more cloud data cloud native, modern applic is all happening. Got a great guest here. Jeremy Burton, Cub alumni, uh, CEO of observe Inc in the middle of all the cloud scale, big data observability, Jeremy. Great to see you. Thanks. >>Coming on. Always great to come and talk to you on the queue, man. It's been been a few years, so, >>Um, well you, you got your hands. You're in the trenches with great startup, uh, good funding, great board, great people involved in the observability Smith hot area, but also you've been a senior executive president of Dell EMC. Um, 11 years ago you had a vision and you actually had an event called cloud meets big data. Um, yeah. And it's here, you predicted it 11 years ago. Um, look around it's cloud meets big data. >>Yeah. I mean the, the cloud thing I think, you know, was, was probably already a thing, but the big data thing I do claim credit for, for sort of catching that bus early, um, you know, we, we were on the, the, the bus early and, and I think it was only inevitable. Like, you know, if you could bring the economics and the compute of cloud to big data, you, you could find out things you could never possibly imagine. >>So you're close to a lot of companies that we've been covering deeply snowflake, obviously you involved, uh, at the board level, the other found, you know, the people there, uh, cloud, you know, Amazon, you know, what's going on here? Yeah. You're doing a startup as the CEO at the helm, uh, chief of observ, Inc, which is an observability, which is to me in the center of this confluence of data engineering, large scale integrations, um, data as code integrating into applications. I mean, it's a whole nother world developing, like you see with snowflake, it means snowflakes is super cloud as we call it. So a whole nother wave is here. What's your, what's this wave we're on what's how would you describe the wave? >>Well, a couple of things, I mean, people are, I think right in more software than, than ever before are why? Because they've realized that if, if you don't take your business online and offer a service, then you become largely irrelevant. And so you you've got a whole set of new applications. I think, I think more applications now than any point. Um, not, not just ever, but the mid nineties, I always looked at as the golden age of application development. Now, back then people were building for windows. Well, well now they're building for things like AWS is now the platform. Um, so you've got all of that going on. And then at the same time, the, the side effect of these applications is they generate data and lots of data. And the, you know, there's sort of the transactions, you know, what you bought today are something like that. But then there's what we do, which is all the telemetry, all the exhaust fumes. And I think people really are realizing that their differentiation is not so much their application. It's their understanding of the data. Can, can I understand who my best customers are, what I sell today. If people came to my website and didn't buy, then why not? Where did they drop off all of that? They wanna analyze. And, and the answers are all in the data. The question is, can you understand it >>In our last startup showcase, we featured data as code one of the insights that we got out of that, and I wanna get your opinion on our reaction to is, is that data used to be put into a data lake and turns into a data swamp or throw into the data warehouse. And then we'll do some queries, maybe a report once in a while. And so data, once it was done, unless it was real time, even real time was not good anymore after real time. That was the old way. Now you're seeing more and more, uh, effort to say, let's go look at the data, cuz now machine learning is getting better. Not just train once mm-hmm <affirmative> they're iterating. Yeah. This notion of iterating and then pivoting, iterating and pivoting. Yeah, that's a Silicon valley story. That's like how startups work, but now you're seeing data being treated the same way. So now you have another, this data concept that's now yeah. Part of a new way to create more value for the apps. So this whole, this whole new cycle of >>Yeah. >>Data being reused and repurposed and figured out and yeah, >>Yeah. I'm a big fan of, um, years ago. Uh, uh, just an amazing guy, Andy McAfee at the MIT C cell labs I spent time with and he, he had this line, which still sticks to me this day, which is look I'm I'm. He said I'm part of a body, which believes that everything is a matter of data. Like if you have enough data, you can answer any question. And, and this is going back 10 years when he was saying these kind of things and, and certainly, you know, research is on the forefront. But I think, you know, starting to see that mindset of the, the sort of MIT research be mainstream, you know, in enterprises, they they're realizing that. Yeah, it is about the data. You know, if I can better understand my data better than my competitor, then I've got an advantage. And so the question is is, is how, what, what technologies and what skills do I need in my organization to, to allow me to do that. >>So let's talk about observing you the CEO of, okay. Given you've seen the ways before you're in the front lines of observability, which again is in the center of all this action what's going on with the company. Give a quick minute to explain, observe for the folks who don't know what you guys do. What's the company doing? What's the funding status, what's the product status and what's the customer status. Yeah. >>So, um, we realized, you know, a handful of years ago, let's say five years ago that, um, look, the way people are building applications is different. They they're way more functional. They change every day. Uh, but in some respects they're a lot more complicated. They're distributed. They, you know, microservices architectures and when something goes wrong, um, the old way of troubleshooting and solving problems was not gonna fly because you had SA so much change going into production on a daily basis. It was hard to tell like where the problem was. And so we thought, okay, it's about time. Somebody looks at the exhaust fumes from this application and all the telemetry data and helps people troubleshoot and make sense of the problems that they're seeing. So, I mean, that's observability, it's actually a term that goes back to the 1960s. It was a guy called, uh, Rudolph like, like everything in tech, you know, it's, it's a reinvention of something from years gone by. >>Um, there's a guy called, um, Rudy Coleman in 1960s coiner term and, and, and the term was being able to determine the state of a system by looking at its external outputs. And so we've been going on this for, uh, the best part of four years now. Um, it took us three years just to build the product. I think, I think what people don't appreciate these days often is the barrier to entry in a lot of these markets is quite high. You, you need a lot of functionality to have something that's credible with a customer. Um, so yeah, this last year we, we, we did our first year selling, uh, we've got about 40 customers now. Um, we just we've got great investors for the hill ventures. Uh, I mean, Mike SP who was, you know, the, the guy who was the, really, the first guy in it snowflake and the, the initial investor were fortunate enough to, to have Mike and our board. And, um, you know, part of the observed story is closely knit with snowflake all of that time with your data, you know, we, we store in there. >>So I want to get, uh, yeah. Pivot to that. Mike SP snowflake, Jeremy Burton, the cube kind of, kind of same thinking this idea of a super cloud or what snowflake became. Yeah. Snowflake is massively successful on top of AWS. Mm-hmm <affirmative> and now you're seeing startups and companies build on top of snowflake. Yeah. So that's become an entrepreneurial story that we think that to go big in the cloud, you can have a cloud on a cloud, uh, like as Jerry, Jerry Chan and Greylock calls it, castles in the cloud where there are moats in the cloud. So you're close to it. I know you, you're doing some stuff with snowflake. So as a startup, what's your view on building on top of say a snowflake or an AWS, because again, you gotta go where the data is. You need all the data. >>Yeah. So >>What's your take on that? I mean, >>Having enough gray hair now, um, you know, again, in tech, I think if you wanna predict the future, look at the past. And, uh, you know, 20 years ago, 25 years ago, I was at a, a smaller company called Oracle and an Oracle was the database company. And, uh, their, their ambition was to manage all of the world's transactional data. And they built on a platform or a couple of platforms, one, one windows, and the other main one was Solaris. And so at that time, the operating system was the platform. And, and then that was the, you know, ecosystem that you would compete on top of. And then there were companies like SAP that built applications on top of Oracle. So then wind the clock forward 25 years gray hairs. <laugh> the platform, isn't the operating system anymore. The platform is AWS, you know, Google cloud. I gotta probably look around if I say that in. Yeah, >>It's okay. Columbia, but hyperscale. Yeah. CapX built out >>That is the new platform. And then snowflake comes along. Well, their aspiration is to manage all of the, not just human generated data, but machine generated data in the world of cloud. And I think they they've done an amazing job are doing for the, I'd say, say the, the big data world, what Oracle did for the relational data world, you know, way back 25 years ago. And then there are folks like us come along and, and of course my ambition would be, look, if, if we can be as successful as an SAP building on top of snowflake, uh, as, as they were on top of Oracle, then, then we'd probably be quite happy, >>Happy. So you're building on top of snowflake, >>We're building on top of snowflake a hundred percent. And, um, you know, I've had folks say to me, well, aren't you worried about that? Isn't that a risk? It's like, well, that that's a risk. You're >>Still on the board. >>Yeah. I'm still on the board. Yeah. That's a risk I'm prepared to take. I am more on snowing. >>It sounds well, you're in a good spot. Stay on the board, then you'll know what's going on. Okay. No, yeah. Serious one. But the, this is a real dynamic. It is. It's not a one off its >>Well, and I do believe as well that the platform that you see now with AWS, if you look at the revenues of AWS is in order of magnitude, more than Microsoft was 25 years ago with windows mm-hmm <affirmative>. And so I've believe the opportunity for folks like snowflake and, and folks like observe it. It's an order of magnitude more than it was for the Oracle and the SAPs of the old world. >>Yeah. And I think this is really, I think this is something that this next generation of entrepreneurship is the go big scenario is you gotta be on a platform. Yeah. >>It's quite easy >>Or be the platform, but it's hard. There's only like how seats were at that table left >>Well value migrates up over time. So, you know, when the cloud thing got going, there were probably 10, 20, 30, you know, rack space and there's 1,000,001 infrastructure, a service platform as a service. My, my old, uh, um, employee EMC, we had pivotal, you know, pivotal was a platform as a service. Don't hear so much about it these days, but initially there's a lot of players and then it consolidates. And then to, to like extract, uh, a real business, you gotta move up, you gotta add value, you gotta build databases, then you gotta build applications. So >>It's interesting. Moving from the data center of the cloud was a dream for starters within if the provision, the CapEx. Yeah. Now the CapEx is in the cloud. Then you build on, on top of that, you got snowflake. Now you got on top of that. >>The assumption is almost that compute and storage is free. I know it's not quite free. Yeah. It's almost free, but you can, you know, as an application vendor, you think, well, what can I do if I assume compute and storage is free, that's the mindset you've gotta get >>Into. And I think the platform enablement to value. So if I'm an entrepreneur, I'm gonna get a series us multiple of value in what I'm paying. Yeah. Most people don't even blanket their Avis pills unless they're like massively huge. Yeah. Then it's a repatriation question or whatever discount question, but for most startups or any growing company, the Amazon bill should be a small factor. >>Yeah. I mean, a lot of people, um, ask me, uh, like, look you build in on snowflake. Um, you, you know, you, you, you're gonna be, you're gonna be paying their money. How, how, how, how does that work with your business model? If you're paying their money, you know, do, do you have a viable business? And it's like, well, okay. I, we could build a database as well and observe, but then I've got half the development team working on something that will never be as good as snowflake. And so we made the call early on that. No, no, we, we want a eight above the database. Yeah. Right. Snowflake are doing a great job of innovating on the database and, and the same is true of something like Amazon, like, like snowflake could have built their own cloud and their own platform, but they didn't. >>Yeah. And what's interesting is that Dave <inaudible> and I have been pointing this out and he's obviously a more on snowflake. I've been looking at data bricks, um, and the same dynamics happening, the proof is the ecosystem. Yeah. I mean, if you look at Snowflake's ecosystem right now and data bricks it's exploding. Right. I mean, the shows are selling out the floor. Space's book. That's the old days at VMware. Yeah. The old days at AWS. >>Well, and for snowflake and, and any platform from VI, it's a beautiful thing because, you know, we build on snowflake and we pay them money. They don't have to sell to us. Right. And we do a lot of the support. And so the, the economics work out really, really well. If you're a platform provider and you've got a lot of >>Ecosystems. Yeah. And then also you get, you get a, um, a trajectory of, uh, economies of scale with the institutional knowledge of snowflake integrations, right. New product, you're scaling a step function with them. >>Yeah. I mean, we manage 10 petabytes of data right now. Right. When I, when I, when I arrived at EMC in 2010, we had, we had one petabyte customer. And, and so at observe, we've been only selling the product for a year. We have 10 petabytes of data under management. And so been able to rely on a platform that can manage that is inve >>You know, well, Jeremy great conversation. Thanks for sharing your insights on the industry. Uh, we got a couple minutes left, um, put a plug in for observe. What do you guys know? You got some good funding, great partners. I don't know if you can talk about your, your, your POC customers, but you got a lot of high ends folks that are working with you. You getting in traction. >>Yeah. Yeah. Scales >>Around the corner. Sounds like, are you, is that where you are scale? >>We've got a big that that's when coming up in two or three weeks, we've got, we've got new funding, um, which is always great. Um, the product is, uh, really, really close. I think, as a startup, you always strive for market fit, you know, which is at which point can you just start hiring salespeople? And the revenue keeps going. We're getting pretty close to that right now. Um, we've got about 40 SaaS companies that run on the platform. They're almost all AWS Kubernetes, uh, which is our sweet spot to begin with, but we're starting to get some really interesting, um, enterprise type customers. We're, we're, you know, F five networks we're POC in right now with capital one, we got some interest in news around capital one coming up. I, I can't share too much, but it's gonna be exciting. And, and like I said, so hill continue to, to, >>I think capital one's a big snowflake customer as well. Right. >>They were early in one of the things that attracted me to capital one was they were very, very good with snowflake early on. And, and they put snowflake in a position in the bank where they thought that snowflake could be successful. And, and today that, that is one of Snowflake's biggest accounts, >>Capital, one, very innovative cloud, obviously Atos customer, and very innovative, certainly in the CISO and CIO, um, on another point on where you're at. So you're, Prescale meaning you're about to scale, >>Right? >>So you got POCs, what's that trajectory look like? Can you see around the corner? What's, what's going on? What's on, around the corner. That you're, that you're gonna hit this straight and narrow and, and gas it fast. >>Yeah. I mean, the, the, the, the key thing for us is we gotta get the product. Right. Um, the nice thing about having a guy like Mike Pfizer on the board is he doesn't obsess about revenue at this stage. His questions that the board are always about, like is the product, right? Is the product right? Is the product right? Have you got the product right? And cuz we know when the product's right, we can then scale the sales team and, and the revenue will take care of itself. Yeah. So right now all the attention is on the product. Um, the, this year, the exciting thing is we we're, we're adding all the tracing visualizations. So people will be able to the kind of things that by in the day you could do with the new relics and AppDynamics, the last generation of, of APM tools, you're gonna be able to do that within observe. And we've already got the logs and the metrics capability in there. So for us this year is a big one, cuz we sort of complete the trifecta, you know, the, the >>Logs, what's the secret sauce observe. What if you had the, put it into a, a, a sentence what's the secret sauce? >>I, I, I think, you know, an amazing founding engineering team, uh, number one, I mean, at the end of the day, you have to build an amazing product and you have to solve a problem in a different way. And we've got great long term investors and, and the biggest thing our investors give is it actually, it's not just money. It gives us time to get the product, right. Because if we get the product right, then we can get the growth. >>Got it. Final question. While I got you here, you've been on the enterprise business for a long time. What's the buyer landscape out there. You got people doing POCs on capital one scale. So we know that goes on. What's the appetite at the buyer side for startups and what are their requirements that you're seeing? Uh, obviously we're seeing people go in and dip into the startup pool because new ways to refactor their, this restructure. So, so a lot of happening in cloud, what's the criteria. How are enterprises engaging in with startups? >>Yeah. I mean, enterprises, they know they've gotta spend money transforming the business. I mean, this was, I almost feel like my old Dell or EMC self there, but, um, what, what we were saying five years ago is happening. Um, everybody needs to figure out a way to take their business to this digital world. Everybody has to do it. So the nice thing from a startup standpoint is they know at times they need to risk or, or take a bet on new technology in order to, to help them do that. So I think you've got buyers that a have money, uh, B it prepared to take risks and it's, it's a race against time to you'll get their, their offerings in this, a new digital footprint. >>Final, final question. What's the state of AWS. Where do you see them going next? Obviously they're continuing to be successful. How does cloud 3.0, or they always say it's day one, but it's more like day 10, but what's next for Aw. Where do they go from here? Obviously they're doing well. They're getting bigger and bigger. Yeah, >>Better. It's an amazing story. I mean, you know, we're, we're on AWS as well. And so I, I think if they keep nurturing the builders and the ecosystem, then that is their superpower. They, they have an early leads. And if you look at where, you know, maybe the likes of Microsoft lost the plot in the, in the late nineties, it was, they stopped, uh, really caring about developers in the folks who were building on top of their ecosystem. In fact, they started buying up their ecosystem and competing with people in their ecosystem. And I see with AWS, they, they have an amazing headstart and if they did more, you know, if they do more than that, that's, what's gonna keep this juggernaut rolling for many years to come. >>Yeah. They got the Silicon and got the stack. They're developing Jeremy Burton inside the cube, great resource for commentary, but also founding with the CEO of a company called observing in the middle of all the action on the board of snowflake as well. Um, great startup. Thanks for coming on the cube. Always a pleasure. Okay. Live from San Francisco. It's to cube. I'm John for your host. Stay with us more coverage from San Francisco, California after the short break. >>Hello. Welcome back to the cubes coverage here live in San Francisco, California. I'm John furrier, host of the cubes cube coverage of AWS summit 2022 here in San Francisco. We're all the developers are the bay air at Silicon valley. And of course, AWS summit in New York city is coming up in the summer. We'll be there as well. SF and NYC cube coverage. Look for us. Of course, reinforcing Boston and re Mars with the whole robotics, AI. They all coming together. Lots of coverage stay with us today. We've got a great guest from Bel VC. John founding partner, entrepreneurial venture is a venture firm. Your next act, welcome to the cube. Good to see you. >>Good to see you, man. I feel like it's been forever since we've been able to do something in person. Well, >>I'm glad you're here because we run into each other all the time. We've known each other for over decade. Um, >>It's been at least 10 years, >>At least 10 years more. And we don't wanna actually go back as bring back the old school web 1.0 days. But anyway, we're in web three now. So we'll get to that in a second. We, >>We are, it's a little bit of a throwback to the path though, in my opinion, >>It's all the same. It's all distributed computing and software. We ran each other in cube con. You're investing in a lot of tech startup founders. Okay. This next level, next gen entrepreneurs have a new makeup and it's software. It's hardcore tech in some cases, not hardcore tech, but using software to take an old something old and make it better new, faster. So tell us about Bel what's the firm. I know you're the founder, uh, which is cool. What's going on. Explain >>What you, I mean, you remember I'm a recovering entrepreneur, right? So of course I, I, >>No, you're never recovering. You're always entrepreneur >>Always, but we are also always recovering. So I, um, started my first company when I was 24. If you remember, before there was Facebook and friends, there was instant messaging. People were using that product at work every day, they were creating a security vulnerability between their network and the outside world. So I plugged that hole and built an instant messaging firewall. It was my first company. The company was called IM logic and we were required by Symantec. Uh, then spent 12 years investing in the next generation of software companies, uh, early investor in open source companies and cloud companies and spent a really wonderful years, uh, at a firm called NEA. So I, I feel like my whole life I've been either starting enterprise software companies or helping founders start enterprise software companies. And I'll tell you, there's never been a better time than right now to start an enterprise software company. >>So, uh, the passion for starting a new firm was really a recognition that founders today that are starting an enterprise software company, they, they tend to be, as you said, a more technical founder, right? Usually it's a software engineer or a builder mm-hmm <affirmative>, uh, they are building that are serving a slightly different market than what we've traditionally seen in enterprise software. Right? I think traditionally we've seen it buyers or CIOs that have agendas and strategies, which, you know, purchase software that is traditionally bought and sold tops down. But you know, today I think the most successful enterprise software companies are the ones that are built more bottoms up and have more technical early adopters. And generally speaking, they're free to use. They're free to try. They're very commonly community source or open source companies where you have a large technical community that's supporting them. So there's a, there's kind of a new normal now I think in great enterprise software. And it starts with great technical founders with great products and great bottoms of motions. And I think there's no better place to, uh, service those people than in the cloud and uh, in, in your community. >>Well, first of all, congratulations, and by the way, you got a great pedigree and great background. You're super smart admire of your work and your, and, and your founding, but let's face it. Enterprise is hot because digital transformation is, is all companies there's no, I mean, consumer is enterprise now. Everything is what was once a niche, not, I won't say niche category, but you know, not for the faint of heart, you know, investors, >>You know, it's so funny that you say that enterprise is hot because you, and I feel that way now. But remember, like right now, there's also a giant tech in VC conference in Miami <laugh> and it's covering cryptocurrencies and FCS and web three. So I think beauty is definitely in the eye of the beholder <laugh> but no, I, I will tell you, well, >>MFTs is one big enterprise, cuz you gotta have imutability you got performance issues. You have, I IOPS issues. >>Well, and, and I think all of us here that are of may, maybe students of his stream have been involved in open source in the cloud would say that we're, you know, much of what we're doing is, uh, the predecessors of the web web three movement. And many of us I think are contributors to the web three >>Movement. The hype is definitely web >>Three. Yeah. But, >>But you know, >>For sure. Yeah, no, but now you're taking us further east to Miami. So, uh, you know, look, I think, I, I think, um, what is unquestioned with the case and maybe it's, it's more obvious the more time you spend in this world is this is the fastest growing part of enterprise software. And if you include cloud infrastructure and cloud infrastructure spend, you know, it is by many measures over, uh, $500 billion in growing, you know, 20 to 30 a year. So it it's a, it's a just incredibly fast >>Let's getting, let's get into some of the cultural and the, the shifts that are happening, cuz again, you, you have the luxury of being in enterprise when it was hard, it's getting easier and more cooler. I get it and more relevant <laugh> but there's also the hype of like the web three, for instance, but you know, for, uh, um, um, the CEO snowflake, okay. Has wrote a book and Dave Valenti and I were talking about it and uh, Frank Lutman has says, there's no playbooks. We always ask the CEOs, what's your playbook. And he's like, there's no playbook, situational awareness, always Trump's playbooks. So in the enterprise playbook, oh, hire a direct sales force and sass kind of crushed that now SAS is being redefined, right. So what is SAS? Is snowflake a SAS or is that a platform? So again, new unit economics are emerging, whole new situation, you got web three. So to me there's a cultural shift, the young entrepreneurs, the, uh, user experience, they look at Facebook and say, ah, you know, and they own all my data. And you know, we know that that cliche, um, they, you know, the product. So as this next gen, the gen Z and the millennials come in and our customers and the founders, they're looking at things a little bit differently and the tech better. >>Yeah. I mean, I mean, I think we can, we can see a lot of commonalities across all six of startups and the overall adoption of technology. Uh, and, and I would tell you, this is all one big giant revolution. I call it the user driven revolution. Right. It's the rise of the user. Yeah. And you might say product like growth is currently the hottest trend in enterprise software. It's actually user like growth, right. They're one in the same. So sometimes people think the product, uh, is what is driving. >>You just pull the product >>Through. Exactly, exactly. And so that's that I, that I think is really this revolution that you see, and, and it does extend into things like cryptocurrencies and web three and, you know, sort of like the control that is taken back by the user. Um, but you know, many would say that, that the origins of this movement may be started with open source where users were contributors, you know, contributors were users and looking back decades and seeing how it, how it fast forward to today. I think that's really the trend that we're all writing and it's enabling these end users. And these end users in our world are developers, data engineers, cybersecurity practitioners, right. They're really the users. And they're really the, the offic and the most, you know, kind of valued people in >>This. I wanna come back to the data engineers in a second, but I wanna make a comment and get your reaction to, I have a, I'm a gen Xer technically. So for not a boomer, but I have some boomer friends who are a little bit older than me who have, you know, experienced the sixties. And I've, I've been saying on the cube for probably about eight years now that we are gonna hit a digital hippie Revolut, meaning a rebellion against in the sixties was rebellion against the fifties and the man and, you know, summer of love. That was a cultural differentiation from the other one of group, the predecessors. So we're kind of having that digital moment now where it's like, Hey boomers, Hey people, we're not gonna do that anymore. We hate how you organize shit. >>Right. But isn't this just technology. I mean, isn't it, isn't it like there used to be the old adage, like, you know, you would never get fired for buying IBM, but now it's like, you obviously probably would get fired if you bought IBM. And I mean, it's just like the, the, I think, I think >>During the mainframe days, those renegades were breaking into Stanford, starting the home brew club. So what I'm trying to get at is that, do you see the young cultural revolution also, culturally, just, this is my identity NFTs to me speak volumes about my, I wanna associate with NFTs, not single sign on like, well, >>Absolutely. And, and I think like, I think you're hitting on something, which is like this convergence of, of, you know, societal trends with technology trends and how that manifests in our world is yes. I think like there is unquestionably almost a religion around the way in which a product is built. Right. And we can use open source. One example of that religion. Some people say, look, I'll just never try a product in the cloud if it's not open source. Yeah. I think cloud, native's another example of that, right? It's either it's, you know, it either is cloud native or it's not. And I think a lot of people will look at a product and say, look, you know, you were not designed in the cloud era. Therefore I just won't try you. And sometimes, um, like it or not, it's a religious decision, right? It's, it's something that people just believe to be true almost without, uh, necessarily. I mean, >>The data drives all decision making. Let me ask you this next question. As a VC. Now you look at pitch, well, you've been a VC for many years, but you also have the founder entrepreneurial mindset, but you can empathize with the founders. You know, hustle is a big part of the, that first founder check, right? You gotta convince someone to part with their ch their money and the first money in which you do a lot of is about believing in the first. So faking it till you make it is hard. Now you, the data's there, you either have it cloud native, you either have the adaption or traction. So honesty is a big part of that pitch. You can't fake it. Oh, >>AB absolutely. You know, there used to be this concept of like the persona of an entrepreneur, right. And the persona of the entrepreneur would be, you know, somebody who was a great salesperson or somebody who tell a great story. And I still think that that's important, right. It still is a human need for people to believe in narratives and stories. Yeah. But having said that you're right. The proof is in the pudding, right. At some point you click download and you try the product and it does what it says it's gonna, it's gonna do, or it doesn't, or it either stands up to the load test or it doesn't. And so I, I feel like in this new economy, that're, we live in really, it's a shift from maybe the storytellers and the creators to, to the builders, right. The people that know how to build great product. And in some ways the people that can build great product yeah. Stand out from the crowd. And they're the ones that can build communities around their products. And, you know, in some ways can, um, you know, kind of own more of the narrative because their product begin for exactly >>The volume you back to the user led growth. >>Exactly. And it's the religion of, I just love your product. Right. And I, I, I, um, Doug song is the founder of du security used to say, Hey, like, you know, the, the really like in today's world of like consumption based software, like the user is only gonna give you 90 seconds to figure out whether or not you're a company that's easy to do business with for right. And so you can say, and do all the things that you want about how easy you are to work with. But if the product isn't easy to install, if it's not easy to try, if it's not, if, if the it's gotta speak to the, >>Exactly. Speak to the user. But let me ask a question now that for the people watching, who are maybe entrepreneurial entre entrepreneurs, um, masterclass here is in session. So I have to ask you, do you prefer, um, an entrepreneur to come in and say, look at John. Here's where I'm at. Okay. First of all, storytelling's fine. Whether you're an extrovert or introvert, have your style, sell the story in a way that's authentic, but do you, what do you prefer to say? Here's where I'm at? Look, I have an idea. Here's my traction. I think here's my MVP prototype. I need help. Or do you wanna just see more stats? What's the, what's the preferred way that you like to see entrepreneurs come in and engage? >>There's tons of different styles, man. I think the single most important thing that every founder should know is that we, we don't invest in what things are today. We invest in what we think will become, right. And I think that's why we all get up in the morning and try to build something different, right? It's that we see the world a different way. We want it to be a different way, and we wanna work every single moment of the day to try to make that vision a reality. So I think the more that you can show people where you want to be, the more likely somebody is gonna to align with your vision and, and want to invest in you and wanna be along for the ride. So I, I wholeheartedly believe in showing off what you got today, because eventually we all get down to like, where are we and what are we gonna do together? But, um, no, I, you gotta show the path. I think the single most important thing for any founder and VC relationship is that they have the same vision. Uh, if you have the same vision, you can, you can get through bumps in the road, you can get through short term spills. You can all sorts of things in the middle of the journey can happen. Yeah. But it doesn't matter as much if you share the same long term vision, >>Don't flake out and, and be fashionable with the, the latest trends because it's over before you even get there. >>Exactly. I think many people that, that do what we do for a living will say, you know, ultimately the future is relatively easy to predict, but it's the timing that's impossible to predict. So you, you know, you sort of have to balance the, you know, we, we know that the world is going this way and therefore we're gonna invest a lot of money to try to make this a reality. Uh, but sometimes it happens ins six months. Sometimes it takes six years. Sometimes it takes 16 years. Uh, >>What's the hottest thing in enterprise that you see the biggest wave that people should pay attention to that you're looking at right now with Tebel partners, Tebel dot your site. What's the big wave. What's your big >>Wave. There there's three big trends that we invest in. And then the, the only things we do day in day out one is the explosion at open source software. So I think many people think that all software is unquestionably moving to an open source model in some form or another yeah. Tons of reasons to debate whether or not that is gonna happen an alwa timeline happening forever, but it is, it is accelerating faster than we've ever seen. So I, I think it's its one big mass of wave that we continue to ride. Um, second is the rise of data engineering. Uh, I think data engineering is in and of itself now a category of software. It's not just that we store data. It's now we move data and we develop applications on data. And, uh, I think data is in and of itself as big of a market as any of the other markets that we invest in. Uh, and finally it's the gift that keeps on giving. I've spent my entire career in it. We still feel that security is a market that is underinvested. It is, it continues to be the place where people need to continue to invest and spend more money. Yeah. Uh, and those are the three major trends that we run >>And security, you think we all need a do over, right? I mean, do we need a do over in security or is what's the core problem? I, >>I, I keep using this word underinvested because I think it's the right way to think about the problem. I think if you, I think people generally speaking, look at cyber security as an add-on. Yeah. But if you think about it, the whole like economy is moving online. And so in, in some ways like security is core to protecting the digital economy. And so it's, it shouldn't be an afterthought, right? It should be core to what everyone is doing. And that's why I think relative to the trillions of dollars that are at stake, uh, I believe the market size for cybersecurity is around 150 billion and it still is a fraction of what >>We're, what we're and even boom is booming now. So you get the convergence of national security, geopolitics, internet digital >>That's right. You mean arguably, right. Arguably again, it's the area of the world that people should be spending more time and more money given what to stake. >>I love your thesis. I gotta, I gotta say you gotta love your firm. Love who you're doing. We're big supporters of your mission. Congrat is on your entrepreneurial venture. And uh, we'll be, we'll be talking and maybe see a Cuban. Uh, >>Absolutely >>Not. Certainly EU maybe even north America's in Detroit this year. >>Huge fan of what you guys are doing here. Thank you so much for helping me on the show. >>Des bell VC Johnson here on the cube. Check him out. Founder for founders here on the cube, more coverage from San Francisco, California, after the short break, stay with us. Hey everyone. Welcome to the cue here. Live in San Francisco, California for AWS summit, 2022 we're live we're back with events. Also we're virtual. We got hybrid all kinds of events. This year, of course, 80% summit in New York city is happening this summer. We'll be there with the cube as well. I'm John. Again, John host of the cube. Got a great guest here. Justin Colby, owner and CEO of innovative solutions they booth is right behind us. Justin, welcome to the cube. >>Thank you. Thank you for having me. >>So we're just chatting, uh, off camera about some of the work you're doing. You're the owner of and CEO. Yeah. Of innovative. Yeah. So tell us the story. What do you guys do? What's the elevator pitch. Yeah. >><laugh> so the elevator pitch is we are, uh, a hundred percent focused on small to midsize businesses that are moving to the cloud or have already moved to the cloud and really trying to understand how to best control, cost, security, compliance, all the good stuff, uh, that comes along with it. Um, exclusively focused on AWS and, um, you know, about 110 people, uh, based in Rochester, New York, that's where our headquarters is. But now we have offices down in Austin, Texas up in Toronto, uh, Canada, as well as Chicago. Um, and obviously in New York, uh, you know, the, the business was never like this, uh, five years ago, um, founded in 1989, made the decision in 2018 to pivot and go all in on the cloud. And, uh, I've been a part of the company for about 18 years, bought the company about five years ago. And it's been a great ride. >>It's interesting. The manages services are interesting with cloud cause a lot of the heavy liftings done by AWS. So we had Matt on your team on earlier talking about some of the edge stuff. Yeah. But you guys are a managed cloud service. You got cloud advisory, you know, the classic service that's needed, but the demands coming from cloud migrations and application modernization and obviously data is a huge part of it. Huge. How is this factoring into what you guys do and your growth cuz you guys are the number one partner on the SMB side for edge. Yeah. For AWS, you got results coming in. Where's the, where's the forcing function. What's the pressure point. What's the demand like? Yeah. >>It's a great question. Every CEO I talk to, that's a small to mid-size business. I'll try and understand how to leverage technology better to help either drive a revenue target for their own business, uh, help with customer service as so much has gone remote now. And we're all having problems or troubles or issues trying to hire talent. And um, you know, tech is really at the, at the forefront and the center of that. So most customers are coming to us and they're like, listen, we gotta move to the out or we move some things to the cloud and we want to do that better. And um, there's this big misnomer that when you move to the cloud, you gotta automatically modernize. Yeah. And what we try to help as many customers understand as possible is lifting and shifting, moving the stuff that you maybe currently have OnPrem and a data center to the cloud first is a first step. And then, uh, progressively working through a modernization strategy is always the better approach. And so we spend a lot of time with small to midsize businesses who don't have the technology talent on staff to be able to do >>That. Yeah. They want to get set up. But the, the dynamic of like latency is huge. We're seeing that edge product is a big part of it. This is not a one-off happening around everywhere. It is. And it's not, it's manufacturing, it's the physical plant or location >>Literally. >>And so, and you're seeing more IOT devices. What's that like right now from a challenge and problem statement standpoint, are the customers, not staff, is the it staff kind of old school? Is it new skills? What's the core problem you guys solve >>The SMB space. The core issue nine outta 10 times is people get enamored with the latest and greatest. And the reality is not everything that's cloud based. Not all cloud services are the latest and greatest. Some things have been around for quite some time and are hardened solutions. And so, um, what we try to do with technology staff that has additional on-prem, uh, let's just say skill sets and they're trying to move to a cloud-based workload is we try to help those customers through education and through some practical, let's just call it use case. Um, whether that's a proof of concept that we're doing or whether that's, we're gonna migrate a small workload over, we try to give them the confidence to be able to not, not necessarily go it alone, but to, to, to have the, uh, the Gusto and to really have the, um, the, the opportunity to, to do that in a wise way. Um, and what I find is that most CEOs that I talk to, yeah, they're like, listen, the end of the day, I'm gonna be spending money in one place or another, whether that's OnPrem or in the cloud. I just want to know that I'm doing that in a way that helps me grow as quickly as possible status quo. I think every, every business owner knows that COVID taught us anything that status quo is, uh, is, is no. No. Good. >>How about factoring in the, the agility and speed equation? Does that come up a lot? It >>Does. I think, um, I think there's also this idea that if, uh, if we do a deep dive analysis and we really take a surgical approach to things, um, we're gonna be better off. And the reality is the faster you move with anything cloud based, the better you are. And so there's this assumption that we gotta get it right the first time. Yeah. In the cloud, if you start the, on your journey in one way, and you realize midway that it's not the right, let's just say the right place to go. It's not like buying a piece of iron that you put in the closet and now you own it in the cloud. You can turn those services on and off. It's a, gives you a much higher density for making decisions and failing >>Forward. Well actually shutting down the abandoning, the projects that early and not worrying about it, you got it. I mean, most people don't abandon stuff cuz they're like, oh, I own it. >>Exactly. >>And they get, they get used to it. Like, and then they wait too long. >>That's exactly. Yeah. >>Frog and boiling water as we used to say so, oh, it's a great analogy. So I mean this, this is a dynamic that's interesting. I wanna get more thoughts on it because like I'm a, if I'm a CEO of a company, like, okay, I gotta make my number. Yeah. I gotta keep my people motivated. Yeah. And I gotta move faster. So this is where you guys come in. I get the whole thing. And by the way, great service, um, professional services in the cloud right now are so hot because so hot, you can build it and then have option optionality. You got path decisions, you got new services to take advantage of. It's almost too much for customers. It is. I mean, everyone I talk to at reinvent, that's a customer. Well, how many announcements did Andy jazzy announcer Adam, you know, five, a thousand announcement or whatever they did with huge amounts. Right. Keeping track of it all. Oh, is huge. So what's the, what's the, um, the mission of, of your company. How does, how do you talk to that alignment? Yeah. Not just product. I can get that like values as companies, cuz they're betting on you and your people. >>They are, they are >>The values. >>Our mission is, is very simple. We want to help every small to mid-size business, leverage the power of the cloud. Here's the reality. We believe wholeheartedly. This is our vision that every company is going to become a technology company. So we go to market with this idea that every customer's trying to leverage the power of the cloud in some way, shape or form, whether they know it or don't know it. And number two, they're gonna become a tech company in the pro of that because everything is so tech-centric. And so when you talk about speed and agility, when you talk about the, the endless options and the endless permutations of solutions that a customer can buy in the cloud, how are you gonna ask a team of one or two people in your it department to make all those decisions going it alone or trying to learn it as you go, it only gets you so far working with a partner. >>I'll just give you some perspective. We work with about a thousand small to midsize business customers. More than 50% of those customers are on our managed services. Meaning know that we have their back and we're the safety net. So when a customer is saying, all right, I'm gonna spend a couple thousand dollars a month in the cloud. They know that that bill, isn't gonna jump to $10,000 a month going on loan. Who's there to help protect that. Number two, if you have a security posture and let's just say you're high profile and you're gonna potentially be more vulnerable to security attack. If you have a partner that's offering you some managed services. Now you, again, you've got that backstop and you've got those services and tooling. We, we offer, um, seven different products that are part of our managed services that give the customer the tooling, that for them to go out and buy on their own for a customer to go out today and go buy a new Relic solution on their own, it would cost 'em a fortune. If >>It's training alone would be insane. A risk factor not mean the cost. Yes, absolutely. Opportunity cost is huge, >>Huge, absolutely enormous training and development. Something. I think that is often, you know, it's often overlooked technologists. Typically they want to get their skills up. Yeah. They, they love to get the, the stickers and the badges and the pins, um, at innovative in 2018, when, uh, when we made the decision to go all on the club, I said to the organization, you know, we have this idea that we're gonna pivot and be aligned with AWS in such a way that it's gonna really require us all to get certified. My executive assistant at the time looks at me. She said, even me, I said, yeah, even you, why can't you get certified? Yeah. And so we made, uh, a conscious decision. It wasn't requirement isn't today to make sure everybody in the company has the opportunity to become certified. Even the people that are answering the phones at the front desk >>And she could be running the Kubernetes clusters. I >>Love it. It's amazing. So I'll tell you what, when that customer calls and they have a real Kubernetes issue, she'll be able to assist and get the right >>People involved. And that's a cultural factor that you guys have. So, so again, this is back to my whole point about SMBs and BIS is in general, small and large. It staffs are turning over the gen Z and millennials are in the workforce. They were provisioning top of rack switches. Right. First of all. And so if you're a business, there's also the, I call the build out, um, uh, return factor, ROI piece. At what point in time as an owner or SMB, do I get the why? Yeah. I gotta hire a person to manage it. That person's gonna have five zillion job offers. Yep. Uh, maybe who knows? Right. I got cyber security issues. Where am I gonna find a cyber person? Yeah. A data compliance. I need a data scientist and a compliance person. Right. Maybe one in the same. Right. Good luck. Trying to find a data scientist. Who's also a compliance person. Yep. And the list goes on. I can just continue. Absolutely. I need an SRE to manage the, the, uh, the sock report and we can pen test. Right. >>Right. >>These are, these are >>Like critical issues. This >>Is just like, these are the table stakes. >>Yeah. And, and every, every business owner's thinking about this, that's, >>That's what, at least a million in bloating, if not three or more Just to get that going. Yeah. Then it's like, where's the app. Yeah. So there's no cloud migration. There's no modernization on the app side now. Yeah. No. And nevermind AI and ML. That's >>Right. That's right. So to try to go it alone, to me, it's hard. It's incredibly difficult. And the other thing is, is there's not a lot of partners, so the partner, >>No one's raising their hand boss. I'll do all that exactly. In the it department. >>Exactly. >>Like, can we just call up, uh, you know, our old vendor that's >>Right. <laugh> right. Our old vendor. I like >>It, >>But that's so true. I mean, when I think about how, if I were a business owner starting a business today and I had to build my team, um, and the amount of investment that it would take to get those people skilled up and then the risk factor of those people now having the skills and being so much more in demand and being recruited away, that's a real, that's a real issue. And so how you build your culture around that is, is very important. And it's something that we tell, talk about every, with every one of our small to mid-size >>Businesses. So just, I wanna get, I want to get your story as CEO. Okay. Take us through your journey. You said you bought the company and your progression to, to being the owner and CEO of innovative yeah. Award winning guys doing great. Uh, great bet on a good call. Yeah. Things are good. Tell your story. What's your journey? >>It's real simple. I was, uh, I was a sophomore at the Rochester Institute of technology in 2003. And, uh, I knew that I, I was going to school for it and I, I knew I wanted to be in tech. I didn't know what I wanted to do, but I knew I didn't wanna code or configure routers and switches. So I had this great opportunity with the local it company that was doing managed services. We didn't call it at that time innovative solutions to come in and, uh, jump on the phone and dial for dollars. I was gonna cold call and introduce other, uh, small to midsize businesses locally in Rochester, New York go to Western New York, um, who innovative was now. We were 19 people at the time. And I came in, I did an internship for six months and I loved it. I learned more in those six months that I probably did in my first couple of years at, uh, at RT long story short. >>Um, for about seven years, I worked, uh, to really help develop, uh, sales process and methodology for the business so that we could grow and scale. And we grew to about 30 people. And, um, I went to the owners at the time in 2010 and I was like, Hey, on the value of this business and who knows where you guys are gonna be another five years, what do you think about making me an owner? And they were like, listen, you got long ways before you're gonna be an owner, but if you stick it out in your patient, we'll, um, we'll work through a succession plan with you. And I said, okay, there were four other individuals at the time that were gonna also buy into the business with me. >>And they were the owners, no outside capital, none >>Zero, well, 2014 comes around. And, uh, the other folks that were gonna buy into the business with me that were also working at innovative for different reasons, they all decided that it wasn't for them. One started a family. The other didn't wanna put capital in. Didn't wanna write a check. Um, the other had a real big problem with having to write a check. If we couldn't make payroll, I'm like, well, that's kind of like if we're owners, we're gonna have to like cover that stuff. <laugh> so >>It's called the pucker factor. >>Exactly. So, uh, I sat down with the CEO in early 2015, and, uh, we made the decision that I was gonna buy the three partners out, um, go through an early now process, uh, coupled with, uh, an interesting financial strategy that wouldn't strap the business, cuz they cared very much. The company still had the opportunity to keep going. So in 2016 I bought the business, um, became the sole owner. And, and at that point we, um, we really focused hard on what do we want this company to be? We had built this company to this point. Yeah. And, uh, and by 2018 we knew that pivoting going all in on the cloud was important for us and we haven't looked back. >>And at that time the proof points were coming clearer and clearer 2012 through 15 was the early adopters, the builders, the startups and early enterprises. Yes. The capital ones of the world. Exactly. And those kinds of big enterprises, the GA I don't wanna say gamblers, but ones that were very savvy. The innovators, the FinTech folks. Yep. The hardcore glass eating enterprises >>Agreed, agreed to find a small to mid-size business, to migrate completely to the cloud as, as infrastructure was considered. That just didn't happen as often. Um, what we were seeing where a lot of our small to mid-size as customers, they wanted to leverage cloud-based backup or they wanted to leverage a cloud for disaster recovery because it lent itself. Well, early days, our most common cloud customer though, was the customer that wanted to move messaging and collaboration, the Microsoft suite to the cloud. And a lot of 'em dipped their toe in the water. But by 2017 we knew infrastructure was around the corner. Yeah. And so, uh, we only had two customers on AWS at the time. Um, and we, uh, we, we made the decision to go all in >>Justin. Great to have you on the cube. Thank you. Let's wrap up. Uh, tell me the hottest product that you have. Is it migrations? Is it the app modernization? Is it data? What's the hot product and then put a plug in for the company. Awesome. >>So, uh, there's no question. Every customer is looking to migrate workloads and try to figure out how to modernize for the future. We have very interesting, sophisticated yet elegant funding solutions to help customers with the cash flow, uh, constraints that come along with those migrations. So any SMB that's thinking about migrating to the cloud, they should be talking innovative solutions. We know how to do it in a way that allows those customers not to be cash strap and gives them an opportunity to move forward in a controlled, contained way so that they can modernize. >>So like insurance, basically for them not insurance class in the classic sense, but you help them out on the, on the cash exposure. >>Absolutely. We are known for that and we're known for being creative with those customers and being empathetic to where they are in their journey. >>And that's the cloud upside is all about doubling down on the variable wind. That's right. Seeing the value and Ling down on it. Absolutely not praying for it. Yeah. <laugh> all right, Justin. Thanks for coming on. You really appreciate it. >>Thank you very much for having me. >>Okay. This is the cube coverage here live in San Francisco, California for AWS summit, 2022. I'm John for your host. Thanks for watching. We're back with more great coverage for two days after this short break, >>Live on the floor and see San Francisco for a AWS summit. I'm John ferry, host of the cube here for the next two days, getting all the action we're back in person. We're at a AWS reinvent a few months ago. Now we're back. Events are coming back and we're happy to be here with the cube. Bring all the action. Also virtual. We have a hybrid cube. Check out the cube.net, Silicon angle.com for all the coverage. After the event. We've got a great guest ticking off here. Matthew Park, director of solutions, architecture with innovation solutions. The booth is right here. Matthew, welcome to the cube. >>Thank you very much. I'm glad to be >>Here. So we're back in person. You're from Tennessee. We were chatting before you came on camera. Um, it's great to have to be back through events. >>It's amazing. This is the first, uh, summit I've been to and what two, three years. >>It's awesome. We'll be at the UHS summit in New York as well. A lot of developers and a big story this year is as developers look at cloud going distributed computing, you got on premises, you got public cloud, you got the edge. Essentially the cloud operations is running everything dev sec ops, everyone kind of sees that you got containers, you got Kubernetes, you got cloud native. So the game is pretty much laid out mm-hmm <affirmative> and the edge is with the actions you guys are number one, premier partner at SMB for edge. >>That's right. >>Tell us about what you guys doing at innovative and, uh, what you do. >>That's right. Uh, so I'm the director of solutions architecture. Uh, me and my team are responsible for building out the solutions that are around, especially the edge public cloud for us edge is anything outside of an AWS availability zone. Uh, we are deploying that in countries that don't have AWS infrastructure in region. They don't have it. Uh, give an example, uh, example would be Panama. We have a customer there that, uh, needs to deploy some financial tech and compute is legally required to be in Panama, but they love AWS and they want to deploy AWS services in region. Uh, so they've taken E EKS anywhere. We've put storage gateway and, uh, snowball, uh, in region inside the country and they're running their FinTech on top of AWS services inside Panama. >>You know, it's interesting, Matthew is that we've been covering a, since 2013 with the cube about their events. And we watched the progression and jazzy was, uh, was in charge and became the CEO. Now Adam's in charge, but the edge has always been that thing they've been trying to avoid. I don't wanna say trying to avoid, of course, Amazon would listen to the customers. They work backwards from the customer. We all know that. Uh, but the real issue was they were they're bread and butters EC two and S three. And then now they got tons of services and the cloud is obviously successful and seeing that, but the edge brings up a whole nother level. >>It does computing. It >>Does. That's not centralized in the public cloud now they got regions. So what is the issue at the edge what's driving the behavior. Outpost came out as a reaction to competitive threats and also customer momentum around OT, uh, operational technologies. And it merging. We see that the data at the edge, you got 5g having. So it's pretty obvious, but there's a slow transition. What was the driver for the edge? What's the driver now for edge action for AWS >>Data is the driver for the edge. Data has gravity, right? And it's pulling compute back to where the customer's generating that data and that's happening over and over again. You said it best outpost was a reaction to a competitive situation where today we have over 15 AWS edge services and those are all reactions to things that customers need inside their data centers on location or in the field like with media companies. >>Outpost is interesting. We always used to riff on the cube cause it's basically Amazon and a box pushed in the data center, running native, all the stuff, but now cloud native operations are kind of becoming standard. You're starting to see some standard Deepak syncs. Group's doing some amazing work with open source Rauls team on the AI side, obviously, uh, you got SW, he was giving the keynote tomorrow. You got the big AI machine learning big part of that edge. Now you can say, okay, outpost, is it relevant today? In other words, did outpost do its job? Cause EKS anywhere seems to be getting a lot of momentum. You see local zones, the regions are kicking ass for Amazon. This edge piece is evolving. What's your take on EKS anywhere versus say outpost? >>Yeah, I think outpost did its job. It made customers that were looking at outpost really consider, do I wanna invest in this hardware? Do I, do I wanna have, um, this outpost in my data center, do I want to manage this over the long term? A lot of those customers just transitioned to the public cloud. They went into AWS proper. Some of those customers stayed on prem because they did have use cases that were, uh, not a good fit for outposts. They weren't a good fit. Uh, in the customer's mind for the public AWS cloud inside an availability zone. Now what's happening is as AWS is pushing these services out and saying, we're gonna meet you where you are with 5g. We're gonna meet you where you are with wavelength. We're gonna meet you where you are with EKS anywhere. Uh, I think it has really reduced the amount of times that we have conversations about outposts and it's really increased. We can deploy fast. We don't have to spin up outpost hardware. We can go deploy EKS anywhere or in your VMware environment. And it's increasing the speed of adoption >>For sure. Right? So you guys are making a lot of good business decisions around managed cloud service. That's right. Innovative as that you get the cloud advisory, the classic professional services for the specific edge piece and, and doing that outside of the availability zones and regions for AWS, um, customers in, in these new areas that you're helping out are, they want cloud, like they want to have modernization a modern applications. Obviously they got data machine learning and AI, all part of that. What's the main product or, or, or gap that you're filling for AWS, uh, outside of their availability zones or their regions that you guys are delivering. What's the key is it. They don't have a footprint. Is it that it's not big enough for them? What's the real gap. What's why, why are you so successful? >>So what customers want when they look towards the cloud is they want to focus on, what's making them money as a business. They want on their applications. They want to focus on their customers. So they look towards AWS cloud and say, AWS, you take the infrastructure. You take, uh, some of the higher layers and we'll focus on our revenue generating business, but there's a gap there between infrastructure and revenue generating business that innovative slides into, uh, we help manage the AWS environment. Uh, we help build out these things in local data centers for 32 plus year old company. We have traditional on-premises people that know about deploying hardware that know about deploying VMware to host EKS anywhere. But we also have most of our company totally focused on the AWS cloud. So we're filling that gap in helping of these AWS services, manage them over the long term. So our customers can go to just primarily and totally focusing on their revenue generating business. So >>Basically you guys are basically building AWS edges, >>Correct? >>For correct companies, correct? Mainly because the, the needs are there, you got data, you got certain products, whether it's, you know, low latency type requirements, right. And then they still work with the regions, right. It's all tied together, right. Is that how it works? Right. >>And, and our customers, even the ones in the edge, they also want us to build out the AWS environment inside the availability zone, because we're always gonna have a failback scenario. If we're gonna deploy FinTech in the Caribbean, we talk about hurricanes and we're gonna talk about failing back into the AWS availability zones. So innovative is filling that gap across the board, whether it be inside the AWS cloud or on the AWS edge. >>All right. So I gotta ask you on the, since you're at the edge in these areas, I won't say underserved, but developing areas where you now have data and you have applications that are tapping into that, that required. It makes total sense. We're seeing that across the board. So it's not like it's, it's an outlier it's actually growing. Yeah. There's also the crypto angle. You got the blockchain. Are you seeing any traction at the edge with blockchain? Because a lot of people are looking at the web three in these areas like Panama, you mentioned FinTech. And in, in the islands there a lot of, lot of, lot of web three happening. What's your, what's your view on the web three world right now, relative >>To we, we have some customers actually deploying crypto, especially, um, especially in the Caribbean. I keep bringing the Caribbean up, but it's, it's top of my mind right now we have customers that are deploying crypto. A lot of, uh, countries are choosing crypto to underlie parts of their central banks. Yeah. Um, so it's, it's up and coming a, uh, I, I have some, you know, personal views that, that crypto is still searching for a use case. Yeah. And, uh, I think it's searching a lot and, and we're there to help customers search for that use case. Uh, but, but crypto, as a, as a, uh, technology, um, lives really well on the AWS edge. Yeah. Uh, and, and we're having more and more people talk to us about that. Yeah. And ask for assistance in the infrastructure, because they're developing new cryptocurrencies every day. Yeah. It's not like they're deploying Ethereum or anything specific. They're actually developing new currencies and, and putting them out there on it's >>Interesting. I mean, first of all, we've been doing crypto for many, many years. We have our own little, um, you know, projects going on. But if you look talk to all the crypto people that say, look, we do a smart concept. We use the blockchain. It's kind of over a lot of overhead and it's not really their technical already, but it's a cultural shift, but there's underserved use cases around use of money, but they're all using the blockchain, just for this like smart contracts for instance, or certain transactions. And they go into Amazon for the database. Yeah. <laugh> they all don't tell anyone we're using a centralized service, but what happened to decentralized. >>Yeah. And that's, and that's the conversation performance issue. Yeah. And, and it's a cost issue. Yeah. And it's a development issue. Um, so I think more and more as, as some of these, uh, currencies maybe come up, some of the smart contracts get into, uh, they find their use cases. I think we'll start talking about how does that really live on, on AWS and, and what does it look like to build decentralized applications, but with AWS hardware and services. >>Right. So take me through, uh, a use case of a customer, um, Matthew around the edge. Okay. So I'm a customer, pretend I'm a customer, Hey, you know, I'm, we're in an underserved area. I want to modernize my business. And I got my developers that are totally peaked up on cloud. Um, but we've identified that it's just a lot of overhead latency issues. I need to have a local edge and serve my ad. And I also want all the benefit of the cloud. So I want the modernization and I wanna migrate to the cloud for all those cloud benefits and the goodness of the cloud. What's the answer. Yeah. >>Uh, big thing is, uh, industrial manufacturing, right? That's, that's one of the best use cases, uh, inside industrial manufacturing, we can pull in many of the AWS edge services we can bring in, uh, private 5g, uh, so that all the, uh, equipment inside that, that manufacturing plant can be hooked up. They don't have to pay huge overheads to deploy 5g it's, uh, better than wifi for the industrial space. Um, when we take computing down to that industrial area, uh, because we wanna do pre-procesing on the data. Yeah. We want to gather some analytics. We deploy that with, uh, regular commercial available hardware running VMware, and we deploy EKS anywhere on that. Uh, inside of that manufacturing plant, uh, we can do pre-procesing on things coming out of the, uh, the robotics that depending on what we're manufacturing, right. Uh, and then we can take those refined analytics and for very low cost with maybe a little bit longer latency transmit those back, um, to the AWS availability zone, the, the standard for >>Data, data lake, or whatever, to >>The data lake. Yeah. Data lake house, whatever it might be. Um, and we can do additional data science on that once it gets to the AWS cloud. Uh, but a lot of that, uh, just in time business decisions, just in time, manufacturing decisions can all take place on an AWS service or services inside that manufacturing plant. And that's, that's one of the best use cases that we're >>Seeing. And I think, I mean, we've been seeing this on the queue for many, many years, moving data around is very expensive. Yeah. But also compute going to the data that saves that cost yep. On the data transfer also on the benefits of the latency. So I have to ask you, by the way, that's standard best practice now for the folks watching don't move the data, unless you have to, um, those new things are developing. So I wanna ask you what new patterns are you seeing emerging once this new architecture's in place? Love that idea, localize everything right at the edge, manufacturing, industrial, whatever, the use case, retail, whatever it is. Right. But now what does that change in the, in the core cloud? This is a, there's a system element here. Yeah. What's the new pattern. There's >>Actually an organizational element as well, because once you have to start making the decision, do I put this compute at the point of use or do I put this compute in the cloud out? Uh, now you start thinking about where business decisions should be taking place. Uh, so not only are you changing your architecture, you're actually changing your organization because you're thinking, you're thinking about a dichotomy you didn't have before. Uh, so now you say, okay, this can take place here. Uh, and maybe maybe decision can wait. Right? Yeah. Uh, and then how do I visualize that? By >>The way, it could be a bot too, doing the work for management. Yeah. <laugh> exactly. You got observability going, right. But you gotta change the database architecture on the back. So there's new things developing. You've got more benefit. There >>Are, there are. And, and we have more and more people that, that want to talk less about databases and want to talk more about data lakes because of this. They want to talk more about customers are starting to talk about throwing away data, uh, you know, for the past maybe decade. Yeah. It's been store everything. And one day we will have a data science team that we hire in our organization to do analytics on this decade of data. And >>Well, I mean, that's, that's a great point. We don't have time to drill into, maybe we do another session on this, but the one pattern was income of the past year is that throwing away data's bad. Even data lakes that so-called turn into data swamps, actually, it's not the case. You look at data, brick, snowflake, and other successes out there. And even time series data, which may seem irrelevant efforts over actually matters when people start retrain their machine learning algorithms. Yep. So as data becomes code, as we call it our lab showcase, we did a whole, whole, that event on this. The data's good in real time and in the lake. Yeah. Because the iteration of the data feeds the machine learning training. Things are getting better with the old data. So it's not throw away. It's not just business benefits. Yeah. There's all kinds of new scale. There >>Are. And, and we have, uh, many customers that are run petabyte level. Um, they're, they're essentially data factories on, on, uh, on premises, right? They're, they're creating so much data and they're starting to say, okay, we could analyze this, uh, in the cloud, we could transition it. We could move petabytes of data to the AWS cloud, or we can run, uh, computational workloads on premises. We can really do some analytics on this data transition, uh, those high level and sort of raw analytics back to AWS run 'em through machine learning. Um, and we don't have to transition 10, 12 petabytes of data into AWS. >>So I gotta end the segment on a, on a kind of a, um, fun note. I was told to ask you about your personal background on premise architect, a cloud and skydiving instructor. <laugh> how does that all work together? What tell, what does this mean? Yeah. >>Uh, you >>Jumped out a plane and got a job. You, you got a customer to jump out >>Kind of. So I was jump, I was teaching Scott eing, uh, before I, before I started in the cloud space, this was 13, 14 years ago. I was a, I still am a Scott I instructor. Yeah. Uh, I was teaching Scott eing and I heard out of the corner of my ear, uh, a guy that owned an MSP that was lamenting about, um, you know, storing data and, and how his cus customers are working. And he can't find enough people to operate all these workloads. So I walked over and said, Hey, this is, this is what I went to school for. Like, I'd love to, you know, uh, I was living in a tent in the woods teaching scout. I think I was like, I'd love to not live in a tent in the woods. So, uh, uh, I started in the first day there, uh, we had a, a discussion, uh, EC two, just come out <laugh> um, and, uh, like, >>This is amazing. >>Yeah. And so we had this discussion, we should start moving customers here. And, uh, and that totally revolutionized that business, um, that, that led to, uh, that that guy actually still owns a skydiving airport. But, um, but through all of that and through being an on premises migrated me and myself, my career into the cloud, and now it feels like, uh, almost, almost looking back and saying, now let's take what we learned in the cloud and, and apply those lessons and those services to >>It's. So it's such a great story, you know, I was gonna, you know, you know, the, the, the, the whole, you know, growth mindset pack your own parachute, you know, uh, exactly. You know, the cloud in the early day was pretty much will the shoot open. Yeah. It was pretty much, you had to roll your own cloud at that time. And so, you know, you, you jump on a plane, you gotta make sure that parachute is gonna open. >>And so was Kubernetes by the way, 2015 or so when, um, when that was coming out, it was, I mean, it was, it was still, and I, maybe it does still feel like that to some people. Right. But, uh, it was, it was the same kind of feeling that we had in the early days, AWS, the same feeling we have when we >>It's pretty much now with you guys, it's more like a tandem jump. Yeah. You know, but, but it's a lot of, lot of this cutting edge stuff, like jumping out of an airplane. Yeah. You guys, the right equipment, you gotta do the right things. Exactly. >>Right. >>Matthew, thanks for coming on the cube. Really appreciate it. Absolutely great conversation. Thanks for having me. Okay. The cubes here live and San Francisco for summit. I'm John Forry host of the cube. Uh, we'll be at a summit in New York coming up in the summer as well. Look up for that. look@thiscalendarforallthecubeactionatthecube.net. We'll be right back with our next segment after this break. >>Okay. Welcome back everyone to San Francisco live coverage here, we're at the cube a be summit 2022. We're back in person. I'm John fury host to the cube. We'll be at the eight of his summit in New York city. This summer, check us out then. But right now, two days in San Francisco, getting all the coverage what's going on in the cloud, we got a cube alumni and friend of the cube, my dudes, car CEO, investor, a Sierra, and also an investor and a bunch of startups, angel investor. Gonna do great to see you. Thanks for coming on the cube. Good to see you. Good to see you, sir. Chris. Cool. How are, are you >>Good? How are you? >>So congratulations on all your investments. Uh, you've made a lot of great successes, uh, over the past couple years, uh, and your company raising, uh, some good cash as Sarah. So give us the update. How much cash have you guys raised? What's the status of the company product what's going on? First >>Of all, thank you for having me back to be business with you. Never great to see you. Um, so is a company started around four years back. I invested with a few of the investors and now I'm the CEO there. Um, we have raised close to a hundred million there. Uh, the investors are people like Norwes Menlo, Tru ventures, coast, lo ventures, Ram Sheam and all those people, all well known guys. The Andy Beckel chime, Paul Mo uh, main web. So a whole bunch of operating people and, uh, Silicon valley VCs are involved >>And has it come? >>It's going well. We are doing really well. We are going almost 300% year over year. Uh, for last three years, the space ISR is going after is what I call the applying AI for customer service. It operations, it help desk, uh, the same place I used to work at ServiceNow. We are partners with ServiceNow to take, how can we argument for employees and customers, Salesforce, and ServiceNow to take it to the next stage? >>Well, I love having you on the cube, Dave and I, Dave Valenti as well loves having you on too, because you not only bring the entrepreneurial CEO experience, you're an investor. You're like a GE, you're like a guest analyst. <laugh> >>You know who you >>Get to call this fun to talk. You though, >>You got the commentary, you, your, your finger on the pulse. Um, so I gotta ask you obviously, AI and machine learning, machine learning AI, or you want to phrase it. Isn't every application. Now, AI first, uh, you're seeing a lot of that going on. You're starting to see companies build the modern applications at the top of the stack. So the cloud scale has hit. We're seeing cloud scale. You predicted that we talked about on cube many times. Now you have that past layer with a lot more services and cloud native becoming a standard layer. Containerizations growing DACA just raised a hundred million on a 2 billion valuation back from the dead after they pivoted from an enterprise services. So open source developers are booming. Um, where's the action. I mean, is there data control, plane emerging, AI needs data. There's a lot of challenges around this. There's a lot of discussions and a lot of companies being funded, observability there's 10 million observability companies. Data is the key. What's your angle on this? What's your take. Yeah, >>No, look, I think I'll give you the view that I see right from my side. Obviously data is very clear. So the things that remember system of recorded you and me talked about the next layer is called system of intelligence. That's where the AI will play. Like we talk cloud NA it'll be called AI, NA AI native is a new buzzword and using the AI customer service it operations. You talk about observability. I call it, AIOps applying AOPs for good old it operation management, cloud management. So you'll see the AOPs applied for whole list of, uh, application from observability doing the CMDB, predicting the events insurance. So I see a lot of work clicking for AIOps and service desk. What needs to be helped us with ServiceNow BMC G you see a new ELA emerging as a system of intelligence. Uh, the next would be is applying AI with workflow automation. So that's where you'll see a lot of things called customer workflow, employee workflows. So think of what UI path automation, anywhere ServiceNow are doing, that area will be driven with a AI workflows. So you'll see AI going >>Off is RPA a company is AI, is RPA a feature of something bigger? Or can someone have a company on RPA UI pass? One will be at their event this summer? Um, is it a product company? I mean, I mean, RPA is almost, should be embedded in everything. It's >>A feature. It is very good point. Very, very good thinking. So one is, it's a category for sure. Like, as we thought, it's a category, it's an area where RPA may change the name. I call it much more about automation, workflow automation, but RPA and automation is a category. Um, it's a company, or, but that automation should be embedded in every area. Yeah. Like we call cloud NA and AI NATO it'll become automation. NA yeah. And that's your thinking. >>It's almost interesting me. I think about the, what you're talking about what's coming to mind is I'm kinda having flashbacks to the old software model of middleware. Remember at middleware, it was very easy to understand it. It was middleware. It sat between two things and then the middle, and it was software abstraction. Now you have all, all kinds of workflows, abstractions everywhere. So multiple databases, it's not a monolithic thing. Right? Right. So as you break that down, is this the new modern middleware? Because what you're talking about is data workflows, but they might be siloed or they integrated. I mean, these are the challenges. This is crazy. What's the, >>So don't about the databases become called poly databases. Yeah. I call this one polyglot automation. So you need automation as a layer, as a category, but you also need to put automation in every area like you were talking about. It should be part of service. Now it should be part of ISRA, like every company, every Salesforce. So that's why you see MuleSoft and Salesforce buying RPA companies. So you'll see all the SaaS companies, cloud companies having an automation as a core. So it's like how you have a database and compute and sales and networking. You'll also have an automation as a layer <inaudible> inside every stack. >>All right. So I wanna shift gears a little bit and get your perspective on what's going on behind us. You can see, uh, behind us, you've got the expo hall. We got, um, we're back to vents, but you got, you know, AMD, Clum, Ove, uh, Dynatrace data, dog, innovative, all the companies out here that we know, we interview them all. They're trying to be suppliers to this growing enterprise market. Right. Okay. But now you also got the entrepreneurial equation. Okay. We're gonna have John Sado on from Bel later today. He's a former NEA guy and we always talk to Jerry, Jen. We know all the, the VCs. What does the startups look like? What does the state of the, in your mind, cause you, I know you invest the entrepreneurial founder situation, clouds bigger. Mm-hmm <affirmative> global, right? Data's part of it. You mentioned data's code. Yes. Basically data is everything. What's it like for a first an entrepreneur right now who's starting a company. What's the white space. What's the attack plan. How do they get in the market? How do they engineer everything? >>Very good. So I'll give it to, uh, two things that I'm seeing out there. Remember leaders of Amazon created the startups 15 years back. Everybody built on Amazon now, Azure and GCP. The next layer would be is people don't just build on Amazon. They're going to build it on top of snowflake. Companies are snowflake becomes a data platform, right? People will build on snowflake. Right? So I see my old boss flagman try to build companies on snowflake. So you don't build it just on Amazon. You build it on Amazon and snowflake. Snowflake will become your data store. Snowflake will become your data layer. Right? So I think that's in the of, <inaudible> trying to do that. So if I'm doing observability AI ops, if I'm doing next level of Splunk SIM, I'm gonna build it on snowflake, on Salesforce, on Amazon, on Azure, et cetera. >>It's interesting. You know, Jerry Chan has it put out a thesis a couple months ago called castles in the cloud where your moat is, what you do in the cloud. Not necessarily in the, in the IP. Um, Dave LAN and I had last reinvent, coined the term super cloud, right? He's got a lot of traction and a lot of people throwing, throwing mud at us, but we were, our thesis was, is that what Snowflake's doing? What Goldman S Sachs is doing. You starting to see these clouds on top of clouds. So Amazon's got this huge CapEx advantage. And guys like Charles Fitzgeral out there, who we like was kind of shit on us saying, Hey, you guys terrible, they didn't get it. Like, yeah. I don't think he gets it, but that's a whole, can't wait to debate him publicly on this. <laugh> if he's cool. Um, but snowflake is on Amazon. Yes. Now they say they're on Azure now. Cause they've got a bigger market and they're public, but ultimately without a AWS snowflake doesn't exist. And, and they're reimagining the data warehouse with the cloud, right? That's the billion dollar opportunity. >>It is. It is. They both are very tight. So imagine what Frank has done at snowflake and Amazon. So if I'm a startup today, I want to build everything on Amazon where possible whatever is, I cannot build. I'll make the pass layer. Remember the middle layer pass will be snowflake. So can build it on snowflake. I can use them for data layer. If I really need to size, I'll build it on four.com Salesforce. So I think that's where you'll see. So >>Basically if you're an entrepreneur, the north star in terms of the outcome is be a super cloud. >>It is, >>That's the application on another big CapEx ride, the CapEx of AWS or cloud, >>And that reduce your product development, your go to market and you get use the snowflake marketplace to drive your engagement. >>Yeah. Yeah. How are, how is Amazon and the clouds dealing with these big whales? The snowflakes of the world? I mean, I know they got a great relationship, uh, but snowflake now has to run a company they're public. Yeah. So, I mean, I'll say, I think got Redshift. Amazon has got red, um, but Snowflake's a big customer. They're probably paying AWS think big bills too. >>So John, very good. Cause it's like how Netflix is and Amazon prime, right. Netflix runs on Amazon, but Amazon has Amazon prime that co-option will be there. So Amazon will have Redshift, but Amazon is also partnering with, uh, snowflake to have native snowflake data warehouse as a data layer. So I think depending on the application use case, you have to use each of the above. I think snowflake is here for a long term. Yeah. Yeah. So if I'm building an application, I want to use snowflake then writing from stats. >>Well, I think that comes back down to entrepreneurial hustle. Do you have a better product? Right. Product value will ultimately determine it as long as the cloud doesn't, You know, foreclose your value that's right. But some sort of internal hack, but I think, I think the general question that I have is that I think it's okay to have a super cloud like that because the rising tide is still happening at some point. When does the rising tide stop >>And >>Do the people shopping up their knives, it gets more competitive or is it just an infinite growth cycle? I >>Think it's growth. You call it cloud scale. You invented the word cloud scale. So I think look, cloud will continually agree, increase. I think there's, as long as there are more movement from on, uh, OnPrem to the classical data center, I think there's no reason at this point, the rumor, the old lift and shift that's happening in like my business. I see people lift and shifting from the it operations. It helpless, even the customer service service now and, uh, ticket data from BMCs CAS like Microfocus, all those workloads are shifted to the cloud, right? So cloud ticketing system is happening. Cloud system of record is happening. So I think this train has still a long way to go made. >>I wanna get your thoughts for the folks watching that are, uh, enterprise buyers or practitioners, not suppliers to the market, feel free to, to XME or DMing. Next question's really about the buying side, which is if I'm a customer, what's the current, um, appetite for startup products. Cause you know, the big enterprises now and, you know, small, medium, large, and large enterprise are all buying new companies cuz a startup can go from zero to relevant very quickly. So that means now enterprises are engaging heavily with startups. What's it like what's is there a change in order of magnitude of the relationship between the startup selling to, or a growing startup selling to an enterprise? Um, have you seen changes there? I mean I'm seeing some stuff, but why don't we get your thoughts on that? What, no, it is. >>If I remember going back to our 2007 or eight, it, when I used to talk to you back then when Amazon started very small, right? We are an Amazon summit here. So I think enterprises on the average used to spend nothing with startups. It's almost like 0% or 1% today. Most companies are already spending 20, 30% with startups. Like if I look at a CIO line business, it's gone. Yeah. Can it go more? I think it can double in the next four, five years. Yeah. Spending on the startups. >>Yeah. And check out, uh, AWS startups.com. That's a site that we built for the startup community for buyers and startups. And I want to get your reaction because I reference the URL cause it's like, there's like a bunch of companies we've been promoting because the solutions that startups have actually are new stuff. Yes. It's bending, it's shifting left for security or using data differently or um, building tools and platforms for data engineering. Right. Which is a new persona that's emerging. So you know, a lot of good resources there, um, and gives back now to the data question. Now, getting back to your, what you're working on now is what's your thoughts around this new, um, data engineering persona, you mentioned AIOps, we've been seeing AIOps IOPS booming and that's creating a new developer paradigm that's right. Which we call coin data as code data as code is like infrastructure as code, but it's for data, right? It's developing with data, right? Retraining machine learnings, going back to the data lake, getting data to make, to do analysis, to make the machine learning better post event or post action. So this, this data engineers like an SRE for data, it's a new, scalable role we're seeing. Do you see the same thing? Do you agree? Um, do you disagree or can you share >>Yourself? No, I have a lot of thoughts that plus I see AIOP solutions in the future should be not looking back. I need to be like we are in San Francisco bay. That means earthquake prediction. Right? I want AOPs to predict when the outages are gonna happen. When there's a performance issue. I don't think most AOPs vendors have not gone there yet. Like I spend a lot of time with data dog, Cisco app Dyna, right? Dynatrace, all this solution will go future towards to proactive solution with AOPs. But what you bring up a very good point on the data side. I think like we have a Amazon marketplace and Amazon for startup, there should be data exchange where you want to create for AOPs and AI service that customers are give the data, share the data because we thought the data algorithms are useless. I can come the best algorithm, but I gotta train them, modify them, tweak them, make them better, make them better. Yeah. And I think their whole data exchange is the industry has not thought through something you and me talk many times. Yeah. Yeah. I think the whole, that area is very important. >>You've always been on, um, on the Vanguard of data because, uh, it's been really fun. Yeah. >>Going back to our big data days back in 2009, you know, >>Look at, look how much data bricks has grown. >>It is uh, double, the key >>Cloud kinda went private, so good stuff. What are you working on right now? Give a, give a, um, plug for what you're working on. You'll still investing. >>I do still invest, but look, I'm a hundred percent on ISRA right now. I'm the CEO there. Yeah. Okay. So right. ISRA is my number one baby right now. So I'm looking at that growing customers and my customers are some of them, you like it's zoom auto desk, Mac of fee, uh, grandchildren, all the top customers. Um, mainly for it help desk customer service. AIOps those are three product lines and going after enterprise and commercial deals. >>And when should someone buy your product? What's what's their need? What category is it? >>I think they look whenever somebody needs to buy the product is if you need AOP solution to predict, keep your lights on predict S one area. If you want to improve employee experience, you are using a slack teams and you want to automate all your workflows. That's another value problem. Third is customer service. You don't want to hire more people to do it. Some of the areas where you want to scale your company, grow your company, eliminate the cost customer service, >>Great stuff, man. Doing great to see you. Thanks for coming on. Congratulations on the success of your company and your investments. Thanks for coming on the cube. Okay. I'm John fur here at the cube live in San Francisco for day one of two days of coverage of 80 summit, 2022. And we're gonna be at 80 summit in San, uh, in New York and the summer. So look for that on this calendar, of course go to eight of us, startups.com. I mentioned that it's a site for all the hot startups and of course the cube.net and Silicon angle.com. Thanks for watching. We'll be back more coverage after this short break. >>Okay. Welcome back everyone. This to cubes coverage here in San Francisco, California, a Davis summit, 2022, the beginning of the event season, as it comes back a little bit smaller footprint, a lot of hybrid events going on, but this is actually a physical event, a summit new York's coming in the summer. We'll be there too with the cube on the set. We're getting back in the groove, psyched to be back. We were at reinvent, uh, as well, and we'll see more and more cube, but you're gonna see a lot of virtual cube, a lot of hybrid cube. We wanna get all those conversations, try to get more interviews, more flow going. But right now I'm excited to have Corey Quinn here on the back on the cube chief cloud economists with duck, bill groove, he founder, uh, and chief content person always got great angles, fun comedy, authoritative Corey. Great to see you. Thank you. >>Thanks. Coming on. Sure is a lot of words to describe as shit posting, which is how I describe what I tend to do. Most days, >>Shit posting is an art form now. And if you look at Mark's been doing a lot of shit posting lately, all a billionaires are shit posting, but they don't know how to do it. Like they're not >>Doing it right. Something opportunity there. It's like, here's how to be even more obnoxious and incisive. It's honestly the most terrifying scenario for anyone is if I have that kind of budget to throw at my endeavors, it's like, I get excited with a nonsense I can do with a $20 gift card for an AWS credit compared to, oh well, if I could buy a mid-size island to begin doing this from, oh, then we're having fun. This >>Shit posting trend. Interesting. I was watching a thread go on about, saw someone didn't get a job because of their shit posting and the employer didn't get it. And then someone on the other side, I'll hire the guy cuz I get that's highly intelligent shit posting. So for the audience that doesn't know what shit posting is, what is shit posting? >>It's more or less talking about the world of enterprise tech, which even that sentence is hard to finish without falling asleep and toppling out of my chair in front of everyone on the livestream. But it's doing it in such a way that brings it to life that says the quiet part. A lot of the audience is thinking, but generally doesn't say either because they're polite or not a jackass or more prosaically are worried about getting fired for better or worse. I don't have that particular constraint, >>Which is why people love you. So let's talk about what you, what you think is, uh, worthy and not worthy in the industry right now, obviously, uh, coupons coming up in Spain, which they're having a physical event, you can see the growth of cloud native Amazons, all, all the Adams let see new CEO, Andy move on to be the chief of all. Amazon just saw him. The cover of was it time magazine. Um, he's under a lot of stress. Amazon's changed. Invoice has changed. What's working. What's not, what's rising, what's falling. What's hot. What's not, >>It's easy to sit here and criticize almost anything these folks do. They they're effectively in a fishbowl, but I have trouble imagining the logistics. It takes to wind up handling the catering for a relatively downscale event like this one this year, let alone running a 1.7 million employee company having to balance all the competing challenges and pressures and the rest. I, I just can't fathom what it would be like to look at all of AWS. It's, it's sprawling, immense that dominates our entire industry and say, okay, this is a good start, but I, I wanna focus on something with a broader remit. What is that? How do you even get into that position? And you can't win once you're there. All you can do is hold onto the tiger and hope you don't get mold. Well, >>There's a lot of force for good conversations, seeing a lot of that going on, Amazon's trying to port and he was trying to portray themselves as you know, the Pathfinder, you know, you're the pioneer, um, force for good. And I get that and I think that's a good angle as cloud goes mainstream. There's still the question of, we had a guy on just earlier, who was a skydiving instructor and we were joking about the early days of cloud. Like that was like skydiving, build a parachute open, you know, and now it same kind of thing. As you move to edge, things are like reliable in some areas, but still new, new fringe, new areas. That's crazy. Well, >>Since the last time we've spoken, uh, Steve Schmidt is now the CISO for all of Amazon and his backfill replacement. The AWS CISO is CJ. Moses who as a hobby races, a as a semi-pro race car driver to my understanding, which either, I don't know what direction to take that in either. This is what he does to relax or ultimately, or ultimately it's. Huh? That, that certainly says something about risk assessment. I'm not entirely sure what, but okay. Either way, sounds like more exciting >>Replacement ready <laugh> in case something goes wrong. I, the track highly >>Available >>CSOs. I gotta say one of the things I do like in the recent trend is that the tech companies are getting into the formula one, which I was never a fan of until I watched that Netflix series. But when you look at the formula one, it's pretty cool. Cause it's got some tech angles, I get the whole data instrumentation thing, but the most coolest thing about formula one is they have these new rigs out. Yeah. Where you can actually race in e-sports with other, in pure simulation of the race car. You gotta get the latest and video graphics card, but it's basically a tricked out PC with amazing monitors and you have all the equipment of F1 and you're basically simulating racing. >>Oh, it's great too. And I can see the appeal of these tech companies getting into it because these things are basically rocket shifts. When those cars go, like they're sitting there, we can instrument every last part of what is going on inside that vehicle. And then AWS crops up. And we can bill on every one of those dimensions too. And it's like slow down their hasty pudding one step at a time. But I do see the appeal. >>So I gotta ask you about, uh, what's going in your world. I know you have a lot of great success. We've been following you in the queue for many, many years. Got a great newsletter. Check out Corey Quinn's newsletter, uh, screaming in the cloud program. Uh, you're on the cutting edge and you've got a great balance between really being snarky and, and, and really being delivering content. That's exciting, uh, for people, uh, with a little bit of an edge, um, how's that going? Uh, what's back any blow back late there been uptick. What was, what are some of the things you're hearing from your audience, more Corey, more Corey. And then of course the, the PR team's calling you >>The weird thing about having an audience beyond a certain size is far and away as a landslide. The most common response I get is silence where it's high. I'm emailing an awful lot of people at last week in AWS every week and okay. They must not have heard me it. That is not actually true. People just generally don't respond to email because who responds to email newsletters. That sounds like something, a lunatic might do same story with response to live streams and podcasts. It's like, I'm gonna call into that am radio show and give them a piece of my mind. People generally don't do that. >>We should do that. Actually. I think sure would call in. Oh, I, >>I think >>Chief, we had that right now. People would call in and say, Corey, what do you think about X? >>Yeah. It not, everyone understands the full context of what I do. And in fact, increasingly few people do and that's fine. I, I keep forgetting that sometimes people do not see what I'm doing in the same light that I do. And that's fine. Blowback has been largely minimal. Honestly, I am surprised anything by how little I have gotten over the last five years of doing this, but it would be easier to dismiss me if I weren't generally. Right. When, okay, so you launch this new service and it seems pretty crappy to me cuz when I try and build something, it falls over and begs for help. And people might not like hearing that, but it's what customers are finding too. Yeah. I really am the voice of the customer. >>You know, I always joke with Dave ante about how John Fort's always at, uh, reinvent getting the interview with jazzy now, Andy we're there, you're there. And so we have these rituals at the events. It's all cool. Um, one of the rituals I like about your, um, your content is you like to get on the naming product names. Um, and, and, and, and, and kind of goof on that. Now why I like is because I used to work at ETT Packard where they used to name things as like engineers, HP 1 0 5, or we can't, >>We have a new monitor. How are we gonna name it? Throw the wireless keyboard down the stairs again. And there you go. Yeah. >>It's and the old joke at HP was if they, if they invented sushi, they'd say, yeah, we can't call sushi. It's cold, dead fish. That's what it is. And so the joke was cold. Dead fish is a better name than sushi. So you know is fun. So what's the, what are the, how's the Amazon doing in there? Have they changed their naming, uh, strategy, uh, on some of their, their >>Producting, they're going in different directions. When they named Amazon Aurora, they decided to explore a new theme of Disney princesses as they go down those paths. And some things are more descriptive. Some people are clearly getting bonused on a number of words. They can shove into it. Like the better a service is the longer it's name. Like AWS systems manager, session manager is a great one. I love the service, ridiculous name. They have systems manager, parameter store, which is great. They have secrets manager, which does the same thing. It's two words less, but that one costs money in a way that systems manage your parameter store does not. It's >>Fun. What's your, what's your favorite combination of acronyms >>Combination of you >>Got Ks. You got EMR, you got EC two. You got S three SQS. Well, Redshift the on an acronym, you >>Gots is one of my personal favorites because it's either elastic block store or elastic bean stock, depending entirely on the context of the conversation. >>They still up bean stalk. Or is that still around? Oh, >>They never turn anything off. They're like the anti Google, Google turns things off while they're still building it. Whereas Amazon is like, wow, we built this thing in 2005 and everyone hates it. But while we certainly can't change it, now it has three customers on it. John three <laugh>. >>Okay. >>Simple BV still haunts our dreams. >>I, I actually got an email. I saw one of my, uh, servers, all these C two S were being deprecated and I got an email I'm like, I couldn't figure out. Why can you just like roll it over? Why, why are you telling me just like, give me something else. Right. Okay. So let me talk about, uh, the other things I want to ask you is that like, okay. So as Amazon gets better in some areas, where do they need more work in your opinion? Because obviously they're all interested in new stuff and they tend to like put it out there for their end to end customers. But then they've got ecosystem partners who actually have the same product. Yes. And, and this has been well documented. So it's, it's not controversial. It's just that Amazon's got a database, Snowflake's got a database service. So Redshift, snowflake database is, so you got this co-op petition. Yes. How's that going? And what are you hearing about the reaction to any of that stuff? >>Depends on who you ask. They love to basically trot out a bunch of their partners who will say nice things about them. And it very much has heirs of, let's be honest, a hostage video, but okay. Cuz these companies do partner with Amazon and they cannot afford to rock the boat too far. I'm not partnered with anyone. I can say what I want and they're basically restricted to taking away my birthday at worse so I can live with that. >>All right. So I gotta ask about multi-cloud cause obviously the other cloud shows are coming up. Amazon hated that word. Multi-cloud um, a lot of people are saying, you know, it's not a real good marketing word, like multi sounds like, you know, root canal. Mm-hmm <affirmative> right. So is there a better description for multi-cloud >>Multiple single points? >>Dave loves that term. Yeah. >>Yeah. You're building in multiple single points of failure. Do it for the right reasons or don't do it as a default. I believe not doing it is probably the right answer. However, and if I were, if I were Amazon, I wouldn't want to talk about multi-cloud either as the industry leader, talk about other clouds, bad direction to go in from a market cap perspective, it doesn't end well for you, but regardless of what they want to talk about, or don't want to talk about what they say, what they don't say, I tune all of it out. And I look at what customers are doing and multi-cloud exists in a variety of forms. Some brilliant, some brain dead. It depends a lot on context. But my general response is when someone gets on stage from a company and tells me to do a thing that directly benefits their company. I am skeptical at best. Yeah. When customers get on stage and say, this is what we're doing, because it solves problems. That's when I shut up and listen. Yeah. >>Cool. Awesome. Corey, I gotta ask you a question, cause I know you, we you've been, you know, fellow journeymen and the, and the cloud journey going to all the events and then the pandemic hit where now in the third year, who knows what it's gonna gonna end. Certainly events are gonna look different. They're gonna be either changing footprint with the virtual piece, new group formations. Community's gonna emerge. You got a pretty big community growing and it's throwing like crazy. What's the weirdest or coolest thing, or just big chain angels. You've seen with the pandemic, uh, from your perspective, cuz you've been in the you're in the middle of the whitewater rafting. You've seen the events you circle offline. You saw the online piece, come in, you're commentating. You're calling balls and strikes in the industry. You got a great team developing over there. Duck bill group. What's the big aha moment that you saw with the pandemic. Weird, fun, serious, real in the industry and with customers what's >>Accessibility. Reinvent is a great example. When in the before times it's open to anyone who wants to attend, who can pony up two grand and a week in Las Vegas and get to Las Vegas from wherever they happen to be by moving virtually suddenly it, it embraces the reality that talent is even distributed. Opportunity is not. And that means that suddenly these things are accessible to a wide swath of audience and potential customer base and the rest that hadn't been invited to the table previously, it's imperative that we not lose that. It's nice to go out and talk to people and have people come up and try and smell my hair from time to time, I smell delightful. Let make assure you, but it was, but it's also nice to be. >>I have a product for you if you want, you know. >>Oh, excellent. I look forward to it. What is it putting? Why not? <laugh> >>What else have you seen? So when accessibility for talent, which by the way is totally home run. What weird things have happened that you've seen? Um, that's >>Uh, it's, it's weird, but it's good that an awful lot of people giving presentations have learned to tighten their message and get to the damn point because most people are not gonna get up from a front row seat in a conference hall, midway through your Aing talk and go somewhere else. But they will change a browser tab and you won't get them back. You've gotta be on point. You've gotta be compelling if it's going to be a virtual discussion. >>Yeah. And also turn off your IMEs too. >>Oh yes. It's always fun in the, in the meetings when you're talking to someone and their co is messaging them about, should we tell 'em about this? And I'm sitting there reading it and it's >>This guy is really weird. Like, >>Yes I am and I bring it into the conversation and then everyone's uncomfortable. It goes, wow. >>Why not? I love when my wife yells at me over I message. When I'm on a business call, like, do you wanna take that about no, I'm good. >>No, no. It's better off. I don't. No, the only encourager it's fine. >>My kids. Excellent. Yeah. That's fun again. That's another weird thing. And, and then group behavior is weird. Now people are looking at, um, communities differently. Yes. Very much so, because if you're fatigued on content, people are looking for the personal aspect. You're starting to see much more of like yeah. Another virtual event. They gotta get better. One and two who's there. >>Yeah. >>The person >>That's a big part of it too is the human stories are what are being more and more interesting. Don't get up here and tell me about your product and how brilliant you are and how you built it. That's great. If I'm you, or if I wanna work with you or I want to compete with you, or I wanna put on my engineering hat and build it myself. Cause why would I buy anything? That's more than $8. But instead, tell me about the problem. Tell me about the painful spot that you specialize in. Tell me a story there. >>I, I >>Think that gets a glimpse in a hook and >>Makes more, more, I think you nailed it. Scaling storytelling. Yes. And access to better people because they don't have to be there in person. I just did it thing. I never, we never would've done the queue. We did. Uh, Amazon stepped up in sponsors. Thank you, Amazon for sponsoring international women's day, we did 30 interviews, APAC. We did five regions and I interviewed this, these women in Asia, Pacific eight, PJ, they called for in this world. And they're amazing. I never would've done those interviews cuz I never, would've seen 'em at an event. I never would've been in Japan or Singapore to access them. And now they're in the index. They're in the network. They're collaborating on LinkedIn. So a threads are developing around connections that I've never seen before. Yes. Around the content, >>Absolutely >>Content value plus >>The networking. And that is the next big revelation of this industry is going to realize you have different companies. And in Amazon's case, different service teams, all, all competing with each other, but you have the container group and you have the database group and you have the message cuing group. But customers don't really want to build things from spare parts. They want a solution to a problem. I want to build an app that does Twitter for pets or whatever it is I'm trying to do. I don't wanna basically have to pick and choose and fill my shopping cart with all these different things. I want something that's gonna give me what I'm trying to get as close to turnkey as possible. Moving up the stack. That is the future. And just how it gets here is gonna be >>Well we're here with Corey Quinn, the master of the master of content here in the a ecosystem. Of course we we've been following up in the beginnings. Great guy. Check out his blog, his site, his newsletter screaming podcast. Cory, final question for you. Uh, what do you hear doing what's on your agenda this week in San Francisco and give a plug for the duck build group. What are you guys doing? I know you're hiring some people what's on the table for the company. What's your focus this week and put a plug in for the group. >>I'm here as a customer and basically getting outta my cage cuz I do live here. It's nice to actually get out and talk to folks who are doing interesting things at the duck build group. We solve one problem. We fixed the horrifying AWS bill, both from engineering and architecture, advising as well as negotiating AWS contracts because it turns out those things are big and complicated. And of course my side media projects last week in aws.com, we are, it it's more or less a content operation where I indulge my continual and ongoing law of affair with the sound of my own voice. >><laugh> and you good. It's good content. It's on, on point fun, Starky and relevant. So thanks for coming to the cube and sharing with us. Appreciate it. No, thank you. Fun. You. Okay. This the cube covers here in San Francisco, California, the cube is back at to events. These are the summits, Amazon web services summits. They happen all over the world. We'll be in New York and obviously we're here in San Francisco this week. I'm John furry. Keep, keep it right here. We'll be back with more coverage after this short break. Okay. Welcome back everyone. This's the cubes covers here in San Francisco, California, we're live on the show floor of AWS summit, 2022. I'm John for host of the cube and remember AWS summit in New York city coming up this summer, we'll be there as well. And of course reinvent the end of the year for all the cube coverage on cloud computing and AWS. The two great guests here from the APN global APN se Jenko and Jeff Grimes partner leader, Jeff and se is doing partnerships global APN >>AWS global startup program. Yeah. >>Okay. Say that again. >>AWS global startup program. >>That's the official name. >>I love >>It too long, too long for me. Thanks for coming on. Yeah, of course. Appreciate it. Tell us about what's going on with you guys. What's the, how was you guys organized? You guys we're obviously were in San Francisco bay area, Silicon valley, zillions of startups here, New York. It's got another one we're gonna be at tons of startups. Lot of 'em getting funded, big growth and cloud big growth and data security, hot and sectors. >>Absolutely. >>So maybe, maybe we could just start with the global startup program. Um, it's essentially a white glove service that we provide to startups that are built on AWS. And the intention there is to help identify use cases that are being built on top of AWS. And for these startups, we want to provide white glove support in co building products together. Right. Um, co-marketing and co-selling essentially, um, you know, the use cases that our customers need solved, um, that either they don't want to build themselves or are perhaps more innovative. Um, so the, a AWS global startup program provides white glove support, dedicated headcount for each one of those pillars. Um, and within our program, we've also provided incentives, programs go to market activities like the AWS startup showcase that we've built for these startups. >>Yeah. By the way, start AWS startups.com is the URL, check it out. Okay. So partnerships are key. Jeff, what's your role? >>Yeah. So I'm responsible for leading the overall F for, for the AWS global startup program. Um, so I've got a team of partner managers that are located throughout the us, uh, managing a few hundred startup ISVs right now. <laugh> >>Yeah, I got >>A lot. We've got a lot. >>There's a lot. I gotta, I gotta ask the tough question. Okay. I'm I'm a startup founder. I got a team. I just got my series a we're grown. I'm trying to hire people. I'm super busy. What's in it for me. Yeah. What do you guys bring to the table? I love the white glove service, but translate that what's in it. What do I get out of it? What's >>A good story. Good question. I focus, I think. Yeah, because we get, we get to see a lot of partners building their businesses on AWS. So, you know, from our perspective, helping these partners focus on what, what do we truly need to build by working backwards from customer feedback, right? How do we effectively go to market? Because we've seen startups do various things, um, through trial and error, um, and also just messaging, right? Because oftentimes partners or rather startups, um, try to boil the ocean with many different use cases. So we really help them, um, sort of laser focus on what are you really good at and how can we bring that to the customer as quickly as possible? >>Yeah. I mean, it's truly about helping that founder accelerate the growth of their company. Yeah. Right. And there's a lot that you can do with AWS, but focus is truly the key word there because they're gonna be able to find their little piece of real estate and absolutely deliver incredible outcomes for our customers. And then they can start their growth curve there. >>What are some of the coolest things you've seen with the APN that you can share publicly? I know you got a lot going on there, a lot of confidentiality. Um, but you know, we're here lot of great partners on the floor here. I'm glad we're back at events. Uh, a lot of stuff going on digitally with virtual stuff and, and hybrid. What are some of the cool things you guys have seen in the APN that you can point to? >>Yeah, absolutely. I mean, I can point to few, you can take them. Sure. So, um, I think what's been fun over the years for me personally, I came from a startup, ran sales at an early stage startup and, and I went through the whole thing. So I have a deep appreciation for what these guys are going through. And what's been interesting to see for me is taking some of these early stage guys, watching them progress, go public, get acquired, and see that big day mm-hmm <affirmative>, uh, and being able to point to very specific items that we help them to get to that point. Uh, and it's just a really fun journey to watch. >>Yeah. I, and part of the reason why I really, um, love working at the AWS, uh, global startup program is working with passionate founders. Um, I just met with a founder today that it's gonna, he's gonna build a very big business one day, um, and watching them grow through these stages and supporting that growth. Um, I like to think of our program as a catalyst for enterprise sort of scale. Yeah. Um, and through that we provide visibility, credibility and growth opportunities. >>Yeah. A lot, a lot of partners too. What I found talking to staff founders is when they have that milestone, they work so hard for it. Whether it's a B round C round Republic or get bought. Yeah. Um, then they take a deep breath and they look back at wow, what a journey it's been. So it's kind of emotional for sure. Yeah. Still it's a grind. Right? You gotta, I mean, when you get funding, it's still day one. You don't stop. It's no celebrate, you got a big round or valuation. You still gotta execute >>And look it's hypercompetitive and it's brutally difficult. And our job is to try to make that a little less difficult and navigate those waters right. Where everyone's going after similar things. >>Yeah. I think as a group element too, I observe that startups that I, I meet through the APN has been interesting because they feel part of AWS. Yeah, totally. As a group of community, as a vibe there. Um, I know they're hustling, they're trying to make things happen. But at the same time, Amazon throws a huge halo effect. I mean, that's a huge factor. I mean, yeah. You guys are the number one cloud in the business, the growth in every sector is booming. Yeah. And if you're a startup, you don't have that luxury yet. And look at companies like snowflake, they're built on top of AWS. Yeah. I mean, people are winning by building on AWS. >>Yeah. And our, our, our program really validates their technology first. So we have, what's called a foundation's technical review that we put all of our startups through before we go to market. So that when enterprise customers are looking at startup technology, they know that it's already been vetted. And, um, to take that a step further and help these partners differentiate, we use programs like the competency programs, the DevOps compet, the, the security competency, which continues to help, um, provide sort of a platform for these startups, help them differentiate. And also there's go to market benefits that are associated with that. >>Okay. So let me ask the, the question that's probably on everyone's mind, who's watching. Certainly I asked this a lot. There's a lot of companies startups out there who makes the, is there a criteria? Oh God, it's not like his sports team or anything, but like sure. Like there's activate program, which is like, there's hundreds of thousands of startups out there. Not everyone is at the APN. Right? Correct. So ISVs again, that's a whole nother, that's a more mature partner that might have, you know, huge market cap or growth. How do you guys focus? How do you guys focus? I mean, you got a good question, you know, a thousand flowers blooming all the time. Is there a new way you guys are looking at it? I know there's been some talk about restructure or, or new focus. What's the focus. >>Yeah. It's definitely not an easy task by any means. Um, but you know, I recently took over this role and we're really trying to establish focus areas, right. So obviously a lot of the fees that we look after our infrastructure ISVs, that's what we do. Uh, and so we have very specific pods that look after different type of partners. So we've got a security pod, we've got a DevOps pod, we've got core infrastructure, et cetera. And really we're trying to find these ISVs that can solve, uh, really interesting AWS customer challenges. >>So you guys have a deliberate, uh, focus on these pillars. So what infrastructure, >>Security, DevOps, and data and analytics, and then line of business >>Line of business line, like web marketing >>Solutions, business apps, >>Business, this owner type thing. Exactly. >>Yeah, exactly. >>So solutions there. Yeah. More solutions and the other ones are like hardcore. So infrastructure as well, like storage, backup, ransomware of stuff, or, >>Uh, storage, networking. >>Okay. Yeah. The classic >>Database, et cetera. Right. >>And so there's teams on each pillar. >>Yep. So I think what's, what's fascinating for the startup that we cover is that they've got, they truly have support from a build market sell perspective. Right. So you've got someone who's technical to really help them get the technology, figured out someone to help them get the marketing message dialed and spread, and then someone to actually do the co-sell, uh, day to day activities to help them get in front of customers. >>Probably the number one request that we always ask for Amazon is can we waste that sock report? Oh, download it, the console, which we use all the time. Exactly. But security's a big deal. I mean, you know, SREs are evolving, that role of DevOps is taking on dev SecOps. Um, I, I could see a lot of customers having that need for a relationship to move things faster. Do you guys provide like escalation or is that a part of a service or not, not part of a, uh, >>Yeah, >>So the partner development manager can be an escalation point. Absolutely. Think of them as an extension of your business inside of AWS. >>Great. And you guys how's that partner managers, uh, measure >>On those three pillars. Right. Got it. Are we billing, building valuable use cases? So product development go to market, so go to market activities, think blog, posts, webinars, case studies, so on and so forth. And then co-sell not only are we helping these partners win their current opportunities that they are sourcing, but can we also help them source net new deals? Yeah. Right. That's >>Very important. I mean, top asked from the partners is get me in front of customers. Right. Um, not an easy task, but that's a huge goal of ours to help them grow their top >>Line. Right. Yeah. In fact, we had some interviews here on the cube earlier talking about that dynamic of how enterprise customers are buying. And it's interesting, a lot more POCs. I have one partner here that you guys work with, um, on observability, they got a huge POC with capital one mm-hmm <affirmative> and the enterprises are engaging the startups and bringing them in. So the combination of open source software enterprises are leaning into that hard and bringing young growing startups in mm-hmm <affirmative>. Yep. So I could see that as a huge service that you guys can bring people in. >>Right. And they're bringing massively differentiated technology to the table. Mm-hmm <affirmative> the challenge is they just might not have the brand recognition that the big guys have. And so that it's our job is how do you get that great tech in front of the right situations? >>Okay. So my next question is about the show here, and then we'll talk globally. So here in San Francisco sure. You know, Silicon valley bay area, San Francisco bay area, a lot of startups, a lot of VCs, a lot of action. Mm-hmm <affirmative> so probably a big market for you guys. Yeah. So what's exciting here in SF and then outside SF, you guys have a global program, you see any trends that are geography based or is it sure areas more mature? There's certain regions that are better. I mean, I just interviewed a company here that's doing, uh, AWS edge really well in these cases. It's interesting that these, the partners are filling a lot of holes and gaps in the opportunities with AWS. So what's exciting here. And then what's the global perspective. >>Yeah, totally. So obviously a ton of partners, I, from the bay area that we support. Um, but we're seeing a lot of really interesting technology coming out of AMEA specifically. Yeah. Uh, and making a lot of noise here in the United States, which is great. Um, and so, you know, we definitely have that global presence and, and starting to see super differentiated technology come out of those regions. >>Yeah. Especially Tel Aviv. Yeah. >>Amy real quick, before you get in the surge. It's interesting. The VC market in, in Europe is hot. Yeah. They've got a lot of unicorns coming in. We've seen a lot of companies coming in. They're kind of rattling their own, you know, cage right now. Hey, look at us. We'll see if they crash, you know, but we don't see that happening. I mean, people have been projecting a crash now in, in the startup ecosystem for at least a year. It's not crashing. In fact, funding's up. >>Yeah. The pandemic was hard on a lot of startups for sure. Yeah. Um, but what we've seen is many of these startups, they, as quickly as they can grow, they can also pivot as, as, as well. Um, and so I've actually seen many of our startups grow through the pandemic because their use cases are helping customers either save money, become more operationally efficient and provide value to leadership teams that need more visibility into their infrastructure during a pandemic. >>It's an interesting point. I talked to Andy jazzy and Adam Leski both say the same thing during the pandemic necessity, the mother of all invention. Yep. And startups can move fast. So with that, you guys are there to assist if I'm a startup and I gotta pivot cuz remember iterate and pivot, iterate and pivot. So you get your economics, that's the playbook of the ventures and the models. >>Exactly. How >>Do you guys help me do that? Give me an example of walk me through, pretend me I'm a startup. Hey, I am on the cloud. Oh my God. Pandemic. They need video conferencing. Hey cube. Yeah. What do I need? Surge? What, what do I do? >>That's a good question. First thing is just listen. Yeah. I think what we have to do is a really good job of listening to the partner. Um, what are their needs? What is their problem statement and where do they want to go at the end of the day? Um, and oftentimes because we've worked with so many successful startups, they have come out of our program. We have, um, either through intuition or a playbook, determined what is gonna be the best path forward and how do we get these partners to stop focusing on things that will eventually, um, just be a waste of time yeah. And, or not provide, or, you know, bring any fruit to the table, which, you know, essentially revenue. >>Well, we love star rights here in the cube because one, um, they have good stories. They're oil and cutting edge, always pushing the envelope and they're kind of disrupting someone else. Yeah. And so they have an opinion. They don't mind sharing on camera. So love talking to startups. We love working with you guys on our startup showcases startups.com. Check out AWS startups.com and you got the showcases, uh, final. We I'll give you guys the last word. What's the bottom line bumper sticker for AP the global APN program. Summarize the opportunity for startups, what you guys bring to the table and we'll close it out. Totally start >>With you. Yeah. I think the AWS global startup program's here to help companies truly accelerate their business full stop. Right. And that's what we're here for. I love it. >>It's a good way to, it's a good way to put it Dito. >>Yeah. All right, sir. Thanks for coming on. Thanks John. Great to see you love working with you guys. Hey, startups need help. And the growing and huge market opportunities, the shift cloud scale data engineering, security infrastructure, all the markets are exploding in growth because of the digital transformation of the realities here. Open source and cloud all making it happen here in the cube in San Francisco, California. I'm John furrier, your host. Thanks for watching >>John. >>Hello and welcome back to the cubes live coverage here in San Francisco, California for AWS summit, 2022. I'm John for host of the cube. Uh, two days of coverage, AWS summit, 2022 in New York city. Coming up this summer, we'll be there as well at events are back. The cube is back of course, with the cube virtual cube hybrid, the cube.net, check it out a lot of content this year, more than ever, a lot more cloud data cloud native, modern applic is all happening. Got a great guest here. Jeremy Burton, Cub alumni, uh, CEO of observe Inc in the middle of all the cloud scale, big data observability Jeremy. Great to see you. Thanks >>Always great to come and talk to you on the queue, man. It's been been a few years, so, >>Um, well you, you got your hands. You're in the trenches with great startup, uh, good funding, great board, great people involved in the observability hot area, but also you've been a senior executive president of Dell, uh, EMC, uh, 11 years ago you had a, a vision and you actually had an event called cloud meets big data. Um, yeah. And it's here. You predicted it 11 years ago. Um, look around it's cloud meets big data. >>Yeah. I mean the, the cloud thing I think, you know, was, was probably already a thing, but the big data thing I do claim credit for, for, for sort of catching that bus out, um, you know, we, we were on the, the, the bus early and, and I think it was only inevitable. Like, you know, if you could bring the economics and the compute of cloud to big data, you, you could find out things you could never possibly imagine. >>So you're close to a lot of companies that we've been covering deeply. Snowflake obviously are involved, uh, the board level, you know, the founders, you know, the people there cloud, you know, Amazon, you know, what's going on here? Yeah. You're doing a startup as the CEO at the helm, uh, chief of observ, Inc, which is an observability, which is to me in the center of this confluence of data engineering, large scale integrations, um, data as code integrating into applic. I mean, it's a whole nother world developing, like you see with snowflake, it means snowflake is super cloud as we call it. So a whole nother wave is here. What's your, what's this wave we're on what's how would you describe the wave? >>Well, a couple of things, I mean, people are, I think riding more software than, than ever fall. Why? Because they've realized that if, if you don't take your business online and offer a service, then you become largely irrelevant. And so you you've got a whole set of new applications. I think, I think more applications now than any point. Um, not, not just ever, but the mid nineties, I always looked at as the golden age of application development. Now back then people were building for windows. Well, well now they're building for things like AWS is now the platform. Um, so you've got all of that going on. And then at the same time, the, the side effect of these applications is they generate data and lots of data and the, you know, the sort of the transactions, you know, what you bought today or something like that. But then there's what we do, which is all the telemetry data, all the exhaust fumes. And I think people really are realizing that their differentiation is not so much their application. It's their understanding of the data. Can, can I understand who my best customers are, what I sell today. If people came to my website and didn't buy, then I not, where did they drop off all of that they wanna analyze. And, and the answers are all in the data. The question is, can you understand it >>In our last startup showcase, we featured data as code. One of the insights that we got out of that I wanna get your opinion on our reaction to is, is that data used to be put into a data lake and turns into a data swamp or throw into the data warehouse. And then we'll do some query, maybe a report once in a while. And so data, once it was done, unless it was real time, even real time was not good anymore after real time. That was the old way. Now you're seeing more and more, uh, effort to say, let's go look at the data cuz now machine learning is getting better. Not just train once mm-hmm <affirmative> they're iterating. Yeah. This notion of iterating and then pivoting, iterating and pivoting. Yeah, that's a Silicon valley story. That's like how startups work, but now you're seeing data being treated the same way. So now you have another, this data concept that's now yeah. Part of a new way to create more value for the apps. So this whole, this whole new cycle of >>Yeah. >>Data being reused and repurposed and figured out and >>Yeah, yeah. I'm a big fan of, um, years ago. Uh, uh, just an amazing guy, Andy McAfee at the MIT C cell labs I spent time with and he, he had this line, which still sticks to me this day, which is look I'm I'm. He said I'm part of a body, which believes that everything is a matter of data. Like if you, of enough data, you can answer any question. And, and this is going back 10 years when he was saying these kind of things and, and certainly, you know, research is on the forefront. But I, I think, you know, starting to see that mindset of the, the sort of MIT research be mainstream, you know, in enterprises, they they're realizing that yeah, it is about the data. You know, if I can better understand my data better than my competitor than I've got an advantage. And so the question is is, is how, what, what technologies and what skills do I need in my organization to, to allow me to do that. So >>Let's talk about observing you the CEO of, okay. Given you've seen the wave before you're in the front lines of observability, which again is in the center of all this action what's going on with the company. Give a quick minute to explain, observe for the folks who don't know what you guys do. What's the company doing? What's the funding status, what's the product status and what's the customer status. Yeah. >>So, um, we realized, you know, a handful of years ago, let's say five years ago that, um, look, the way people are building applications is different. They they're way more functional. They change every day. Uh, but in some respects they're a lot more complicated. They're distributed. They, you know, microservices architectures and when something goes wrong, um, the old way of troubleshooting and solving problems was not gonna fly because you had SA so much change going into production on a daily basis. It was hard to tell like where the problem was. And so we thought, okay, it's about time. Somebody looks at the exhaust fumes from this application and all the telemetry data and helps people troubleshoot and make sense of the problems that they're seeing. So, I mean, that's observability, it's actually a term that goes back to the 1960s. It was a guy called, uh, Rudolph like, like everything in tech, you know, it's, it's a reinvention of, of something from years gone by. >>But, um, there's a guy called, um, Rudy Coleman in 1960s, kinder term. And, and, and the term was been able to determine the state of a system by looking at its external outputs. And so we've been going on this for, uh, the best part of the all years now. Um, it took us three years just to build the product. I think, I think what people don't appreciate these days often is the barrier to entry in a lot of these markets is quite high. You, you need a lot of functionality to have something that's credible with a customer. Um, so yeah, this last year we, we, we did our first year selling, uh, we've got about 40 customers now. <affirmative> um, we just we've got great investors for the hill ventures. Uh, I mean, Mike SP who was, you know, the, the guy who was the, really, the first guy in it snowflake and the, the initial investor were fortunate enough to, to have Mike on our board. And, um, you know, part of the observed story yeah. Is closely knit with snowflake because all of that time data know we, we still are in there. >>So I want to get, uh, >>Yeah. >>Pivot to that. Mike Pfizer, snowflake, Jeremy Burton, the cube kind of, kind of same thinking this idea of a super cloud or what snowflake became snowflake is massively successful on top of AWS. Mm-hmm <affirmative> and now you're seeing startups and companies build on top of snowflake. Yeah. So that's become an entrepreneurial story that we think that to go big in the cloud, you can have a cloud on a cloud, uh, like as Jerry, Jerry Chan and Greylock calls it castles in the cloud where there are moats in the cloud. So you're close to it. I know you're doing some stuff with snowflake. So a startup, what's your view on building on top of say a snowflake or an AWS, because again, you gotta go where the data is. You need all the data. >>Yeah. So >>What's your take on that? >>I mean, having enough gray hair now, um, you know, again, in tech, I think if you wanna predict the future, look at the past. And, uh, you know, to many years ago, 25 years ago, I was at a, a smaller company called Oracle and an Oracle was the database company. And, uh, their, their ambition was to manage all of the world's transactional data. And they built on a platform or a couple of platforms, one, one windows, and the other main one was Solaris. And so at that time, the operator and system was the platform. And, and then that was the, you know, ecosystem that you would compete on top of. And then there were companies like SAP that built applications on top of Oracle. So then wind the clock forward 25 years gray hairs. <laugh> the platform, isn't the operating system anymore. The platform is AWS, you know, Google cloud. I gotta probably look around if I say that in. Yeah. It's >>Okay. But hyperscale, yeah. CapX built out >>That is the new platform. And then snowflake comes along. Well, their aspiration is to manage all of the, not just human generator data, but machine generated data in the world of cloud. And I think they they've done an amazing job doing for the, I'd say, say the, the big data world, what Oracle did for the relational data world, you know, way back 25 years ago. And then there are folks like us come along and, and of course my ambition would be, look, if, if we can be as successful as an SAP building on top of snow snowflake, uh, as, as they were on top of Oracle, then, then we'd probably be quite happy. >>So you're building on top of snowflake. >>We're building on top of snowflake a hundred percent. And, um, you know, I've had folks say to me, well, aren't you worried about that? Isn't that a risk? It's like, well, that that's a risk. You >>Still on the board. >>Yeah. I'm still on the board. Yeah. That that's a risk I'm prepared to take <laugh> I am long on snowflake you, >>Well, you're in a good spot. Stay on the board, then you'll know what's going on. Okay. No know just doing, but the, this is a real dynamic. It is. It's not a one off it's. >>Well, and I do believe as well that the platform that you see now with AWS, if you look at the revenues of AWS is an order of magnitude more than Microsoft was 25 years ago with windows mm-hmm <affirmative>. And so I believe the opportunity for folks like snowflake and folks like observe it's an order of magnitude more than it was for the Oracle and the SAPs of the old >>World. Yeah. And I think this is really, I think this is something that this next generation of entrepreneurship is the go big scenario is you gotta be on a platform. Yeah. >>It's quite >>Easy or be the platform, but it's hard. There's only like how many seats are at that table left. >>Well, value migrates up over time. So, you know, when the cloud thing got going, there were probably 10, 20, 30, you know, Rackspace and there's 1,000,001 infrastructure, a service platform as a service, my, my old, uh, um, employee EMC, we had pivotal, you know, pivotal was a platform as a service. You don't hear so much about it, these, but initially there's a lot of players and then it consolidates. And then to, to like extract, uh, a real business, you gotta move up, you gotta add value, you gotta build databases, then you gotta build applications. So >>It's interesting. Moving from the data center of the cloud was a dream for starters. Cause then if the provision, the CapEx, now the CapEx is in the cloud. Then you build on top of that, you got snowflake you on top of that, the >>Assumption is almost that compute and storage is free. I know it's not quite free. Yeah. It's >>Almost free, >>But, but you can, you know, as an application vendor, you think, well, what can I do if I assume compute and storage is free, that's the mindset you've gotta get into. >>And I think the platform enablement to value. So if I'm an entrepreneur, I'm gonna get a serious, multiple of value in what I'm paying. Yeah. Most people don't even blanket their Avis pills unless they're like massively huge. Yeah. Then it's a repatriation question or whatever discount question, but for most startups or any growing company, the Amazon bill should be a small factor. >>Yeah. I mean, a lot of people, um, ask me like, look, you're building on snowflake. Um, you, you know, you are, you are, you're gonna be, you're gonna be paying their money. How, how, how, how does that work with your business model? If you're paying them money, you know, do, do you have a viable business? And it's like, well, okay. I, we could build a database as well in observe, but then I've got half the development team working on in that will never be as good as snowflake. And so we made the call early on that. No, no, we, we wanna innovate above the database. Yeah. Right. Snowflake are doing a great job of innovating on the database and, and the same is true of something like Amazon, like, like snowflake could have built their own cloud and their own platform, but they didn't. >>Yeah. And what's interesting is that Dave <inaudible> and I have been pointing this out and he's actually more on snowflake. I I've been looking at data bricks, um, and the same dynamics happening, the proof is the ecosystem. Yeah. I mean, if you look at Snowflake's ecosystem right now and data bricks it's exploding. Right. I mean, the shows are selling out the floor. Space's book. That's the old days at VMware. Yeah. The old days at AWS >>One and for snowflake and, and any platform provider, it's a beautiful thing. You know, we build on snowflake and we pay them money. They don't have to sell to us. Right. And we do a lot of the support. And so the, the economics work out really, really well. If you're a platform provider and you've got a lot of ecosystems. >>Yeah. And then also you get, you get a, um, a trajectory of, uh, economies of scale with the institutional knowledge of snowflake integrations, right. New products. You're scaling that function with the, >>Yeah. I mean, we manage 10 petabytes of data right now. Right. When I, when I, when I arrived at EMC in 2010, we had, we had one petabyte customer. And, and so at observe, we've been only selling the product for a year. We have 10 petabytes of data under management. And so been able to rely on a platform that can manage that is invaluable, >>You know, but Jeremy Greek conversation, thanks for sharing your insights on the industry. Uh, we got a couple minutes left. Um, put a plug in for observe. What do you guys, I know you got some good funding, great partners. I don't know if you can talk about your, your, your POC customers, but you got a lot of high ends folks that are working with you. You getting traction. Yeah. >>Yeah. >>Scales around the corner. Sounds like, are you, is that where you are scale? >>Got, we've got a big announcement coming up in two or weeks. We've got, we've got new funding, um, which is always great. Um, the product is, uh, really, really close. I think, as a startup, you always strive for market fit, you know, which is at which point can you just start hiring salespeople? And the revenue keeps going. We're getting pretty close to that right now. Um, we've got about 40 SaaS companies run on the platform. They're almost all AWS Kubernetes, uh, which is our sweet spot to begin with, but we're starting to get some really interesting, um, enterprise type customers. We're, we're, you know, F five networks we're POC in right now with capital one, we got some interest in news around capital one coming up. I, I can't share too much, uh, but it's gonna be exciting. And, and like I saids hill continued to, to, to stick, >>I think capital one's a big snowflake customer as well. Right. They, >>They were early in one of the things that attracted me to capital one was they were very, very good with snowflake early on. And, and they put snowflake in a position in the bank where they thought that snowflake could be successful. Yeah. And, and today that, that is one of Snowflake's biggest accounts. >>So capital one, very innovative cloud, obviously AIOS customer and very innovative, certainly in the CISO and CIO, um, on another point on where you're at. So you're, Prescale meaning you're about to scale, right? So you got POCs, what's that trick GE look like, can you see around the corner? What's, what's going on? What's on, around the corner. That you're, that you're gonna hit the straight and narrow and, and gas it >>Fast. Yeah. I mean, the, the, the, the key thing for us is we gotta get the product. Right. Um, the nice thing about having a guy like Mike Pfizer on the board is he doesn't obsess about revenue at this stage is questions that the board are always about, like, is the product, right? Is the product right? Is the product right? If you got the product right. And cuz we know when the product's right, we can then scale the sales team and, and the revenue will take care of itself. Yeah. So right now all the attention is on the product. Um, the, this year, the exciting thing is we were, we're adding all the tracing visualizations. So people will be able to the kind of things that back in the day you could do with the new lakes and, and AppDynamics, the last generation of, of APM tools, you're gonna be able to do that within observe. And we've already got the logs and the metrics capability in there. So for us, this year's a big one, cuz we sort of complete the trifecta, you know, the, the logs, >>What's the secret sauce observe. What if you had the, put it into a, a sentence what's the secret sauce? I, >>I, I think, you know, an amazing founding engineering team, uh, number one, I mean, at the end of the day, you have to build an amazing product and you have to solve a problem in a different way. And we've got great long term investors. And, and the biggest thing our investors give is actually it's not just money. It gives us time to get the product, right. Because if we get the product right, then we can get the growth. >>Got it. Final question. Why I got you here? You've been on the enterprise business for a long time. What's the buyer landscape out there. You got people doing POCs on capital one scale. So we know that goes on. What's the appetite at the buyer side for startups and what are their requirements that you're seeing? Uh, obviously we're seeing people go in and dip into the startup pool because new ways to refactor their business restructure. So a lot happening in cloud. What's the criteria. How are enterprises engaging in with startups? >>Yeah. I mean, enterprises, they know they've gotta spend money transforming the business. I mean, this was, I almost feel like my old Dell or EMC self there, but, um, what, what we were saying five years ago is happening. Um, everybody needs to figure out out a way to take their, this to this digital world. Everybody has to do it. So the nice thing from a startup standpoint is they know at times they need to risk or, or take a bet on new technology in order to, to help them do that. So I think you've got buyers that a have money, uh, B prepared to take risks and it's, it's a race against time to, you know, get their, their offerings in this. So a new digital footprint, >>Final, final question. What's the state of AWS. Where do you see them going next? Obviously they're continuing to be successful. How does cloud 3.0, or they always say it's day one, but it's more like day 10. Uh, but what's next for Aw. Where do they go from here? Obviously they're doing well. They're getting bigger and bigger. >>Yeah. They're, they're, it's an amazing story. I mean, you know, we we're, we're on AWS as well. And so I, I think if they keep nurturing the builders in the ecosystem, then that is their superpower. They, they have an early leads. And if you look at where, you know, maybe the likes of Microsoft lost the plot in the, in the late it was, they stopped, uh, really caring about developers and the folks who were building on top of their ecosystem. In fact, they started buying up their ecosystem and competing with people in their ecosystem. And I see with AWS, they, they have an amazing head start and if they did more, you know, if they do more than that, that's, what's gonna keep the jut rolling for many years to come. Yeah, >>They got the silicone and they got the staff act, developing Jeremy Burton inside the cube, great resource for commentary, but also founding with the CEO of a company called observing in the middle of all the action on the board of snowflake as well. Um, great start. Thanks for coming on the cube. >>Always a pleasure. >>Okay. Live from San Francisco to cube. I'm John for your host. Stay with us more coverage from San Francisco, California after the short break. >>Hello. Welcome back to the cubes coverage here live in San Francisco, California. I'm John furrier, host of the cubes cube coverage of AWS summit 2022 here in San Francisco. We're all the developers of the bay area at Silicon valley. And of course, AWS summit in New York city is coming up in the summer. We'll be there as well. SF and NYC cube coverage. Look for us. Of course, reinforcing Boston and re Mars with the whole robotics AI thing, all coming together. Lots of coverage stay with us today. We've got a great guest from Deibel VC. John Skoda, founding partner, entrepreneurial venture is a venture firm. Your next act, welcome to the cube. Good to see you. >>Good to see you, Matt. I feel like it's been forever since we've been able to do something in person. Well, >>I'm glad you're here because we run into each other all the time. We've known each other for over a decade. Um, >><affirmative>, it's been at least 10 years now, >>At least 10 years more. And we don't wanna actually go back as frees back, uh, the old school web 1.0 days. But anyway, we're in web three now. So we'll get to that in >>Second. We, we are, it's a little bit of a throwback to the path though, in my opinion, >><laugh>, it's all the same. It's all distributed computing and software. We ran each other in cube con you're investing in a lot of tech startup founders. Okay. This next level, next gen entrepreneurs have a new makeup and it's software. It's hardcore tech in some cases, not hardcore tech, but using software is take old something old and make it better, new, faster. <laugh>. So tell us about Deibel what's the firm. I know you're the founder, uh, which is cool. What's going on. Explain >>What you're doing. I mean, you remember I'm a recovering entrepreneur, right? So of course I, I, I, >>No, you're never recovering. You're always entrepreneur >>Always, but we are also always recovering. So I, um, started my first company when I was 24. If you remember, before there was Facebook and friends, there was instant messaging. People were using that product at work every day, they were creating a security vulnerability between their network and the outside world. So I plugged that hole and built an instant messaging firewall. It was my first company. The company was called, I am logic and we were required by Symantec. Uh, then spent 12 years investing in the next generation of our companies, uh, early investor in open source companies and cloud companies and spent a really wonderful 12 years, uh, at a firm called NEA. So I, I feel like my whole life I've been either starting enterprise software companies or helping founders start enterprise software companies. And I'll tell you, there's never been a better time than right now to start enter price software company. >>So, uh, the passion for starting a new firm was really a recognition that founders today that are starting in an enterprise software company, they, they tend to be, as you said, a more technical founder, right? Usually it's a software engineer or a builder mm-hmm <affirmative>, uh, they are building products that are serving a slightly different market than what we've traditionally seen in enterprise software. Right? I think traditionally we've seen it buyers or CIOs that have agendas and strategies, which, you know, purchased software that has traditionally bought and sold tops down. But, you know, today I think the most successful enterprise software companies are the ones that are built more bottoms up and have more technical early opts. And generally speaking, they're free to use. They're free to try. They're very commonly community source or open source companies where you have a large technical community that's supporting them. So there's a, there's kind of a new normal now I think in great enterprise software. And it starts with great technical founders with great products and great and emotions. And I think there's no better place to, uh, service those people than in the cloud and uh, in, in your community. >>Well, first of all, congratulations, and by the way, you got a great pedigree and great background, super smart admire of your work and your, and, and your founding, but let's face it. Enterprise is hot because digital transformation is all companies. The is no, I mean, consumer is enterprise. Now everything is what was once a niche. No, I won't say niche category, but you know, not for the faint of heart, you know, investors, >>You know, it's so funny that you say that enterprise is hot because you, and I feel that way now. But remember, like right now, there's also a giant tech in VC conference in Miami <laugh> it's covering cryptocurrencies and FCS and web three. So I think beauty is definitely in the eye of the beholder <laugh> but no, I, I will tell you, >>Ts is one big enterprise, cuz you gotta have imutability you got performance issues. You have, I IOPS issues. Well, and, >>And I think all of us here that are, uh, maybe students of history and have been involved in, open in the cloud would say that we're, you know, much of what we're doing is, uh, the predecessors of the web web three movement. And many of us I think are contributors to the web three movement. >>The hype is definitely that three. >>Yeah. But, but >>You know, for >>Sure. Yeah, no, but now you're taking us further east to Miami. So, uh, you know, look, I think, I, I think, um, what is unquestioned with the case now? And maybe it's, it's more obvious the more time you spend in this world is this is the fastest growing part of enterprise software. And if you include cloud infrastructure and cloud infrastructure spend, you know, it is by many men over, uh, 500 billion in growing, you know, 20 to 30% a year. So it it's a, it's a just incredibly fast, >>Let's getting, let's get into some of the cultural and the, the shifts that are happening, cuz again, you, you have the luxury of being in enterprise when it was hard, it's getting easier and more cooler. I get it and more relevant, but it's also the hype of like the web three, for instance. But you know, uh, um, um, the CEO snowflake, okay. Has wrote a book and Dave Valenti and I were talking about it and uh, Frank Luman has says, there's no playbooks. We always ask the CEOs, what's your playbook. And he's like, there's no playbook, situational awareness, always Trump's playbooks. So in the enterprise playbook, oh, higher direct sales force and SAS kind of crushed the, at now SAS is being redefined, right. So what is SAS? Is snowflake a SAS or is that a platform? So again, new unit economics are emerging, whole new situation, you got web three. So to me there's a cultural shift, the young entrepreneurs, the, uh, user experience, they look at Facebook and say, ah, you know, they own all my data. You know, we know that that cliche, um, they, you know, the product. So as this next gen, the gen Z and the millennials come in and our customers and the founders, they're looking at things a little bit differently and the tech better. >>Yeah. I mean, I mean, I think we can, we can see a lot of commonalities across all successful startups and the overall adoption of technology. Uh, and, and I would tell you, this is all one big giant revolution. I call it the user driven revolution. Right. It's the rise of the user. Yeah. And you might say product like growth is currently the hottest trend in enterprise software. It's actually user like growth, right. They're one in the same. So sometimes people think the product, uh, is what is driving. You >>Just pull the >>Product through. Exactly, exactly. And so that's that I, that I think is really this revolution that you see, and, and it does extend into things like cryptocurrencies and web three and, you know, sort of like the control that is taken back by the user. Um, but you know, many would say that, that the origins of this movement maybe started with open source where users were, are contributors, you know, contributors, we're users and looking back decades and seeing how it, how it fast forward to today. I think that's really the trend that we're all writing and it's enabling these end users. And these end users in our world are developers, data engineers, cybersecurity practitioners, right. They're really the users. And they're really the, the beneficiaries and the most, you know, kind of valued people in >>This. I wanna come back to the data engineers in a second, but I wanna make a comment and get your reaction to, I have a, I'm a GenXer technically, so for not a boomer, but I have some boomer friends who are a little bit older than me who have, you know, experienced the sixties. And I've, I've been staying on the cube for probably about eight years now that we are gonna hit a digital hippie revolution, meaning a rebellion against in the sixties was rebellion against the fifties and the man and, you know, summer of love. That was a cultural differentiation from the other one other group, the predecessors. So we're kind of having that digital moment now where it's like, Hey boomers, Hey people, we're not gonna do that anymore. We hate how you organize shit. >>Right. But isn't this just technology. I mean, isn't it, isn't it like there used to be the old adage, like, you know, you would never get fired for buying IBM, but now it's like, you obviously probably would get fired if you bought IBM. And I mean, it's just like the, the, I think, I think >>It's the main for days, those renegades were breaking into Stanford, starting the home brew club. So what I'm trying to get at is that, do you see the young cultural revolution also, culturally, just, this is my identity NFTs to me speak volumes about my, I wanna associate with NFTs, not single sign on. Well, >>Absolutely. And, and I think like, I think you're hitting on something, which is like this convergence of, of, you know, societal trends with technology trends and how that manifests in our world is yes. I think like there is unquestionably almost a religion around the way in which a product is built. Right. And we can use open source, one example of that religion. Some people will say, look, I'll just never try a product in the cloud if it's not open source. Yeah. I think cloud, native's another example of that, right? It's either it's, you know, it either is cloud native or it's not. And I think a lot of people will look at a product and say, look, you know, you were not designed in the cloud era. Therefore I just won't try you. And sometimes, um, like it or not, it's a religious decision, right? It's, it's something that people just believe to be true almost without, uh, necessarily. I mean >>The decision making, let me ask you this next question. As a VC. Now you look at pitch, well, you've made a VC for many years, but you also have the founder, uh, entrepreneurial mindset, but you can get empathize with the founders. You know, hustle is a big part of the, that first founder check, right? You gotta convince someone to part with their ch their money and the first money in which you do a lot of is about believing in the person. So fing, so you make, it is hard. Now you, the data's there, you either have it cloud native, you either have the adaption or traction. So honesty is a big part of that pitch. You can't fake it. Oh, >>AB absolutely. You know, there used to be this concept of like the persona of an entrepreneur, right. And the persona of the entrepreneur would be, you know, somebody who was a great salesperson or somebody who tell a great story. You, I still think that that's important, right? It still is a human need for people to believe in narratives and stories. But having said that you're right, the proof is in the pudding, right? At some point you click download and you try the product and it does what it says it it's gonna do, or it doesn't, or it either stands up to the load test or it doesn't. And so I, I feel like in this new economy that we live in, it's a shift from maybe the storytellers and the creators to, to the builders, right. The people that know how to build great product. And in some ways the people that can build great product yeah. Stand out from the crowd. And they're the ones that can build communities around their products. And, you know, in some ways can, um, you know, kind of own more of the narrative because their products exactly >>The volume back to the user led growth. >>Exactly. And it's the religion of, I just love your product. Right. And I, I, I, um, Doug song was the founder of du security used to say, Hey, like, you know, the, the really like in today's world of like consumption based software, the user is only gonna give you 90 seconds to figure out whether or not you're a company that's easy to do business with. Right. And so you can say, and do all the things that you want about how easy you are to work with. But if the product isn't easy to install, if it's not easy to try, if it's not, if, if the, you know, it's gotta speak to >>The, speak to the user, but let me ask a question now that the people watching who are maybe entrepreneurial entrepreneur, um, masterclass here is in session. So I have to ask you, do you prefer, um, an entrepreneur to come in and say, look at John. Here's where I'm at. Okay. First of all, storytelling's fine. Whether you're an extrovert or introvert, have your style, sell the story in a way that's authentic, but do you, what do you prefer to say? Here's where I'm at? Look, I have an idea. Here's my traction. I think here's my MVP prototype. I need help. Or do you wanna just see more stats? What's the, what's the preferred way that you like to see entrepreneurs come in and engage, engage? >>There's tons of different styles, man. I think the single most important thing that every founder should know is that we, we don't invest in what things are today. We invest in what we think something will become. Right. And I think that's why we all get up in the morning and try to build something different, right? It's that we see the world a different way. We want it to be a different way, and we wanna work every single moment of the day to try to make that vision a reality. So I think the more that you can show people where you want to be, the more likely somebody is gonna align with your vision and, and want to invest in you and wanna be along for the ride. So I, I wholeheartedly believe in showing off what you got today, because eventually we all get down to like, where are we and what are we gonna do together? But, um, no, I >>Show >>The path. I think the single most important thing for any founder and VC relationship is that they have the same vision, uh, have the same vision. You can, you can get through bumps in the road, you can get through short term spills. You can all sorts of things in the middle of the journey can happen. Yeah. But it doesn't matter as much if you share the same long term vision, >>Don't flake out and, and be fashionable with the latest trends because it's over before you can get there. >>Exactly. I think many people that, that do what we do for a living will say, you know, ultimately the future is relatively easy to predict, but it's the timing that's impossible to predict. So you, you know, you sort of have to balance the, you know, we, we know that the world is going this way and therefore we're gonna invest a lot of money to try to make this a reality. Uh, but sometimes it happens in six months. Sometimes it takes six years is sometimes like 16 years. >>Uh, what's the hottest thing in enterprise that you see the biggest wave that people should pay attention to that you're looking at right now with Desel partners, Tebel dot your site. What's the big wave. What's your big >>Wave. There, there's three big trends that we invest in. And they're the, they're the only things we do day in, day out. One is the explosion and open source software. So I think many people think that all software is unquestionably moving to an open source model in some form or another yeah. Tons of reasons to debate whether or not that is gonna happen and on what timeline happening >>Forever. >>But it is, it is accelerating faster than we've ever seen. So I, I think it's, it's one big, massive wave that we continue to ride. Um, second is the rise of data engineering. Uh, I think data engineering is in and of itself now, a category of software. It's not just that we store data. It's now we move data and we develop applications on data. And, uh, I think data is in and of itself as big of a, a market as any of the other markets that we invest in. Uh, and finally, it's the gift that keeps on giving. I've spent my entire career in it. We still feel that security is a market that is under invested. It is, it continues to be the place where people need to continue to invest and spend more money. Yeah. Uh, and those are the three major trends that we run >>And security, you think we all need a dessert do over, right? I mean, do we need a do over in security or is what's the core problem? I, >>I, I keep using this word underinvested because I think it's the right way to think about the problem. I think if you, I think people generally speaking, look at cyber security as an add-on. Yeah. But if you think about it, the whole economy is moving online. And so in, in some ways like security is core to protecting the digital economy. And so it's, it shouldn't be an afterthought, right? It should be core to what everyone is doing. And that's why I think relative to the trillions of dollars that are at stake, uh, I believe the market size for cybersecurity is around 150 billion. And it still is a fraction of what we're, what >>We're and security even boom is booming now. So you get the convergence of national security, geopolitics, internet digital >>That's right. You mean arguably, right? I mean, arguably again, it's the area of the world that people should be spending more time and more money given what to stake. >>I love your thesis. I gotta, I gotta say, you gotta love your firm. Love. You're doing we're big supporters of your mission. Congratulations on your entrepreneurial venture. And, uh, we'll be, we'll be talking and maybe see a Cub gone. Uh, >>Absolutely. >>Certainly EU maybe even north America's in Detroit this year. >>Huge fan of what you guys are doing here. Thank you so much for having me on >>The show. Guess bell VC Johnson here on the cube. Check him out. Founder for founders here on the cube, more coverage from San Francisco, California. After the short break, stay with us. Everyone. Welcome to the queue here. Live in San Francisco, California for AWS summit, 2022 we're live we're back with the events. Also we're virtual. We got hybrid all kinds of events. This year, of course, 80% summit in New York city is happening this summer. We'll be there with the cube as well. I'm John. Again, John host of the cube got a great guest here. Justin Coby owner and CEO of innovative solutions. Their booth is right behind us. Justin, welcome to the cube. >>Thank you. Thank you for having me. >>So we're just chatting, uh, uh, off camera about some of the work you're doing. You're the owner of and CEO. Yeah. Of innovative. Yeah. So tell us a story. What do you guys do? What's the elevator pitch. >>Yeah. <laugh> so the elevator pitch is we are, uh, a hundred percent focused on small to midsize businesses that are moving into the cloud or have already moved to the cloud and really trying to understand how to best control, cost, security, compliance, all the good stuff, uh, that comes along with it. Um, exclusively focused on AWS and, um, you know, about 110 people, uh, based in Rochester, New York, that's where our headquarters is, but now we have offices down in Austin, Texas up in Toronto, uh, key Canada, as well as Chicago. Um, and obviously in New York, uh, you know, the, the business was never like this, uh, five years ago, um, founded in 1989, made the decision in 2018 to pivot and go all in on the cloud. And, uh, I've been a part of the company for about 18 years, bought the company about five years ago and it's been a great ride. It >>It's interesting. The manages services are interesting with cloud cause a lot of the heavy liftings done by AWS. So we had Matt on your team on earlier talking about some of the edge stuff. Yeah. But you guys are a managed cloud service. You got cloud advisory, you know, the classic service that's needed, but the demands coming from cloud migrations and application modernization and obviously data is a huge part of it. Huge. How is this factoring into what you guys do and your growth cuz you guys are the number one partner on the SMB side for edge. Yeah. For AWS, you got results coming in. Where's the, where's the forcing function. What's the pressure point. What's the demand like? >>Yeah. It's a great question. Every CEO I talk to, that's a small to midsize business. They're trying to understand how to leverage technology. It better to help either drive a revenue target for their own business, uh, help with customer service as so much has gone remote now. And we're all having problems or troubles or issues trying to hire talent. And um, you know, tech ISNT really at the, at the forefront and the center of that. So most customers are coming to us and they're like, listen, we gotta move to the cloud or we move some things to cloud and we want to do that better. And um, there's this big misnomer that when you move to the cloud, you gotta automatically modernize. Yeah. And what we try to help as many customers understand as possible is lifting and shifting, moving the stuff that you maybe currently have OnPrem and a data center to the cloud first is a first step. And then, uh, progressively working through a modernization strateg, always the better approach. And so we spend a lot of time with small to midsize businesses who don't have the technology talent on staff to be able to do >>That. Yeah. They want get set up. But then the dynamic of like latency is huge. We're seeing that edge product is a big part of it. This is not a one-off happening around everywhere. It is. And it's not, it's manufacturing, it's the physical plant or location >>Literally. >>And so, and you're seeing more IOT devices. What's that like right now from a challenge and problem statement standpoint, are the customers, not staff, is the it staff kind of old school? Is it new skills? What's the core problem you guys solve >>In the SMB space? The core issue nine outta 10 times is people get enamored with the latest and greatest. And the reality is not everything that's cloud based. Not all cloud services are the latest and greatest. Some things have been around for quite some time and are hardened solutions. And so, um, what we try to do with technology staff that has traditional on-prem, uh, let's just say skill sets and they're trying to move to a cloud-based workload is we try to help those customers through education and through some practical, let's just call it use case. Um, whether that's a proof of concept that we're doing or whether we're gonna migrate a small workload over, we try to give them the confidence to be able to not, not necessarily go it alone, but to, to, to have the, uh, the Gusto and to really have the, um, the, the opportunity to, to do that in a wise way. Um, and what I find is that most CEOs that I talk to, yeah, they're like, listen, the end of the day, I'm gonna be spending money in one place or another, whether that's OnPrem or in the cloud. I just want to know that I'm doing that in a way that helps me grow as quickly as possible status quo. I think every, every business owner knows that COVID taught us anything that status quo is, uh, is, is no. No. >>Good. How about factoring in the, the agility and speed equation? Does that come up a lot? It >>Does. I think, um, I, there's also this idea that if, uh, if we do a deep dive analysis and we really take a surgical approach to things, um, we're gonna be better off. And the reality is the faster you move with anything cloud based, the better you are. And so there's this assumption that we gotta get it right the first time. Yeah. In the cloud, if you start down your journey in one way and you realize midway that it's not the right, let's just say the right place to go. It's not like buying a piece of iron that you put in the closet and now you own it in the cloud. You can turn those services on and off. It's gives you a much higher density for making decisions and failing >>Forward. Well actually shutting down the abandoning the projects that early and not worrying about it, you got it. I mean, most people don't abandon cause like, oh, I own it. >>Exactly. And >>They get, they get used to it. Like, and then they wait too long. >>That's exactly. Yeah. >>Frog and boiling water as we used to say. So, oh, it's a great analogy. So I mean, this is a dynamic that's interesting. I wanna get more thoughts on it because like I'm a, if I'm a CEO of a company, like, okay, I gotta make my number. Yeah. I gotta keep my people motivated. Yeah. And I gotta move faster. So this is where you, I get the whole thing. And by the way, great service, um, professional services in the cloud right now are so hot because so hot, you can build it and then have option optionality. You got path decisions, you got new services to take advantage of. It's almost too much for customers. It is. I mean, everyone I talked to at reinvent, that's a customer. Well, how many announcements did am jazzy announce or Adam, you know, the 5,000 announcement or whatever. They do huge amounts. Right. Keeping track of it all. Oh, is huge. So what's the, what's the, um, the mission of, of your company. How does, how do you talk to that alignment? Yeah. Not just processes. I can get that like values as companies, cuz they're betting on you and your people. >>They are, they are, >>What's the values. >>Our mission is, is very simple. We want to help every small to midsize business leverage the power of the cloud. Here's the reality. We believe wholeheartedly. This is our vision that every company is going to become a technology company. So we go to market with this idea that every customer's trying to leverage the power of the cloud in some way, shape or form, whether they know it or don't know it. And number two, they're gonna become a tech company in the process of that because everything is so tech-centric. And so when you talk about speed and agility, when you talk about the, the endless options and the endless permutations of solutions that a customer can buy in the cloud, how are you gonna ask a team of one or two people in your, or it department to make all those decisions going it alone or trying to learn it as you go, it only gets you so far working with a partner. >>I'll just give you some perspective. We work with about a thousand small to midsize business customers. More than 50% of those customers are on our managed services. Meaning they know that we have their back Andre or the safety net. So when a customer is saying, all right, I'm gonna spend a couple thousand dollars a month in the cloud. They know that that bill, isn't gonna jump to $10,000 a month going in alone. Who's there to help protect that. Number two, if you have a security posture and let's just say you're high profile and you're gonna potentially be more vulnerable to security attack. If you have a partner, that's all offering you some managed services. Now you, again, you've got that backstop and you've got those services and tooling. We, we offer, um, seven different products, uh, that are part of our managed services that give the customer the tooling, that for them to go out and buy on their own for a customer to go out today and go buy a new Relic solution on their own. It, it would cost 'em a fortune. If >>Training alone would be insane, a factor and the cost. Yes, absolutely. Opportunity cost is huge, >>Huge, absolutely enormous training and development. Something. I think that is often, you know, it's often overlooked technologists. Typically they want to get their skills up. Yeah. They, they love to get the, the stickers and the badges and the pins, um, at innovative in 2018, when, uh, when we made the decision to go all in on the club, I said to the organization, you know, we have this idea that we're gonna pivot and be aligned with AWS in such a way that it's gonna really require us all to get certified. My executive assistant at the time looks at me. She said, even me, I said, yeah, even you, why can't you get certified? Yeah. And so we made, uh, a conscious decision. It wasn't requirement and still isn't today to make sure everybody in the company has the opportunity to become certified. Even the people that are answering the phones at the front desk >>And she could be running the Kubernetes clusters. I love it. It's amazing. >>But I'll tell you what, when that customer calls and they have a real Kubernetes issue, she'll be able to assist and get >>The right people involved. And that's a cultural factor that you guys have. So, so again, this is back to my whole point about SMBs and businesses in general, small en large, it staffs are turning over the gen Z and millennials are in the workforce. They were provisioning top of rack switches. Right. First of all. And so if you're a business, there's also the, I call the build out, um, uh, return factor, ROI piece. At what point in time as an owner or SMB, do I get the ROI? Yeah. I gotta hire a person to manage it. That person's gonna have five zillion job offers. Yep. Uh, maybe who knows? Right. I got cybersecurity issues. Where am I gonna find a cyber person? Yeah. A data compliance. I need a data scientist and a compliance person. Right. Maybe one and the same. Right. Good luck. Trying to find a data scientist. Who's also a compliance person. Yep. And the list goes on. I can just continue. Absolutely. I need an SRE to manage the, the, uh, the sock report and we can pen test. Right. >>Right. >>These are, these are >>Critical issues. This >>Is just like, these are the table stakes. >>Yeah. And, and every, every business owner's thinking about. So that's, >>That's what, at least a million in bloating, if not three or more Just to get that going. Yeah. Then it's like, where's the app. Yeah. So there's no cloud migration. There's no modernization on the app side though. Yeah. No. And nevermind AI and ML. That's >>Right. That's right. So to try to go it alone, to me, it's hard. It it's incredibly difficult. And, and the other thing is, is there's not a lot of partners, so the partner, >>No one's raising their hand boss. I'll >>Do all that >>Exactly. In it department. >>Exactly. >>Like, can we just call up, uh, you know, <laugh> our old vendor. That's >>Right. <laugh> right. Our old vendor. I like it, but that's so true. I mean, when I think about how, if I was a business owner, starting a business to today and I had to build my team, um, and the amount of investment that it would take to get those people skilled up and then the risk factor of those people now having the skills and being so much more in demand and being recruited away, that's a real, that's a real issue. And so how you build your culture around that is, is very important. And it's something that we talk about every, with every one of our small to midsize business. >>So just, I want to get, I want to get your story as CEO. Okay. Take us through your journey. You said you bought the company and your progression to, to being the owner and CEO of innovative award winning guys doing great. Uh, great bet on a good call. Yeah. Things are good. Tell your story. What's your journey? >>It's real simple. I was, uh, was a sophomore at the Rochester Institute of technology in 2003. And, uh, I knew that I, I was going to school for it and I, I knew I wanted to be in tech. I didn't know what I wanted to do, but I knew I didn't wanna code or configure routers and switches. So I had this great opportunity with the local it company that was doing managed services. We didn't call it at that time innovative solutions to come in and, uh, jump on the phone and dial for dollars. I was gonna cold call and introduce other, uh, small to midsize businesses locally in Rochester, New York go to Western New York, um, who innovative was now. We were 19 people at the time. And I came in, I did an internship for six months and I loved it. I learned more in those six months that I probably did in my first couple of years at, uh, at R I T long story short. >>Um, for about seven years, I worked, uh, to really help develop, uh, sales process and methodology for the business so that we could grow and scale. And we grew to about 30 people. And, um, I went to the owners at the time in 2010 and I was like, Hey, I'm growing the value of this business. And who knows where you guys are gonna be another five years? What do you think about making me an owner? And they were like, listen, you got long ways before you're gonna be an owner, but if you stick it out in your patient, we'll, um, we'll work through a succession plan with you. And I said, okay, there were four other individuals at the time that we're gonna also buy the business with >>Me. And they were the owners, no outside capital, >>None zero, well, 2014 comes around. And, uh, the other folks that were gonna buy into the business with me that were also working at innovative for different reasons. They all decided that it wasn't for them. One started a family. The other didn't wanna put capital in. Didn't wanna write a check. Um, the other had a real big problem with having to write a check. If we couldn't make payroll, I'm like, well, that's kind of like if we're owners, we're gonna have to like cover that stuff. <laugh> so >>It's called the pucker factor. >>Exactly. So, uh, I sat down with the CEO in early 2015, and, uh, we made the decision that I was gonna buy the three partners out, um, go through an earn out process, uh, coupled with, uh, an interesting financial strategy that wouldn't strap the business, cuz they care very much. The company still had the opportunity to keep going. So in 2016 I bought the business, um, became the sole owner. And, and at that point we, um, we really focused hard on what do we want this company to be? We had built this company to this point. Yeah. And, uh, and by 2018 we knew that pivoting all going all in on the cloud was important for us and we haven't looked back. >>And at that time, the proof points were coming clearer and clearer 2012 through 15 was the early adopters, the builders, the startups and early enterprises. Yes. The capital ones of the world. Exactly the, uh, and those kinds of big enterprises. The game don't, won't say gamblers, but ones that were very savvy. The innovators, the FinTech folks. Yep. The hardcore glass eating enterprises >>Agreed, agreed to find a small to midsize business, to migrate completely to the cloud as, as infrastructure was considered. That just didn't happen as often. Um, what we were seeing were a lot of our small to midsize business customers, they wanted to leverage cloud based backup, or they wanted to leverage a cloud for disaster recovery because it lent itself. Well, early days, our most common cloud customer though, was the customer that wanted to move messaging and collaboration. The, the Microsoft suite to the cloud and a lot of 'em dipped their toe in the water. But by 2017 we knew infrastructure was around the corner. Yeah. And so, uh, we only had two customers on eight at the time. Um, and we, uh, we, we made the decision to go all in >>Justin. Great to have you on the cube. Thank you. Let's wrap up. Uh, tell me the hottest product that you have. Is it migrations? Is the app modernization? Is it data? What's the hot product and then put a plug in for the company. Awesome. >>So, uh, there's no question. Every customer is looking to migrate workloads and try to figure out how to modernize for the future. We have very interesting, sophisticated yet elegant funding solutions to help customers with the cash flow, uh, constraints that come along with those migrations. So any SMB that's thinking about migrating to the cloud, they should be talking innovative solutions. We know how to do it in a way that allows those customers not to be cash strapped and gives them an opportunity to move forward in a controlled, contained way so that they can modernize. >>So like insurance, basically for them not insurance class in the classic sense, but you help them out on the, on the cash exposure. >>Absolutely. We are known for that and we're known for being creative with those customers, empathetic to where they are in their journey. And >>That's the cloud upside is all about doubling down on the variable wind. That's right. Seeing the value and doubling down on it. Absolutely not praying for it. Yeah. <laugh> all right, Justin. Thanks for coming on. You really appreciate it. Thank >>You very much for having >>Me. Okay. This is the cube coverage here live in San Francisco, California for AWS summit, 2022. I'm John for your host. Thanks for watching with back with more great coverage for two days after this short break >>Live on the floor in San Francisco for 80 west summit, I'm John ferry, host of the cube here for the next two days, getting all the action we're back in person. We're at AWS reinvent a few months ago. Now we're back events are coming back and we're happy to be here with the cube, bringing all the action. Also virtual, we have a hybrid cube, check out the cube.net, Silicon angle.com for all the coverage. After the event. We've got a great guest ticketing off here. Matthew Park, director of solutions, architecture with innovation solutions. The booth is right here. Matthew, welcome to the cube. >>Thank you very much. I'm glad >>To be here. So we're back in person. You're from Tennessee. We were chatting before you came on camera. Um, it's great to have to be back through events. >>It's amazing. This is the first, uh, summit I've been to and what two, three years. >>It's awesome. We'll be at the, uh, New York as well. A lot of developers and a big story this year is as developers look at cloud going distributed computing, you got on premises, you got public cloud, you got the edge. Essentially the cloud operations is running everything dev sec ops, everyone kind of sees that you got containers, you got Kubernetes, you got cloud native. So the, the game is pretty much laid out. Mm. And the edge is with the actions you guys are number one, premier partner at SMB for edge. >>That's right. >>Tell us about what you guys doing at innovative and, uh, what you do. >>That's right. Uh, so I'm the director of solutions architecture. Uh, me and my team are responsible for building out the solutions that are around, especially the edge public cloud out for us edge is anything outside of an AWS availability zone. Uh, we are deploying that in countries that don't have AWS infrastructure in region. They don't have it. Uh, give >>An example, >>Uh, example would be Panama. We have a customer there that, uh, needs to deploy some financial tech data and compute is legally required to be in Panama, but they love AWS and they want to deploy AWS services in region. Uh, so they've taken E EKS anywhere. We've put storage gateway and, uh, snowball, uh, in region inside the country and they're running their FinTech on top of AWS services inside Panama. >>You know, what's interesting, Matthew is that we've been covering Aw since 2013 with the cube about their events. And we watched the progression and jazzy was, uh, was in charge and then became the CEO. Now Adam Slosky is in charge, but the edge has always been that thing they've been trying to, I don't wanna say, trying to avoid, of course, Amazon would listen to customers. They work backwards from the customers. We all know that. Uh, but the real issue was they were they're bread and butters EC two and S three. And then now they got tons of services and the cloud is obviously successful and seeing that, but the edge brings up a whole nother level. >>It does >>Computing. It >>Does. >>That's not central lies in the public cloud. Now they got regions. So what is the issue with the edge what's driving? The behavior. Outpost came out as a reaction to competitive threats and also customer momentum around OT, uh, operational technologies. And it merging. We see with the data at the edge, you got five GM having. So it's pretty obvious, but there was a slow transition. What was the driver for the <affirmative> what's the driver now for edge action for AWS >>Data is the driver for the edge. Data has gravity, right? And it's pulling compute back to where the customer's generating that data and that's happening over and over again. You said it best outpost was a reaction to a competitive situation. Whereas today we have over fit 15 AWS edge services, and those are all reactions to things that customers need inside their data centers on location or in the field like with media companies. >>Outpost is interesting. We always used to riff on the cube, uh, cuz it's basically Amazon in a box, pushed in the data center, uh, running native, all the stuff, but now cloud native operations are kind of become standard. You're starting to see some standard Deepak sings group is doing some amazing work with open source Rauls team on the AI side, obviously, uh, you got SW who's giving the keynote tomorrow. You got the big AI machine learning big part of that edge. Now you can say, okay, outpost, is it relevant today? In other words, did outpost do its job? Cause EKS anywhere seems to be getting a lot of momentum. You see low the zones, the regions are kicking ass for Amazon. This edge piece is evolving. What's your take on EKS anywhere versus say outpost? >>Yeah, I think outpost did its job. It made customers that were looking at outpost really consider, do I wanna invest in this hardware? Do I, do I wanna have, um, this outpost in my data center, do I wanna manage this over the long term? A lot of those customers just transitioned to the public cloud. They went into AWS proper. Some of those customers stayed on prem because they did have use cases that were, uh, not a good fit for outpost. They weren't a good fit. Uh, in the customer's mind for the public AWS cloud inside an availability zone. Now what's happening is as AWS is pushing these services out and saying, we're gonna meet you where you are with 5g. We're gonna meet you where you are with wavelength. We're gonna meet you where you are with EKS anywhere. Uh, I think it has really reduced the amount of times that we have conversations about outposts and it's really increased. We can deploy fast. We don't have to spin up outpost hardware. We can go deploy EKS anywhere in your VMware environment and it's increasing the speed of adoption >>For sure. So you guys are making a lot of good business decisions around managed cloud service. Innovative does that. You have the cloud advisory, the classic professional services for the specific edge piece and, and doing that outside of the availability zones and regions for AWS, um, customers in, in these new areas that you're helping out are they want cloud, like they want to have modernization a modern applications. Obviously they got data machine learning and AI, all part of that. What's the main product or, or, or gap that you're filling for AWS, uh, outside of their available ability zones or their regions that you guys are delivering. What's the key is it. They don't have a footprint. Is it that it's not big enough for them? What's the real gap. What's why, why are you so successful? >>So what customers want when they look towards the cloud is they want to focus on, what's making them money as a business. They wanna focus on their applications. They want focus on their customers. So they look towards AWS cloud and say, AWS, you take the infrastructure. You take, uh, some of the higher layers and we'll focus on our revenue generating business, but there's a gap there between infrastructure and revenue generating business that innovative slides into, uh, we help manage the AWS environment. We help build out these things in local data centers for 32 plus year old company, we have traditional on-premises people that know about deploying hardware that know about deploying VMware to host EKS anywhere. But we also have most of our company totally focused on the AWS cloud. So we're filling that gap in helping deploy these AWS services, manage them over the long term. So our customers can go to just primarily and totally focusing on their revenue generating business. >>So basically you guys are basically building AWS edges, >>Correct? >>For correct companies, correct? Mainly because the, the needs are there, you got data, you got certain products, whether it's, you know, low latency type requirements, right. And then they still work with the regions, right. It's all tied together, right. Is that how it works? Right. >>And, and our customers, even the ones in the edge, they also want us to build out the AWS environment inside the availability zone, because we're always gonna have a failback scenario. If we're gonna deploy FinTech in the Caribbean, we're gonna talk about hurricanes and gonna talk about failing back into the AWS availability zones. So innovative is filling that gap across the board, whether it be inside the AWS cloud or on the AWS edge. >>All right. So I gotta ask you on the, since you're at the edge in these areas, I won't say underserved, but developing areas where now have data, you have applications that are tapping into that, that requirement. It makes total sense. We're seeing across the board. So it's not like it's, it's an outlier it's actually growing. Yeah. There's also the crypto angle. You got the blockchain. Are you seeing any traction at the edge with blockchain? Because a lot of people are looking at the web three in these areas like Panama, you mentioned FinTech in, in the islands. There are a lot of, lot of, lot of web three happening. What's your, what's your view on the web three world right now, relative >>To we, we have some customers actually deploying crypto, especially, um, especially in the Caribbean. I keep bringing the Caribbean up, but it's, it's top of my mind right now we have customers that are deploying crypto. A lot of, uh, countries are choosing crypto underly parts of their central banks. Yeah. Um, so it's, it's up and coming. Uh, I, I have some, you know, personal views that, that crypto is still searching for a use case. Yeah. And, uh, I think it's searching a lot and, and we're there to help customers search for that use case. Uh, but, but crypto, as a, as a tech technology, um, lives really well on the AWS edge. Yeah. Uh, and, and we're having more and more people talk to us about that. Yeah. And ask for assistance in the infrastructure because they're developing new cryptocurrencies every day. Yeah. It's not like they're deploying Ethereum or anything specific. They're actually developing new currencies and, and putting them out there on it's >>Interesting. And I mean, first of all, we've been doing crypto for many, many years. We have our own little, um, you know, projects going on. But if you look talk to all the crypto people that say, look, we do a smart contract, we use the blockchain. It's kind of over a lot of overhead. It's not really their technical already, but it's a cultural shift, but there's underserved use cases around use of money, but they're all using the blockchain, just for this like smart contracts for instance, or certain transactions. And they go into Amazon for the database. Yeah. <laugh> they all don't tell anyone we're using a centralized service, but what happened to decent centralized. >>Yeah. And that's, and that's the conversation performance. >>Yeah. >>And, and it's a cost issue. Yeah. And it's a development issue. Um, so I think more and more as, as some of these, uh, currencies maybe come up, some of the smart contracts get into, uh, they find their use cases. I think we'll start talking about how does that really live on, on AWS and, and what does it look like to build decentralized applications, but with AWS hardware and services. >>Right. So take me through a, a use case of a customer, um, Matthew around the edge. Okay. So I'm a customer, pretend I'm a customer, Hey, you know, I'm, we're in an underserved area. I want to modernize my business. And I got my developers that are totally peaked up on cloud. Um, but we've identified that it's just a lot of overhead latency issues. I need to have a local edge and serve my a and I also want all the benefits of the cloud. So I want the modernization and I wanna migrate to the cloud for all those cloud benefits and the good this of the cloud. What's the answer. Yeah. >>Uh, big thing is, uh, industrial manufacturing, right? That's, that's one of the best use cases, uh, inside industrial manufacturing, we can pull in many of the AWS edge services we can bring in, uh, private 5g, uh, so that all the, uh, equipment inside that, that manufacturing plant can be hooked up. They don't have to pay huge overheads to deploy 5g it's, uh, better than wifi for the industrial space. Um, when we take computing down to that industrial area, uh, because we wanna do pre-procesing on the data. Yeah. We want to gather some analytics. We deploy that with, uh, regular commercially available hardware running VMware, and we deploy EKS anywhere on that. Uh, inside of that manufacturing plant, uh, we can do pre-processing on things coming out of the, uh, the robotics that depending on what we're manufacturing, right. Uh, and then we can take the, those refined analytics and for very low cost with maybe a little bit longer latency transmit those back, um, to the AWS availability zone, the, the standard >>For data lake or whatever, >>To the data lake. Yeah. Data Lakehouse, whatever it might be. Um, and we can do additional data science on that once it gets to the AWS cloud. Uh, but I'll lot of that, uh, just in time business decisions, just in time, manufacturing decisions can all take place on an AWS service or services inside that manufacturing plant. And that's, that's one of the best use cases that we're >>Seeing. And I think, I mean, we've been seeing this on the queue for many, many years, moving data around is very expensive. Yeah. But also compute going of the data that saves that cost yep. On the data transfer also on the benefits of the latency. So I have to ask you, by the way, that's standard best practice now for the folks watching don't move the data unless you have to. Um, but those new things are developing. So I wanna ask you, what new patterns are you seeing emerging once this new architecture's in place? Love that idea, localize everything right at the edge, manufacture, industrial, whatever the use case, retail, whatever it is. Right. But now what does that change in the, in the core cloud? There's a, there's a system element here. Yeah. What's the new pattern. There's >>Actually an organizational element as well, because once you have to start making the decision, do I put this compute at the point of use or do I put this compute in the cloud? Uh, now you start thinking about where business decisions should be taking place. Uh, so not only are you changing your architecture, you're actually changing your organization because you're thinking, you're thinking about a dichotomy you didn't have before. Uh, so now you say, okay, this can take place here. Uh, and maybe, maybe this decision can wait. Yeah. Uh, and then how do I visualize that? By >>The way, it could be a bot tube doing the work for management. Yeah. <laugh> exactly. You got observability going, right. But you gotta change the database architecture in the back. So there's new things developing. You've got more benefit. There >>Are, there are. And, and we have more and more people that, that want to talk less about databases and want to talk more about data lakes because of this. They want to talk more about out. Customers are starting to talk about throwing away data, uh, you know, for the past maybe decade. Yeah. It's been store everything. And one day we will have a data science team that we hire in our organization to do analytics on this decade of data. And well, >>I mean, that's, that's a great point. We don't have time to drill into, maybe we do another session on this, but the one pattern we're seeing of the past year is that throwing away data's bad, even data lakes that so-called turn into data swamps, actually, it's not the case. You look at data, brick, snowflake, and other successes out there. And even time series data, which may seem irrelevant efforts over actually matters when people start retraining their machine learning algorithms. Yep. So as data becomes code, as we call it in our last showcase, we did a whole whole event on this. The data's good in real time and in the lake. Yeah. Because the iteration of the data feeds the machine learning training. Things are getting better with the old data. So it's not throw it away. It's not just business better. Yeah. There's all kinds of new scale. >>There are. And, and we have, uh, many customers that are running pay Toby level. Um, they're, they're essentially data factories on, on, uh, on premises, right? They're, they're creating so much data and they're starting to say, okay, we could analyze this, uh, in the cloud, we could transition it. We could move Aytes of data to the AWS cloud, or we can run, uh, computational workloads on premises. We can really do some analytics on this data transition, uh, those high level and sort of raw analytics back to AWS run 'em through machine learning. Um, and we don't have to transition 10, 12 petabytes of data into AWS. >>So I gotta end the segment on a, on a kind of a, um, fun note. I was told to ask you about your personal background, OnPrem architect, Aus cloud, and skydiving instructor. <laugh> how does that all work together? What tell, what does this mean? Yeah. >>Uh, you >>Jumped out a plane and got a job. You got a customer to jump out >>Kind of. So I was, you jumped out. I was teaching having, uh, before I, before I started in the cloud space, this was 13, 14 years ago. I was a, I still am a sky. I instructor, uh, I was teaching skydiving and I heard out of the corner of my ear, uh, a guy that owned an MSP that was lamenting about, um, you know, storing data and, and how his customers are working. And he can't find an enough people to operate all these workloads. So I walked over and said, Hey, this is, this is what I went to school for. Like, I'd love to, you know, uh, I was living in a tent in the woods, teaching skydiving. I was like, I'd love to not live in a tent in the woods. So, uh, uh, I started and the first day there, uh, we had a, a discussion, uh, EC two had just come out <laugh> and, uh, like, >>This is amazing. >>Yeah. And so we had this discussion, we should start moving customers here. And, uh, and that totally revolutionized that business, um, that, that led to, uh, that that guy actually still owns a skydiving airport. But, um, but through all of that, and through being in on premises, migrated me and myself, my career into the cloud, and now it feels like, uh, almost, almost looking back and saying, now let's take what we learned in the cloud and, and apply those lessons and those services tore >>It's. So it's such a great story, you know, was gonna, you know, you know, the whole, you know, growth mindset pack your own parachute, you know, uh, exactly. You know, the cloud in the early days was pretty much will the shoot open. Yeah. It was pretty much, you had to roll your own cloud at that time. And so, you know, you, you jump on a plane, you gotta make sure that parachute is gonna open. >>And so was Kubernetes by the way, 2015 or so when, uh, when that was coming out, it was, I mean, it was, it was still, and maybe it does still feel like that to some people. Right. But, uh, it was, it was the same kind of feeling that we had in the early days of AWS, the same feeling we have when we >>It's now with you guys, it's more like a tandem jump. Yeah. You know, but, but it's a lot of, lot of this cutting edge stuff, like jumping out of an airplane. Yeah. You got the right equipment. You gotta do the right things. Exactly. >>Right. >>Yeah. Thanks for coming. You really appreciate it. Absolutely great conversation. Thanks for having me. Okay. The cubes here live in San Francisco for eight of us summit. I'm John for host of the cube. Uh, we'll be at a summit in New York coming up in the summer as well. Look up for that. Look up this calendar for all the cube, actually@thecube.net. We'll right back with our next segment after this break. >>Okay. Welcome back everyone to San Francisco live coverage here, we're at the cube a be summit 2022. We're back in person. I'm John fury host of the cube. We'll be at the eighties summit in New York city this summer, check us out then. But right now, two days in San Francisco, getting all the coverage what's going on in the cloud, we got a cube alumni and friend of the cube, my dos car CEO, investor, a Sierra, and also an investor in a bunch of startups, angel investor. Gonna do great to see you. Thanks for coming on the cube. Good to see you. Good to see you. Cool. How are you? Good. >>How hello you. >>So congratulations on all your investments. Uh, you've made a lot of great successes, uh, over the past couple years, uh, and your company raising, uh, some good cash as Sarah. So give us the update. How much cash have you guys raised? What's the status of the company product what's going on? >>First of all, thank you for having me. We're back to be business with you, never after to see you. Uh, so is a company started around four years back. I invested with a few of the investors and now I'm the CEO there. We have raised close to a hundred million there. The investors are people like Norwes Menlo ventures, coastal ventures, Ram Shera, and all those people, all well known guys. And Beckel chime Paul me Mayard web. So whole bunch of operating people and, uh, Silicon valley VCs are involved >>And has it gone? >>It's going well. We are doing really well. We are going almost 300% year over year. Uh, for last three years, the space ISRA is going after is what I call the applying AI for customer service. It operations, it help desk, uh, the same place I used to work at ServiceNow. We are partners with ServiceNow to take, how can we argument for employees and customers, Salesforce, and service now to take you to the next stage? Well, >>I love having you on the cube, Dave and I, Dave LAN as well loves having you on too, because you not only bring the entrepreneurial CEO experience, you're an investor. You're like a, you're like a guest analyst. <laugh> >>You know, who does >>You, >>You >>Get the call fund to talk to you though. You >>Get the commentary, your, your finger in the pulse. Um, so I gotta ask you obviously, AI and machine learning, machine learning AI, or you want to phrase it. Isn't every application. Now, AI first, uh, you're seeing a lot of that going on. You're starting to see companies build the modern applications at the top of the stack. So the cloud scale has hit. We're seeing cloud scale. You predicted that we talked about in the cube many times. Now you have that past layer with a lot more services and cloud native becoming a standard layer. Containerizations growing Docker just raised a hundred million on a $2 billion valuation back from the dead after they pivoted from enterprise services. So open source developers are booming. Um, where's the action. I mean, is there data control plan? Emerging AI needs data. There's a lot of challenges around this. There's a lot of discussions and a lot of companies being funded, observability there's 10 billion observability companies. Data is the key. This is what's your end on this. What's your take. >>Yeah, look, I think I'll give you the few that I see right from my side. Obviously data is very clear. So the things that rumor system of recorded you and me talked about the next layer is called system of intelligence. That's where the AI will play. Like we talk cloud native, it'll be called AI. NA AI enable is a new buzzword and using the AI for customer service. It, you talk about observability. I call it, AIOps applying AOPs for good old it operation management, cloud management. So you'll see the AOPs applied for whole list of, uh, application from observability doing the CMDB, predicting the events insurance. So I see a lot of work clicking for AIOps and AI services. What used to be desk with ServiceNow BMC GLA you see a new ALA emerging as a system of intelligence. Uh, the next would be is applying AI with workflow automation. So that's where you'll see a lot of things called customer workflows, employee workflows. So think of what UI path automation, anywhere ServiceNow are doing, that area will be driven with AI workflows. So you, you see AI going >>Off is RPA. A company is AI, is RPA a feature of something bigger? Or can someone have a company on RPA UI S one will be at their event this summer? Um, is it a product company? I mean, or I mean, RPA is, should be embedded in everything. It's a >>Feature. It is very good point. Very, very good thinking. So one is, it's a category for sure. Like, as we thought, it's a category, it's an area where RPA may change the name. I call it much more about automation, workflow automation, but RPA and automation is a category. Um, it's a company also, but that automation should be embedded in every area. Yeah. Like we call cloud NATO and AI. They it'll become automation data. Yeah. And that's your, thinking's >>Interesting me. I think about the, what you're talking about what's coming to mind is I'm kinda having flashbacks to the old software model of middleware. Remember at middleware, it was very easy to understand it was middleware. It sat between two things and then the middle, and it was software abstraction. Now you have all kinds of workflows, abstractions everywhere. So multiple databases, it's not a monolithic thing. Right? Right. So as you break that down, is this the new modern middleware? Because what you're talking about is data workflows, but they might be siloed. Are they integrated? I mean, these are the challenges. This is crazy. What's the, >>So remember the databases became called polyglot databases. Yeah. I call this one polyglot automation. So you need automation as a layer, as a category, but you also need to put automation in every area like you, you were talking about, it should be part of service. Now it should be part of ISRA. Like every company, every Salesforce. So that's why you see it MuleSoft and sales buying RPA companies. So you'll see all the SaaS companies, cloud companies having an automation as a core. So it's like how you have a database and compute and sales and networking. You'll also have an automation as a layer embedded inside every stack. >>All right. So I wanna shift gears a little bit and get your perspective on what's going on behind us. You can see, uh, behind, as you got the XPO hall got, um, we're back to vis, but you got, you know, AMD, Clum, Dynatrace data, dog, innovative, all the companies out here that we know, we interview them all. They're trying to be suppliers to this growing enterprise market. Right? Okay. But now you also got the entrepreneurial equation. Okay. We're gonna have John Sado on from Deibel later. He's a former NEA guy and we always talk to Jerry, Jen, we know all the, the VCs, what does the startups look like? What does the state of the, in your mind, cause you, I know you invest the entrepreneurial founder situation. Cloud's bigger. Mm-hmm <affirmative> global, right? Data's part of it. You mentioned data's code. Yes. Basically. Data's everything. What's it like for a first an entrepreneur right now who's starting a company. What's the white space. What's the attack plan. How do they get in the market? How do they engineer everything? >>Very good. So I'll give it to, uh, two things that I'm seeing out there. Remember leaders of Amazon created the startups 15 years back. Everybody built on Amazon now, Azure and GCP. The next layer would be people don't just build on Amazon. They're going to build it on top of snow. Flake companies are snowflake becomes a data platform, right? People will build on snowflake, right? So I see my old boss playing ment, try to build companies on snowflake. So you don't build it just on Amazon. You build it on Amazon and snowflake. Snowflake will become your data store. Snowflake will become your data layer, right? So I think that's the next level of companies trying to do that. So if I'm doing observability AI ops, if I'm doing next level of Splunk SIM, I'm gonna build it on snowflake, on Salesforce, on Amazon, on Azure, et cetera. >>It's interesting. You know, Jerry Chan has it put out a thesis a couple months ago called castles in the cloud where your moat is, what you do in the cloud. Not necessarily in the, in the IP. Um, Dave LAN and I had last re invent, coined the term super cloud, right? It's got a lot of traction and a lot of people throwing, throwing mud at us, but we were, our thesis was, is that what Snowflake's doing? What Goldman S Sachs is doing. You're starting to see these clouds on top of clouds. So Amazon's got this huge CapEx advantage. And guys like Charles Fitzgeral out there, who we like was kind of hitting on us saying, Hey, you guys terrible, they didn't get him. Like, yeah, I don't think he gets it, but that's a whole, can't wait to debate him publicly on this. <laugh> cause he's cool. Um, but snowflake is on Amazon. Yes. Now they say they're on Azure now. Cause they've got a bigger market and they're public, but ultimately without a AWS snowflake doesn't exist and, and they're reimagining the data warehouse with the cloud, right? That's the billion dollar opportunity. >>It is. It is. They both are very tight. So imagine what Frank has done at snowflake and Amazon. So if I'm a startup today, I want to build everything on Amazon where possible whatever is, I cannot build. I'll make the pass layer room. The middle layer pass will be snowflake. So I cannot build it on snowflake. I can use them for data layer if I really need to size, I'll build it on force.com Salesforce. Yeah. Right. So I think that's where you'll >>See. So basically the, the, if you're an entrepreneur, the, the north star in terms of the, the outcome is be a super cloud. It >>Is, >>That's the application on another big CapEx ride, the CapEx of AWS or cloud, >>And that reduce your product development, your go to market and you get use the snowflake marketplace to drive your engagement. Yeah. >>Yeah. How are, how is Amazon and the clouds dealing with these big whales, the snowflakes of the world? I mean, I know they got a great relationship, uh, but snowflake now has to run a company they're public. Yeah. So, I mean, I'll say, I think got Redshift. Amazon has got Redshift. Um, but snowflake big customer. The they're probably paying AWS big, >>I >>Think big bills too. >>So John, very good. Cause it's like how Netflix is and Amazon prime, right. Netflix runs on Amazon, but Amazon has Amazon prime that co-option will be there. So Amazon will have Redshift, but Amazon is also partnering with the snowflake to have native snowflake data warehouse as a data layer. So I think depending on the use case you have to use each of the above, I think snowflake is here for a long term. Yeah. Yeah. So if I'm building an application, I want to use snowflake then writing from stats. >>Well, I think that comes back down to entrepreneurial hustle. Do you have a better product? Right. Product value will ultimately determine it as long as the cloud doesn't, you know, foreclose your value. That's right. With some sort of internal hack, but I've think, I think the general question that I have is that I think it's okay to have a super cloud like that because the rising tide is still happening at some point, when does the rising tide stop and the people shopping up their knives, it gets more competitive or is it just an infinite growth cycle? I >>Think it's growth. You call it closed skill you the word cloud scale. So I think look, cloud will continually agree, increase. I think there's as long as there more movement from on, uh, on-prem to the classical data center, I think there's no reason at this point, the rumor, the old lift and shift that's happening in like my business. I see people lift and shifting from the it operations, it helpless. Even the customer service service. Now the ticket data from BMCs CAS like Microfocus, all those workloads are shifted to the cloud, right? So cloud ticketing system is happening. Cloud system of record is happening. So I think this train has still a long way to go made. >>I wanna get your thoughts for the folks watching that are, uh, enterprise buyers are practitioners, not suppliers to the market. Feel free to text me or DMing. Next question is really about the buying side, which is if I'm a customer, what's the current, um, appetite for startup products. Cause you know, the big enterprises now and you know, small, medium, large, and large enterprise, they're all buying new companies cuz a startup can go from zero to relevant very quickly. So that means now enterprises are engaging heavily with startups. What's it like what's is there a change in order of magnitude of the relationship between the startup selling to, or growing startup selling to an enterprise? Um, have you seen changes there? I mean seeing some stuff, but why don't we get your thoughts on that? What it >>Is you, if I remember going back to our 2007 or eight, when I used to talk to you back then when Amazon started very small, right? We are an Amazon summit here. So I think enterprises on the average used to spend nothing with startups. It's almost like 0% or one person today. Most companies are already spending 20, 30% with startups. Like if I look at a C I will line our business, it's gone. Yeah. Can it go more? I think it can double in the next four, five years. Yeah. Spending on the startups. Yeah. >>And check out, uh, AWS startups.com. That's a site that we built for the startup community for buyers and startups. And I want to get your reaction because I, I reference the URL causes like there's like a bunch of companies we've been promoting because the solution that startups have actually are new stuff. Yes. It's bending, it's shifting left for security or using data differently or um, building tools and platforms for data engineering. Right. Which is a new persona that's emerging. So you know, a lot of good resources there. Um, and goes back now to the data question. Now, getting back to your, what you're working on now is what's your thoughts around this new, um, data engineering persona, you mentioned AIOps, we've been seeing AIOps IOPS booming and that's creating a new developer paradigm that's right. Which we call coin data as code data as code is like infrastructure as code, but it's for data, right? It's developing with data, right? Retraining machine learnings, going back to the data lake, getting data to make, to do analysis, to make the machine learning better post event or post action. So this, this data engineers like an SRE for data, it's a new, scalable role we're seeing. Do you see the same thing? Do you agree? Um, do you disagree or can you share? >>I, a lot of thoughts that Fu I see the AI op solutions in the futures should be not looking back. I need to be like we are in San Francisco bay. That means earthquake prediction. Right? I want AOPs to predict when the outages are gonna happen. When there's a performance issue. I don't think most AOPs vendors have not gone there yet. Like I spend a lot of time with data dog, Cisco app dynamic, right? Dynatrace, all this solution will go future towards predict to pro so solution with AOPs. But what you bring up a very good point on the data side. I think like we have a Amazon marketplace and Amazon for startup, there should be data exchange where you want to create for AOPs and AI service that customers give the data, share the data because we thought the data algorithms are useless. I can give the best algorithm, but I gotta train them, modify them, make them better, make them better. Yeah. And I think their whole data exchange is the industry has not thought through something you and me talk many times. Yeah. Yeah. I think the whole, that area is very important. >>You've always been on, um, on the Vanguard of data because, uh, it's been really fun. Yeah. >>Going back to big data days back in 2009, you know that >>Look at, look how much data bricks has grown. >>It is doubled. The key cloud >>Air kinda went private, so good stuff. What are you working on right now? Give a, give a, um, plug for what you're working on. You'll still investing. >>I do still invest, but look, I'm a hundred percent on ISRA right now. I'm the CEO there. Yeah. Okay. So right. ISRA is my number one baby right now. So I'm looking year that growing customers and my customers, or some of them, you like it's zoom auto desk, McAfee, uh, grand <inaudible>. So all the top customers, um, mainly for it help desk customer service. AIOps those are three product lines and going after enterprise and commercial deals. >>And when should someone buy your product? What's what's their need? What category is it? >>I think they look whenever somebody needs to buy the product is if you need AOP solution to predict, keep your lights on, predict ours. One area. If you want to improve employee experience, you are using a slack teams and you want to automate all your workflows. That's another value problem. Third is customer service. You don't want to hire more people to do it. Some of the areas where you want to scale your company, grow your company, eliminate the cost customer service, >>Great stuff, man. Doing great to see you. Thanks for coming on. Congratulations on the success of your company and your investments. Thanks for coming on the cube. Okay. I'm John fur here at the cube live in San Francisco for day one of two days of coverage of a us summit 2022. And we're gonna be at Aus summit in San, uh, in New York in the summer. So look for that on the calendar, of course, go to a us startups.com. That's a site for all the hot startups and of course the cube.net and Silicon angle.com. Thanks for watching. We'll be back more coverage after this short break. >>Okay. Welcome back everyone. This the cubes coverage here in San Francisco, California, a Davis summit, 2022, the beginning of the event season, as it comes back, little bit smaller footprint, a lot of hybrid events going on, but this is actually a physical event, a summit in new York's coming in the summer. We'll be two with the cube on the set. We're getting back in the Groove's psych to be back. We were at reinvent, uh, as well, and we'll see more and more cube, but you're gonna see a lot of virtual cube outta hybrid cube. We wanna get all those conversations, try to get more interviews, more flow going. But right now I'm excited to have Corey Quinn here on the back on the cube chief cloud economist with duck bill groove, he's the founder, uh, and chief content person always got great angles, fun comedy, authoritative Corey. Great to see you. Thank you. >>Thanks. Coming on. Sure is a lot of words to describe is shit posting, which is how I describe what I tend to do. Most days, >>Shit posting is an art form now. And if you look at mark, Andrew's been doing a lot of shit posting lately. All a billionaires are shit posting, but they don't know how to do it. They're >>Doing it right. There's something opportunity there. It's like, here's how to be even more obnoxious and incisive. It's honestly the most terrifying scenario for anyone is if I have that kind of budget to throw at my endeavors, it's like, I get excited with a nonsense I can do with a $20 gift card for an AWS credit compared to, oh well, if I could buy a mid-size island to begin doing this from, oh, then we're having fun. >>This shit posting trend. Interesting. I was watching a thread go on about, saw someone didn't get a job because of their shit posting and the employer didn't get it. And then someone on this side I'll hire the guy cuz I get that's highly intelligent shit posting. So for the audience that doesn't know what shit posting is, what, what is shitposting >>It's more or less talking about the world of enterprise technology, which even that sentence is hard to finish without falling asleep and toppling out of my chair in front of everyone on the livestream, but it's doing it in such a way that brings it to life that says the quiet part. A lot of the audience is thinking, but generally doesn't say either because they're polite or not a Jack ass or more prosaically are worried about getting fired for better or worse. I don't have that particular constraint, >>Which is why people love you. So let's talk about what you, what you think is, uh, worthy and not worthy in the industry right now, obviously, uh, Cuban coming up in Spain, which they're having a physical event, you see the growth of cloud native Amazon's evolving Atos, especially new CEO. Andy move on to be the chief of all. Amazon just saw him the cover of was it time magazine. Um, he's under a lot of stress. Amazon's changed. Invoice has changed. What's working. What's not, what's rising, what's falling. What's hot. What's not, >>It's easy to sit here and criticize almost anything. These folks do. They're they're effectively in a fishbowl, but I have trouble. Imagine the logistics, it takes to wind up handling the catering for a relatively downscale event like this one this year, let alone running a 1.7 million employee company having to balance all the competing challenges and pressures and the rest. I, I just can't fathom what it would be like to look at all of AWS. And it's, it's sprawling immense, the nominates our entire industry and say, okay, this is a good start, but I, I wanna focus on something with a broader remit. What is that? How do you even get into that position? And you can't win once you're there. All you can do is hold onto the tiger and hope you don't get mold. >>Well, there's a lot of force for good conversations. Seeing a lot of that going on, Amazon's trying to a, is trying to portray themselves, you know, the Pathfinder, you know, you're the pioneer, um, force for good. And I get that and I think that's a good angle as cloud goes mainstream. There's still the question of, we had a guy on just earlier, who was a skydiving instructor and we were joking about the early days of cloud. Like that was like skydiving, build a parachute open, you know, and now it's same kind of thing. As you move to edge, things are like reliable in some areas, but still new, new fringe, new areas. That's crazy. Well, >>Since the last time we've spoken, uh, Steve Schmidt is now the CISO for all of Amazon and his backfill replacement. The AWS CISO is CJ. Moses who as a hobby races, a as a semi-pro race car, our driver to my understanding, which either, I don't know what direction to take that in either. This is what he does to relax or ultimately, or ultimately it's. Huh? That, that certainly says something about risk assessment. I'm not entirely sure what, but okay. Either way, it sounds like more exciting. Like they >>Better have a replacement ready in case something goes wrong on the track, highly >>Available >>CSOs. I gotta say one of the things I do like in the recent trend is that the tech companies are getting into the formula one, which I was never a fan of until I watched that Netflix series. But when you look at the formula one, it's pretty cool. Cause it's got some tech angles, I get the whole data instrumentation thing, but the most coolest thing about formula, the one is they have these new rigs out. Yeah. Where you can actually race in e-sports with other people in pure simulation of the race car. You gotta get the latest and video graphics card, but it's basically a tricked out PC with amazing monitors and you have all the equipment of F1 and you're basically simulating racing. Oh, >>It's great too. And I can see the appeal of these tech companies getting it into it because these things are basically rocket shifts. When those cars go, like they're sitting there, we can instrument every last part of what is going on inside that vehicle. And then AWS crops up. And we can bill on every one of those dimensions too. And it's like slow down their hasty pudding one step at a time. But I do see the appeal. >>So I gotta ask you about, uh, what's going on in your world. I know you have a lot of great SA we've been following you in the queue for many, many years. Got a great newsletter. Check out Corey Quinn's newsletter, uh, screaming in the cloud program. Uh, you're on the cutting edge and you've got a great balance between really being snarky and, and, and really being delivering content. That's exciting, uh, for people, uh, with a little bit of an edge, um, how's that going? Uh, what's the blowback, any blowback late leads there been tick? What was, what are some of the things you're hearing from your audience, more Corey, more Corey. And then of course the, the PR team's calling you >>The weird thing about having an audience beyond a certain size is far and away as a landslide. The most common response I get is silence where it's hi, I'm emailing an awful lot of people at last week in AWS every week and okay. They not have heard me. It. That is not actually true. People just generally don't respond to email because who responds to email newsletters. That sounds like something, a lunatic might do same story with response to live streams and podcasts. It's like, I'm gonna call into that am radio show and give them a piece of my mind. People generally don't do that. >>We should do that. Actually. I think sure would call in. Oh, I, I >>Think >>I guarantee if we had that right now, people would call in and Corey, what do you think about X? >>Yeah. It not, everyone understands the full context of what I do. And in fact, increasingly few people do and that's fine. I, I keep forgetting that sometimes people do not see what I'm doing in the same light that I do. And that's fine. Blowback has been largely minimal. Honestly, I am surprised anything by how little I have gotten over the last five years of doing this, but it would be easier to dismiss me if I weren't generally. Right. When, okay, so you launch this new service and it seems pretty crappy to me cuz when I try and build something, it falls over and begs for help. And people might not like hearing that, but it's what customers are finding too. Yeah. I really am the voice of the customer. >>You know, I always joke with Dave Avante about how John Fort's always at, uh, um, reinvent getting the interview with jazzy now, Andy we're there, you're there. And so we have these rituals at the events. It's all cool. Um, one of the rituals I like about your, um, your content is you like to get on the naming product names. Um, and, and, and, and, and kind of goof on that. Now why I like is because I used to work at ETT Packard where they used to name things as like engineers, HP 1 0, 0 5, or we can't, we >>Have a new monitor. How are we gonna name it? Throw the wireless keyboard down the stairs again. And then there you go. Yeah. >>It's and the old joke at HP was if they, if they invented sushi, they'd say, yeah, we can't call sushi. It's cold, dead fish, but that's what it is. And so the joke was cold. Dead fish is a better name than sushi. So you know is fun. So what's the, what are the, how's the Amazon doing in there? Have they changed their naming, uh, strategy, uh, on some of their, their product >>They're going in different directions. When they named Aurora, they decided to explore a new theme of Disney princesses as they go down those paths. And some things are more descriptive. Some people are clearly getting bonus on number of words, they can shove into it. Like the better a service is the longer it's name. Like AWS systems manager, a session manager is a great one. I love the service ridiculous name. They have a systems manager, parameter store with is great. They have secrets manager, which does the same thing. It's two words less, but that one costs money in a way that systems manage through parameter store does not. It's fun. >>What's your, what's your favorite combination of acronyms >>Combination of you >>Got Ks. You got EMR, you got EC two. You got S three SQS. Well, RedShift's not an acronym. You got >>Gas is one of my personal favorites because it's either elastic block store or elastic bean stock, depending entirely on the context of the conversation, >>They still got bean stock or is that still >>Around? Oh, they never turn anything off. They're like the anti Google, Google turns things off while they're still building it. Whereas Amazon is like, wow, we built this thing in 2005 and everyone hates it. But while we certainly can't change it, now it has three customers on it, John. >>Okay. >>Simple BV still haunts our >>Dreams. I, I actually got an email on, I saw one of my, uh, servers, all these C twos were being deprecated and I got an email I'm like, I couldn't figure out. Why can you just like roll it over? Why, why are you telling me just like, gimme something else. Right. Okay. So let me talk about, uh, the other things I want to ask you is that like, okay, so as Amazon gets better in some areas where do they need more work? And you, your opinion, because obviously they're all interested in new stuff and they tend to like put it out there for their end to end customers. But then they've got ecosystem partners who actually have the same product. Yes. And, and this has been well documented. So it's, it's not controversial. It's just that Amazon's got a database Snowflake's got out database service. So, you know, Redshift, snowflake database is out there. So you've got this optician. Yes. How's that going? And what are you hearing about the reaction to any of that stuff? >>Depends on who you ask. They love to basically trot out a bunch of their partners who will say nice things about them. And it very much has heirs of, let's be honest, a hostage video, but okay. Cuz these companies do partner with Amazon and they cannot afford to rock the boat too far. I'm not partnered with anyone. I can say what I want. And they're basically restricted to taking away my birthday at worse so I can live with that. >>All right. So I gotta ask about multi-cloud cause obviously the other cloud shows are coming up. Amazon hated that word. Multi-cloud um, a lot of people are saying, you know, it's not a real good marketing word. Like multicloud sounds like, you know, root canal. Mm-hmm <affirmative> right. So is there a better description for multicloud? >>Multiple single >>Loves that term. Yeah. >>You're building in multiple single points of failure. Do it for the right reasons or don't do it as a default. I believe not doing it is probably the, the right answer. However, and if I were, if I were Amazon, I wouldn't want to talk about multi-cloud either as the industry leader, let's talk about other clouds, bad direction to go in from a market cap perspective. It doesn't end well for you, but regardless of what they want to talk about, or don't want to talk about what they say, what they don't say, I tune all of it out. And I look at what customers are doing and multi-cloud exists in a variety of some brilliant, some brain dead. It depends a lot on context. But my general response is when someone gets on stage from a company and tells me to do a thing that directly benefits their company. I am skeptical at best. Yeah. When customers get on stage and say, this is what we're doing because it solves problems. That's when I shut up and listen. >>Yeah. Cool. Awesome. Corey, I gotta ask you a question cause I know you we've been, you know, fellow journey mean in the, in the cloud journey, going to all the events and then the pandemic hit where now in the third year, who knows what it's gonna end, certainly events are gonna look different. They're gonna be either changing footprint with the virtual piece, new group formations community's gonna emerge. You've got a pretty big community growing and it's growing like crazy. What's the weirdest or coolest thing, or just big changes you've seen with the pan endemic, uh, from your perspective, cuz you've been in the you're in the middle of the whitewater rafting. You've seen the events you circle offline. You saw the online piece come in, you're commentating, you're calling balls and strikes in the industry. You got a great team developing over there. Duck bill group. What's the big aha moment that you saw with the pandemic. Weird, funny, serious, real in the industry and with customers what's >>Accessibility. Reinvent is a great example. When in the before times it's open to anyone who wants to attend, who >>Can pony. >>Hello and welcome back to the live cube coverage here in San Francisco, California, the cube live coverage. Two days, day two of a summit, 2022 Aish summit, New York city coming up in summer. We'll be there as well. Events are back. I'm the host, John fur, the Cub got great guest here. Johnny Dallas with Ze. Um, here is on the queue. We're gonna talk about his background. Uh, little trivia here. He was the youngest engineer ever worked at Amazon at the age. 17 had to get escorted into reinvent in Vegas cause he was underage <laugh> with security, all good stories. Now the CEO of company called Z know DevOps kind of focus, managed service, a lot of cool stuff, Johnny, welcome to the cube. >>Thanks John. Great. >>So tell a story. You were the youngest engineer at AWS. >>I was, yes. So I used to work at a company called Bebo. I got started very young. I started working when I was about 14, um, kind of as a software engineer. And when I, uh, it was about 16. I graduated out of high school early, um, working at this company Bebo, still running all of the DevOps at that company. Um, I went to reinvent in about 2018 to give a talk about some of the DevOps software I wrote at that company. Um, but you know, as many of those things were probably familiar with reinvent happens in a casino and I was 16. So was not able to actually go into the, a casino on my own. Um, so I'd have <inaudible> security as well as casino security escort me in to give my talk. >>Did Andy jazzy, was he aware of >>This? Um, you know, that's a great question. I don't know. <laugh> >>I'll ask him great story. So obviously you started a young age. I mean, it's so cool to see you jump right in. I mean, I mean you never grew up with the old school that I used to grew up in and loading package software, loading it onto the server, deploying it, plugging the cables in, I mean you just rocking and rolling with DevOps as you look back now what's the big generational shift because now you got the Z generation coming in, millennials on the workforce. It's changing like no one's putting and software on servers. Yeah, >>No. I mean the tools keep getting better, right? We, we keep creating more abstractions that make it easier and easier. When I, when I started doing DevOps, I could go straight into E two APIs. I had APIs from the get go and you know, my background was, I was a software engineer. I never went through like the CIS admin stack. I, I never had to, like you said, rack servers, myself. I was immediately able to scale. I was managing, I think 2,500 concurrent servers across every Ables region through software. It was a fundamental shift. >>Did you know what an SRE was at that time? >>Uh, >>You were kind of an SRE on >>Yeah, I was basically our first SRE, um, was familiar with the, with the phrasing, but really thought of myself as a software engineer who knows cloud APIs, not a SRE. All >>Right. So let's talk about what's what's going on now as you look at the landscape today, what's the coolest thing that's going on in your mind in cloud? >>Yeah, I think the, I think the coolest thing is, you know, we're seeing the next layer of those abstraction tools exist and that's what we're doing with Z is we've basically gone and we've, we're building an app platform that deploys onto your cloud. So if you're familiar with something like Carku, um, where you just click a GitHub repo, uh, we actually make it that easy. You click a GI hub repo and it will deploy on ALS using a AWS tools. So, >>Right. So this is Z. This is the company. Yes. How old's the company about >>A year and a half old now. >>All right. So explain what it does. >>Yeah. So we make it really easy for any software engineer to deploy on a AWS. It's not SREs. These are the actual application engineers doing the business logic. They don't really want to think about Yamo. They don't really want to configure everything super deeply. They want to say, run this API on S in the best way possible. We've encoded all the best practices into software and we set it up for you. Yeah. >>So I think the problem you're solving is that there's a lot of want be DevOps engineers. And then they realize, oh shit, I don't wanna do this. Yeah. And some people want to do it. They loved under the hood. Right. People love to have infrastructure, but the average developer needs to actually be as agile on scale. So that seems to be the problem you solve. Right? >>Yeah. We, we, we give way more productivity to each individual engineer, you know? >>All right. So let me ask you a question. So let me just say, I'm a developer. Cool. I build this new app. It's a streaming app or whatever. I'm making it up cube here, but let's just say I deploy it. I need your service. But what happens about when my customers say, Hey, what's your SLA? The CDN went down from this it's flaky. Does Amazon have, so how do you handle all that SLA reporting that Amazon provides? Cuz they do a good job with sock reports all through the console. But as you start getting into DevOps <affirmative> and sell your app, mm-hmm <affirmative> you have customer issues. How do you, how do you view that? Yeah, >>Well, I, I think you make a great point of AWS has all this stuff already. AWS has SLAs. AWS has contract. Aw has a lot of the tools that are expected. Um, so we don't have to reinvent the wheel here. What we do is we help people get to those SLAs more easily. So Hey, this is AWS SLA as a default. Um, Hey, we'll fix you your services. This is what you can expect here. Um, but we can really leverage S's reliability of you. Don't have to trust us. You have to trust ALS and trust that the setup is good there. >>Do you handle all the recovery or mitigation between, uh, identification say downtime for instance? Oh, the server's not 99% downtime. Uh, went down for an hour, say something's going on? And is there a service dashboard? How does it get what's the remedy? Do you have a, how does all that work? >>Yeah, so we have some built in remediation. You know, we, we basically say we're gonna do as much as we can to keep your endpoint up 24 7 mm-hmm <affirmative>. If it's something in our control, we'll do it. If it's a disc failure, that's on us. If you push bad code, we won't put out that new version until it's working. Um, so we do a lot to make sure that your endpoint stay is up, um, and then alert you if there's a problem that we can't fix. So cool. Hey S has some downtime, this thing's going on. You need to do this action. Um, we'll let you know. >>All right. So what do you do for fun? >>Yeah, so, uh, for, for fun, um, a lot of side projects. <laugh> uh, >>What's your side hustle right now. You got going on >>The, uh, it's >>A lot of tools playing tools, serverless. >>Yeah, painless. A lot of serverless stuff. Um, I think there's a lot of really cool WAM stuff as well. Going on right now. Um, I love tools is, is the truest answer is I love building something that I can give to somebody else. And they're suddenly twice as productive because of it. Um, >>It's a good feeling, isn't it? >>Oh yeah. There's >>Nothing like tools were platforms. Mm-hmm <affirmative>, you know, the expression, too many tools in the tool. She becomes, you know, tools for all. And then ultimately tools become platforms. What's your view on that? Because if a good tool works and starts to get traction, you need to either add more tools or start building a platform platform versus tool. What's your, what's your view on a reaction to that kind of concept debate? >>Yeah, it's a good question. Uh, we we've basically started as like a, a platform. First of we've really focused on these, uh, developers who don't wanna get deep into the DevOps. And so we've done all of the pieces of the stacks. We do C I C D management. Uh, we do container orchestration, we do monitoring. Um, and now we're, spliting those up into individual tools so they can be used. Awesome in conjunction more. >>All right. So what are some of the use cases that you see for your service? It's DevOps basically nano service DevOps. So people who want a DevOps team, do clients have a DevOps person and then one person, two people what's the requirements to run >>Z. Yeah. So we we've got teams, um, from no DevOps is kind of when they start and then we've had teams grow up to about, uh, five, 10 men DevOps teams. Um, so, you know, as is more infrastructure people come in because we're in your cloud, you're able to go in and configure it on top you're we can't block you. Uh, you wanna use some new AWS service. You're welcome to use that alongside the stack that we deploy >>For you. How many customers do you have now? >>So we've got about 40 companies that are using us for all of their infrastructure, um, kind of across the board, um, as well as >>What's the pricing model. >>Uh, so our pricing model is we, we charge basically similar to an engineering salary. So we charge a monthly rate. We have plans at 300 bucks a month, a thousand bucks a month, and then enterprise plan for >>The requirement scale. Yeah. So back into the people cost, you must have her discounts, not a fully loaded thing, is it? >>Yeah, there's a discounts kind of asking >>Then you pass the Amazon bill. >>Yeah. So our customers actually pay for the Amazon bill themselves. So >>Have their own >>Account. There's no margin on top. You're linking your, a analyst account in, um, got it. Which is huge because we can, we are now able to help our customers get better deals with Amazon. Um, got it. We're incentivized on their team to drive your costs down. >>And what's your unit main unit of economics software scale. >>Yeah. Um, yeah, so we, we think of things as projects. How many services do you have to deploy as that scales up? Um, awesome. >>All right. You're 20 years old now you not even can't even drink legally. <laugh> what are you gonna do when you're 30? We're gonna be there. >>Well, we're, uh, we're making it better, better, >>Better the old guy on the queue here. <laugh> >>I think, uh, I think we're seeing a big shift of, um, you know, we've got these major clouds. ALS is obviously the biggest cloud and it's constantly coming out with new services, but we're starting to see other clouds have built many of the common services. So Kubernetes is a great example. It exists across all the clouds and we're starting to see new platforms come up on top that allow you to leverage tools for multiple times. At the same time. Many of our customers actually have AWS as their primary cloud and they'll have secondary clouds or they'll pull features from other clouds into AWS, um, through our software. I think that's, I'm very excited by that. And I, uh, expect to be working on that when I'm 30. <laugh> awesome. >>Well, you gonna have a good future. I gotta ask you this question cuz uh, you know, I always, I was a computer science undergrad in the, in the, and um, computer science back then was hardcore, mostly systems OS stuff, uh, database compiler. Um, now there's so much compi, right? Mm-hmm <affirmative> how do you look at the high school college curriculum experience slash folks who are nerding out on computer science? It's not one or two things. You've got a lot of, lot of things. I mean, look at Python, data engineering and emerging as a huge skill. What's it, what's it like for college kids now and high school kids? What, what do you think they should be doing if you had to give advice to your 16 year old self back a few years ago now in college? Um, I mean Python's not a great language, but it's super effective for coding and the datas were really relevant, but it's, you've got other language opportunities you've got tools to build. So you got a whole culture of young builders out there. What should, what should people gravitate to in your opinion and stay away from or >>Stay away from? That's a good question. I, I think that first of all, you're very right of the, the amount of developers is increasing so quickly. Um, and so we see more specialization. That's why we also see, you know, these SREs that are different than typical application engineering. You know, you get more specialization in job roles. Um, I think if, what I'd say to my 16 year old self is do projects, um, the, I learned most of my, what I've learned just on the job or online trying things, playing with different technologies, actually getting stuff out into the world, um, way more useful than what you'll learn in kind of a college classroom. I think classroom's great to, uh, get a basis, but you need to go out and experiment actually try things. >>You know? I think that's great advice. In fact, I would just say from my experience of doing all the hard stuff and cloud is so great for just saying, okay, I'm done, I'm banning the project. Move on. Yeah. Cause you know, it's not gonna work in the old days. You have to build this data center. I bought all this, you know, people hang on to the old, you know, project and try to force it out there. Now you >>Can launch a project now, >>Instant gratification, it ain't working <laugh> or this is shut it down and then move on to something new. >>Yeah, exactly. Instantly you should be able to do that much more quickly. Right. So >>You're saying get those projects and don't be afraid to shut it down. Mm-hmm <affirmative> that? Do you agree with that? >>Yeah. I think it's ex experiment. Uh, you're probably not gonna hit it rich on the first one. It's probably not gonna be that idea is the genius idea. So don't be afraid to get rid of things and just try over and over again. It's it's number of reps >>That'll win. I was commenting online. Elon Musk was gonna buy Twitter, that whole Twitter thing. And someone said, Hey, you know, what's the, I go look at the product group at Twitter's been so messed up because they actually did get it right on the first time. And we can just a great product. They could never change it because people would freak out and the utility of Twitter. I mean, they gotta add some things, the added button and we all know what they need to add, but the product, it was just like this internal dysfunction, the product team, what are we gonna work on? Don't change the product so that you kind of have there's opportunities out there where you might get the lucky strike right outta the gate. Yeah. Right. You don't know. >>It's almost a curse too. It's you're not gonna hit curse Twitter. You're not gonna hit a rich the second time too. So yeah. >><laugh> Johnny Dallas. Thanks for coming on the cube. Really appreciate it. Give a plug for your company. Um, take a minute to explain what you're working on. What you're look looking for. You hiring funding. Customers. Just give a plug, uh, last minute and kind the last word. >>Yeah. So, um, John Dallas from Ze, if you, uh, need any help with your DevOps, if you're a early startup, you don't have DevOps team, um, or you're trying to deploy across clouds, check us out z.com. Um, we are actively hiring. So if you are a software engineer excited about tools and cloud, or you're interested in helping getting this message out there, hit me up. Um, find us on z.co. >>Yeah. LinkedIn Twitter handle GitHub handle. >>Yeah. I'm the only Johnny on a LinkedIn and GitHub and underscore Johnny Dallas underscore on Twitter. All right. Um, >>Johnny Dallas, the youngest engineer working at Amazon, um, now 20 we're on great new project here in the cube. Builders are all young. They're growing into the business. They got cloud at their, at their back it's tailwind. I wish I was 20. Again, this is a I'm John for your host. Thanks for watching. Thanks. >>Welcome >>Back to the cubes. Live coverage of a AWS summit in San Francisco, California events are back, uh, ADAS summit in New York cities. This summer, the cube will be there as well. Check us out there lot. I'm glad we have events back. It's great to have everyone here. I'm John furry host of the cube. Dr. Matt wood is with me cube alumni now VP of business analytics division of AWS. Matt. Great to see you. Thank >>You, John. Great to be here. >>Appreciate it. I always call you Dr. Matt wood, because Andy jazzy always says Dr. Matt, we >>Would introduce you on the he's the one and only the one and >>Only Dr. Matt wood >>In joke. I love it. >>Andy style. And I think you had walkup music too on, you know, >>Too. Yes. We all have our own personalized walk. >>So talk about your new role. I not new role, but you're running up, um, analytics, business or AWS. What does that consist of right now? >>Sure. So I work, I've got what I consider to be the one of the best jobs in the world. Uh, I get to work with our customers and, uh, the teams at AWS, uh, to build the analytics services that millions of our customers use to, um, uh, slice dice, pivot, uh, better understand their day data, um, look at how they can use that data for, um, reporting, looking backwards and also look at how they can use that data looking forward. So predictive analytics and machine learning. So whether it is, you know, slicing and dicing in the lower level of, uh Hado and the big data engines, or whether you're doing ETR with glue or whether you're visualizing the data in quick side or building models in SageMaker. I got my, uh, fingers in a lot of pies. >>You know, one of the benefits of, uh, having cube coverage with AWS since 2013 is watching the progression. You were on the cube that first year we were at reinvent 2013 and look at how machine learning just exploded onto the scene. You were involved in that from day one is still day one, as you guys say mm-hmm <affirmative>, what's the big thing now. I mean, look at, look at just what happened. Machine learning comes in and then a slew of services come in and got SageMaker became a hot seller, right outta the gate. Mm-hmm <affirmative> the database stuff was kicking butt. So all this is now booming. Mm-hmm <affirmative> that was the real generational changeover for <inaudible> what's the perspective. What's your perspective on, yeah, >>I think how that's evolved. No, I think it's a really good point. I, I totally agree. I think for machine machine learning, um, there was sort of a Renaissance in machine learning and the application of machine learning machine learning as a technology has been around for 50 years, let's say, but, uh, to do machine learning, right? You need like a lot of data, the data needs to be high quality. You need a lot of compute to be able to train those models and you have to be able to evaluate what those mean as you apply them to real world problems. And so the cloud really removed a lot of the constraints. Finally, customers had all of the data that they needed. We gave them services to be able to label that data in a high quality way. There's all the compute. You need to be able to train the models <laugh> and so where you go. >>And so the cloud really enabled this Renaissance with machine learning, and we're seeing honestly, a similar Renaissance with, uh, with data, uh, and analytics. You know, if you look back, you know, five, 10 years, um, analytics was something you did in batch, like your data warehouse ran a analysis to do, uh, reconciliation at the end of the month. And then was it? Yeah. And so that's when you needed it, but today, if your Redshift cluster isn't available, uh, Uber drivers don't turn up door dash deliveries, don't get made. It's analytics is now central to virtually every business and it is central to every virtually every business is digital transformation. Yeah. And be able to take that data from a variety of sources here, or to query it with high performance mm-hmm <affirmative> to be able to actually then start to augment that data with real information, which usually comes from technical experts and domain experts to form, you know, wisdom and information from raw data. That's kind of, uh, what most organizations are trying to do when they kind of go through this analytics journey. It's >>Interesting, you know, Dave LAN and I always talk on the cube, but out, you know, the future and, and you look back, the things we were talking about six years ago are actually happening now. Yeah. And it's not a, a, a, you know, hyped up statement to say digital transformation. It actually's happening now. And there's also times where we bang our fist on the table, say, I really think this is so important. And Dave says, John, you're gonna die on that hill <laugh>. >>And >>So I I'm excited that this year, for the first time I didn't die on that hill. I've been saying data you're right. Data as code is the next infrastructure as code mm-hmm <affirmative>. And Dave's like, what do you mean by that? We're talking about like how data gets and it's happening. So we just had an event on our 80 bus startups.com site mm-hmm <affirmative>, um, a showcase with startups and the theme was data as code and interesting new trends emerging really clearly the role of a data engineer, right? Like an SRE, what an SRE did for cloud. You have a new data engineering role because of the developer on, uh, onboarding is massively increasing exponentially, new developers, data science, scientists are growing mm-hmm <affirmative> and the, but the pipelining and managing and engineering as a system. Yeah. Almost like an operating system >>And as a discipline. >>So what's your reaction to that about this data engineer data as code, because if you have horizontally scalable data, you've gotta be open that's hard. <laugh> mm-hmm <affirmative> and you gotta silo the data that needs to be siloed for compliance and reasons. So that's got a very policy around that. So what's your reaction to data as code and data engineering and >>Phenomenon? Yeah, I think it's, it's a really good point. I think, you know, like with any, with any technology, uh, project inside an organization, you know, success with analytics or machine learning is it's kind of 50% technology and then 50% cultural. And, uh, you have often domain experts. Those are, could be physicians or drug experts, or they could be financial experts or whoever they might be got deep domain expertise. And then you've got technical implementation teams and it's kind of a natural often repulsive force. I don't mean that rudely, but they, they just, they don't talk the same language. And so the more complex the domain and the more complex the technology, the stronger that repulsive force, and it can become very difficult for, um, domain experts to work closely with the technical experts, to be able to actually get business decisions made. And so what data engineering does and data engineering is in some cases team, or it can be a role that you play. >>Uh, it's really allowing those two disciplines to speak the same language it provides. You can think of it as plumbing, but I think of it as like a bridge, it's a bridge between like the technical implementation and the domain experts. And that requires like a very disparate range of skills. You've gotta understand about statistics. You've gotta understand about the implementation. You've gotta understand about the, it, you've gotta understand and understand about the domain. And if you could pull all of that together, that data engineering discipline can be incredibly transformative for an organization, cuz it builds the bridge between those two >>Groups. You know, I was advising some, uh, young computer science students at the sophomore junior level, uh, just a couple weeks ago. And I told 'em, I would ask someone at Amazon, this questions I'll ask you since you're, you've been in the middle of of it for years, they were asking me and I was trying to mentor them on. What, how do you become a data engineer from a practical standpoint, uh, courseware projects to work on how to think, um, not just coding Python cause everyone's coding in Python mm-hmm <affirmative> but what else can they do? So I was trying to help them and I didn't really know the answer myself. I was just trying to like kind of help figure it out with them. So what is the answer in your opinion or the thoughts around advice to young students who want to be data engineers? Cuz data scientists is pretty clear in what that is. Yeah. You use tools, you make visualizations, you manage data, you get answers and insights and apply that to the business. That's an application mm-hmm <affirmative>, that's not the, you know, sta standing up a stack or managing the infrastructure. What, so what does that coding look like? What would your advice be to >>Yeah, I think >>Folks getting into a data engineering role. >>Yeah. I think if you, if you believe this, what I said earlier about like 50% technology, 50% culture, like the, the number one technology to learn as a data engineer is the tools in the cloud, which allow you to aggregate data from virtually any source into something which is incrementally more valuable for the organization. That's really what data engineering is all about. It's about taking from multiple sources. Some people call them silos, but silos indicates that the, the storage is kind of fungible or UND differentiated. That that's really not the case. Success requires you to really purpose built well crafted high performance, low cost engines for all of your data. So understanding those tools and understanding how to use 'em, that's probably the most important technical piece. Um, and yeah, Python and programming and statistics goes along with that, I think. And then the most important cultural part, I think is it's just curiosity. >>Like you want to be able to, as a data engineer, you want to have a natural curiosity that drives you to seek the truth inside an organization, seek the truth of a particular problem and to be able to engage, cuz you're probably, you're gonna have some choice as you go through your career about which domain you end up in, like maybe you're really passionate about healthcare. Maybe you're really just passionate about your transportation or media, whatever it might be. And you can allow that to drive a certain amount of curiosity, but within those roles, like the domains are so broad, you kind of gotta allow your curiosity to develop and lead, to ask the right questions and engage in the right way with your teams. So because you can have all the technical skills in the world, but if you're not able to help the team's truths seek through that curiosity, you simply won't be successful. >>We just had a guest on 20 year old, um, engineer, founder, Johnny Dallas, who was 16 when he worked at Amazon youngest engineer at >>Johnny Dallas is a great name by the that's fantastic. It's his real name? >>It sounds like a football player. Rockstar. I should call Johnny. I have Johnny Johnny cube. Uh it's me. Um, so, but he's young and, and he, he was saying, you know, his advice was just do projects. >>Yeah. That's get hands on. >>Yeah. And I was saying, Hey, I came from the old days though, you get to stand stuff up and you hugged onto the assets. Cause you didn't wanna kill the cause you spent all this money and, and he's like, yeah, with cloud, you can shut it down. If you do a project that's not working and you get bad data, no one's adopting it or you don't want like it anymore. You shut it down. Just something >>Else. Totally >>Instantly abandoned it. Move onto something new. >>Yeah. With progression. Totally. And it, the, the blast radius of, um, decisions is just way reduced, gone. Like we talk a lot about like trying to, you know, in the old world trying to find the resources and get the funding. And it's like, right. I wanna try out this kind of random idea that could be a big deal for the organization. I need 50 million in a new data center. Like you're not gonna get anywhere. You, >>You do a proposal working backwards, document >>Kinds, all that, that sort of stuff got hoops. So, so all of that is gone, but we sometimes forget that a big part of that is just the, the prototyping and the experimentation and the limited blast radius in terms of cost. And honestly, the most important thing is time just being able to jump in there, get fingers on keyboards, just try this stuff out. And that's why at AWS, we have part of the reason we have so many services because we want, when you get into AWS, we want the whole toolbox to be available to every developer. And so, as your ideas developed, you may want to jump from, you know, data that you have, that's already in a database to doing realtime data. Yeah. And then you can just, you have the tools there. And when you want to get into real time data, you don't just have kineses, but you have real time analytics and you can run SQL again, that data is like the, the capabilities and the breadth, like really matter when it comes to prototyping and, and >>That's culture too. That's the culture piece, because what was once a dysfunctional behavior, I'm gonna go off the reservation and try something behind my boss's back or cause now as a side hustle or fun project. Yeah. So for fun, you can just code something. Yeah, >>Totally. I remember my first Haddo project, I found almost literally a decommissioned set of servers in the data center that no one was using. They were super old. They're about to be literally turned off. And I managed to convince the team to leave them on for me for like another month. And I installed her DUP on them and like, got them going. It's like, that just seems crazy to me now that I, I had to go and convince anybody not to turn these service off, but what >>It was like for that, when you came up with elastic map produce, because you said this is too hard, we gotta make it >>Easier. Basically. Yes. <laugh> I was installing Haddo version, you know, beta nor 0.9 or whatever it was. It's like, this is really hard. This is really hard. >>We simpler. All right. Good stuff. I love the, the walk down memory lane and also your advice. Great stuff. I think culture's huge. I think. And that's why I like Adam's keynote to reinvent Adam. Lesky talk about path minds and trail blazers because that's a blast radius impact. Mm-hmm <affirmative> when you can actually have innovation organically just come from anywhere. Yeah, that's totally cool. Totally. Let's get into the products. Serverless has been hot mm-hmm <affirmative> uh, we hear a lot about EKS is hot. Uh, containers are booming. Kubernetes is getting adopted. There's still a lot of work to do there. Lambda cloud native developers are booming, serverless Lambda. How does that impact the analytics piece? Can you share the hot, um, products around how that translates? Sure, absolutely. Yeah, the SageMaker >>Yeah, I think it's a, if you look at kind of the evolution and what customers are asking for, they're not, you know, they don't just want low cost. They don't just want this broad set of services. They don't just want, you know, those services to have deep capabilities. They want those services to have as lower operating cost over time as possible. So we kind of really got it down. We got built a lot of muscle, lot of services about getting up and running and experimenting and prototyping and turning things off and turn turning them on and turning them off. And like, that's all great. But actually the, you really only most projects start something once and then stop something once. And maybe there's an hour in between, or maybe there's a year, but the real expense in terms of time and, and complexity is sometimes in that running cost. Yeah. And so, um, we've heard very loudly and clearly from customers that they want, that, that running cost is just undifferentiated to them and they wanna spend more time on their work and in analytics that is, you know, slicing the data, pivoting the data, combining the data, labeling the data, training their models, uh, you know, running inference against their models, uh, and less time doing the operational pieces. >>So is that why the servers focus is there? >>Yeah, absolutely. It, it dramatically reduces the skill required to run these, uh, workloads of any scale. And it dramatically reduces the UND differentiated, heavy lifting, cuz you get to focus more of the time that you would've spent on the operation on the actual work that you wanna get done. And so if you look at something just like Redshift serverless that we launched a reinvent, you know, there's a kind of a, we have a lot of customers that want to run like a, uh, the cluster and they want to get into the, the weeds where there is benefit. We have a lot of customers that say, you know, I there's no benefit for me though. I just wanna do the analytics. So you run the operational piece, you're the experts we've run. You know, we run 60 million instant startups every single day. Like we do this a lot. Exactly. We understand the operation. I >>Want the answers come on. So >>Just give the answers or just let, give me the notebook or just give the inference prediction. So today for example, we announced, um, you know, serverless inference. So now once you've trained your machine learning model, just, uh, run a few, uh, lines of code or you just click a few buttons and then yeah, you got an inference endpoint that you do not have to manage. And whether you're doing one query against that endpoint, you know, per hour or you're doing, you know, 10 million, but we'll just scale it on the back end. You >>Know, I know we got not a lot of time left, but I want, wanna get your reaction to this. One of the things about the data lakes, not being data swamps has been from what I've been reporting and hearing from customers is that they want to retrain their machine learning algorithm. They want, they need that data. They need the, the, the realtime data and they need the time series data, even though the time has passed, they gotta store in the data lake mm-hmm <affirmative>. So now the data lakes main function is being reusing the data to actually retrain. Yeah, >>That's >>Right. It worked properly. So a lot of, lot of postmortems turn into actually business improvements to make the machine learning smarter, faster. You see that same way. Do you see it the same way? Yeah, >>I think it's, I think it's really interesting. No, I think it's really interesting because you know, we talk it's, it's convenient to kind of think of analytics as a very clear progression from like point a point B, but really it's, you are navigating terrain for which you do not have a map and you need a lot of help to navigate that terrain. Yeah. And so, you know, being, having these services in place, not having to run the operations of those services, being able to have those services be secure and well governed, and we added PII detection today, you know, something you can do automatically, uh, to be able to use their, uh, any unstructured data run queries against that unstructured data. So today we added, you know, um, text extract queries. So you can just say, well, uh, you can scan a badge for example, and say, well, what's the name on this badge? And you don't have to identify where it is. We'll do all of that work for you. So there's a often a, it's more like a branch than it is just a, a normal, uh, a to B path, a linear path. Uh, and that includes loops backwards. And sometimes you gotta get the results and use those to make improvements further upstream. And sometimes you've gotta use those. And when you're downstream, you'll be like, ah, I remember that. And you come back and bring it all together. So awesome. It's um, it's, uh, uh, it's a wonderful >>Work for sure. Dr. Matt wood here in the queue. Got just take the last word and give the update. Why you're here. What's the big news happening that you're announcing here at summit in San Francisco, California, and update on the, the business analytics >>Group? Yeah, I think, you know, one of the, we did a lot of announcements in the keynote, uh, encouraged everyone to take a look at that. Uh, this morning was Swami. Uh, one of the ones I'm most excited about, uh, is the opportunity to be able to take, uh, dashboards, visualizations. We're all used to using these things. We see them in our business intelligence tools, uh, all over the place. However, what we've heard from customers is like, yes, I want those analytics. I want their visualization. I want it to be up to date, but you know, I don't actually want to have to go my tools where I'm actually doing my work to another separate tool to be able to look at that information. And so today we announced, uh, one click public embedding for quick side dashboards. So today you can literally, as easily as embedding a YouTube video, you can take a dashboard that you've built inside, quick site cut and paste the HTML, paste it into your application and that's it. That's all you have to do. It takes seconds and >>It gets updated in real time. >>Updated in real time, it's interactive. You can do everything that you would normally do. You can brand it like this is there's no power by quick site button or anything like that. You can change the colors, make it fit in perfectly with your, with your applications. So that's sitting incredibly powerful way of being able to take a, uh, an analytics capability that today sits inside its own little fiefdom and put it just everywhere. It's, uh, very transformative. >>Awesome. And the, the business is going well. You got the serverless and your tailwind for you there. Good stuff, Dr. Matt with thank you. Coming on the cube >>Anytime. Thank >>You. Okay. This is the cubes cover of eight summit, 2022 in San Francisco, California. I'm John host cube. Stay with us with more coverage of day two after this short break.

Published Date : Apr 20 2022

SUMMARY :

And I think there's no better place to, uh, service those people than in the cloud and uh, Well, first of all, congratulations, and by the way, you got a great pedigree and great background, super smart, You know, it's so funny that you say that enterprise is hot because you, and I feel that way now. Ts is one big enterprise, cuz you gotta have imutability you got performance issues. of history and have been involved in open source in the cloud would say that we're, you know, much of what we're doing is, Yeah. the more time you spend in this world is this is the fastest growing part I get it and more relevant <laugh> but there's also the hype of like the web three, for instance, but you know, I call it the user driven revolution. And so that's that I, that I think is really this revolution that you see, the sixties was rebellion against the fifties and the man and, you know, summer of love. like, you know, you would never get fired for buying IBM, but now it's like, you obviously probably would So what I'm trying to get at is that, do you see the young cultural revolution look, you know, you were not designed in the cloud era. You gotta convince someone to part with their ch their money and the first money in which you do a lot of it's And the persona of the entrepreneur would be, you know, so somebody who was a great salesperson or somebody who tell a great story, software, like the user is only gonna give you 90 seconds to figure out whether or not you're storytelling's fine with you an extrovert or introvert, have your style, sell the story in a way that's So I think the more that you can show in the road, you can get through short term spills. I think many people that, that do what we do for a living, we'll say, you know, What's the hottest thing in enterprise that you see the biggest wave that people should pay attention to that you're looking at And the they're the only things we do day in, Uh, and finally, it's the gift that keeps on giving. But if you think about it, the whole economy is moving online. So you get the convergence of national security, I mean, arguably again, it's the area of the world that people should be I gotta, I gotta say, you gotta love your firm. Huge fan of what you guys are doing here. Again, John host of the cube. Thank you for having me. What do you guys do? and obviously in New York, uh, you know, the business was never like this, How is this factoring into what you guys do and your growth cuz you moving the stuff that you maybe currently have OnPrem and a data center to the cloud first is a first step. manufacturing, it's the physical plant or location And you guys solve And the reality is not everything that's And the reality is the faster you move with anything cloud based, Well actually shutting down the abandoning, the projects that early, not worrying about it, And they get, they get used to it. I can get that like values as companies, cuz they're betting on you and your people. that a customer can buy in the cloud, how are you gonna ask a team of one or two people in If you have a partner that's offering you some managed services. I mean the cost. sure everybody in the company has the opportunity to become certified. Desk and she could be running the Kubernetes clusters. It's And that's a cultural factor that you guys have. There's no modernization on the app side. And the other thing is, is there's not a lot of partners, In the it department. I like it, And so how you build your culture around that is, is very important. You said you bought the company and We didn't call it at that time innovative solutions to come in and, And they were like, listen, you got long ways before you're gonna be an owner. Um, the other had a real big problem with having to write a check. So in 2016 I bought the business, um, became the sole owner. The capital ones of the world. The, the Microsoft suite to the cloud. Uh, tell me the hottest product that you have. funding solutions to help customers with the cash flow, uh, constraints that come along with those migrations. on the cash exposure. We are known for that and we're known for being creative with those customers and being empathetic And that's the cloud upside is all about doubling down on the variable win that's right. I'm John for your host. I'm John for host of the cube here for the next Thank you very much. We were chatting before you came on camera. This is the first, uh, summit I've been to, to in what two, three is running everything devs sec ops, everyone kind of sees that you got containers, you got Benet, Tell us about what you guys doing at innovative and, uh, what you do. Uh, so I'm the director of solutions architecture. We have a customer there that, uh, needs to deploy but the real issue was they were they're bread and butters EC two and S three. the data at the edge, you got five GM having. Data in is the driver for the edge. side, obviously, uh, you got SW who's giving the keynote tomorrow. And it's increasing the speed of adoption So you guys are making a lot of good business decisions around managed cloud service. You take the infrastructure, you got certain products, whether it's, you know, low latency type requirements, So innovative is filling that gap across the Because a lot of people are looking at the web three in these areas like Panama, you mentioned FinTech. I keep bringing the Caribbean up, but it's, it's top of my mind right now we have customers We have our own little, um, you know, I think we'll start talking about how does that really live on, So I'm a customer, pretend I'm a customer, Hey, you know, I'm, we're in an underserved area. That's, that's one of the best use cases, And that's, that's one of the best use cases that we're move the data unless you have to. Uh, so not only are you changing your architecture, you're actually changing your organization because you're But you gotta change the database architecture on the back. Uh, you know, for the past maybe decade. We don't have time to drill into, maybe we do another session this, but the one pattern we're seeing come of the past of data to AWS cloud, or we can run, uh, computational workloads So I gotta end the segment on a, on a, kind of a, um, fun, I was told to ask you You got a customer to jump I started in the first day there, we had a, and, uh, my career into the cloud, and now it feels like, uh, almost, almost looking back and saying, And so, you know, you, you jump on a plane, you gotta make sure that parachute is gonna open. the same feeling we have when we It's much now with you guys, it's more like a tandem jump. Matthew, thanks for coming on the cube. I'm John furry host of the cube. What's the status of the company product what's going on? We're back to be business with you never while after. It operations, it help desk the same place I used to work at ServiceNow. I love having you on the cube, Dave and I, and Dave Valenti as well loves having you on too, because you not only bring the entrepreneurial So the cloud scale has hit. So the things that room system of record that you and me talked about, the next layer is called system of intelligence. I mean, I mean, RPA is almost, should be embedded in everything. And that's your thinking. So as you break that down, is this So it's like how you have a database and compute and sales and networking. uh, behind us, you got the expo hall. So you don't build it just on Amazon. kind of shitting on us saying, Hey, you guys terrible, they didn't get it. Remember the middle layer pass will be snowflake so I Basically the, if you're an entrepreneur, the, the north star in terms of the, the outcome is be And that reduce your product development, your go to market and you get use the snowflake marketplace to I mean, I know they got a great relationship, uh, but snowflake now has to run a company they're public. So I think depending on the application use case, you have to use each of the above. I have is that I, I think it's okay to have a super cloud like that because the rising tide is still happening I see people lift and shifting from the it operations. the big enterprises now and you know, small, medium, large and large enterprise are all buying new companies If I growing by or 2007 or eight, when I used to talk to you back then and Amazon started So you know, a lot of good resources there. Yourself a lot of first is I see the AIOP solutions in the future should be not looking back. I think the whole, that area is very important. Yeah. They doubled the What are you working on right now? I'm the CEO there. Some of the areas where you want to scale your company, grow your company, eliminate the cost customer service. I mentioned that it's decipher all the hot startups and of course the cube.net and Silicon angle.com. We're getting back in the groove psych to be back. Sure is a lot of words to describe is shit posting, which is how I describe what I tend to do. And if you look at mark, Andrew's been doing a lot of shit posting lately. It's honestly the most terrifying scenario for anyone is if I have that kind of budget to throw at my endeavors, So for the audience that doesn't know what shit posting is, what is shit posting? A lot of the audience is thinking, in the industry right now, obviously, uh, coupons coming up in Spain, which they're having a physical event, And you can't win once you're there. of us is trying to portray themselves as you know, the Pathfinder, you know, you're the pioneer, Since the last time we've spoken, uh, Steve Schmidt is now the CISO for all of Amazon I gotta say one of the things I do like in the recent trend is that the tech companies are getting into the formula one, And I can see the appeal of these tech companies getting into it because these things are basically So I gotta ask you about, uh, what's going on in your world. People just generally don't respond to email because who responds I think you're people would call in, oh, People would call in and say, Corey, what do you think about X? Honestly, I am surprised about anything by how little I have gotten over the last five years of doing this, Um, one of the rituals I like about your, um, And then there you go. And so the joke was cold. I love the service ridiculous name. You got EMR, you got EC two, They're like the anti Google, Google turns things off while they're still building it. So let me talk about, uh, the other things I want to ask you, is that like, okay. Depends on who you ask. Um, a lot of people though saying, you know, it's not a real good marketing Yeah. I believe not doing it is probably the right answer. What's the big aha moment that you saw with the pandemic. When in the before times it's open to anyone I look forward to it. What else have you seen? But they will change a browser tab and you won't get them back. It's always fun in the, in the meetings when you're ho to someone and their colleague is messaging them about, This guy is really weird. Yes I am and I bring it into the conversation and then everyone's uncomfortable. do you wanna take that about no, I'm good. I don't the only entire sure. You're starting to see much more of like yeah. Tell me about the painful spot that you More, more, I think you nailed it. And that is the next big revelation of this industry is going to realize you have different companies. Corey, final question for, uh, what are you here doing? We fixed the horrifying AWS bill, both from engineering and architecture, So thanks for coming to the cube and And of course reinvent the end of the year for all the cube Yeah. We'll start That's the official name. Yeah, What's the, how was you guys organized? And the intention there is to So partnerships are key. Um, so I've got a team of partner managers that are located throughout the us, I love the white glove service, but translate that what's in it for what um, sort of laser focus on what are you really good at and how can we bring that to the customer as And there's a lot that you can do with AWS, but focus is truly the key word there because What are some of the cool things you guys have seen in the APN that you can point to? I mean, I can point to few, you can take them. Um, and through that we provide You gotta, I mean, when you get funding, it's still day one. And our job is to try to make I mean, you guys are the number one cloud in the business, the growth in every sector is booming. competency programs, the DevOps competencies, the security competency, which continues to help, I mean, you got a good question, you know, thousand flowers blooming all the time. lot of the ISVs that we look after are infrastructure ISVs. So what infrastructure, Exactly. So infrastructure as well, like storage back up ransomware Right. spread, and then someone to actually do the co-sell, uh, day to day activities to help them get in I mean, you know, ask the res are evolving, that role of DevOps is taking on dev SecOps. So the partner development manager can be an escalation for absolutely. And you guys, how is that partner managers, uh, measure And then co-sell not only are we helping these partners win their current opportunities but that's a huge goal of ours to help them grow their top line. I have one partner here that you guys work And so that's, our job is how do you get that great tech in lot of holes and gaps in the opportunities with a AWS. Uh, and making a lot of noise here in the United States, which is great. Let's see if they crash, you know, Um, and so I've actually seen many of our startups grow So you get your economics, that's the playbook of the ventures and the models. How I'm on the cloud. And, or not provide, or, you know, bring any fruit to the table, for startups, what you guys bring to the table and we'll close it out. And that's what we're here for. It's a good way to, it's a good way to put it. Great to see you love working with you guys. I'm John for host of the cube. Always great to come and talk to you on the queue, man. And it's here, you predicted it 11 years ago. do claim credit for, for sort of catching that bus early, um, you know, at the board level, the other found, you know, the people there, uh, cloud, you know, Amazon, And the, you know, there's sort of the transactions, you know, what you bought today are something like that. So now you have another, the sort of MIT research be mainstream, you know, observe for the folks who don't know what you guys do. So, um, we realized, you know, a handful of years ago, let's say five years ago that, And, um, you know, part of the observed story is we think that to go big in the cloud, you can have a cloud on a cloud, And, and then that was the, you know, Yeah. say the, the big data world, what Oracle did for the relational data world, you know, way back 25 years ago. So you're building on top of snowflake, And, um, you know, I've had folks say to me, I am more on snowing. Stay on the board, then you'll know what's going on. And so I've believe the opportunity for folks like snowflake and, and folks like observe it. the go big scenario is you gotta be on a platform. Or be the platform, but it's hard. to like extract, uh, a real business, you gotta move up, you gotta add value, Moving from the data center of the cloud was a dream for starters within if the provision, It's almost free, but you can, you know, as an application vendor, you think, growing company, the Amazon bill should be a small factor. Snowflake are doing a great job of innovating on the database and, and the same is true of something I mean, the shows are selling out the floor. Well, and for snowflake and, and any platform from VI, it's a beautiful thing because, you know, institutional knowledge of snowflake integrations, right. And so been able to rely on a platform that can manage that is inve I don't know if you can talk about your, Around the corner. I think, as a startup, you always strive for market fit, you know, which is at which point can you just I think capital one's a big snowflake customer as well. And, and they put snowflake in a position in the bank where they thought that snowflake So you're, Prescale meaning you're about to So you got POCs, what's that trajectory look like? So people will be able to the kind of things that by in the day you could do with the new relics and AppDynamics, What if you had the, put it into a, a, a sentence what's the I mean, at the end of the day, you have to build an amazing product and you have to solve a problem in a different way. What's the appetite at the buyer side for startups and what So the nice thing from a startup standpoint is they know at times What's the state of AWS. I mean, you know, we're, we're on AWS as well. Thanks for coming on the cube. host of the cubes cube coverage of AWS summit 2022 here in San Francisco. I feel like it's been forever since we've been able to do something in person. I'm glad you're here because we run into each other all the time. And we don't wanna actually go back as bring back the old school web It's all the same. No, you're never recovering. the next generation of software companies, uh, early investor in open source companies and cloud that have agendas and strategies, which, you know, purchase software that is traditionally bought and sold tops Well, first of all, congratulations, and by the way, you got a great pedigree and great background. You know, it's so funny that you say that enterprise is hot because you, and I feel that way now. MFTs is one big enterprise, cuz you gotta have imutability you got performance issues. you know, much of what we're doing is, uh, the predecessors of the web web three movement. The hype is definitely web the more time you spend in this world is this is the fastest growing part I get it and more relevant <laugh> but there's also the hype of like the web three, for instance, but you know, I call it the user driven revolution. the offic and the most, you know, kind of valued people in in the sixties was rebellion against the fifties and the man and, you know, summer of love. like, you know, you would never get fired for buying IBM, but now it's like, you obviously probably would So what I'm trying to get at is that, do you see the young cultural revolution look, you know, you were not designed in the cloud era. You gotta convince someone to part with their ch their money and the first money in which you do a lot of is about And the persona of the entrepreneur would be, you know, somebody who was a great salesperson or somebody who tell a great story. software, like the user is only gonna give you 90 seconds to figure out whether or not you're But let me ask a question now that for the people watching, who are maybe entrepreneurial entre entrepreneurs, So I think the more that you can show I think many people that, that do what we do for a living will say, you know, What's the hottest thing in enterprise that you see the biggest wave that people should pay attention to that you're looking at itself as big of a market as any of the other markets that we invest in. But if you think about it, the whole like economy is moving online. So you get the convergence of national security, Arguably again, it's the area of the world that I gotta, I gotta say you gotta love your firm. Huge fan of what you guys are doing here. Again, John host of the cube. Thank you for having me. What do you guys do? made the decision in 2018 to pivot and go all in on the cloud. How is this factoring into what you guys do and your growth cuz you guys are the number one partner on moving the stuff that you maybe currently have OnPrem and a data center to the cloud first is a first step. it's manufacturing, it's the physical plant or location What's the core problem you guys solve And the reality is not everything that's And the reality is the faster you move with anything cloud based, Well actually shutting down the abandoning, the projects that early and not worrying about it, And they get, they get used to it. Yeah. So this is where you guys come in. that a customer can buy in the cloud, how are you gonna ask a team of one or two people in of our managed services that give the customer the tooling, that for them to go out and buy on their own for a customer to go A risk factor not mean the cost. sure everybody in the company has the opportunity to become certified. And she could be running the Kubernetes clusters. So I'll tell you what, when that customer calls and they have a real Kubernetes issue, And that's a cultural factor that you guys have. This There's no modernization on the app side now. And the other thing is, is there's not a lot of partners, so the partner, In the it department. I like And so how you build your culture around that is, is very important. You said you bought the company and We didn't call it at that time innovative solutions to come in and, on the value of this business and who knows where you guys are gonna be another five years, what do you think about making me an Um, the other had a real big problem with having to write a check. going all in on the cloud was important for us and we haven't looked back. The capital ones of the world. And so, uh, we only had two customers on AWS at the time. Uh, tell me the hottest product that you have. So any SMB that's thinking about migrating to the cloud, they should be talking innovative solutions. So like insurance, basically for them not insurance class in the classic sense, but you help them out on the, We are known for that and we're known for being creative with those customers and being empathetic to And that's the cloud upside is all about doubling down on the variable wind. I'm John for your host. I'm John ferry, host of the cube here for the Thank you very much. We were chatting before you came on camera. This is the first, uh, summit I've been to and what two, three years. So the game is pretty much laid out mm-hmm <affirmative> and the edge is with the Uh, so I'm the director of solutions architecture. but the real issue was they were they're bread and butters EC two and S three. It does computing. the data at the edge, you got 5g having. in the field like with media companies. uh, you got SW, he was giving the keynote tomorrow. And it's increasing the speed of adoption So you guys are making a lot of good business decisions around managed cloud service. So they look towards AWS cloud and say, AWS, you take the infrastructure. Mainly because the, the needs are there, you got data, you got certain products, And, and our customers, even the ones in the edge, they also want us to build out the AWS Because a lot of people are looking at the web three in these areas like Panama, you mentioned FinTech. I keep bringing the Caribbean up, but it's, it's top of my mind right now we have customers We have our own little, um, you know, projects going on. I think we'll start talking about how does that really live on, So I'm a customer, pretend I'm a customer, Hey, you know, I'm, we're in an underserved area. That's, that's one of the best use cases, And that's, that's one of the best use cases that we're for the folks watching don't move the data, unless you have to, um, those new things are developing. Uh, so not only are you changing your architecture, you're actually changing your organization because But you gotta change the database architecture on the back. away data, uh, you know, for the past maybe decade. actually, it's not the case. of data to the AWS cloud, or we can run, uh, computational workloads So I gotta end the segment on a, on a kind of a, um, fun note. You, you got a customer to jump out um, you know, storing data and, and how his cus customers are working. my career into the cloud, and now it feels like, uh, almost, almost looking back and saying, And so, you know, you, you jump on a plane, you gotta make sure that parachute is gonna open. the same feeling we have when we It's pretty much now with you guys, it's more like a tandem jump. I'm John Forry host of the cube. Thanks for coming on the cube. What's the status of the company product what's going on? Of all, thank you for having me back to be business with you. Salesforce, and ServiceNow to take it to the next stage? Well, I love having you on the cube, Dave and I, Dave Valenti as well loves having you on too, because you not only bring Get to call this fun to talk. So the cloud scale has hit. So the things that remember system of recorded you and me talked about the next layer is called system of intelligence. I mean, I mean, RPA is almost, should be embedded in everything. And that's your thinking. So as you break that down, is this So it's like how you have a database and compute and sales and networking. innovative, all the companies out here that we know, we interview them all. So you don't build it just on Amazon. is, what you do in the cloud. Remember the middle layer pass will be snowflake. Basically if you're an entrepreneur, the north star in terms of the outcome is be And that reduce your product development, your go to market and you get use the snowflake marketplace to of the world? So I think depending on the application use case, you have to use each of the above. I think the general question that I have is that I think it's okay to have a super cloud like that because the rising I see people lift and shifting from the it operations. Cause you know, the big enterprises now and, If I remember going back to our 2007 or eight, it, when I used to talk to you back then when Amazon started very small, So you know, a lot of good resources there, um, and gives back now to the data question. service that customers are give the data, share the data because we thought the data algorithms are Yeah. What are you working on right now? I'm the CEO there. Some of the areas where you want to scale your company, grow your company, eliminate the cost customer service, I mentioned that it's a site for all the hot startups and of course the cube.net and Silicon angle.com. We're getting back in the groove, psyched to be back. Sure is a lot of words to describe as shit posting, which is how I describe what I tend to do. And if you look at Mark's been doing a lot of shit posting lately, all a billionaires It's honestly the most terrifying scenario for anyone is if I have that kind of budget to throw at my endeavors, So for the audience that doesn't know what shit posting is, what is shit posting? A lot of the audience is thinking, in the industry right now, obviously, uh, coupons coming up in Spain, which they're having a physical event, you can see the growth And you can't win once you're there. to portray themselves as you know, the Pathfinder, you know, you're the pioneer, Since the last time we've spoken, uh, Steve Schmidt is now the CISO for all of Amazon I, the track highly card, but it's basically a tricked out PC with amazing monitors and you have all the equipment of F1 and you're And I can see the appeal of these tech companies getting into it because these things are basically So I gotta ask you about, uh, what's going in your world. People just generally don't respond to email because who responds I think sure would call in. People would call in and say, Corey, what do you think about X? Honestly, I am surprised anything by how little I have gotten over the last five years of doing this, reinvent getting the interview with jazzy now, Andy we're there, you're there. And there you go. And so the joke was cold. I love the service, ridiculous name. Well, Redshift the on an acronym, you the context of the conversation. Or is that still around? They're like the anti Google, Google turns things off while they're still building it. So let me talk about, uh, the other things I want to ask you is that like, okay. Depends on who you ask. So I gotta ask about multi-cloud cause obviously the other cloud shows are coming up. Yeah. I believe not doing it is probably the right answer. What's the big aha moment that you saw with When in the before times it's open to anyone I look forward to it. What else have you seen? But they will change a browser tab and you won't get them back. It's always fun in the, in the meetings when you're talking to someone and their co is messaging them about, This guy is really weird. Yes I am and I bring it into the conversation and then everyone's uncomfortable. do you wanna take that about no, I'm good. No, the only encourager it's fine. You're starting to see much more of like yeah. Tell me about the painful spot that you Makes more, more, I think you nailed it. And that is the next big revelation of this industry is going to realize you have different companies. Uh, what do you hear doing what's on your agenda this We fixed the horrifying AWS bill, both from engineering and architecture, And of course reinvent the end of the year for all the cube coverage Yeah. What's the, how was you guys organized? And the intention there is to So partnerships are key. Um, so I've got a team of partner managers that are located throughout the us, We've got a lot. I love the white glove service, but translate that what's in it. um, sort of laser focus on what are you really good at and how can we bring that to the customer as And there's a lot that you can do with AWS, but focus is truly the key word there What are some of the cool things you guys have seen in the APN that you can point to? I mean, I can point to few, you can take them. Um, and through that we provide You gotta, I mean, when you get funding, it's still day one. And our job is to try to You guys are the number one cloud in the business, the growth in every sector is booming. competency programs, the DevOps compet, the, the security competency, which continues to help, I mean, you got a good question, you know, a thousand flowers blooming all the time. lot of the fees that we look after our infrastructure ISVs, that's what we do. So you guys have a deliberate, uh, focus on these pillars. Business, this owner type thing. So infrastructure as well, like storage, Right. and spread, and then someone to actually do the co-sell, uh, day to day activities to help them get I mean, you know, SREs are evolving, that role of DevOps is taking on dev SecOps. So the partner development manager can be an escalation point. And you guys how's that partner managers, uh, measure And then co-sell not only are we helping these partners win their current opportunities I mean, top asked from the partners is get me in front of customers. I have one partner here that you guys And so that it's our job is how do you get that great tech in of holes and gaps in the opportunities with AWS. Uh, and making a lot of noise here in the United States, which is great. We'll see if they crash, you know, Um, and so I've actually seen many of our startups grow So with that, you guys are there to How I am on the cloud. And, or not provide, or, you know, bring any fruit to the table, what you guys bring to the table and we'll close it out. And that's what we're here for. Great to see you love working with you guys. I'm John for host of the cube. Always great to come and talk to you on the queue, man. You're in the trenches with great startup, uh, do claim credit for, for, for sort of catching that bus out, um, you know, the board level, you know, the founders, you know, the people there cloud, you know, Amazon, And so you you've One of the insights that we got out of that I wanna get your the sort of MIT research be mainstream, you know, what you guys do. So, um, we realized, you know, a handful of years ago, let's say five years ago that, And, um, you know, part of the observed story yeah. that to go big in the cloud, you can have a cloud on a cloud, I mean, having enough gray hair now, um, you know, again, CapX built out the big data world, what Oracle did for the relational data world, you know, way back 25 years ago. And, um, you know, I've had folks say to me, That that's a risk I'm prepared to take <laugh> I am long on snowflake you, Stay on the board, then you'll know what's going on. And so I believe the opportunity for folks like snowflake and folks like observe it's the go big scenario is you gotta be on a platform. Easy or be the platform, but it's hard. And then to, to like extract, uh, a real business, you gotta move up, Moving from the data center of the cloud was a dream for starters. I know it's not quite free. and storage is free, that's the mindset you've gotta get into. And I think the platform enablement to value. Snowflake are doing a great job of innovating on the database and, and the same is true of something I mean, the shows are selling out the floor. And we do a lot of the support. You're scaling that function with the, And so been able to rely on a platform that can manage that is invaluable, I don't know if you can talk about your, Scales around the corner. I think, as a startup, you always strive for market fit, you know, which is at which point can you just I think capital one's a big snowflake customer as well. They were early in one of the things that attracted me to capital one was they were very, very good with snowflake early So you got POCs, what's that trick GE look like, So right now all the attention is on the What if you had the, put it into a, a sentence what's the I mean, at the end of the day, you have to build an amazing product and you have to solve a problem in a different way. What's the appetite at the buyer side for startups and what So the nice thing from a startup standpoint is they know at times they need to risk or, What's the state of AWS. I mean, you know, we we're, we're on AWS as They got the silicone and they got the staff act, developing Jeremy Burton inside the cube, great resource for California after the short break. host of the cubes cube coverage of AWS summit 2022 here in San Francisco. I feel like it's been forever since we've been able to do something in person. I'm glad you're here because we run into each other all the time. the old school web 1.0 days. We, we are, it's a little bit of a throwback to the path though, in my opinion, <laugh>, it's all the same. I mean, you remember I'm a recovering entrepreneur, right? No, you're never recovering. in the next generation of our companies, uh, early investor in open source companies that have agendas and strategies, which, you know, purchased software that has traditionally bought and sold tops Well, first of all, congratulations, and by the way, you got a great pedigree and great background, super smart admire of your work You know, it's so funny that you say that enterprise is hot because you, and I feel that way now. Ts is one big enterprise, cuz you gotta have imutability you got performance issues. history and have been involved in, open in the cloud would say that we're, you know, much of what we're doing is, the more time you spend in this world is this is the fastest growing part I get it and more relevant, but it's also the hype of like the web three, for instance. I call it the user driven revolution. the beneficiaries and the most, you know, kind of valued people in the sixties was rebellion against the fifties and the man and, you know, summer of love. like, you know, you would never get fired for buying IBM, but now it's like, you obviously probably would So what I'm trying to get at is that, do you see the young cultural revolution look, you know, you were not designed in the cloud era. You gotta convince someone to part with their ch their money and the first money in which you do a lot of is And the persona of the entrepreneur would be, you know, somebody who was a great salesperson or somebody who tell a great story. software, the user is only gonna give you 90 seconds to figure out whether or not you're What's the, what's the preferred way that you like to see entrepreneurs come in and engage, So I think the more that you can in the road, you can get through short term spills. I think many people that, that do what we do for a living will say, you know, Uh, what's the hottest thing in enterprise that you see the biggest wave that people should pay attention to that you're One is the explosion and open source software. Uh, and finally, it's the gift that keeps on giving. But if you think about it, the whole economy is moving online. So you get the convergence of national security, I mean, arguably again, it's the area of the world that I gotta, I gotta say, you gotta love your firm. Huge fan of what you guys are doing here. Again, John host of the cube got a great guest here. Thank you for having me. What do you guys do? that are moving into the cloud or have already moved to the cloud and really trying to understand how to best control, How is this factoring into what you guys do and your growth cuz you guys are the number one partner on moving the stuff that you maybe currently have OnPrem and a data center to the cloud first is a first step. it's manufacturing, it's the physical plant or location What's the core problem you guys solve And the reality is not everything that's Does that come up a lot? And the reality is the faster you move with anything cloud based, Well actually shutting down the abandoning the projects that early and not worrying about it, And Like, and then they wait too long. Yeah. I can get that like values as companies, cuz they're betting on you and your people. that a customer can buy in the cloud, how are you gonna ask a team of one or two people in your, If you have a partner, that's all offering you some managed services. Opportunity cost is huge, in the company has the opportunity to become certified. And she could be running the Kubernetes clusters. And that's a cultural factor that you guys have. This So that's, There's no modernization on the app side though. And, and the other thing is, is there's not a lot of partners, No one's raising their hand boss. In it department. Like, can we just call up, uh, you know, <laugh> our old vendor. And so how you build your culture around that is, You said you bought the company and We didn't call it at that time innovative solutions to come in and, And they were like, listen, you got long ways before you're gonna be an owner, but if you stick it out in your patient, Um, the other had a real big problem with having to write a check. all going all in on the cloud was important for us and we haven't looked back. The capital ones of the world. The, the Microsoft suite to the cloud and Uh, tell me the hottest product that you have. So any SMB that's thinking about migrating to the cloud, they should be talking innovative solutions. So like insurance, basically for them not insurance class in the classic sense, but you help them out on the, We are known for that and we're known for being creative with those customers, That's the cloud upside is all about doubling down on the variable wind. I'm John for your host. Live on the floor in San Francisco for 80 west summit, I'm John ferry, host of the cube here for the Thank you very much. We were chatting before you came on camera. This is the first, uh, summit I've been to and what two, three years. is running everything dev sec ops, everyone kind of sees that you got containers, you got Kubernetes, Uh, so I'm the director of solutions architecture. to be in Panama, but they love AWS and they want to deploy AWS services but the real issue was they were they're bread and butters EC two and S three. It the data at the edge, you got five GM having. in the field like with media companies. side, obviously, uh, you got SW who's giving the keynote tomorrow. Uh, in the customer's mind for the public AWS cloud inside an availability zone. So you guys are making a lot of good business decisions around managed cloud service. So they look towards AWS cloud and say, AWS, you take the infrastructure. Mainly because the, the needs are there, you got data, you got certain products, And, and our customers, even the ones in the edge, they also want us to build out the AWS Because a lot of people are looking at the web three in these areas like Panama, you mentioned FinTech in, I keep bringing the Caribbean up, but it's, it's top of my mind right now we have customers We have our own little, um, you know, projects going on. I think we'll start talking about how does that really live So I'm a customer, pretend I'm a customer, Hey, you know, I'm, we're in an underserved area. That's, that's one of the best use cases, And that's, that's one of the best use cases that we're the folks watching don't move the data unless you have to. Uh, so not only are you changing your architecture, you're actually changing your organization because But you gotta change the database architecture in the back. away data, uh, you know, for the past maybe decade. We don't have time to drill into, maybe we do another session on this, but the one pattern we're seeing of the past year of data to the AWS cloud, or we can run, uh, computational workloads So I gotta end the segment on a, on a kind of a, um, fun note. You got a customer to jump out So I was, you jumped out. my career into the cloud, and now it feels like, uh, almost, almost looking back and saying, And so, you know, you, you jump on a plane, you gotta make sure that parachute is gonna open. But, uh, it was, it was the same kind of feeling that we had in the early days of AWS, the same feeling we have when we It's now with you guys, it's more like a tandem jump. I'm John for host of the cube. I'm John fury host of the cube. What's the status of the company product what's going on? First of all, thank you for having me. Salesforce, and service now to take you to the next stage? I love having you on the cube, Dave and I, Dave LAN as well loves having you on too, because you not only bring the entrepreneurial Get the call fund to talk to you though. So the cloud scale has hit. So the things that rumor system of recorded you and me talked about the next layer is called system of intelligence. I mean, or I mean, RPA is, should be embedded in everything. I call it much more about automation, workflow automation, but RPA and automation is a category. So as you break that down, is this the new modern middleware? So it's like how you have a database and compute and sales and networking. uh, behind, as you got the XPO hall got, um, we're back to vis, but you got, So you don't build it just on Amazon. is, what you do in the cloud. I'll make the pass layer room. It And that reduce your product development, your go to market and you get use the snowflake marketplace I mean, I know they got a great relationship, uh, but snowflake now has to run a company they're public. So I think depending on the use case you have to use each of the above, I think the general question that I have is that I think it's okay to have a super cloud like that because the rising I see people lift and shifting from the it operations, it helpless. Cause you know, the big enterprises now and you Spending on the startups. So you know, a lot of good resources there. And I think their whole data exchange is the industry has not thought through something you and me talk Yeah. It is doubled. What are you working on right now? So all the top customers, um, mainly for it help desk customer service. Some of the areas where you want to scale your company, So look for that on the calendar, of course, go to a us startups.com. We're getting back in the Groove's psych to be back. Sure is a lot of words to describe is shit posting, which is how I describe what I tend to do. And if you look at mark, Andrew's been doing a lot of shit posting lately. It's honestly the most terrifying scenario for anyone is if I have that kind of budget to throw at my endeavors, So for the audience that doesn't know what shit posting is, what, what is shitposting A lot of the audience is thinking, in the industry right now, obviously, uh, Cuban coming up in Spain, which they're having a physical event, And you can't win once you're there. is trying to portray themselves, you know, the Pathfinder, you know, you're the pioneer, Since the last time we've spoken, uh, Steve Schmidt is now the CISO for all of card, but it's basically a tricked out PC with amazing monitors and you have all the equipment of F1 and you're And I can see the appeal of these tech companies getting it into it because these things are basically So I gotta ask you about, uh, what's going on in your world. People just generally don't respond to email because who responds I think sure would call in. Honestly, I am surprised anything by how little I have gotten over the last five years of doing this, reinvent getting the interview with jazzy now, Andy we're there, you're there. And then there you go. And so the joke was cold. I love the service ridiculous name. You got S three SQS. They're like the anti Google, Google turns things off while they're still building So let me talk about, uh, the other things I want to ask you is that like, okay, so as Amazon gets better in Depends on who you ask. So I gotta ask about multi-cloud cause obviously the other cloud shows are coming up. Yeah. And I look at what customers are doing and What's the big aha moment that you saw with the pandemic. When in the before times it's open to anyone here is on the queue. So tell a story. Um, but you know, Um, you know, that's a great question. I mean, it's so cool to see you jump right in. I had APIs from the Yeah, I was basically our first SRE, um, was familiar with the, with the phrasing, but really thought of myself as a software engineer So let's talk about what's what's going on now as you look at the landscape today, what's the coolest thing Yeah, I think the, I think the coolest thing is, you know, we're seeing the next layer of those abstraction tools exist How old's the company about So explain what it does. We've encoded all the best practices into software and we So that seems to be the problem you solve. So let me ask you a question. This is what you can expect here. Do you handle all the recovery or mitigation between, uh, identification say Um, we'll let you know. So what do you do for fun? Yeah, so, uh, for, for fun, um, a lot of side projects. You got going on And they're suddenly twice as productive because of it. There's Mm-hmm <affirmative>, you know, the expression, too many tools in the tool. And so we've done all of the pieces of the stacks. So what are some of the use cases that you see for your service? Um, so, you know, as is more infrastructure people come in because we're How many customers do you have now? So we charge a monthly rate. The requirement scale. So team to drive your costs down. How many services do you have to deploy as that scales <laugh> what are you gonna do when you're Better the old guy on the queue here. It exists across all the clouds and we're starting to see new platforms come up on top that allow you to leverage I gotta ask you this question cuz uh, you know, I always, I was a computer science undergrad in the, I think classroom's great to, uh, get a basis, but you need to go out and experiment actually try things. people hang on to the old, you know, project and try to force it out there. then move on to something new. Instantly you should be able to do that much more quickly. Do you agree with that? It's probably not gonna be that idea is the genius idea. Don't change the product so that you kind of have there's opportunities out there where you might get the lucky strike You're not gonna hit a rich the second time too. Thanks for coming on the cube. So if you are a software engineer excited about tools and cloud, Um, Johnny Dallas, the youngest engineer working at Amazon, um, I'm John furry host of the cube. I always call you Dr. Matt wood, because Andy jazzy always says Dr. Matt, we I love it. And I think you had walkup music too on, you know, So talk about your new role. So whether it is, you know, slicing and dicing You know, one of the benefits of, uh, having cube coverage with AWS since 2013 is watching You need a lot of compute to be able to train those models and you have to be able to evaluate what those mean And so the cloud really enabled this Renaissance with machine learning, and we're seeing honestly, And it's not a, a, a, you know, hyped up statement to And Dave's like, what do you mean by that? you gotta silo the data that needs to be siloed for compliance and reasons. I think, you know, like with any, with any technology, And if you could pull all of that together, that data engineering discipline can be incredibly transformative And I told 'em, I would ask someone at Amazon, this questions I'll ask you since you're, the tools in the cloud, which allow you to aggregate data from virtually like the domains are so broad, you kind of gotta allow your curiosity to develop and lead, Johnny Dallas is a great name by the that's fantastic. I have Johnny Johnny cube. If you do a project that's not working and you get bad data, Instantly abandoned it. trying to, you know, in the old world trying to find the resources and get the funding. And honestly, the most important thing is time just being able to jump in there, So for fun, you can just code something. And I managed to convince the team to leave them on for It's like, this is really hard. How does that impact the analytics piece? combining the data, labeling the data, training their models, uh, you know, running inference against their And so if you look at something just like Redshift serverless that we launched a reinvent, Want the answers come on. we announced, um, you know, serverless inference. is being reusing the data to actually retrain. Do you see it the same way? So today we added, you know, um, text extract queries. What's the big news happening that you're announcing here at summit in San Francisco, California, I want it to be up to date, but you know, I don't actually want to have to go my tools where I'm actually You can do everything that you would normally do. You got the serverless and your tailwind for you there. Thank Stay with us with more coverage of day two after this short break.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
SarahPERSON

0.99+

Dave ValentiPERSON

0.99+

AmazonORGANIZATION

0.99+

PanamaLOCATION

0.99+

Jeremy BurtonPERSON

0.99+

Dave AlanePERSON

0.99+

Frank LumanPERSON

0.99+

JohnPERSON

0.99+

2018DATE

0.99+

MatthewPERSON

0.99+

Adam CelskiPERSON

0.99+

JenkoPERSON

0.99+

Matthew ParkPERSON

0.99+

2003DATE

0.99+

AustinLOCATION

0.99+

EuropeLOCATION

0.99+

AsiaLOCATION

0.99+

Steve SchmidtPERSON

0.99+

Corey QuinnPERSON

0.99+

2005DATE

0.99+

JeremyPERSON

0.99+

AWSORGANIZATION

0.99+

ChicagoLOCATION

0.99+

Justin KobePERSON

0.99+

JeffPERSON

0.99+

FrankPERSON

0.99+

New YorkLOCATION

0.99+

AndrewPERSON

0.99+

Jerry ChanPERSON

0.99+

$2 billionQUANTITY

0.99+

2000DATE

0.99+

JustinPERSON

0.99+

TennesseeLOCATION

0.99+

$150 billionQUANTITY

0.99+

San FranciscoLOCATION

0.99+

SpainLOCATION

0.99+

TorontoLOCATION

0.99+

MiamiLOCATION

0.99+

GoogleORGANIZATION

0.99+

ISRAORGANIZATION

0.99+

Charles FitzgeraldPERSON

0.99+

1989DATE

0.99+

six yearsQUANTITY

0.99+

CaribbeanLOCATION

0.99+

AndyPERSON

0.99+

DavePERSON

0.99+

Las VegasLOCATION

0.99+

AdamPERSON

0.99+

2016DATE

0.99+

Saket Saurabh, Next | AWS Startup Showcase S2 E2


 

[Music] welcome everyone to thecube's presentation of the aws startup showcase data as code this is season two episode two of our ongoing series covering exciting startups in the aws ecosystem to talk about data and analytics i'm your host lisa martin i have a cube alumni here with me socket sarah the ceo and founder of nexla he's here to talk about a future of automated data engineering socket welcome back great to see you lisa thank you for having me pleasure to be here again let's dig into nexla's mission ready to use data in the hands of every user what does that mean that means that you know every organization what what are they trying to do with data they want to make use of data they want to make decisions from data they want to make data a part of their business right the challenge is that every function in an organization today needs to leverage data whether it is finance whether it is hr whether it is marketing sales or product the problem for companies is that for each of these users into each of these teams the data is not ready for them to use as it is there is a lot that goes on before the data can be in their hands and it's in the tools that they like to work with and that's where a lot of data engineering happens today i would say that is by far one of the biggest bottlenecks today for companies in accelerating their business and being you know truly data-driven so talk to me about what makes nexla unique when you're in customer conversations as every company these days in every industry has to be a data company what do you tell them about what differentiates you yeah one of the biggest challenges out there is that the variety of data that companies work with is growing tremendously you know every sas application you use becomes a data source every type of database every type of user event anything can be a source of data now it is a tremendous engineering challenge for companies to make the data usable and the biggest challenge there is people companies just cannot have enough people to write that code to make the data engineering happen and where we come in with a very unique value is how to start thinking about making this whole process much faster much more automated at the end of the day lisa time to value and time to results is by far the number one thing on top of mind for customers time to value is critical we're all thin on patients these days whether we're in our consumerizer our business lives but being able to get access to data to make intelligent decisions whether it's on something that you're going to buy or a product or service you're going to deliver is really critical give me a snapshot of some of the users of nexla yeah the users of nexla are actually across different industries one of the main one of the interesting things is that the data challenges whether you are in financial services whether you are in retail e-commerce whether you are in healthcare they are very similar is basically getting connected to all these data systems and having the data now what people do with the data is very specific to their industry so for example within the e-commerce world or retail world itself you know companies from the likes of bed bath beyond and forever 21 and poshmark which are retailers or e-commerce companies they use nexla today to bring a lot of data in uh so do delivery companies like dodash and instacart and you know so do for example logistics providers like you know narwhal or customer loyalty and customer data companies like yacht pro so across the board for example just in retail we cover a whole bunch of companies got it now let's dig into you're here to talk about the future of automated data engineering talk to me about data engineering what is it let's define it and crack it open yeah um data engineering is i would say by far one of the hottest areas of work today the one of the hardest people to hire if you're looking for one data engineering is basically um all the code you know the process and the people that is basically connecting to their system so just to give a very practical example right for um for somebody in e-commerce let's say a take-off case of door dash right it's extremely important for them to have data as to which stores have what products what is available is this something they can list for people to go and buy is this something that they can therefore deliver right this is data that changes all the time now imagine them getting data from hundreds of different merchants across the board so it is the task of data engineering to then consume that data from all these different places different formats different apis different systems and then somehow unify all the data so that it can be used by the applications that they are building so data engineering in this case becomes taking data from different places and making it useful again back to what i was talking about ready to use data it is a lot of code it's a lot of people not just that it is something that runs every single day so it means it has monitoring it has reliability um it has performance it has every aspect of engineering as we know going into it you mentioned it's a hot topic which it is but it's also really challenging to accomplish how does nexla help enable that yeah data engineering is quite interesting in that one it is difficult to implement you know the the necessary sort of pieces but it is also very repetitive at some level right i mean when you connect to say 10 systems and get data from them you know that's not the end of it you have 10 more and 10 more and 10 more and then at some point you have thousands of such you know data connectivity and data flows happening it's hard to maintain them right as well so the way nexla gets into the whole picture is looking at what can we understand about data what can we observe about the data systems what can be done from that and then start to automate certain pieces of data engineering so that we are helping those teams just accelerate a lot faster and it i would say comes down to more people being able to do these tasks rather than only very very specialized people more people being able to do the tasks more users kind of democratization of data really there can you talk to us in more detail about how naxa is automating data engineering yeah i think um you know i think this is best shared through a visual so let me walk you through that a little bit as to how we automated engineering right so if we think about data engineering three of the most core components are many parts to it but three of the most core components of that are integrating with data systems preparing and transforming data and then monitoring that right so automating data engineering happens in you know three different ways first of all connecting connecting to data is is basically about the gateway to data the ability to read and write data from different systems this is where the data journey starts but it is extremely complex because people have to write code to connect to different systems one part that we have automated is generating these connectors so that you don't have to write code for that also making them bi-directional is extremely valuable because now you can read and write from any system the second part is that the gateway the connector has read the data but how do you represent it to the user so anybody can understand it and that's where the concept of data product comes in so we also look at auto generating data products these become the common language and entity that people can understand and work with and then the third part is taking all this automation and bringing the human in the loop no automation is perfect and therefore bringing the human in the loop means that somebody who is an expert in data who can look at it and understand it can now do things which only data systems experts were able to do before so bringing in that user of data directly into the into the picture is one important part but let's not forget data challenges are very diverse and very complex so the same system also becomes accessible to the engineers who are experts in that and now both of these can work together while an engineer will come through apis and sdk and command interfaces a data user comes in through a nice no code user interface and all of these things coming together are what is accelerating back to that time to value that really everybody cares about so if i'm in marketing and i'm a data user i'm able to have a collaborative workflow with the data engineer yeah yeah for the first time that is actually possible and everybody's focuses on their expertise and their know-how so you know um somebody who for example in financial services really understands portfolio and transactions and different type of asset classes they have the data in front of them the engineers who understand the underlying real-time data feeds and those they are still involved in the loop but now they are not doing that back and forth you know as the user of data i'm not going to the engineer saying hey can you do this for me can you get the data here and that back and forth is not only time taking it's frustrating and the number one hold back right yeah that and that's time that nobody has to waste as we know for many reasons talk to me about when you look into your crystal ball which i'm sure you have one what is the future of of data engineering from nexus perspective you talked about the automation what's the future hold i think the future of data engineering becomes that we up level this at a point where um companies don't have to be slowed down for it um i think a lot of tooling is already happening the way to think about this is that here in 2022 if we think that our data challenges are you know like x they will be a thousand x in five years right i mean this complexity is just increasing very rapidly so we think that this becomes one of those fundamental layers you know and you know as i was saying maybe the last time this is like the road you know you don't feel it you just move on it you do your job you build your products deliver your services as a company this just works for you um and that's where i think the future is and that's where i think the future should be we all need to work towards that we're not there yet not there yet a lot of a lot of potential a lot of opportunity and a lot of momentum speaking of momentum i want to talk about data mesh that is a topic of a lot of excitement a lot of discussion let's unpack that yeah i think uh you know the idea that data should be democratized that people should get access to the data and it's all coming back to that sort of basic concept of scale companies can scale only when more people can do the relevant jobs without depending on each other right so the idea of data democratization has been there for a long time but you know recently in the last couple of years the concept of data mesh was introduced by zamak digani and thoughtworks and that has really caught the attention of people and the imagination of leadership as well the idea that data should be available as a product you know that democratization can happen what is the entity of the democratization that's data presented as a product that people can use and collaborate is extremely powerful um i think a lot of companies are gravitating towards that and that's why it's exciting this is promising a future that is you know possible so second speaking of data products we talked a little bit about this last time but can you really help us understand see smell touch feel what a data product is and give us that context yeah absolutely i think uh best to orient ourselves with the general thinking of how we consider something as a product right a product is something that we find ready to use for example this table that i'm using right now made out of raw materials wood metal screws somebody designed it somebody produced it and i'm using it right now when we think about data products we think about data as the raw material so for example a spreadsheet an api a database query those are the raw raw materials what is a data product is something that further enriches and enhances that entity to be much more usable ready to use right um let me illustrate that with a little bit of a visual actually and that might help okay um the idea of the data product and this is how a data product looks like in next lab for a user to write as you see the concept of a data product is something that first of all it's a logical entity this simply means that it's not a new copy of data just like containers or logical compute units you know these data products are logical entities but they represent data in the same consistent fashion regardless of where the data comes from what format it is in they provide the user the idea of what the structure of data is what the sample data looks like what the characteristics of data are it allows people to have some documentation around it what does the data mean what do these attributes you know mean and how to interpret them how to validate that data something that users often know in an industry how is my data looking like well this value can never be negative because it's a price for example right um then the ability to take these data products that you know we automate by generating as i was mentioning earlier automatically creating these data products taking these data products to create new data products now that's something that's very unique about data you could take data off about an order for a from a company and say well the order data has an order id and a user id but i need to look up shipping address so i can combine user and order data to get that information in one place so you know creating new data products giving people access hey i've designed a data product i think you'll find it useful you can go use that as it is you don't have to go from scratch so all of those things together make a data product something that people can find ready to use again and this is this is also usable by the again that example where i'm in marketing uh or i'm in sales this is available to me as a general user as a general user in the tool of your choice so you can say oh no i am most familiar with using data in a spreadsheet i would like it there or i prefer my data in a tableau or a looker to visualize it and you can have it there so these data products give multiple interfaces for the end user to make use of it got it i like it you're meeting the user where they are with relevant data that helps them understand so much more contextually i'm curious when you're in customer conversations customers that come to you saying saka we need to build the data mesh how is nexl relevant they're how what is your conversation like yeah when people want to build a data mesh they're really looking for how their organization will scale into the future uh there are multiple components to building a data mesh there's a tooling part of it the technology portion there are people and processes right i mean unless you train people in certain processes and say hey when you build a data product you know make sure you have taken care of privacy or compliance to certain rules or who do you give access to is something you have to follow some rules about so we provide the technology component of it and then the people and process is something that companies you know then as they adopt and do that right so the concept of data product becomes core to building the data mesh having governance on it uh having all this be self-serve it's an essential part of that so that's where we come into the picture as a as a technology component to the whole story and working to deliver on that mission to getting data in the hands of every user you mentioned i want to dig into in the last few minutes here that we have uh the target audience you mentioned a few by name big names customers that nexla has you i heard retail i heard e-commerce i think i heard logistics but talk to me about the target customer for nexla any verticals in particular or any company's sizes in particular as well yeah you know the one of the top three banks in the country is a big user of nexla as part of their data stack uh we actually sit as part of their enterprise-wide ai platform providing data to their data scientists um we're not allowed to share their name unfortunately but um you know there are multiple other companies in asset management area for example they work with a lot of data in markets portfolio and so on um the leading medical devices companies using nexla data scientists there are using data coming in real time or streaming for medical devices to train and um and combine that with other data to do sort of clinical trial related research that they do um we have you know the companies for example linkedin is an excellent customer linkedin is by far the largest social network um their marketing team leverages nexla to bring data from different type of systems together as well um you know so are companies in education space like nerdy is a public company that uses nexla for you know student enrollment education data as they collaborate with school districts for example um you know there are companies across the board in marketing live brand you know for example uses nexla so we are um we are you know from who uses nexla is today mostly mid to large to very large enterprises today leverage nexla as a very critical component and often mission critical data for which they leverage us do you see that changing anytime soon as every company these days has to be a data company we expect that as consumers whether it's my grocery store um or my local coffee shop that they've got to use data to deliver me that personalized experience do you see the target audience kind of shifting down to more into mid-market smb space for next level oh yeah absolutely look we started the journey of the company with the thinking that the most complex data challenges exist in the large enterprise and if we can make it no code self-serve easy to use for them we can bring the same high-end technology to everybody and this is exactly why we recently launched in the amazon marketplace so anybody can go there get access to nexla and start to use it and you will see more and more of that happen where we will be bringing even some free versions of our product available so you're absolutely right every company needs to leverage data and i think people are getting much better at it you know especially in the last couple of years i've seen that teams have become much more sophisticated yes even if you are a coffee shop and you're running campaigns you know getting people yelp reviews and so on this data that you can use and understand better your demographic your customer and run your business better so one day yes we will absolutely be in the hands of every single person here a lot more opportunity to delight a lot more consumers and customers socket thank you so much for joining me on the program during the startup showcase you did a great job of helping us understand the future of automated data engineering we appreciate your insights thank you so much lisa it's a pleasure talking to you likewise for soccer sarah i'm lisa martin you're watching thecube's coverage of the aws startup showcase season two episode two stick around more great content coming up from the cube the leader in hybrid tech event coverage [Music]

Published Date : Mar 30 2022

**Summary and Sentiment Analysis are not been shown because of improper transcript**

ENTITIES

EntityCategoryConfidence
10 systemsQUANTITY

0.99+

10QUANTITY

0.99+

Saket SaurabhPERSON

0.99+

lisa martinPERSON

0.99+

2022DATE

0.99+

lisaPERSON

0.99+

sarahPERSON

0.99+

second partQUANTITY

0.99+

thousandsQUANTITY

0.99+

third partQUANTITY

0.99+

one partQUANTITY

0.99+

nexlaORGANIZATION

0.99+

naxaORGANIZATION

0.99+

threeQUANTITY

0.98+

eachQUANTITY

0.98+

dodashORGANIZATION

0.98+

hundreds of difQUANTITY

0.98+

todayDATE

0.98+

first timeQUANTITY

0.98+

five yearsQUANTITY

0.98+

narwhalORGANIZATION

0.97+

bothQUANTITY

0.97+

AWSORGANIZATION

0.96+

instacartORGANIZATION

0.96+

yacht proORGANIZATION

0.95+

linkedinORGANIZATION

0.94+

oneQUANTITY

0.94+

firstQUANTITY

0.94+

awsORGANIZATION

0.94+

one important partQUANTITY

0.92+

nexlaTITLE

0.91+

one placeQUANTITY

0.91+

every single dayQUANTITY

0.91+

zamak diganiPERSON

0.9+

three different waysQUANTITY

0.89+

amazonORGANIZATION

0.89+

last couple of yearsDATE

0.88+

last couple of yearsDATE

0.88+

secondQUANTITY

0.87+

poshmarkORGANIZATION

0.87+

sarah the ceoPERSON

0.85+

nexusORGANIZATION

0.83+

season twoQUANTITY

0.8+

a lot of peopleQUANTITY

0.8+

ShowcaseEVENT

0.79+

every functionQUANTITY

0.79+

one dayQUANTITY

0.78+

three banksQUANTITY

0.77+

10 moreQUANTITY

0.77+

number oneQUANTITY

0.76+

ferentORGANIZATION

0.73+

lot of dataQUANTITY

0.73+

thousandQUANTITY

0.73+

core componentsQUANTITY

0.7+

single personQUANTITY

0.69+

S2 E2EVENT

0.67+

one of the biggest bottlenecksQUANTITY

0.67+

lot of companiesQUANTITY

0.6+

episode twoQUANTITY

0.59+

thecubeORGANIZATION

0.56+

challengesQUANTITY

0.53+

Breaking Analysis: Enterprise Technology Predictions 2022


 

>> From theCUBE Studios in Palo Alto and Boston, bringing you data-driven insights from theCUBE and ETR, this is Breaking Analysis with Dave Vellante. >> The pandemic has changed the way we think about and predict the future. As we enter the third year of a global pandemic, we see the significant impact that it's had on technology strategy, spending patterns, and company fortunes Much has changed. And while many of these changes were forced reactions to a new abnormal, the trends that we've seen over the past 24 months have become more entrenched, and point to the way that's coming ahead in the technology business. Hello and welcome to this week's Wikibon CUBE Insights powered by ETR. In this Breaking Analysis, we welcome our partner and colleague and business friend, Erik Porter Bradley, as we deliver what's becoming an annual tradition for Erik and me, our predictions for Enterprise Technology in 2022 and beyond Erik, welcome. Thanks for taking some time out. >> Thank you, Dave. Luckily we did pretty well last year, so we were able to do this again. So hopefully we can keep that momentum going. >> Yeah, you know, I want to mention that, you know, we get a lot of inbound predictions from companies and PR firms that help shape our thinking. But one of the main objectives that we have is we try to make predictions that can be measured. That's why we use a lot of data. Now not all will necessarily fit that parameter, but if you've seen the grading of our 2021 predictions that Erik and I did, you'll see we do a pretty good job of trying to put forth prognostications that can be declared correct or not, you know, as black and white as possible. Now let's get right into it. Our first prediction, we're going to go run into spending, something that ETR surveys for quarterly. And we've reported extensively on this. We're calling for tech spending to increase somewhere around 8% in 2022, we can see there on the slide, Erik, we predicted spending last year would increase by 4% IDC. Last check was came in at five and a half percent. Gardner was somewhat higher, but in general, you know, not too bad, but looking ahead, we're seeing an acceleration from the ETR September surveys, as you can see in the yellow versus the blue bar in this chart, many of the SMBs that were hard hit by the pandemic are picking up spending again. And the ETR data is showing acceleration above the mean for industries like energy, utilities, retail, and services, and also, notably, in the Forbes largest 225 private companies. These are companies like Mars or Koch industries. They're predicting well above average spending for 2022. So Erik, please weigh in here. >> Yeah, a lot to bring up on this one, I'm going to be quick. So 1200 respondents on this, over a third of which were at the C-suite level. So really good data that we brought in, the usual bucket of, you know, fortune 500, global 2000 make up the meat of that median, but it's 8.3% and rising with momentum as we see. What's really interesting right now is that energy and utilities. This is usually like, you know, an orphan stock dividend type of play. You don't see them at the highest point of tech spending. And the reason why right now is really because this state of tech infrastructure in our energy infrastructure needs help. And it's obvious, remember the Florida municipality break reach last year? When they took over the water systems or they had the ability to? And this is a real issue, you know, there's bad nation state actors out there, and I'm no alarmist, but the energy and utility has to spend this money to keep up. It's really important. And then you also hit on the retail consumer. Obviously what's happened, the work from home shift created a shop from home shift, and the trends that are happening right now in retail. If you don't spend and keep up, you're not going to be around much longer. So I think the really two interesting things here to call out are energy utilities, usually a laggard in IT spend and it's leading, and also retail consumer, a lot of changes happening. >> Yeah. Great stuff. I mean, I recall when we entered the pandemic, really ETR was the first to emphasize the impact that work from home was going to have, so I really put a lot of weight on this data. Okay. Our next prediction is we're going to get into security, it's one of our favorite topics. And that is that the number one priority that needs to be addressed by organizations in 2022 is security and you can see, in this slide, the degree to which security is top of mind, relative to some other pretty important areas like cloud, productivity, data, and automation, and some others. Now people may say, "Oh, this is obvious." But I'm going to add some context here, Erik, and then bring you in. First, organizations, they don't have unlimited budgets. And there are a lot of competing priorities for dollars, especially with the digital transformation mandate. And depending on the size of the company, this data will vary. For example, while security is still number one at the largest public companies, and those are of course of the biggest spenders, it's not nearly as pronounced as it is on average, or in, for example, mid-sized companies and government agencies. And this is because midsized companies or smaller companies, they don't have the resources that larger companies do. Larger companies have done a better job of securing their infrastructure. So these mid-size firms are playing catch up and the data suggests cyber is even a bigger priority there, gaps that they have to fill, you know, going forward. And that's why we think there's going to be more demand for MSSPs, managed security service providers. And we may even see some IPO action there. And then of course, Erik, you and I have talked about events like the SolarWinds Hack, there's more ransomware attacks, other vulnerabilities. Just recently, like Log4j in December. All of this has heightened concerns. Now I want to talk a little bit more about how we measure this, you know, relatively, okay, it's an obvious prediction, but let's stick our necks out a little bit. And so in addition to the rise of managed security services, we're calling for M&A and/or IPOs, we've specified some names here on this chart, and we're also pointing to the digital supply chain as an area of emphasis. Again, Log4j really shone that under a light. And this is going to help the likes of Auth0, which is now Okta, SailPoint, which is called out on this chart, and some others. We're calling some winners in end point security. Erik, you're going to talk about sort of that lifecycle, that transformation that we're seeing, that migration to new endpoint technologies that are going to benefit from this reset refresh cycle. So Erik, weigh in here, let's talk about some of the elements of this prediction and some of the names on that chart. >> Yeah, certainly. I'm going to start right with Log4j top of mind. And the reason why is because we're seeing a real paradigm shift here where things are no longer being attacked at the network layer, they're being attacked at the application layer, and in the application stack itself. And that is a huge shift left. And that's taking in DevSecOps now as a real priority in 2022. That's a real paradigm shift over the last 20 years. That's not where attacks used to come from. And this is going to have a lot of changes. You called out a bunch of names in there that are, they're either going to work. I would add to that list Wiz. I would add Orca Security. Two names in our emerging technology study, in addition to the ones you added that are involved in cloud security and container security. These names are either going to get gobbled up. So the traditional legacy names are going to have to start writing checks and, you know, legacy is not fair, but they're in the data center, right? They're, on-prem, they're not cloud native. So these are the names that money is going to be flowing to. So they're either going to get gobbled up, or we're going to see some IPO's. And on the other thing I want to talk about too, is what you mentioned. We have CrowdStrike on that list, We have SentinalOne on the list. Everyone knows them. Our data was so strong on Tanium that we actually went positive for the first time just today, just this morning, where that was released. The trifecta of these are so important because of what you mentioned, under resourcing. We can't have security just tell us when something happens, it has to automate, and it has to respond. So in this next generation of EDR and XDR, an automated response has to happen because people are under-resourced, salaries are really high, there's a skill shortage out there. Security has to become responsive. It can't just monitor anymore. >> Yeah. Great. And we should call out too. So we named some names, Snyk, Aqua, Arctic Wolf, Lacework, Netskope, Illumio. These are all sort of IPO, or possibly even M&A candidates. All right. Our next prediction goes right to the way we work. Again, something that ETR has been on for awhile. We're calling for a major rethink in remote work for 2022. We had predicted last year that by the end of 2021, there'd be a larger return to the office with the norm being around a third of workers permanently remote. And of course the variants changed that equation and, you know, gave more time for people to think about this idea of hybrid work and that's really come in to focus. So we're predicting that is going to overtake fully remote as the dominant work model with only about a third of the workers back in the office full-time. And Erik, we expect a somewhat lower percentage to be fully remote. It's now sort of dipped under 30%, at around 29%, but it's still significantly higher than the historical average of around 15 to 16%. So still a major change, but this idea of hybrid and getting hybrid right, has really come into focus. Hasn't it? >> Yeah. It's here to stay. There's no doubt about it. We started this in March of 2020, as soon as the virus hit. This is the 10th iteration of the survey. No one, no one ever thought we'd see a number where only 34% of people were going to be in office permanently. That's a permanent number. They're expecting only a third of the workers to ever come back fully in office. And against that, there's 63% that are saying their permanent workforce is going to be either fully remote or hybrid. And this, I can't really explain how big of a paradigm shift this is. Since the start of the industrial revolution, people leave their house and go to work. Now they're saying that's not going to happen. The economic impact here is so broad, on so many different areas And, you know, the reason is like, why not? Right? The productivity increase is real. We're seeing the productivity increase. Enterprises are spending on collaboration tools, productivity tools, We're seeing an increased perception in productivity of their workforce. And the CFOs can cut down an expense item. I just don't see a reason why this would end, you know, I think it's going to continue. And I also want to point out these results, as high as they are, were before the Omicron wave hit us. I can only imagine what these results would have been if we had sent the survey out just two or three weeks later. >> Yeah. That's a great point. Okay. Next prediction, we're going to look at the supply chain, specifically in how it's affecting some of the hardware spending and cloud strategies in the future. So in this chart, ETRS buyers, have you experienced problems procuring hardware as a result of supply chain issues? And, you know, despite the fact that some companies are, you know, I would call out Dell, for example, doing really well in terms of delivering, you can see that in the numbers, it's pretty clear, there's been an impact. And that's not not an across the board, you know, thing where vendors are able to deliver, especially acute in PCs, but also pronounced in networking, also in firewall servers and storage. And what's interesting is how companies are responding and reacting. So first, you know, I'm going to call the laptop and PC demand staying well above pre-COVID norms. It had peaked in 2012. Pre-pandemic it kept dropping and dropping and dropping, in terms of, you know, unit volume, where the market was contracting. And we think can continue to grow this year in double digits in 2022. But what's interesting, Erik, is when you survey customers, is despite the difficulty they're having in procuring network hardware, there's as much of a migration away from existing networks to the cloud. You could probably comment on that. Their networks are more fossilized, but when it comes to firewalls and servers and storage, there's a much higher propensity to move to the cloud. 30% of customers that ETR surveyed will replace security appliances with cloud services and 41% and 34% respectively will move to cloud compute and storage in 2022. So cloud's relentless march on traditional on-prem models continues. Erik, what do you make of this data? Please weigh in on this prediction. >> As if we needed another reason to go to the cloud. Right here, here it is yet again. So this was added to the survey by client demand. They were asking about the procurement difficulties, the supply chain issues, and how it was impacting our community. So this is the first time we ran it. And it really was interesting to see, you know, the move there. And storage particularly I found interesting because it correlated with a huge jump that we saw on one of our vendor names, which was Rubrik, had the highest net score that it's ever had. So clearly we're seeing some correlation with some of these names that are there, you know, really well positioned to take storage, to take data into the cloud. So again, you didn't need another reason to, you know, hasten this digital transformation, but here we are, we have it yet again, and I don't see it slowing down anytime soon. >> You know, that's a really good point. I mean, it's not necessarily bad news for the... I mean, obviously you wish that it had no change, would be great, but things, you know, always going to change. So we'll talk about this a little bit later when we get into the Supercloud conversation, but this is an opportunity for people who embrace the cloud. So we'll come back to that. And I want to hang on cloud a bit and share some recent projections that we've made. The next prediction is the big four cloud players are going to surpass 167 billion, an IaaS and PaaS revenue in 2022. We track this. Observers of this program know that we try to create an apples to apples comparison between AWS, Azure, GCP and Alibaba in IaaS and PaaS. So we're calling for 38% revenue growth in 2022, which is astounding for such a massive market. You know, AWS is probably not going to hit a hundred billion dollar run rate, but they're going to be close this year. And we're going to get there by 2023, you know they're going to surpass that. Azure continues to close the gap. Now they're about two thirds of the size of AWS and Google, we think is going to surpass Alibaba and take the number three spot. Erik, anything you'd like to add here? >> Yeah, first of all, just on a sector level, we saw our sector, new survey net score on cloud jumped another 10%. It was already really high at 48. Went up to 53. This train is not slowing down anytime soon. And we even added an edge compute type of player, like CloudFlare into our cloud bucket this year. And it debuted with a net score of almost 60. So this is really an area that's expanding, not just the big three, but everywhere. We even saw Oracle and IBM jump up. So even they're having success, taking some of their on-prem customers and then selling them to their cloud services. This is a massive opportunity and it's not changing anytime soon, it's going to continue. >> And I think the operative word there is opportunity. So, you know, the next prediction is something that we've been having fun with and that's this Supercloud becomes a thing. Now, the reason I say we've been having fun is we put this concept of Supercloud out and it's become a bit of a controversy. First, you know, what the heck's the Supercloud right? It's sort of a buzz-wordy term, but there really is, we believe, a thing here. We think there needs to be a rethinking or at least an evolution of the term multi-cloud. And what we mean is that in our view, you know, multicloud from a vendor perspective was really cloud compatibility. It wasn't marketed that way, but that's what it was. Either a vendor would containerize its legacy stack, shove it into the cloud, or a company, you know, they'd do the work, they'd build a cloud native service on one of the big clouds and they did do it for AWS, and then Azure, and then Google. But there really wasn't much, if any, leverage across clouds. Now from a buyer perspective, we've always said multicloud was a symptom of multi-vendor, meaning I got different workloads, running in different clouds, or I bought a company and they run on Azure, and I do a lot of work on AWS, but generally it wasn't necessarily a prescribed strategy to build value on top of hyperscale infrastructure. There certainly was somewhat of a, you know, reducing lock-in and hedging the risk. But we're talking about something more here. We're talking about building value on top of the hyperscale gift of hundreds of billions of dollars in CapEx. So in addition, we're not just talking about transforming IT, which is what the last 10 years of cloud have been like. And, you know, doing work in the cloud because it's cheaper or simpler or more agile, all of those things. So that's beginning to change. And this chart shows some of the technology vendors that are leaning toward this Supercloud vision, in our view, building on top of the hyperscalers that are highlighted in red. Now, Jerry Chan at Greylock, they wrote a piece called Castles in the Cloud. It got our thinking going, and he and the team at Greylock, they're building out a database of all the cloud services and all the sub-markets in cloud. And that got us thinking that there's a higher level of abstraction coalescing in the market, where there's tight integration of services across clouds, but the underlying complexity is hidden, and there's an identical experience across clouds, and even, in my dreams, on-prem for some platforms, so what's new or new-ish and evolving are things like location independence, you've got to include the edge on that, metadata services to optimize locality of reference and data source awareness, governance, privacy, you know, application independent and dependent, actually, recovery across clouds. So we're seeing this evolve. And in our view, the two biggest things that are new are the technology is evolving, where you're seeing services truly integrate cross-cloud. And the other big change is digital transformation, where there's this new innovation curve developing, and it's not just about making your IT better. It's about SaaS-ifying and automating your entire company workflows. So Supercloud, it's not just a vendor thing to us. It's the evolution of, you know, the, the Marc Andreessen quote, "Every company will be a SaaS company." Every company will deliver capabilities that can be consumed as cloud services. So Erik, the chart shows spending momentum on the y-axis and net score, or presence in the ETR data center, or market share on the x-axis. We've talked about snowflake as the poster child for this concept where the vision is you're in their cloud and sharing data in that safe place. Maybe you could make some comments, you know, what do you think of this Supercloud concept and this change that we're sensing in the market? >> Well, I think you did a great job describing the concept. So maybe I'll support it a little bit on the vendor level and then kind of give examples of the ones that are doing it. You stole the lead there with Snowflake, right? There is no better example than what we've seen with what Snowflake can do. Cross-portability in the cloud, the ability to be able to be, you know, completely agnostic, but then build those services on top. They're better than anything they could offer. And it's not just there. I mean, you mentioned edge compute, that's a whole nother layer where this is coming in. And CloudFlare, the momentum there is out of control. I mean, this is a company that started off just doing CDN and trying to compete with Okta Mite. And now they're giving you a full soup to nuts with security and actual edge compute layer, but it's a fantastic company. What they're doing, it's another great example of what you're seeing here. I'm going to call out HashiCorp as well. They're more of an infrastructure services, a little bit more of an open-source freemium model, but what they're doing as well is completely cloud agnostic. It's dynamic. It doesn't care if you're in a container, it doesn't matter where you are. They recently IPO'd and they're down 25%, but their data looks so good across both of our emerging technology and TISA survey. It's certainly another name that's playing on this. And another one that we mentioned as well is Rubrik. If you need storage, compute, and in the cloud layer and you need to be agnostic to it, they're another one that's really playing in this space. So I think it's a great concept you're bringing up. I think it's one that's here to stay and there's certainly a lot of vendors that fit into what you're describing. >> Excellent. Thank you. All right, let's shift to data. The next prediction, it might be a little tough to measure. Before I said we're trying to be a little black and white here, but it relates to Data Mesh, which is, the ideas behind that term were created by Zhamak Dehghani of ThoughtWorks. And we see Data Mesh is really gaining momentum in 2022, but it's largely going to be, we think, confined to a more narrow scope. Now, the impetus for change in data architecture in many companies really stems from the fact that their Hadoop infrastructure really didn't solve their data problems and they struggle to get more value out of their data investments. Data Mesh prescribes a shift to a decentralized architecture in domain ownership of data and a shift to data product thinking, beyond data for analytics, but data products and services that can be monetized. Now this a very powerful in our view, but they're difficult for organizations to get their heads around and further decentralization creates the need for a self-service platform and federated data governance that can be automated. And not a lot of standards around this. So it's going to take some time. At our power panel a couple of weeks ago on data management, Tony Baer predicted a backlash on Data Mesh. And I don't think it's going to be so much of a backlash, but rather the adoption will be more limited. Most implementations we think are going to use a starting point of AWS and they'll enable domains to access and control their own data lakes. And while that is a very small slice of the Data Mesh vision, I think it's going to be a starting point. And the last thing I'll say is, this is going to take a decade to evolve, but I think it's the right direction. And whether it's a data lake or a data warehouse or a data hub or an S3 bucket, these are really, the concept is, they'll eventually just become nodes on the data mesh that are discoverable and access is governed. And so the idea is that the stranglehold that the data pipeline and process and hyper-specialized roles that they have on data agility is going to evolve. And decentralized architectures and the democratization of data will eventually become a norm for a lot of different use cases. And Erik, I wonder if you'd add anything to this. >> Yeah. There's a lot to add there. The first thing that jumped out to me was that that mention of the word backlash you said, and you said it's not really a backlash, but what it could be is these are new words trying to solve an old problem. And I do think sometimes the industry will notice that right away and maybe that'll be a little pushback. And the problems are what you already mentioned, right? We're trying to get to an area where we can have more assets in our data site, more deliverable, and more usable and relevant to the business. And you mentioned that as self-service with governance laid on top. And that's really what we're trying to get to. Now, there's a lot of ways you can get there. Data fabric is really the technical aspect and data mesh is really more about the people, the process, and the governance, but the two of those need to meet, in order to make that happen. And as far as tools, you know, there's even cataloging names like Informatica that play in this, right? Istio plays in this, Snowflake plays in this. So there's a lot of different tools that will support it. But I think you're right in calling out AWS, right? They have AWS Lake, they have AWS Glue. They have so much that's trying to drive this. But I think the really important thing to keep here is what you said. It's going to be a decade long journey. And by the way, we're on the shoulders of giants a decade ago that have even gotten us to this point to talk about these new words because this has been an ongoing type of issue, but ultimately, no matter which vendors you use, this is going to come down to your data governance plan and the data literacy in your business. This is really about workflows and people as much as it is tools. So, you know, the new term of data mesh is wonderful, but you still have to have the people and the governance and the processes in place to get there. >> Great, thank you for that, Erik. Some great points. All right, for the next prediction, we're going to shine the spotlight on two of our favorite topics, Snowflake and Databricks, and the prediction here is that, of course, Databricks is going to IPO this year, as expected. Everybody sort of expects that. And while, but the prediction really is, well, while these two companies are facing off already in the market, they're also going to compete with each other for M&A, especially as Databricks, you know, after the IPO, you're going to have, you know, more prominence and a war chest. So first, these companies, they're both looking pretty good, the same XY graph with spending velocity and presence and market share on the horizontal axis. And both Snowflake and Databricks are well above that magic 40% red dotted line, the elevated line, to us. And for context, we've included a few other firms. So you can see kind of what a good position these two companies are really in, especially, I mean, Snowflake, wow, it just keeps moving to the right on this horizontal picture, but maintaining the next net score in the Y axis. Amazing. So, but here's the thing, Databricks is using the term Lakehouse implying that it has the best of data lakes and data warehouses. And Snowflake has the vision of the data cloud and data sharing. And Snowflake, they've nailed analytics, and now they're moving into data science in the domain of Databricks. Databricks, on the other hand, has nailed data science and is moving into the domain of Snowflake, in the data warehouse and analytics space. But to really make this seamless, there has to be a semantic layer between these two worlds and they're either going to build it or buy it or both. And there are other areas like data clean rooms and privacy and data prep and governance and machine learning tooling and AI, all that stuff. So the prediction is they'll not only compete in the market, but they'll step up and in their competition for M&A, especially after the Databricks IPO. We've listed some target names here, like Atscale, you know, Iguazio, Infosum, Habu, Immuta, and I'm sure there are many, many others. Erik, you care to comment? >> Yeah. I remember a year ago when we were talking Snowflake when they first came out and you, and I said, "I'm shocked if they don't use this war chest of money" "and start going after more" "because we know Slootman, we have so much respect for him." "We've seen his playbook." And I'm actually a little bit surprised that here we are, at 12 months later, and he hasn't spent that money yet. So I think this prediction's just spot on. To talk a little bit about the data side, Snowflake is in rarefied air. It's all by itself. It is the number one net score in our entire TISA universe. It is absolutely incredible. There's almost no negative intentions. Global 2000 organizations are increasing their spend on it. We maintain our positive outlook. It's really just, you know, stands alone. Databricks, however, also has one of the highest overall net sentiments in the entire universe, not just its area. And this is the first time we're coming up positive on this name as well. It looks like it's not slowing down. Really interesting comment you made though that we normally hear from our end-user commentary in our panels and our interviews. Databricks is really more used for the data science side. The MLAI is where it's best positioned in our survey. So it might still have some catching up to do to really have that caliber of usability that you know Snowflake is seeing right now. That's snowflake having its own marketplace. There's just a lot more to Snowflake right now than there is Databricks. But I do think you're right. These two massive vendors are sort of heading towards a collision course, and it'll be very interesting to see how they deploy their cash. I think Snowflake, with their incredible management and leadership, probably will make the first move. >> Well, I think you're right on that. And by the way, I'll just add, you know, Databricks has basically said, hey, it's going to be easier for us to come from data lakes into data warehouse. I'm not sure I buy that. I think, again, that semantic layer is a missing ingredient. So it's going to be really interesting to see how this plays out. And to your point, you know, Snowflake's got the war chest, they got the momentum, they've got the public presence now since November, 2020. And so, you know, they're probably going to start making some aggressive moves. Anyway, next prediction is something, Erik, that you and I have talked about many, many times, and that is observability. I know it's one of your favorite topics. And we see this world screaming for more consolidation it's going all in on cloud native. These legacy stacks, they're fighting to stay relevant, but the direction is pretty clear. And the same XY graph lays out the players in the field, with some of the new entrants that we've also highlighted, like Observe and Honeycomb and ChaosSearch that we've talked about. Erik, we put a big red target around Splunk because everyone wants their gold. So please give us your thoughts. >> Oh man, I feel like I've been saying negative things about Splunk for too long. I've got a bad rap on this name. The Splunk shareholders come after me all the time. Listen, it really comes down to this. They're a fantastic company that was designed to do logging and monitoring and had some great tool sets around what you could do with it. But they were designed for the data center. They were designed for prem. The world we're in now is so dynamic. Everything I hear from our end user community is that all net new workloads will be going to cloud native players. It's that simple. So Splunk has entrenched. It's going to continue doing what it's doing and it does it really, really well. But if you're doing something new, the new workloads are going to be in a dynamic environment and that's going to go to the cloud native players. And in our data, it is extremely clear that that means Datadog and Elastic. They are by far number one and two in net score, increase rates, adoption rates. It's not even close. Even New Relic actually is starting to, you know, entrench itself really well. We saw New Relic's adoption's going up, which is super important because they went to that freemium model, you know, to try to get their little bit of an entrenched customer base and that's working as well. And then you made a great list here, of all the new entrants, but it goes beyond this. There's so many more. In our emerging technology survey, we're seeing Century, Catchpoint, Securonix, Lucid Works. There are so many options in this space. And let's not forget, the biggest data that we're seeing is with Grafana. And Grafana labs as yet to turn on their enterprise. Elastic did it, why can't Grafana labs do it? They have an enterprise stack. So when you look at how crowded this space is, there has to be consolidation. I recently hosted a panel and every single guy on that panel said, "Please give me a consolidation." Because they're the end users trying to actually deploy these and it's getting a little bit confusing. >> Great. Thank you for that. Okay. Last prediction. Erik, might be a little out of your wheelhouse, but you know, you might have some thoughts on it. And that's a hybrid events become the new digital model and a new category in 2022. You got these pure play digital or virtual events. They're going to take a back seat to in-person hybrids. The virtual experience will eventually give way to metaverse experiences and that's going to take some time, but the physical hybrid is going to drive it. And metaverse is ultimately going to define the virtual experience because the virtual experience today is not great. Nobody likes virtual. And hybrid is going to become the business model. Today's pure virtual experience has to evolve, you know, theCUBE first delivered hybrid mid last decade, but nobody really wanted it. We did Mobile World Congress last summer in Barcelona in an amazing hybrid model, which we're showing in some of the pictures here. Alex, if you don't mind bringing that back up. And every physical event that we're we're doing now has a hybrid and virtual component, including the pre-records. You can see in our studios, you see that the green screen. I don't know. Erik, what do you think about, you know, the Zoom fatigue and all this. I know you host regular events with your round tables, but what are your thoughts? >> Well, first of all, I think you and your company here have just done an amazing job on this. So that's really your expertise. I spent 20 years of my career hosting intimate wall street idea dinners. So I'm better at navigating a wine list than I am navigating a conference floor. But I will say that, you know, the trend just goes along with what we saw. If 35% are going to be fully remote. If 70% are going to be hybrid, then our events are going to be as well. I used to host round table dinners on, you know, one or two nights a week. Now those have gone virtual. They're now panels. They're now one-on-one interviews. You know, we do chats. We do submitted questions. We do what we can, but there's no reason that this is going to change anytime soon. I think you're spot on here. >> Yeah. Great. All right. So there you have it, Erik and I, Listen, we always love the feedback. Love to know what you think. Thank you, Erik, for your partnership, your collaboration, and love doing these predictions with you. >> Yeah. I always enjoy them too. And I'm actually happy. Last year you made us do a baker's dozen, so thanks for keeping it to 10 this year. >> (laughs) We've got a lot to say. I know, you know, we cut out. We didn't do much on crypto. We didn't really talk about SaaS. I mean, I got some thoughts there. We didn't really do much on containers and AI. >> You want to keep going? I've got another 10 for you. >> RPA...All right, we'll have you back and then let's do that. All right. All right. Don't forget, these episodes are all available as podcasts, wherever you listen, all you can do is search Breaking Analysis podcast. Check out ETR's website at etr.plus, they've got a new website out. It's the best data in the industry, and we publish a full report every week on wikibon.com and siliconangle.com. You can always reach out on email, David.Vellante@siliconangle.com I'm @DVellante on Twitter. Comment on our LinkedIn posts. This is Dave Vellante for the Cube Insights powered by ETR. Have a great week, stay safe, be well. And we'll see you next time. (mellow music)

Published Date : Jan 22 2022

SUMMARY :

bringing you data-driven and predict the future. So hopefully we can keep to mention that, you know, And this is a real issue, you know, And that is that the number one priority and in the application stack itself. And of course the variants And the CFOs can cut down an expense item. the board, you know, thing interesting to see, you know, and take the number three spot. not just the big three, but everywhere. It's the evolution of, you know, the, the ability to be able to be, and the democratization of data and the processes in place to get there. and is moving into the It is the number one net score And by the way, I'll just add, you know, and that's going to go to has to evolve, you know, that this is going to change anytime soon. Love to know what you think. so thanks for keeping it to 10 this year. I know, you know, we cut out. You want to keep going? This is Dave Vellante for the

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
ErikPERSON

0.99+

IBMORGANIZATION

0.99+

Jerry ChanPERSON

0.99+

OracleORGANIZATION

0.99+

AWSORGANIZATION

0.99+

March of 2020DATE

0.99+

Dave VellantePERSON

0.99+

Zhamak DehghaniPERSON

0.99+

DavePERSON

0.99+

Marc AndreessenPERSON

0.99+

GoogleORGANIZATION

0.99+

2022DATE

0.99+

Tony BaerPERSON

0.99+

AlexPERSON

0.99+

DatabricksORGANIZATION

0.99+

8.3%QUANTITY

0.99+

2021DATE

0.99+

DecemberDATE

0.99+

38%QUANTITY

0.99+

last yearDATE

0.99+

November, 2020DATE

0.99+

twoQUANTITY

0.99+

20 yearsQUANTITY

0.99+

Last yearDATE

0.99+

Erik Porter BradleyPERSON

0.99+

AlibabaORGANIZATION

0.99+

41%QUANTITY

0.99+

SnowflakeORGANIZATION

0.99+

MarsORGANIZATION

0.99+

DellORGANIZATION

0.99+

40%QUANTITY

0.99+

30%QUANTITY

0.99+

NetskopeORGANIZATION

0.99+

oneQUANTITY

0.99+

BostonLOCATION

0.99+

GrafanaORGANIZATION

0.99+

63%QUANTITY

0.99+

Arctic WolfORGANIZATION

0.99+

167 billionQUANTITY

0.99+

SlootmanPERSON

0.99+

two companiesQUANTITY

0.99+

35%QUANTITY

0.99+

34%QUANTITY

0.99+

SnykORGANIZATION

0.99+

70%QUANTITY

0.99+

FloridaLOCATION

0.99+

Palo AltoLOCATION

0.99+

4%QUANTITY

0.99+

GreylockORGANIZATION

0.99+

Walton Smith, World Wide Technology | AWS re:Invent 2021


 

(upbeat music) >> Welcome back to Las Vegas. theCUBE is here, live at AWS re:Invent 2021. Lisa Martin with Dave Nicholson. theCUBE has two sets today, two, not one, two, two live sets, two remote sets, over 100 guests on the program at this event, it's a lot, talking about the next generation of cloud innovation with AWS and its massive ecosystem of partners and we are pleased to welcome Walton Smith to the program, the public sector, director of strategic partnerships for Worldwide Technology, Walton welcome to the program. >> Thank you so much for having me, it's really amazing to be here and look forward to a great conversation. Isn't it great to be in person again? >> It's so nice to be in person, I mean I'm glad everybody's being safe and, and checking vaccine status and whatnot, but it's good to get back and, and, and work with people cause we can really drive innovation when, when we get together. >> Those hallway conversations or those conversations here at events that you just can't replicate by video conferencing, right? Not replicate that, you getting grabbed in the hall and say, hey, have you thought about leveraging XYZ to do something? To me that's what makes this conference great. >> Talk to me about what's going on at WWT. What are some of the, the things that you guys have been working on? >> It's a really exciting time at Worldwide, we're really working closely with AWS to drive innovation to the edge. We're excited about their outpost offering, we actually have one in our data center, Sandy announced it today in a partnership with Intel to, to allow our customers to try to work out use cases, to, to kick the tires, so to speak, to see how it works as well as our partners to get their ISV products certified on the outpost platform. >> So I'm familiar with your ATC in St. Louis, is that what you're referring to? >> That's correct. >> Give us a little, give us a little insight into what goes on there, I know it's pretty amazing from a customer perspective because you are agnostic. because you are agnostic. >> Walton: Correct. >> You're there to serve the customer, but tell me, tell me what happens in the ATC. >> We say we're agnostic, but we have our, our, our preferences because we know- >> sure, sure, okay. what actually works. But our ATC is our crown jewel, it's about a $600 million data center that we built solely for proof of concepts for our customers. So our, our top customers come in and say, I have this problem, how can I solve it? And so with us being the single biggest reseller of just about every ISV is out there, I can stand up a, a, a Dell, I can stand up a, a, a Dell, Dell compute next to NetApp storage with Cisco router on top of it to replicate what my customer has at the VA, for example, and then to be able to plug in an outpost to show how leveraging the outpost can give them a single pane of glass to be able to work on their workload, so the training that our FSI, Federal System Integrators have put into their staff or our government customers on the Amazon platform can now be driven into their data center, so it's really taking the cloud down to where the data is. >> In terms of public sector, what are some of the prominent use cases that you guys are helping customers to solve, especially given the tumultuous times that we're still living in? Sure, so what we saw during COVID especially was how most of the government agencies had the capability to allow say 5% to 10% of their workforce to work remotely. And then with COVID, they went to 95% to a 100% workforce. So, a lot of the time we've spent over the last year is how do we securely allow our government employees to get access to the information, because as we know, the government was more valuable than ever to get us through this pandemic, we had to give them the tools that they needed to be able to make the decisions to, to move the country forward. >> Talk about security if you will for a second, we have seen such a dramatic change in the security landscape, the threat landscape, ransomware as a service, it's, you know, the cyber criminals, lot of money in it, they're becoming far more brazen. What are some of the things that you're seeing specifically with respect to security use cases? >> It's, it's gone from, let me just buy everything that's out there and that'll give me security to, I need to have visibility into my environment, because if, if you look at target, it's a great case studies around that, they had all the tools, they just didn't tie it all together. And so as more and more nation state actors And so as more and more nation state actors try to attack our government, or it's a great way to make money, I mean, in, in this, in the presentation, Sandy's today, they talked about, if you looked at the GDP of what's been taken in ransomware, it's like the 10th biggest country in the world, I mean, it's scary and staggering how much money is lost. So what we think, going back to our ATC, we can stand up their environment, we can work with the top security providers in the world to show those customers how we can give them that visibility, the, the, the protection and the ability to get back up, because there's really only two types of organizations, those who've been hacked and those who don't know they've been hacked, they're going to get in, it's how do we mitigate the damage, how do we get them back up and running and how we protect my customers or have some of the most sensitive data in the world, how do we protect that so our government can keep us safe and keep us moving forward. >> Yeah, cause these days it's a matter of when we get hacked, not if. And of course we are only hearing about the large attacks. >> Walton: Correct. We don't hear about- all of the ones that go on day in and day out, I think, I think I saw a stat recently that a ransomware attack happens like once every 11 seconds. >> Correct, I mean, just walking through here, how many text messages you've gotten? You want a free iPad click here, I mean, they're, they're down to the individual level. It's a whole lot cheaper to give a couple people, really powerful laptops, pizza and beer, and have them go attack, than it is to, to set up a real business and so, unfortunately, as long as there's money in it, there's going to be bad actors out there. We think partnering with AWS and other partners can help build solutions. >> You know, WWT has had an interesting history because you didn't start with the dawn of cloud. >> Walton: Right. So you've been in the business of AT for a long time So you've been in the business of AT for a long time and logistics out of St. Louis in a lot of ways. What does that look like in terms of navigating that divide? You know, there's a, there's a whole storied history of companies that were not able to cross the divide from the mainframe era to the client server era, let alone to cloud. You seem to have, you seem to be doing that pretty well. >> I, I appreciate that, I mean, we're the biggest company no one's ever heard of. We're 14, $15 billion privately held firm, the same two guys that founded it, still run it today and all they want to do is do cool things, they want it to be truly the best place to work. So from day one, they've invested in training our staff, building the ATC to give us the tools we need to be successful and then because we're a trusted partner with Amazon Intel and our other partners out there, they're investing in us to help build solutions, so we have over 6,000 engineers, they get up every day, how do I build something that can help our customers really drive change and innovation? So it's been a really fun ride and the, the best is yet to come. >> Talk to me about your customer focus, you know, when we talk, here we are at reinvent, we always talk with AWS about their, you know, Dave, we talked about this customer obsession, the fact that they're working backwards from the customer, do you share that sort of philosophy? Does WWT share that philosophy with AWS? >> 100%?, if you go to WWT.com we've published everything that we have so you can get full access to our lab to learn about x ISV and go deep to learn about x ISV and go deep and see the million and a half labs we've built around, say Red Hat and go and get access to it. So we think that if we educate our customers, there are going to be customers for life, and they're going to come to us with their biggest problems. And that what's, is what's exciting and what enables us to, to really continue to grow. >> And how did the customers help you innovate? And that's one of the things we, I was thinking yesterday with, with this AWS flywheel of when Adam was introducing, and now we have a, now we have, and it was because he would say, we did this, but you needed more, but you being the customer needed more. >> 100%, it, it's we want our customers to come to us with their biggest problems, because that's when we, the exciting innovation works. And so the ability to sit down with the foremost expert in, in virus control and be able to, in, in virus control and be able to, what are the tools that she need to be able to get ahead of the next change to COVID? How can we give them the tools to do that? That's what we want to do, the scalability, the ability to reach out to others is what Amazon brings. So we can bring the data science, we can bring the understanding of the storage, the security, and the network and then AWS gives that limitless scalability to solve those problems and to bring in someone from Africa, to bring in someone from the European Union to, to work together to solve those problems, that's what's, what's exciting and then coming back to the outpost, to be able to put that in the data center, we know the data center is better than just about anybody out there, so it would be the ability to add innovation to them, to bring those part ISV partners together. It's really exciting that Intel is funding it because they know that if, if customers can see the art of the possible, they're going to push that innovation. >> One of the things we've also sort of thematically Dave and I with guests, and the other has been talking about this week is that every company has to be a data company, whether it's public sector, private sector, if you're not, or if you're not on your way, there's a competitor right here in the rear view mirror ready to take your place. How do you help public sector organizations really develop, embrace an execute a data full course strategy? >> So we have a cadre of over 125 data scientists that work every day to help organizations unlock their most valuable asset, that data, their people and be able to put the data in the right place at the right time and so by investing in those data scientists, investing in the networking folks to be able to look at the holistic picture is how we can bring those solutions to our customers, because the data is the new oil of, of the environment and sorry for my Southern twang on the oil, but it, but it truly is the most valuable asset they have and so, how do we unlock that? How do they pull that data together, secure it? Because now that you're aggregating all that data, you're making it a treasure trove for those bad actors that are out there, so you've got to secure it, but then to be able to learn and, and automate based on, on what you learned from that data. >> You know I, I think with hindsight, it's easy to, it's easy to say, well, of course WWT is where WWT is today. Five years ago, though, I think it would have been an honest question to ask, how are you going to survive in the world of cloud? And here we are, you've got outposts. >> Walton: Sure. >> And, and of course it makes sense because you're focused on customers, sounds like I'm doing a commercial for you, But I'm a fan- >> I'll gladly apreciate that- because I, I, I've worked with you guys in a variety of roles for a long time, seems like yesterday we were testing a bunch of different storage arrays of the ATC and now you've got outposts in cloud and you're integrating it together. It's really more of the same, I'm sure if we had your founders here, they'd tell you, Dave, it's all the same. >> Walton: Correct. It's all the same. >> It's AT, it's where, where's the compute, where's the storage, how do you get access to it and the cloud has given the ability to, to scale and do things you could never imagine. I think it's the reason we're here is because our leadership continues to invest and pushing that envelope to give people the freedom to go out with that crazy idea, what if we did this? And having the tools and the ability to do that is, is what, what drives our innovation and that's what we bring to our customers and our partners, that ability to innovate to, that ability to innovate to, to tackle that next problem. >> So what's the tip of the spear right now for you guys? What are you, what's, what's, what's kind of, what's next? What are you waiting to have delivered to the ATC to racket, stack and cable up? >> Lot's of stuff that I can't tell you about because there, there's things that Amazon is, is always working on that we work with before it, it's, it's made public, so there's a lot of really cool stuff in the pipeline, because the, as you think about moving to the data center, that's one thing, moving to truly to the edge, where you can help that war fighter, where you can help that mission, where you can do disaster recovery, leveraging the snowball family, the outpost family, and custom built tools that really allow for quick response and custom built tools that really allow for quick response to whatever that problem is, is that next front and that's where we've been for a long time, helping our, our war fighters and folks do what needs to be done. Outpost sees that you can leverage big AWS Outpost sees that you can leverage big AWS to build the models, push it down to the edge because you don't have time or the bandwidth to get it back into the big cloud, to be able to put that compute and storage and analytics on the edge to make real time decisions, is what we have to do to stay relevant and that's where the joint partnership is really exciting. >> It's what you have to do to stay relevant, it's also what your customers need, cause one of the things that we've learned in the pandemic is that real-time data and access to it is no longer, longer a nice to have, this is business critical for everything. >> Correct and even if you have a fat pipe to get it, you need to make real time decisions and if you're in a really sandy space, excuse me, making hard decisions, you've got to get the best information to that soldier when, when they need it to, to save our lives or to save the other people's lives so it's, it's, it's not just a nice to have, it's mission critical. >> It is mission critical, Walton, thank you so much, we're out of time, but thank you for joining Dave and me talking about- >> Really enjoyed it. all the stuff going on with, with worldwide, the partnership with AWS, how you're helping really transform the public sector, we appreciate your time and your insights. >> Thank you so much, have a great conference. >> Thanks, you too. >> Okay, thanks. >> All right, from my buddy, Dave Nicholson, I'm Lisa Martin, you're watching theCUBE, the global leader in live tech coverage. (upbeat music)

Published Date : Dec 3 2021

SUMMARY :

Walton Smith to the program, and look forward to a great conversation. It's so nice to be in person, to do something? the things that you guys to kick the tires, so to speak, is that what you're referring to? because you are agnostic. You're there to serve and then to be able to plug in an outpost had the capability to allow say 5% to 10% What are some of the things the ability to get back up, hearing about the large attacks. all of the ones that go on there's going to be bad actors out there. because you didn't start You seem to have, you seem building the ATC to give and they're going to come to And that's one of the things we, And so the ability to sit has to be a data company, and be able to put the data it's easy to say, well, of It's really more of the same, It's all the same. the ability to do that or the bandwidth to get it to do to stay relevant, to save our lives or to save the partnership with AWS, Thank you so much, the global leader in live tech coverage.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Dave NicholsonPERSON

0.99+

Lisa MartinPERSON

0.99+

WaltonPERSON

0.99+

DavePERSON

0.99+

AWSORGANIZATION

0.99+

AmazonORGANIZATION

0.99+

AfricaLOCATION

0.99+

Las VegasLOCATION

0.99+

twoQUANTITY

0.99+

DellORGANIZATION

0.99+

14, $15 billionQUANTITY

0.99+

CiscoORGANIZATION

0.99+

100%QUANTITY

0.99+

WWTORGANIZATION

0.99+

95%QUANTITY

0.99+

5%QUANTITY

0.99+

two setsQUANTITY

0.99+

iPadCOMMERCIAL_ITEM

0.99+

St. LouisLOCATION

0.99+

two guysQUANTITY

0.99+

FSIORGANIZATION

0.99+

10%QUANTITY

0.99+

Walton SmithPERSON

0.99+

two remote setsQUANTITY

0.99+

AdamPERSON

0.99+

St. LouisLOCATION

0.99+

yesterdayDATE

0.99+

oneQUANTITY

0.99+

IntelORGANIZATION

0.99+

Five years agoDATE

0.99+

two live setsQUANTITY

0.98+

two typesQUANTITY

0.98+

ATORGANIZATION

0.98+

over 6,000 engineersQUANTITY

0.98+

over 100 guestsQUANTITY

0.98+

OutpostORGANIZATION

0.98+

Federal System IntegratorsORGANIZATION

0.97+

todayDATE

0.97+

over 125 data scientistsQUANTITY

0.96+

Amazon IntelORGANIZATION

0.96+

million and a half labsQUANTITY

0.95+

last yearDATE

0.95+

singleQUANTITY

0.95+

pandemicEVENT

0.95+

one thingQUANTITY

0.94+

OneQUANTITY

0.93+

COVIDEVENT

0.93+

single paneQUANTITY

0.91+

WorldwideORGANIZATION

0.9+

10th biggest countryQUANTITY

0.9+

WWT.comORGANIZATION

0.89+

outpostORGANIZATION

0.89+

Red HatTITLE

0.89+

x ISVTITLE

0.87+

thingsQUANTITY

0.85+

this weekDATE

0.83+

InventEVENT

0.82+

about a $600 millionQUANTITY

0.81+

Clayton Coleman, Red Hat | KubeCon + CloudNative Con NA 2021


 

>>welcome back everyone to the cube con cloud, David Kahn coverage. I'm john for a host of the cube, we're here in person, 2020 20 a real event, it's a hybrid event, we're streaming live to you with all the great coverage and guests coming on next three days. Clayton Coleman's chief Hybrid cloud architect for Red Hat is joining me here to go over viewers talk but also talk about hybrid cloud. Multi cloud where it's all going road red hats doing great to see you thanks coming on. It's a pleasure to be >>back. It's a pleasure to be back in cuba con. >>Uh it's an honor to have you on as a chief architect at Red Hat on hybrid cloud. It is the hottest area in the market right now. The biggest story we were back in person. That's the biggest story here. The second biggest story, that's the most important story is hybrid cloud. And what does it mean for multi cloud, this is a key trend. You just gave a talk here. What's your take on it? You >>know, I, I like to summarize hybrid cloud as the answer to. It's really the summarization of yes please more of everything, which is, we don't have one of anything. Nobody has got any kind of real footprint is single cloud. They're not single framework, they're not single language, they're not single application server, they're not single container platform, they're not single VM technology. And so, um, and then, you know, looking around here in this, uh, partner space where eight years into kubernetes and there is an enormous ecosystem of tools, technologies, capabilities, add ons, plug ins components that make our applications better. Um the modern application landscape is so huge that I think that's what hybrid really is is it's we've got all these places to run stuff more than ever and we've got all this stuff to run more than ever and it doesn't slow down. So how do we bring sanity to that? How do we understand it? Bring it together and companies has been a big part of that, like it unlocked some of that. What's the next step? >>Yeah, that's a great, great commentary. I want to take into the kubernetes piece but you know, as we've been reporting the digital transformation at all time, high speed is the number one request. People want to go faster, not just speeds and feeds, but like ship code fast to build apps faster. Make it all run faster and secure. Okay, check, get that. Look what we were 15, 15 years ago, 10 years ago, five years ago, 2016. The first coupe con in Seattle we were there for small events kubernetes, we gotta sell it, figure it out. Right convince people >>that it's a it's worth >>it. Yeah. So what's your take on that? Well, I mean, it's mature, it's kind of de facto standard at this point. What's missing. Where is it? >>So I think Kubernetes has succeeded at the core mission which is helping us stop worrying about all the problems that we spent endless amounts of time arguing about, how do I deploy software, How do I roll it out? But in the meantime we've added more types of software. You know, the rise of ai ml um you know, the whole the whole ecosystem around training software models like what is a what is an Ai model? Is it look like an application, does it look like a job? It's part batch, part service. Um It's spread out to the edge. We've added mobile devices. The explosion in mobile computing over the last 10 years has co evolved. And so kubernetes succeeded at that kind of set a floor for what everybody thought was an application. And in the meantime we've added all these other parts of the application. >>It's funny, you know, David Anthony, we're talking about what's to minimum and networks at red hat will be on later. Back in the first two cubicles were like, you know, this is like a TCP I P moment, the Os I model that was a killer part of the stack. Now it was all standardized below TCP I. P. Company feels like a similar kind of construct where it's unifying, is creating some enablement, It's enabling some innovation and it kind of brought everyone together at the same time everyone realized that that's real, >>the whole >>cloud native is real. And now we're in an era now where people are talking about doing things that are completely different. You mentioned as a batch job house ai new software paradigm development paradigms, not to suffer during the lifecycle, but just like software development in general is impacted. >>Absolutely. And you know, the components like, you know, we spent a lot of time talking about how to test and build application, but those are things that we all kind of internalized now we we have seen the processes is critical because it's going to be in lots of places, people are looking to standardize. But sometimes the new technology comes up alongside the side, the thing we're trying to standardize, we're like, well let's just use the new technology instead function as a service is kind of uh it came up, you know, kubernetes group K Native. And then you see, you know, the proliferation of functions as a service choices, what do people use? So there's a lot of choice and we're all building on those common layers, but everybody kind of has their own opinions, everybody's doing something subtly different. >>Let me ask you your opinion on on more under the Hood kind of complexity challenge. There's general consensus in the industry that does a lot of complexity. Okay, you don't mean debate that, but that's in a way, a good thing in the sense if you solve that, that's where innovation comes in. So the goal is to solve complexity, abstract out of the heavy lifting under heavy living in Sandy Jackson. And I would say, or abstract away complexity make things easier to use >>Well and an open source and this ecosystem is an amazing um it's one of the most effective methods we've ever found for trying every possible solution and keeping the five or six most successful and that's a little bit like developers, developers flow downhill, developers are going to do, it's easy if it's easier to put a credit card in and go to the public cloud, you're gonna do it if you can take control away from the teams at your organization that are there to protect you, but maybe aren't as responsive as you like. People will, people will go around those. And so I think a little bit of what we're trying to do is what are the commonalities that we could pick out of this ecosystem that everybody agrees on and make those the downhill path that people follow, not putting a credit card into a cloud, but offering a way for you not to think about what clouds are on until you need to write, because you want to go to the fridge is a developer, you wanna go the fridge, pull out your favorite brand of soda, that favorite band Isoda might have an AWS label also >>talk about the open shift and the Kubernetes relationship, you guys push the boundaries. Um Den is being controlled playing and nodes, these are things that you talked about in your talk, talk about because you guys made some good bets on open shift, we've been covering that, how's that playing out now? It's a relationship now >>is interesting coming into kubernetes, we came in from the platform as a service angle, right, Platform as a service was the first iteration of trying to make the lowest cost path for developers to flow to business value um and so we added things on top of kubernetes, we knew that we were going to complex, so we built in a little bit um in our structure and our way of thinking about cube that it was never going to be just that basic bare bones package that you're gonna have to make choices for people that made sense. Ah obviously as the ecosystems grown, we've tried to grow with it, we've tried to be a layer above kubernetes, we've tried to be a layer in between kubernetes, we've tried to be a layer underneath kubernetes and all of these are valid places to be. Um I think that next step is we're all kind of asking, you know, we've got all this stuff, are there any ways that we can be more efficient? So I like to think about practical benefits, what is a practical benefit That a little bit of opinion nation could bring to this ecosystem and I think it's around applications, it's being application centric, it's what is a team, 90% of the time need to be successful, they need a way to get their code out, they need to get it to the places that they wanted to be, and that place is everywhere. It's not one cloud or on premises or a data center, it's the edge, it's running as a lambda. It's running inside devices that might be being designed in this very room today. >>It's interesting. You know, you're an architect, but also the computer science industry is the people who were trained in the area are learning. It's pretty fascinating and almost intoxicating right now in this this market because you have an operating system, dynamic systems kind of programming model with distributed cloud, edge on fire, that's only gonna get more complicated with 5G and high density data applications. Um and then you've got this changing modal mode of operations were programming with bots and Ai and machine learning to new things, but it's kind of the same distributed computing paradigm. Yeah. What's your reaction to that? >>Well, and it's it's interesting. I was kind of described like layers. We've gone from Lenox replaced proprietary UNIX or mainframe to virtualization, which, and then we had a lot of Lennox, we had some windows too. And then we moved to public cloud and private cloud. We brought config management and moved to kubernetes, um we still got that. Os at the heart of what we do. We've got, uh application libraries and we've shared services and common services. I think it's interesting like to learn from Lennox's lesson, which is we want to build an open expansive ecosystem, You're kind of like kind of like what's going on. We want to pick enough opinion nation that it just works because I think just works is what, let's be honest, like we could come up with all the great theories of what the right way computers should be done, but it's gonna be what's easy, what gets people help them get their jobs done, trying to time to take that from where people are today on cube in cloud, on multiple clouds, give them just a little bit more consolidation. And I think it's a trick people or convince people by showing them how much easier it could be. >>You know, what's interesting around um, what you guys have done a red hat is that you guys have real customers are demanding, you have enterprise customers. So you have your eye on the front edge of the, of the bleeding edge, making things easier. And I think that's good enough is a good angle, but let's, let's face it, people are just lifting and shifting to the cloud now. They haven't yet re factored and re factoring is a concept of taking what you're doing in the cloud of taking advantage of new services to change the operating dynamic and value proposition of say the application. So the smart money is all going there, seeing the funding come into applications that are leveraging the new platform? Re platform and then re factoring what's your take on that because you got the edge, you have other things happening. >>There are so many more types of applications today. And it's interesting because almost all of them start with real practical problems that enterprises or growing tech companies or companies that aren't tech companies but have a very strong tech component. Right? That's the biggest transformation the last 15 years is that you can be a tech company without ever calling yourself a tech company because you have a website and you have an upset and your entire business model flows like that. So there is, I think pragmatically people are, they're okay with their footprint where it is. They're looking to consolidate their very interested in taking advantage of the scale that modern cloud offers them and they're trying to figure out how to bring all the advantages that they have in these modern technologies to these new footprints and these new form factors that they're trying to fit into, whether that's an application running on the edge next to their load bouncer in a gateway, in telco five Gs happening right now. Red hat's been really heavily involved in a telco ecosystem and it's kubernetes through and through its building on those kinds of principles. What are the concepts that help make a hybrid application, an application that spans the data flowing from a device back to the cloud, out to a Gateway processed by a big data system in a private region, someplace where computers cheap can't >>be asylum? No, absolutely not has to be distributed non siloed based >>and how do we do that and keep security? How do we help you track where your data is and who's talking to whom? Um there's a lot of, there's a lot of people here today who are helping people connect. I think that next step that contact connectivity, the knowing who's talking and how they're connecting, that'll be a fundamental part of what emerges as >>that's why I think the observe ability to me is the data is really about a data funding a new data sector of the market that's going to be addressable. I think data address ability is critical. Clayton really appreciate you coming on. And giving a perspective an expert in the field. I gotta ask you, you know, I gotta say from a personal standpoint how open source has truly been a real enabler. You look at how fast new things could come in and be adopted and vetted and things get kicked around people try stuff that fails, but it's they they build on each other. Right? So a I for example, it's just a great example of look at what machine learning and AI is going on, how fast that's been adopted. Absolutely. I don't think that would be done in open source. I have to ask you guys at red hat as you continue your mission and with IBM with that partnership, how do you see people participating with you guys? You're here, you're part of the ecosystem, big player, how you guys continue to work with the community? Take a minute to share what you're working on. >>So uh first off, it's impossible to get anything done I think in this ecosystem without being open first. Um and that's something the red at and IBM are both committed to. A lot of what I try to do is I try to map from the very complex problems that people bring to us because every problem in applications is complex at some later and you've got to have the expertise but there's so much expertise. So you got to be able to blend the experts in a particular technology, the experts in a particular problem domain like the folks who consult or contract or helped design some of these architectures or have that experience at large companies and then move on to advise others and how to proceed. And then you have to be able to take those lessons put them in technology and the technology has to go back and take that feedback. I would say my primary goal is to come to these sorts of events and to share what everyone is facing because if we as a group aren't all working at some level, there won't be the ability of those organizations to react because none of us know the whole stack, none of us know the whole set of details >>And this text changing too. I mean you got to get a reference to a side while it's more than 80s metaphor. But you know, but that changed the game on proprietary and that was like >>getting it allows us to think and to separate. You know, you want to have nice thin layers that the world on top doesn't worry about below except when you need to and below program you can make things more efficient and public cloud, open source kubernetes and the proliferation of applications on top That's happening today. I >>mean Palmer gets used to talk about the hardened top when he was the VM ware Ceo Back in 2010. Remember him saying that he says she predicted >>the whole, we >>call it the mainframe in the cloud at the time because it was a funny thing to say, but it was really a computer. I mean essentially distributed nature of the cloud. It happened. Absolutely. Clayton, thanks for coming on the Cuban sharing your insights appreciate. It was a pleasure. Thank you. Right click here on the Cuban john furry. You're here live in L A for coupon cloud native in person. It's a hybrid event was streaming Also going to the cube platform as well. Check us out there all the interviews. Three days of coverage, we'll be right back Yeah. Mm mm mm I have

Published Date : Oct 13 2021

SUMMARY :

I'm john for a host of the cube, we're here in person, It's a pleasure to be back in cuba con. Uh it's an honor to have you on as a chief architect at Red Hat on hybrid cloud. And so, um, and then, you know, looking around here in this, I want to take into the kubernetes piece but you know, as we've been reporting the digital transformation Well, I mean, it's mature, it's kind of de facto standard at this point. And in the meantime we've added all these other parts of the application. Back in the first two cubicles were like, you know, this is like a TCP I P moment, the Os I model that development paradigms, not to suffer during the lifecycle, but just like software development in general And you know, the components like, you know, we spent a lot of time talking about So the goal is to solve complexity, abstract out of the heavy lifting to think about what clouds are on until you need to write, because you want to go to the fridge is a developer, you wanna go the fridge, talk about the open shift and the Kubernetes relationship, you guys push the boundaries. Um I think that next step is we're all kind of asking, you know, we've got all this stuff, you have an operating system, dynamic systems kind of programming model with distributed cloud, and moved to kubernetes, um we still got that. You know, what's interesting around um, what you guys have done a red hat is that you guys have real customers are demanding, you have an upset and your entire business model flows like that. How do we help you track where your data is and who's talking to whom? I have to ask you guys at red hat as And then you have to be able to take those lessons put I mean you got to get a reference to a side while it's more than 80s metaphor. that the world on top doesn't worry about below except when you need to and below program you can make Remember him saying that he says she predicted I mean essentially distributed nature of the cloud.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
fiveQUANTITY

0.99+

IBMORGANIZATION

0.99+

David KahnPERSON

0.99+

David AnthonyPERSON

0.99+

ClaytonPERSON

0.99+

Red HatORGANIZATION

0.99+

2010DATE

0.99+

Red HatORGANIZATION

0.99+

SeattleLOCATION

0.99+

LenoxORGANIZATION

0.99+

sixQUANTITY

0.99+

Clayton ColemanPERSON

0.99+

90%QUANTITY

0.99+

AWSORGANIZATION

0.99+

eight yearsQUANTITY

0.99+

K NativeORGANIZATION

0.99+

five years agoDATE

0.99+

LennoxORGANIZATION

0.99+

PalmerPERSON

0.99+

firstQUANTITY

0.99+

todayDATE

0.99+

KubeConEVENT

0.99+

telcoORGANIZATION

0.99+

10 years agoDATE

0.98+

Sandy JacksonPERSON

0.98+

Three daysQUANTITY

0.98+

first two cubiclesQUANTITY

0.98+

UNIXTITLE

0.98+

oneQUANTITY

0.98+

IsodaORGANIZATION

0.97+

red hatsORGANIZATION

0.97+

five GsCOMMERCIAL_ITEM

0.97+

bothQUANTITY

0.97+

redORGANIZATION

0.96+

CloudNative ConEVENT

0.96+

more than 80sQUANTITY

0.96+

2016DATE

0.95+

johnPERSON

0.95+

CubanOTHER

0.94+

15 years agoDATE

0.93+

first iterationQUANTITY

0.92+

15DATE

0.91+

single languageQUANTITY

0.88+

single cloudQUANTITY

0.85+

KubernetesORGANIZATION

0.84+

last 15 yearsDATE

0.84+

one cloudQUANTITY

0.83+

NA 2021EVENT

0.82+

last 10 yearsDATE

0.81+

TCP I. P.ORGANIZATION

0.8+

singleQUANTITY

0.78+

second biggest storyQUANTITY

0.73+

single frameworkQUANTITY

0.7+

CeoCOMMERCIAL_ITEM

0.7+

john furryPERSON

0.69+

HoodPERSON

0.68+

lot of peopleQUANTITY

0.67+

red hatORGANIZATION

0.66+

hatORGANIZATION

0.66+

2020 20DATE

0.59+

cubaEVENT

0.59+

one requestQUANTITY

0.58+

threeQUANTITY

0.57+

daysDATE

0.52+

coupeEVENT

0.45+

5GOTHER

0.44+

DenPERSON

0.41+

con.LOCATION

0.4+

conEVENT

0.37+

cubeORGANIZATION

0.34+

2021 095 Kit Colbert VMware


 

[Music] welcome to thecube's coverage of vmworld 2021 i'm lisa martin pleased to welcome back to the program the cto of vmware kit kohlberg welcome back to the program and congrats on your new role thank you yeah i'm really excited to be here so you've been at vmware for a long time you started as an intern i read yeah yeah it's been uh 18 years as a full-timer but i guess 19 if you count my internship so quite a while it's many lifetimes in silicon valley right many lifetimes in silicon valley well we've seen a lot of innovation from vmware in its 23 years you've been there the vast majority of that we've seen a lot of successful big tech waves ridden by vmware in april vmware pulled tanzu and vmware cloud foundation together vmware cloud you've got some exciting news with respect to that what are you announcing today well we got a lot of exciting announcements happening at vmworld this week but one of the ones i'm really excited about is vmware cloud with tons of services so let me talk about what these things are so we have vmware cloud which is really us taking our vmware cloud foundation technology and delivering that as a service in partnership with our public cloud providers but in particular this one with aws vmware cloud on aws we're combining that with our tanzu portfolio of technologies and these are really technologies focused at developers at folks driving devops building and operating modern applications and what we're doing is really bringing them together to simplify customers moving from their data centers into the cloud and then modernizing their applications it's a pattern that we see very very often this notion of migrate and then modernize right once you're on a modern cloud infrastructure makes it much easier to modernize your applications talk to me about some of the catalysts for this change and this offering of services was it you know catalyzed by some of the events we've seen in the world in the last 18 months and this acceleration of digital adoption yeah absolutely and we saw this across our customer base across many many different industries although as you can imagine those industries that that were really considered essential uh were the ones where we saw the biggest sorts of accelerations we saw a tremendous amount of people needing to support remote workers overnight right and cloud is a perfect use case for that but the challenge a lot of customers had was that they couldn't take the time to retool that they had to use what they already had and so something like vmware cloud was perfect for that because it allowed them to take what they were doing on-prem and seamlessly extend it into the cloud without any changes able to do that you know almost overnight right but at the same time what we also saw was the acceleration of their digital transformation people are now online they're needing to interact with an app over their phone to get something you know remotely delivered or to schedule maybe um an appointment for their pet because you know a lot of people got pets during the pandemic and so you just saw this rush toward digitization and these new applications need to be created and so as customers move their application estate into the cloud with vmware cloud and aws they then had this need to modernize those applications to be able to deliver them faster to respond fast to the very dynamic nature of what was happening during the pandemic so let's talk about uh some of the opportunities and the advantages that vmware cloud with tanzania service is going to deliver to those it admins who have to deliver things even faster yep so let me talk a bit about the tech and then talk about how that fits into uh what the users will experience so vmware cloud with tons of services is really two key components uh the first of which is the tanzu kubernetes grid service the tkg service as we call it so what this is is actually a deep integration of tonsil kubernetes grid with vmware cloud and and the kubernetes we've actually integrated into vmware cloud foundation folks who are familiar with vmware may remember that a couple of years ago we announced project pacific which was a deep integration of kubernetes into vsphere essentially enabling vsphere to have a kubernetes interface to be natively kubernetes and what that did was it enabled the i.t admins to have direct insight inside of kubernetes clusters to understand what was happening in terms of the containers and pods that that their developers were running it also allowed them to leverage uh their existing vsphere and vmware cloud foundation tooling on those workloads so fast forward today we we have this built in now and what we're doing is actually offering that as a service so that the customer doesn't need to deal with managing it installing it updating any of that stuff instead they can just leverage it they can start creating kubernetes clusters and upstream conformant kubernetes clusters to allow their developers to take advantage of those capabilities but also be able to use their native tooling on it so i think that's really really important is that the it admin really can enable their developers to seamlessly start to build and operate modern applications on top of vmware cloud got it and talk to me about how this is going to empower those it admins to become kubernetes operators yeah well i think that's exactly it you know we talk to a lot of these admins and and they're seeing the desire for kubernetes uh from their lines of business from you know from the app teams and the idea is that when you look start looking at the kubernetes ecosystem there's a whole bunch of new tooling and technology out there we find that people have to spend a lot of time figuring out what the right thing to use is and for a lot of these folks they say hey i've already figured out how to operate applications in production i've got the tooling i've got the standardization i got things like security figured out right super important and so the real benefit of this approach and this deep integration is it allows them to take those those tools those operational best practices that they already have and now apply them to these new workloads fairly seamlessly and so this is really about the power of leveraging all the investments they've made to take those forward with modern applications and the total adjustable market here is pretty big i heard your cto referring to that in an interview in september and i was looking at some recent vmware survey numbers where 80 of customers say they're deploying applications in highly distributed environments that include their own data center multiple clouds uh edge and also customers said hey 90 of our application initiatives are focused on modernization so vmware clearly sees the big tam here yeah it's absolutely massive um you know we see uh many customers the vast majority something like 75 percent are using multiple clouds or on-prem in the cloud we have some customers using even more than that and you see this very large application estate that's spread out across this and so you know i think what we're really looking at is how do we enable uh the right sorts of consistency both from an infrastructure perspective enabling things like security but also management across all these environments and by the way it's another exciting thing neglected to mention about this announcement vmware cloud with tonsil services not only includes the tonsil kubernetes grid service giving you that sort of kubernetes uh cluster as a service if you will but it also includes tons of mission control essentials and this is really the next generation of management when you start looking at modern applications and what tons of mission control focuses on is enabling managing kubernetes consistently across clouds and so this is the other really important point is that yes we want to make vmware cloud vmware cloud infrastructure the best place to build and operate applications especially modern ones but we also realize that you know customers are doing all sorts of things right they're in the native cloud whether that's aws or azure or google and they want ways of managing more consistently across all these environments in addition to their vmware environments both in the cloud and on-prem and so tons of mission control really enables that as well and that's another really powerful aspect of this is that it's built in to enable that next level of administration and management that consistency is critical right i mean that's probably one of the biggest benefits that customers are getting is that familiarity with the console the consistency of being able to manage so that they can deploy apps faster um that as businesses are still pivoting and changing direction in light of the pandemics i imagine that that is a huge uh from a business outcomes perspective the workforce productivity there is probably pretty pretty big yeah and i think it's also about managing risk as well you know one of the the biggest worries that we hear from many of the cios uh ctos executives that we talk to at our customers is this uh software supply chain risk like what is it exactly like what are the exact bits that they're running out there right in their applications because the reality is that um those apps are composed of many open source technologies and you know as we saw with solarwinds it's very possible for someone to get in and you know plant malicious code into their source repository such that as it gets built and flows out it'll you know just go out and customers will start using it and it's a huge huge security vulnerability and one thing on that note that customers are particularly worried about is the lack of consistency across their cloud environments that because things are done different ways and the different teams have different processes across different clouds it's easy for small mistakes to creep in there for little openings right that a hacker might be able to go and exploit and so i think this gets back to that notion of consistency and that you're right it's great for productivity but the one i think that's almost in some ways you might say uh for many of these folks more important for is from a security standpoint that they can validate and ensure they're in compliance with their security standards and by the way you know this is uh for most companies a board level discussion right the board is saying hey like do we have the right controls in place because it is um such an important thing and such a critical risk factor it is a critical risk factor we saw you mentioned solar winds but just in the last 18 months the the massive changes to the threat landscape the huge rise in ransomware and ddos attacks you know we had this scatterer everybody went home and you've got you know the edge is booming and you've got folks using uh you know not using their vpns and things when they should be so that the fact that that's a board level discussion and that this is going to help from a risk mitigation perspective that consistency that you talked about is huge i think for a customer in any industry yep yeah and it's pretty interesting as well like you mentioned ransomware so we're doing some work on that one as well actually not specifically with this announcement but it's another vmware cloud service that plugs into this uh seamlessly vmware cloud disaster recovery and one of the really cool features that we're announcing at vmworld this week is the ability to actually support and and maybe uh handle ransomware attacks and so the idea there is that if you do get compromised and what typically happens is that the hackers come in and they encrypt you know some of your data and they say hey if you want to get access to it you got to pay us and we'll decrypt it for you but if you have the right dr solution um that's backing up on a fairly continuous basis it means that whatever data might be encrypted you know would only be a small delta like the last let's say hour or two of data right and so what we're looking at is leveraging that dr solution to be able to very rapidly restore specific individual files uh that may have been compromised and so this is like one way that we're helping customers deal with that like obviously we want to put a whole bunch of other security protections in place and we do when we enable them to do that but one thing when you think about security is that it's very much defense in depth that you have multiple layers of the fail-safes there and so this one being kind of like the end result that hackers do get in they do manage to compromise it they do manage to get a hold of it and encrypt it well you still got unencrypted backups that you control and that you have um a very clean delineation and separation from just like kind of an architectural standpoint that the hackers won't be able to get at right so that you can control that and restore it so again you know this is something very top of mind for us and it's funny because we don't always lead with the security angle maybe we should as i'm saying it here but uh but it's something that's very very top of mind for a lot of our customers it's something that's also top of mind for us and that we're focused on it is because it's no longer if we get attacked it's one and they've got to be able to have the right recovery strategy so that they don't have to pay those ransoms and of course we only hear about the big ones like the solar winds and the colonial pipelines and there's many more going on when i get back to vmware cloud with tanzania services talk to me about how this fits into vmware's bigger picture yeah yeah yeah great question thanks for bringing me back i'd love to geek out on some of these things so um but when you take a step back so what we're really doing uh with vmware cloud is trying to provide this really powerful infrastructure layer uh that is available anywhere customers want to run applications and that could be in the public cloud it could be in the data center it could be at the edge it could be at all those locations and you know you mentioned edge earlier and i think we're seeing explosive growth there as well and so what we're really doing is driving uh broad optionality in terms of how customers want to adopt these technologies and then as i said we're sort of you know we're kind of going broad many locations we're also building up in each of those locations this notion of ponzu services being seamlessly integrated in doing that uh you know starting now with vmware cloud aws but expanding that to every every location that we have in addition you know we're also really excited another thing we're announcing this week called project arctic now the idea with arctic is really to start driving more choice and flexibility into how customers consume vmware cloud do they consume it as software or as a service and where do they do that so traditionally the only way to get it delivered as a service would be in the public cloud right vmware cloud aws you can click a few buttons and you get a software defined data center set up for you automatically now traditionally on-prem we haven't had that we we did do something pretty powerful uh a year or two back with the release of vmware cloud on dell emc we can deliver a service there but that often required new hardware you know new setup for customers and customers are coming back to us and saying hey like we've got these really large vsphere deployments how do we enable them to take advantage of all this great vmware cloud functionality from where they are today right they say hey we can't rebuild all these overnight but we want to take advantage of vmware cloud today so that's what really what project arctic is focused on it's focused on connecting into these brownfield existing vsphere environments and delivering some of the vmware cloud benefits there things like being able to easily well first of all be able to manage those environments through the vmware cloud console so now you have one place where you can see your on-prem deployments your cloud deployments everything being able to really easily move uh applications between on-prem and the cloud leveraging some of the vmware cloud disaster recovery capabilities i just mentioned like the ransomware example you can now do that even on prem as well because keep in mind it's people aren't attacking you know the hackers aren't attacking just the public cloud they're attacking data centers or anywhere else where these applications might be running and so arctic's a great example of where we're saying hey there's a bunch of cool stuff happening here but let's really meet customers where they're at and many of our customers still have a very large data center footprint still want to maintain that that's really strategic for them or as i said may even want to be extending to the edge so it's really about giving them more of that flexibility so in terms of meeting customers where they are i know vmware has been focused on that for probably its entire history we talk about that on the cube in every vmworld where can customers go like what's the right starting point is this targeted for vmware cloud on aws current customers what's kind of the next steps for customers to learn more about this yeah absolutely so there's a bunch of different ways so first of all there's a tremendous amount of activity happening here at vmworld um just all sorts of breakout sessions like you know detailed demos like all sorts of really cool stuff just a ton of content i'm actually kind of i'm in this new role i'm super excited about it but one thing i'm kind of bummed out about is i don't have as much time to go look at all these cool sessions so i highly recommend going and checking those out um you know we have hands-on labs as well which is another great way to test out and try vmware products so hold.vmware.com uh you can go and spin those things up and just kind of take them for a test drive see what they're all about and then if you go to vmc.vmware.com that is vmware cloud right we want to make it very easy to get started whether you're in just a vsphere on-prem customer or whether you already have vmware cloud and aws what you can see is that it's really easy to get started in that there's a ton of value-add services on top of our core infrastructure so it's all about making it accessible making it easy and simple to consume and get started with so there's a ton of options out there and i highly recommend folks go and check out all the things i just mentioned excellent kit thank you for joining me today talking about vmware cloud with tons of services what's new what's exciting the opportunities in it for customers from the i.t admin folks to be empowered to be kubernetes operators to those businesses being able to do essential services in a changing environment and again congratulations on your promotion that's very exciting awesome thank you lisa thank you for having me our pleasure for kit colbert i'm lisa martin you're watching thecube's coverage of vmworld 2021 [Music] you

Published Date : Oct 1 2021

SUMMARY :

and by the way you know this is

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
lisa martinPERSON

0.99+

75 percentQUANTITY

0.99+

septemberDATE

0.99+

kit colbertPERSON

0.99+

23 yearsQUANTITY

0.99+

18 yearsQUANTITY

0.99+

vmwareORGANIZATION

0.99+

lisaPERSON

0.98+

todayDATE

0.98+

pandemicEVENT

0.98+

two key componentsQUANTITY

0.98+

2021DATE

0.97+

oneQUANTITY

0.97+

80 of customersQUANTITY

0.97+

aprilDATE

0.97+

tons of servicesQUANTITY

0.97+

one thingQUANTITY

0.97+

vmworldORGANIZATION

0.97+

hold.vmware.comOTHER

0.97+

twoQUANTITY

0.96+

tonsQUANTITY

0.96+

a lot of peopleQUANTITY

0.96+

googleORGANIZATION

0.96+

this weekDATE

0.96+

this weekDATE

0.96+

hourQUANTITY

0.95+

one wayQUANTITY

0.95+

lisa martinPERSON

0.95+

awsORGANIZATION

0.94+

firstQUANTITY

0.94+

a ton of optionsQUANTITY

0.94+

one placeQUANTITY

0.93+

last 18 monthsDATE

0.92+

a yearQUANTITY

0.92+

vmc.vmware.comOTHER

0.91+

bothQUANTITY

0.91+

a couple of years agoDATE

0.9+

19QUANTITY

0.9+

azureORGANIZATION

0.87+

arcticORGANIZATION

0.86+

pandemicsEVENT

0.84+

eachQUANTITY

0.83+

vmware cloudTITLE

0.81+

tons of mission controlQUANTITY

0.8+

90 of our application initiativesQUANTITY

0.79+

vmware cloudORGANIZATION

0.79+

2021 095OTHER

0.77+

a ton of value-add servicesQUANTITY

0.77+

vmware cloud foundationORGANIZATION

0.77+

mission controlQUANTITY

0.76+

a lot of our customersQUANTITY

0.76+

lot of customersQUANTITY

0.76+

vmware cloudORGANIZATION

0.74+

a lot of these folksQUANTITY

0.68+

ponzuORGANIZATION

0.67+

silicon valleyLOCATION

0.63+

lotQUANTITY

0.62+

vmwareTITLE

0.59+

Kit ColbertORGANIZATION

0.59+

cloud awsTITLE

0.59+

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+

Stu Miniman, Red Hat | KubeCon 2021 Preview


 

in the beginning there were mainframes a highly centralized secure command and control environment open systems brought a spate of innovation innovations that were powered by machines servers storage arrays networks that had to be configured deployed and managed by specialists virtualization that made that simpler but it was still a machine centric world the cloud devops and importantly containers created an inflection point in the industry where no longer do developers have to do a handoff to an infrastructure guru to deploy and often reconfigure systems which could cause other problems containers essentially codified the infrastructure to the point where developers could now be responsible for the full stack with consistency that allows stretching if you will of applications between on-prem to the cloud across clouds and out to the edge kubernetes in particular has enabled organizations to host applications and containers with automation so you can now deploy as many instances of your application as required and communicate between different services used by those applications in a consistent manner manner what this does is enables rolling updates security patches in a run anywhere environment that is changing how organizations build and manage their applications hello and welcome to this cube conversation and preview to kubecon cloud nativecon north america 2021 i'm pleased to welcome my friend and guest stu miniman director of market insights for cloud platforms at red hat stu man great to see you so good to see you dave thanks for having me you're very welcome so you heard my little spiel up front a little narrative what are the big trends that you're seeing that you're watching that you think people should know about they're important yeah well well dave i'm so glad you started out talking about the application because dave i mean you know my background your background very much too is started in infrastructure and for so long we talked about well let's dig different increments that we talk about the infrastructure but there was that huge divide between the people that run the infrastructure and the people that build and own the applications and when agile and devops came out we talked about not throwing things over the wall but when we look at containers and kubernetes really what it is is an application to build our application to modernize our application to run our application as you said they they have to be more that that right once go anywhere has been something we've wanted for a while and from a developer viewpoint i haven't wanted to think about the infrastructure so we want to enable that we want developers to be able to do their thing what we've done at red hat is try to have that consistency in every environment because kubernetes is only a single a very thin layer there's lots that needs to be done on top of that but one of the biggest trends is from an application standpoint the same thing that we've seen in other environments dave when you say okay well what apps did you have well you know it's great to say i have the cool micro service new stuff but what about older applications what about modernizing things can i lift things over can i have a broader spectrum of applications and yes that's where we are with kubernetes we don't just have stateless applications that are you know written in this new modern way we have a broad spectrum and there's another word that i really keyed off of in your intro talking about automation dave if you talk about scale and you talk about automation that's what container was built for if you look at what you know the the predecessor kubernetes was borg at google and if you think about just building things at scale and building things for with automation at their core that's what we've done and that's where this ecosystem is building towards so not saying everybody needs to be google but when you start talking about ai applications when you start talking about different ways to really have automation built into your environment this is where containers and kubernetes really shines because you know that's where we've really gone beyond human scale dave and we've gone to that machine scale so we need to make sure not just to remove humans to remove errors but to be able to have that agility and flexibility and scale which is what offers in this space so all the cool kids of course they want to develop in the cloud but i feel like for every app that's developed in the cloud there's like 10 on prem that are screaming to be modernized and we have a we have a chart on this but so what kind of applications are you seeing going in to containers and kubernetes yeah so so two two charts here for the survey we actually did for kubecon europe leading up to it the one on the left talks about the data is it stateless applications is it stateful applications well what do you know dave it's a mix of both of those right you'll remember dave in the virtualization days it took us about a decade to solve those storage and networking things how do we make sure that things really run at the virtual machine layer how do we have things like moving all over the place and still not break the connection that we had there that was a lot of hard work that we as an industry did well you know here we are six seven years into kubernetes we've solved a lot of those same issues so storage and networking work much better today in kubernetes environments than it did in the early days it started out oh stateless applications but if you look at the data on the second side what kind of applications are there the answer dave is yes you want your cool new modern databases absolutely ai and ml absolutely uh you know through kind of your isv you know more traditional applications the the answer is yes so customers are doing a whole lot of it when i'm meeting with customers one of the first questions we always have dave we've worked on silo busting for for many decades in this industry but if you talk to the infrastructure team and you ask them well what apps are you putting on there if they don't have a good answer the first thing we do is hey you really need to get the developers in the room you really need to understand this because if you stand up a platform just because kubernetes is cool and it's great it helps you build your resume you're not going to have success down the road you want to make sure they're involved up front understand what the requirements so you know kubernetes uh that one of the joke is you know containers and kubernetes add some magic and you know yippee you win it's like well there's a little bit more to that uh to actually have it work you mentioned it took decade plus to actually you know kind of work it out in the virtualization days i mean you remember the api you know stuff and we have the scars from their revenues right exactly but it's interesting when i look at this chart that you know because like you said it started off it's kind of stateless database yes all kinds of applications but database is number one and so you've got a lot of stateful applications enterprise apps security sensitive i mean everything's security sensitive today but hyper security sensitive so do you feel like that time frame relative to you know two decades ago is going to be compressed yes it seems like it's compressing quite rapidly absolutely the cncf always puts out a survey around the event as to where adoption is it's a little bit of a self-selecting for the community but containers and kubernetes broad adoption we've really not only crossed the chasm we're into the you know solid majority of of adoption here and yeah the the databases i mean dave you've covered things like the postgres uh world uh companies like crunchy data uh and some of these modern databases are really built for this type of environment and as you said they shouldn't have to think as much about okay i'm in a cloud or i'm in a different cloud this containerized platform that for applications can live in a lot of different places and that goes to kind of what we're seeing changing in the in the infrastructure world uh over the last couple years i'm glad to mention that a database i was interviewing josh uh at the postgres event and he was explaining to me how far kubernetes has actually come and and how much you know more trustworthy it is today still still some gaps but much different than even two or three years ago yeah i guess one of the highlights interesting at the kubecon europe uh there was the general availability of both the pipelines project and the get ops project it was it's argo cd is the project for for get ops and when that went ga for red hat we actually have that built into openshift at ga and not only was it ready to go we actually had a few customers that were ready to say hey we're using this and we're using the production so we had xa insurance one of the largest payers in the globe and the largest bank in turkey uh were two of the ones that we had saying hey we're using this for the audience if you're not familiar with git ops it's everything we use github as the repository of records so that this is kind of if you think about the old days we had the gold cd or the gold server well we do that for our entire stack that whole infrastructure's code that we've been talking about so many years but it will manage that for us so i patch it at the github level and it will enforce what i have in my environment so if somebody oh wait let me make a change no it's constantly validating things at github so it keeps it rather regimented so we've had uh as i mentioned a couple of customers we've seen a lot of interest in the public sector space because of course dave they're very concerned around security and patching and access and we want to keep that least access necessary so if we can keep that at the github level that's one of the things that will help your environment it really ties into the whole kind of git ops ai ops modern environment so it really ties all of it together as to kind of the the culture of the application and the infrastructure so your files your config files your policies same api same console that is how you get the scale yeah absolutely it's we we don't want the people to have to manage that as much you can let them focus on where they're going to add value to the business so let's talk about cloud cloud the definition of cloud is changing the cloud is expanding it's going on-prem there's hybrid connections to to a cloud or multiple clouds across clouds now as seems to be becoming more real we could talk about that and then maybe eventually out to the edge they're all real in their own right but how much is actually being connected together is something that i'm interested in but what are you seeing there what role is kubernetes playing yeah so first you talked about where applications live the latest data i've seen from kind of the the industry watchers is what are we dave 20 25 of applications are in the cloud that means there's a lot still in the data center if i look at open shift customers yes do we have a lot of them in the data center but then they are also using the public cloud so we have deep partnerships with amazon and azure to do public services in the cloud and our value is we give consistency across all of those environments so are using data center yes most customers still have data center do you have one or more clouds absolutely you know i used to love the andy jassy line um you know multi-cloud doesn't mean that you spread evenly across all the clouds most customers i talk to they have a primary provider that they partner with but things change over time we've seen plenty of customers go two or three years in and say well i have a strategic initiative sometimes they make an acquisition and they'll do another cloud or you know there's lots of factors why i might be doing more than one cloud there's certain industries where basically you have to have relationships with multiple vendors or there's there's regulations that you need to be concerned about so the answer is yes what we've been talking about more than a decade at red hat is open hybrid cloud and what does that mean today you might have not have planned it out but you're hybrid today and what are you going to be in the next decade you're going to be even more hybrid so edge if we talk about it everyone is talking about one of the biggest trends here is how does kubernetes go out to the edge even more that consistency message that i talked about where does openshift live openshift lives anywhere that red hat enterprise linux lives so rel am i going to have linux out of these small environments without a lot of resources what else are you going to have other than linux that's going to be the foundation of what you have so if i can have management and consistency that push out to all of those environments and we've been building out a portfolio something that you'll see us talking about more at kubecon in la is single node openshift so this is a really small footprint openshift but still have the consistency to work across all these environments and we've had different footprints basically to be able to do edge and remote offices whether you're talking from a service provider out to a full customer premise data center but there's there's a lot going on in the edge space we actually have we already have a public use case with verizon who's doing some of the ai use cases i'm sure you can picture with verizon being such a large telco the touch points that they have not only at the service provider but to their customer environments and openshift is the platform for enabling that innovation i mean if i had a big application portfolio on-prem you know legacy company with you know 100-year history obviously i'm going to be doing some stuff in the cloud i would be building some kind of abstraction layer that would could obviously modernize my on-premise state i would want to i would probably start with amazon i'd want to take advantage of aws cloud native tooling but i would absolutely be doing the same thing in azure and google and i would want to build my own cloud right and and and service my customers or or my company have people log into that cloud hide the underlying complexity of the technology and just simplify everything up level it and build a stack around that and probably build it on on openshift why not and of course kubernetes but there are alternatives there's there's eks anywhere for example which presumably is a competitor what do you how is that impacting the marketplace yeah so so dave as you said everybody is kind of extending beyond where they live so microsoft azure has their arc offering google has anthos and amazon was the last one i mean dave you'll remember this when we talked about hybrid and multi-cloud for a bunch of years it was like amazon doesn't talk about hybrid or multi-cloud and you know back when i sat on the analyst side i was like well you can't talk about hybrid and multi-cloud without talking about amazon so they've now uh eks anywhere something they announced back at re invent it just went generally available recently and so they have a distribution of kubernetes that you can use on your own so you could have completely disconnected in your data center running only on vmware is the only way that they support it today and they have in beta there's something called an eks connector so if you want it to be managed from the cloud and have someone more of that consistency they have the way to do that they've had eks which is their kubernetes service in amazon for a bunch of years but as a friend of the program corey quinn says there's actually 17 different ways to run containers in amazon today that's supported by amazon and you laugh at it but you know dave it's it's no different you know remember the storage world okay how many different storage products did emc have do you know how many compute and storage products amazon have they have a lot growing so one of those offerings that they have natively in the console is red hat openshift service for aws so is eksd a competitor well if you're an amazon customer and you want everything amazon and you want to use their environment in a hybrid environment yes you can do that part of the strategy for amazon is outpost we've got on our roadmap to be able to support openshift on outposts so you know we look at our our positioning is we are much more than kubernetes if you talk about the stack of tooling that we build on top of it we've done a real lot to make sure that developers have the tooling that they need from an amazon environment it's just the kubernetes piece it's a in the cloud it's a managed control plane in your own data center it's here's a kubernetes distribution good luck with it if you want monitoring and observability if you want more security if you want all these other pieces you need to build them on top of that as opposed to openshift gives you a full application development platform you know forrester wave we were you know far and away the top and to the right on on that uh spectrum with the leading position for both developers and operators so you know great to see amazon you know i i i hate to say they're like validating something that we do but look everybody's going to do it's true this is true i know that's the marketing line but and and i hate to do the the marketing line but um it's you will you see everyone rolls out their pieces and you say what is the game that they are playing it's amazon wants you to consume as much of their services as you can from a red hat standpoint it's well everywhere that rel can go we can go so openshift can live a lot of places we are going to give you the best experience in your data center in amazon in azure in google in your hosted in the edge we're going to work in all of those environments and we've got years of experience with thousands of production employments like in the data center eks anywhere sitting on top of vsphere as far as i know we have at red hat the most production kubernetes deployments on vmware are openshift actually at vmworld i'll be talking about i'm i'm on a panel talking about openshift on vsphere with vmware so long deep partnership that we've had there no one can speak to the breadth and depth of uh what we've done there uh what's the little line amazon always says there's no compression algorithm for experience well i like it okay but that's why i like your edge strategy because i've said many times the edge is going to be won by developers it's not going to be won by taking a you know x86 box throwing it over the fence and saying okay we got edge and i think you know that's tongue-in-cheek i think that the traditional enterprise hardware vendors are understanding that but they're not in a great position with developers you know maybe cisco a little bit with devnet but generally speaking you know vmware obviously uh it always has been struggling the edge is you know the challenge with the edge is you always have to look through it as to what your perspective is so we have a long and deep relationship with a lot of the telecommunications providers uh people will disparage openstack some but that's actually the solutions that we've sold the most into are network function virtualization for the telco and a lot of them have followed what they worked with us on openstack and continued that into openshift and verizon being one of those proof points you've seen my etr data and i tell you openstack keeps popping up and when you dig into it it's oh that's telco there may not be maybe there's not a region there and it's telcos developing their own cloud essentially and you know they're monetizing it so let's talk about um a cncf the ecosystem uh it's we have another slide on this if you guys wouldn't mind bringing it up i mean it's a complicated matter right you got here's the picture i mean it's like you can't read it because there's just so many people that wants to stop this from becoming you know kind of openstack too yeah that's a great question so chris wright our cto i thought really boiled it down really well one of the big problems with openstack is we were building a complete stack so when they said oh there's all these projects it's like okay well we're going to create a big tent and under that big tent you have to have all of these pieces and they all need to work together and while they were modular projects i needed to have that full stack validated and managing and maintaining that was a nightmare what is the cncf landscape it is you know what doesn't hundred more projects that are independent of what they had so yes kubernetes is the one that gets the most attention but takes something like service mesh service mesh has been around for a few years it's hot we're still early on the adoption trend service mesh works with kubernetes but it isn't limited to kubernetes it's one of those venn diagram it works with it but you can also work with my virtual environment it works in other places and that's true of a lot of these projects often they are complementary to kubernetes but i can adopt them standalone so the challenge is it is that paradox of choice when you go out there there are some people that want to go to the grocery store and buy all of their various pieces and put it all together well other people will come to us and say hey i just want my developers to get working i don't want them to spend all their time fighting over what they had and at red hat we say great we're going to have an opinionated platform and if you come down later and say oh there's a piece of it i don't want to use or i have some other tool i can have its batters are included they're optional and they're swappable so that's what's nice in this developer environment so you know we also work with you know companies like hashicorp a lot of our customers use vault for their secrets uh you know git lab is is another pure var in this industry that have a lot of developer tools they're not a kubernetes provider they usually sit higher up in the stack than we do so there's a lot of players there's a lot of room for activity and innovation yes we've seen a cambrian explosion of projects there and there has been some consolidation that's part of the job of the cncf is in the observability world they took uh i can't remember there were two projects that were kind of similar and they got them in a room and got them to agree to put them into a single project and put those together so we do see some consolidation over time but there's still room for a lot of growth standards are good but so is optionality i think is your point there so the event is october 11th to the 15th it's actually an in-person event you're planning on being there so i i am it's it's hybrid i know a lot of people will be online the other thing i'd point out there are a lot of day zero events so these are really awesome there's a git ops day there's security day there's so many different pieces i'll actually be for the day zero i'll be emceeing the openshift commons where we get a bunch of end users to just tell their stories projects they're working on deployments that they have have some good partner ecosystem discussion there it's usually a lot of fun we hope a bunch of people come to those in purses and then you know the day itself uh the the three days of the show itself are always hopping and lots of learning to be done uh whether you're there in person or online fantastic so i'm glad you pointed out it is a hybrid event that's kind of the nature of these things these days and i think we'll be for for some time i think potentially indefinitely i think people are realizing hey you know what as much of a pain in the neck as virtual events are we can reach a lot more people and it's a good on-demand experience so have at it stu thanks so much for for coming into the cube studios we miss you glad to see you're thriving and uh good luck at the show and uh we'll see you around the block thanks dave i know i'll be seeing john on the cube there too absolutely okay thanks for watching everybody this is dave vellante we'll see you next time you

Published Date : Sep 14 2021

**Summary and Sentiment Analysis are not been shown because of improper transcript**

ENTITIES

EntityCategoryConfidence
amazonORGANIZATION

0.99+

twoQUANTITY

0.99+

turkeLOCATION

0.99+

two projectsQUANTITY

0.99+

telcoORGANIZATION

0.99+

100-yearQUANTITY

0.99+

october 11thDATE

0.99+

three yearsQUANTITY

0.99+

thousandsQUANTITY

0.99+

corey quinnPERSON

0.99+

microsoftORGANIZATION

0.99+

kubeconORGANIZATION

0.98+

two decades agoDATE

0.98+

Stu MinimanPERSON

0.98+

oneQUANTITY

0.98+

verizonORGANIZATION

0.98+

ciscoORGANIZATION

0.98+

davePERSON

0.98+

azureORGANIZATION

0.98+

second sideQUANTITY

0.98+

17 different waysQUANTITY

0.98+

more than a decadeQUANTITY

0.98+

six seven yearsQUANTITY

0.98+

bothQUANTITY

0.98+

telcosORGANIZATION

0.97+

next decadeDATE

0.97+

red hatORGANIZATION

0.97+

todayDATE

0.97+

githubTITLE

0.96+

Red HatORGANIZATION

0.96+

north americaLOCATION

0.96+

dave vellantePERSON

0.96+

googleORGANIZATION

0.96+

15thDATE

0.96+

openstackORGANIZATION

0.95+

2021DATE

0.94+

single projectQUANTITY

0.94+

joshPERSON

0.94+

johnPERSON

0.93+

awsORGANIZATION

0.93+

openshiftORGANIZATION

0.92+

20QUANTITY

0.92+

three daysQUANTITY

0.91+

three years agoDATE

0.9+

KubeConEVENT

0.89+

hundred more projectsQUANTITY

0.89+

two chartsQUANTITY

0.89+

more than one cloudQUANTITY

0.88+

openshiftTITLE

0.88+

first questionsQUANTITY

0.87+

every appQUANTITY

0.87+

a lot of peopleQUANTITY

0.86+

about a decadeQUANTITY

0.85+

John Maddison, Fortinet | Fortinet Security Summit 21


 

>> Narrator: From around the globe, it's theCUBE, covering Fortinet Security Summit, brought to you by Fortinet. >> Welcome back to theCUBE, Lisa Martin here live in Napa Valley at the Fortinet Championship. This is the site of kickoff to the 2021-22 FedEx Cup regular series. We're here with Fortinet and we're here with one of our distinguished alumni, John Madison, the CMO and EVP of products. John, it's great to see you in person. >> Yes, Lisa it's been a while. >> It has been a while. >> Good to be back here, live. >> I know, you're not on Zoom, you're actually right six feet across from me. >> Yep, look, yes, it's definitely physical. >> It does, talk to me about the PGA and Fortinet. What are some of the synergies? >> There's a lot. I think one of the biggest ones is the culture of the two companies. So I mean, PGA tour, I think they've donated almost $3 billion to charities over the last 15 years, 20 years and we're the same. We would definitely want to give back to the community. We want to make sure we're providing training and education. We're trying to re-skill some of the veterans, for example, over 2000, also women in technology, you may have heard one of the key notes today about that, attempts from a education and training perspective. So there's a lot of synergies between the PGA Tour, and Fortinet from a cultural perspective. >> I love that. Cultural synergy is so important but also some of the initiatives, women in tech, STEM, STEAM, those are fantastic. Give our audience a little overview of what's going on here. We've got over 300 partners and customers here. What are some of the key themes being discussed today? >> Yeah, we're going to try and keep it smaller, this event. We don't want 10,000, 20,000 people. We'll keep it smaller. So about 300 customers and partners, and what we want to do is bring together, you know, the top people in cybersecurity and networking, we want to bring in customers so they can net with each other, we want to bring the partners here. And so, what you're going to see is you can see the tech expo behind you there, where people are talking technology. Some of the keynotes focus on areas like ransomware, for example, and cyber security in different industries. So definitely it's a smaller gathering, but I think it's very focused on cybersecurity and networking. >> Well, that's such an important topic these days. You know, you and I have spoken a number of times this summer by Zoom, and talking about the threat landscape and the changes-- >> Yep. >> And the work from anywhere. When you and I spoke, I think it was in June, you said 25% we expect are going to go back to the office, 25% permanently remote and the other 50 sort of transient. Do you still think given where we are now in September that that's still-- >> Yeah, I'm going to modify my prediction a bit, I think it's going to be hybrid for some time. And I don't think it's just at home or not at home or at work or not at work, I think it's going to be maybe one or two days, or maybe three days versus five days. And so, we definitely see the hybrid mode of about 50% for the next couple of years at least. I think that, you know, ransomware has been in the news a lot. You saw the Colonial, the ransomware has increased. We did a threat report recently. Showed about a 10X increase in ransomware. So, I think customers are very aware of the cybersecurity threats. The damage now is not just sucking information out and IP, it's causing damage to the infrastructure. So definitely the, you know, the attack surface is increased with people working from home, versus in the office, and then you've got the threat landscape, really, really focused on that ransomware piece. >> Yeah, ransomware becoming a household word, I'm pretty sure even my mom knows what that is. And talking about the nearly 11X increase in, what was that, the first half of 2021? >> Yeah, over the last 12 months. And I think what's also happened is ransomware used to be a broad attack. So let me send out, and see if I can find a thousand companies. Again, you saw with the Colonial attack, it's very targeted now as well. So you've got both targeted and broad ransomware campaigns going on. And a lot of companies are just rethinking their cybersecurity strategy to defend against that. And that work from home component is another attack surface. So a lot of companies that were operational technology companies that had air gaps and people would come to work, now that you can remotely get into the network, it's again, you can attack people at home, back into the network. >> Is that a direct correlation that you've saw in the last year, in terms of that increase in ransomware and this sudden shift to working from home? >> Well, I also think there's other components. And so, I think the ransomware organizations, the gangs, could use crypto more reasonably than checks and dollars and stuff like that. So they could get their money out. It became very profitable versus trying to sell credit card data on the dark web. So you saw that component. You also saw, as I said, the attack surface be larger for companies, and so those two things unfortunately have come together, and you know, really seen an exponential rise in attacks. >> Perfect storm. Let's talk about some of your customer conversations and how they've changed and evolved in the last 18 months. Give me a snapshot of when you're talking with customers, what are some of the things that they're coming to you for help, looking for the most guidance? >> Yeah, well I think, you know, the digital innovation transformation is almost accelerated because of, you know, COVID. They've accelerated those programs, especially in industries like retail, where it becomes almost essential now to have that digital connectivity. So they can't stop those programs. They need to accelerate those programs, but as they move those programs faster, again they expand their attack surface. And so, what I'm definitely seeing is a convergence of traditional kind of networking, connectivity, and cybersecurity teams like the CIO and the CSO working on projects jointly. So whether it be the WAN connectivity, or whether it be endpoint, or whether it be cloud, both teams are working much more closely going forward. >> Synergies there that are absolutely essential. Talk to me about what you guys announced with Linksys yesterday, speaking of work from home and how that has transformed every industry. Talk to us about the home work solution powered by Fortinet. >> Yeah, well, we definitely see work from home being there for some time. And so the question is, what do you do there? So I think initially 18 months ago, what happened was companies turned on their, what they call a VPN, which gives them an encrypted access when they went from 5% to a 100% people on the VPN. I speak to customers now and they're saying, that was kind of a temporary solution. It puts an end point security there. It was kind of temporary and now I need a longer-term solution because I can see this at least 50% for the next two years, being this hybrid work from home, and some of them are saying, "Well, let's look at something. Let's try and take the best of enterprise networking and security, and then try and match that with an easy to set up Wi-Fi or routing system." So the two companies, you know, have come together with this joint venture. We're taking Linksys technology from an ease of use at home, it's very simple to set up, you can do it on an app or whatever. And then we integrate the Fortinet technology inside there from a security and enterprise networking. The enterprises can manage themselves, the enterprise component and the consumer can manage their piece. What's very important is that separation as well. So the privacy of your home network, and then to make sure the enterprise piece is secure, and then also introducing some simple, what we call quality of service. So for a business person, things like Teams or Zoom as preference over some of the gaming and downloads of the family. So I think it brings the best of both worlds: ease of use and enterprise security together. >> I'm sure the kids won't like that it's not optimized for gaming, but it is optimized for things like video conferencing which, in the last year we've been dependent on for collaboration and communication. Tell me a little bit about the tuning for video conferencing and collaboration. >> Yeah, so we announced both Zoom and Microsoft Teams, probably the two biggest apps, which I use from a work from home business perspective. And definitely if you've got a normal system at home and your kids they've been downloading something, a new game or something like that, they can just take the whole bandwidth. And so the ability to kind of scale that back and make sure the Zoom meeting or the Teams meeting is first priority, I think is very important, to get that connectivity and that quality of service, but also have that security component as well. >> Yeah, the security component is increasingly important. Talk to me about why Linksys, was COVID the catalyst for this partnership? >> Well, I think we looked at it and we have our own work from home solutions as well. I mean, our own gear. We definitely wanted to find something where we could integrate into more of a ease of use solution set. And it just so happened we were speaking to Linksys on some other things and as soon as we started talking, it was very, very clear that this would be a great relationship and joint venture and so we made the investment. Not just "here's some of our code", we made a substantial investment in Linksys and yeah, we see some other things coming in the future as well. >> Can you talk to me a little bit about what the go to market will be, how can enterprises and consumers get this? >> Yeah. So it's more of an enterprise sale. I know some people think Linksys, they think consumer straight away. For us, this is a sale to the enterprises. So the enterprises buy it, it's a subscription service. So they just pay a monthly fee and they can have different levels of service inside there as well. They will get, you know, for each employee they'll get one, two or three nodes. And then so the, so the enterprise is paying for it, which I think will help a bit and they will manage it through their system, but the consumer will get this kind of a game that's very easy to use, very high speed connectivity, mesh technology. So yes, Linksys will sell some of it as well. But I think, you know, actually Fortinet will be the major kind of go to market because of our 500,000 business customers we have out there. >> Right. And your huge partner network. >> Yes. >> So let's talk about, give me a little bit of a view in terms of the benefit that IT will get leveraging the Linksys home work solution. I imagine that centralized visibility of all the devices connected to the corporate network, even though, wherever the devices are? >> Yeah, it actually extends the corporate network. So not in this initial release, in the second release. In the first release, they can go to a cloud portal and they can manage what they can manage from an enterprise perspective. The employee can go to the same portal, but gets a different view, can manage their piece. In the second release, we'll actually have support in our management systems. So if you're an existing Fortinet customer and you've got our management systems and say you've got, I don't know, 250 sites, and you're managing some of our firewalls or SD WAN systems, You'll be able to see all the employees links as systems as well, in that same management system. But again, there's a separation of duty and privacy where they can just manage the enterprise components, not they can't see the traffic from the employees' side, from the non-business transactions. >> Good. That privacy is key there. Do you think that in a perfect world, would help quiet down some of the perfect storm that we're seeing with ransomware and this explosion, this work from anywhere, work from home, going to be persisting technologies, like what you're doing with Linksys, is going to help make a dent in that spike? >> I think it's a component. So for us, the long term strategy for users, end point, this kind of Linksys component is an element. We also feel like there needs to be a transition of VPN technology into zero trust. So you're limiting again, the access to applications versus the network. And then definitely the third component would be a technology like EDR, which is more behavioral-based versus signature-based. And so you bring all those three together. Absolutely we'll make a dent in ransomware because you're just reducing the attack surface greatly, but also scanning the technology to make sure if you see something, you can act straight away. >> And then pair that with what you guys are doing and the investment that Fortinet's been making for a while in training and helping to fill that cybersecurity skills gap, which is growing year on year. >> Yeah. I speak to a lot of CSOs and CIOs and they go "What's the latest technology? What can you do next?" I say, well, the most important thing you can do is train your people. Train them not to click on that phishing link, right? Because still our numbers are around 6% of employees click on things and it doesn't matter what company you are. And so the education and the training is the one of the core, the most basic steps. We're introducing what we call an IT awareness program as part of NSC, which allows companies to download some tools. And they'll try some phishing emails that go out there, they'll see the response, see how they can (mumbles). So I always say that the people, the social engineering is the first step to try and fix and reduce. That's the biggest attack surface you will have. >> It's getting so sophisticated and so personalized. I mean I've seen examples with training that I've done for various companies where you really have to look 2, 3, 4 times at it and have the awareness alone to know that this might not be legitimate. >> Yeah, especially when people are just clicking on more things because they're going to more places. And so you have to be very careful. You can stop a bunch of that with some rule sets. So the systems, but if they're faking the domain, spear phishing, where they know exactly the context of where the email's coming out, it's hard, but you've just got to be very, very careful. If in doubt don't click on it. >> I agree if in doubt, don't click it. Well, John, it's always great talking to you. Exciting to hear the growth of Fortinet, what you're doing with PGA tour, the synergies there, the cultural synergies and the growth in customers and partners, lots of stuff to come. Can't wait till our next conversation, which I hope is also in person. >> Yes, yes, yes, for sure. You know, I think this is a great venue in that it's- as you can see it's open, which helps a lot. >> Yeah. >> It's not far from our headquarters, just down the road there, we've committed to this event for six or seven years. And so this is our first time, but definitely we're hoping to get out a bit more as we go forward. >> Excellent. I'm glad to see to see a company like Fortinet taking the lead and you look like you're dressed for golf. You said you have meetings, but I'm going to let you go because you probably have to get to that. >> I have a few more meetings. I wish they would leave a little gap for some golf. I'll try and work one as we go forward. >> Yeah. Anyway, John, thank you for joining me, great to see you. For John Madison, I'm Lisa Martin. You're watching theCUBE from the Fortinet Championship Security Summit in Napa. (Upbeat music)

Published Date : Sep 14 2021

SUMMARY :

brought to you by Fortinet. This is the site of kickoff to the 2021-22 I know, you're not definitely physical. What are some of the synergies? some of the veterans, but also some of the Some of the keynotes focus and talking about the threat And the work from anywhere. I think it's going to be And talking about the Yeah, over the last 12 months. credit card data on the dark web. and evolved in the last 18 months. like the CIO and the CSO Talk to me about what you guys announced And so the question is, in the last year we've been dependent on And so the ability to kind of the catalyst for this partnership? coming in the future as well. the major kind of go to And your huge partner network. the devices connected to In the first release, they the perfect storm that we're the access to applications what you guys are doing and the the first step to try and fix and reduce. awareness alone to know So the systems, but if and partners, lots of stuff to come. as you can see it's the road there, we've taking the lead and you I have a few more meetings. great to see you.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Lisa MartinPERSON

0.99+

LinksysORGANIZATION

0.99+

John MaddisonPERSON

0.99+

JohnPERSON

0.99+

oneQUANTITY

0.99+

SeptemberDATE

0.99+

John MadisonPERSON

0.99+

FortinetORGANIZATION

0.99+

Napa ValleyLOCATION

0.99+

JuneDATE

0.99+

two companiesQUANTITY

0.99+

John MadisonPERSON

0.99+

LisaPERSON

0.99+

5%QUANTITY

0.99+

sixQUANTITY

0.99+

second releaseQUANTITY

0.99+

three daysQUANTITY

0.99+

five daysQUANTITY

0.99+

first releaseQUANTITY

0.99+

25%QUANTITY

0.99+

two companiesQUANTITY

0.99+

seven yearsQUANTITY

0.99+

250 sitesQUANTITY

0.99+

two daysQUANTITY

0.99+

twoQUANTITY

0.99+

MicrosoftORGANIZATION

0.99+

PGAORGANIZATION

0.99+

threeQUANTITY

0.99+

18 months agoDATE

0.99+

500,000 business customersQUANTITY

0.99+

two biggest appsQUANTITY

0.99+

first timeQUANTITY

0.99+

last yearDATE

0.99+

six feetQUANTITY

0.99+

each employeeQUANTITY

0.99+

third componentQUANTITY

0.98+

NapaLOCATION

0.98+

first stepQUANTITY

0.98+

last yearDATE

0.98+

bothQUANTITY

0.98+

two thingsQUANTITY

0.98+

yesterdayDATE

0.98+

4 timesQUANTITY

0.98+

both worldsQUANTITY

0.98+

around 6%QUANTITY

0.98+

todayDATE

0.98+

almost $3 billionQUANTITY

0.98+

Fortinet Security SummitEVENT

0.98+

about 50%QUANTITY

0.97+

Fortinet Championship Security SummitEVENT

0.97+

ZoomORGANIZATION

0.97+

NSCORGANIZATION

0.97+

this summerDATE

0.96+

both teamsQUANTITY

0.96+

over 300 partnersQUANTITY

0.96+

about 300 customersQUANTITY

0.96+

2021-22 FedEx CupEVENT

0.95+

10,000, 20,000 peopleQUANTITY

0.95+

firstQUANTITY

0.94+

3QUANTITY

0.93+

Fortinet ChampionshipEVENT

0.93+

first half of 2021DATE

0.9+

Fortinet Security Summit 21EVENT

0.88+

next couple of yearsDATE

0.88+

100% peopleQUANTITY

0.86+

20 yearsQUANTITY

0.84+

over 2000QUANTITY

0.83+

last 12 monthsDATE

0.83+

last 18 monthsDATE

0.81+

Survey Data Shows no Slowdown in AWS & Cloud Momentum


 

from the cube studios in palo alto in boston bringing you data-driven insights from the cube and etr this is breaking analysis with dave vellante despite all the chatter about cloud repatriation and the exorbitant cost of cloud computing customer spending momentum continues to accelerate in the post-isolation economy if the pandemic was good for the cloud it seems that the benefits of cloud migration remain lasting in the late stages of covid and beyond and we believe this stickiness is going to continue for quite some time we expect i asked revenue for the big four hyperscalers to surpass 115 billion dollars in 2021 moreover the strength of aws specifically as well as microsoft azure remain notable such large organizations showing elevated spending momentum as shown in the etr survey results is perhaps unprecedented in the technology sector hello everyone and welcome to this week's wikibon cube insights powered by etr in this breaking analysis we'll share some some fresh july survey data that indicates accelerating momentum for the largest cloud computing firms importantly not only is the momentum broad-based but it's also notable in key strategic sectors namely ai and database there seems to be no stopping the cloud momentum there's certainly plenty of buzz about the cloud tax so-called cloud tax but other than wildly assumptive valuation models and some pockets of anecdotal evidence you don't really see the supposed backlash impacting cloud momentum our forecast calls for the big four hyperscalers aws azure alibaba and gcp to surpass 115 billion as we said in is revenue this year the latest etr survey results show that aws lambda has retaken the lead among all major cloud services tracked in the data set as measured in spending momentum this is the service with the most elevated scores azure overall azure functions vmware cloud on aws and aws overall also demonstrate very highly elevated performance all above that of gcp now impressively aws momentum in the all-important fortune 500 where it has always showed strength is also accelerating one concern in the most recent survey data is that the on-prem clouds and so-called hybrid platforms which we had previously reported as showing an upward spending trajectory seem to have cooled off a bit but the data is mixed and it's a little bit too early to draw firm conclusions nonetheless while hyperscalers are holding steady the spending data appears to be somewhat tepid for the on-prem players you know particularly for their cloud we'll study that further after etr drops its full results on july 23rd now turning our attention back to aws the aws cloud is showing strength across its entire portfolio and we're going to show you that shortly in particular we see notable strength relative to others in analytics ai and the all-important database category aurora and redshift are particularly strong but several other aws database services are showing elevated spending velocity which we'll quantify in a moment all that said snowflake continues to lead all database suppliers in spending momentum by a wide margin which again will quantify in this episode but before we dig into the survey let's take a look at our latest projections for the big four hyperscalers in is as you know we track quarterly revenues for the hyperscalers remember aws and alibaba ias data is pretty clean and reported in their respective earnings reports azure and gcp we have to extrapolate and strip out all a lot of the the apps and other certain revenue to make an apples-to-apples comparison with aws and alibaba and as you can see we have the 2021 market exceeding 115 billion dollars worldwide that's a torrid 35 growth rate on top of 41 in 2020 relative to 2019. aggressive yes but the data continues to point us in this direction until we see some clearer headwinds for the cloud players this is the call we're making aws is perhaps losing a sharepoint or so but it's also is so large that its annual incremental revenue is comparable to alibaba's and google's respective cloud business in total is business in total the big three u.s cloud companies all report at the end of july while alibaba is mid mid-august so we'll update these figures at that time okay let's move on and dig into the survey data we don't have the data yet on alibaba and we're limited as to what we can share until etr drops its research update on on the 23rd but here's a look at the net score timeline in the fortune 500 specifically so we filter the fortune 500 for cloud computing you got azure and the yellow aws and the black and gcp in blue so two points here stand out first is that aws and microsoft are converging and remember the customers who respond to the survey they probably include a fair amount of application software spending in their cloud answers so it favors microsoft in that respect and gcp second point is showing notable deceleration relative to the two leaders and the green call out is because this cut is from an aws point of view so in other words gcp declines are a positive for aws so that's how it should be interpreted now let's take a moment to better understand the idea of net score this is one of the fundamental metrics of the etr methodology here's the data for aws so we use that as a as a reference point net score is calculated by asking customers if they're adding a platform new that's the lime green bar that you see here in the current survey they're asking are you spending six percent or more in the second half relative to the first half of the year that's the forest green they're also asking is spending flat that's the gray or are you spending less that's the pink or are you replacing the platform i.e repatriating so not much spending going on in replacements now in fairness one percent of aws is half a billion dollars so i can see where some folks would get excited about that but in the grand scheme of things it's a sliver so again we don't see repatriation in the numbers okay back to net score subtract the reds from the greens and you get net score which in the case of aws is 61 now just for reference my personal subjective elevated net score level is 40 so anything above that is really impressive based on my experience and to have a company of this size be so elevated is meaningful same for microsoft by the way which is consistently well above the 50 mark in net score in the etr surveys so that's you can think about it that's even more impressive perhaps than aws because it's triple the revenue okay let's stay with aws and take a look at the portfolio and the strength across the board this chart shows net score for the past three surveys serverless is on fire by the way not just aws but azure and gcp functions as well but look at the aws portfolio every category is well above the 40 percent elevated red line the only exception is chime and even chime is showing an uptick and chime is meh if you've ever used chime every other category is well above 50 percent next net score very very strong for aws now as we've frequently reported ai is one of the four biggest focus areas from a spending standpoint along with cloud containers and rpa so it stands to reason that the company with the best ai and ml and the greatest momentum in that space has an advantage because ai is being embedded into apps data processes machines everywhere this chart compares the ai players on two dimensions net score on the vertical axis and market share or presence in the data set on the horizontal axis for companies with more than 15 citations in the survey aws has the highest net score and what's notable is the presence on the horizontal axis databricks is a company where high on also shows elevated scores above both google and microsoft who are showing strength in their own right and then you can see data iq data robot anaconda and salesforce with einstein all above that 40 percent mark and then below you can see the position of sap with leonardo ibm watson and oracle which is well below the 40 line all right let's look at at the all-important database category for a moment and we'll first take a look at the aws database portfolio this chart shows the database services in aws's arsenal and breaks down the net score components with the total net score superimposed on top of the bars point one is aurora is highly elevated with a net score above 70 percent that's due to heavy new adoptions redshift is also very strong as are virtually all aws database offerings with the exception of neptune which is the graph database rds dynamodb elastic document db time stream and quantum ledger database all show momentum above that all important 40 line so while a lot of people criticize the fragmentation of the aws data portfolio and their right tool for the right job approach the spending spending metrics tell a story and that that the strategy is working now let's take a look at the microsoft database portfolio there's a story here similar similar to that of aws azure sql and cosmos db microsoft's nosql distributed database are both very highly elevated as are azure database for mysql and mariadb azure cash for redis and azure for cassandra also microsoft is giving look at microsoft's giving customers a lot of options which is kind of interesting you know we've often said that oracle's strategy because we think about oracle they're building the oracle database cloud we've said oracle strategy should be to not just be the cloud for oracle databases but be the cloud for all databases i mean oracle's got a lot of specialty capability there but it looks like microsoft is beating oracle to that punch not that oracle is necessarily going there but we think it should to expand the appeal of its cloud okay last data chart that we'll show and then and then this one looks at database disruption the chart shows how the cloud database companies are doing in ibm oracle teradata in cloudera accounts the bars show the net score granularity as we described earlier and the etr callouts are interesting so first remember this is an aws this is in an aws context so with 47 responses etr rightly indicates that aws is very well positioned in these accounts with the 68 net score but look at snowflake it has an 81 percent net score which is just incredible and you can see google database is also very strong and the high 50 percent range while microsoft even though it's above the 40 percent mark is noticeably lower than the others as is mongodb with presumably atlas which is surprisingly low frankly but back to snowflake so the etr callout stresses that snowflake doesn't have a strong as strong a presence in the legacy database vendor accounts yet now i'm not sure i would put cloudair in the legacy database category but okay whatever cloudera they're positioning cdp is a hybrid platform as are all the on-prem players with their respective products and platforms but it's going to be interesting to see because snowflake has flat out said it's not straddling the cloud and on-prem rather it's all in on cloud but there is a big opportunity to connect on-prem to the cloud and across clouds which snowflake is pursuing that that ladder the cross-cloud the multi-cloud and snowflake is betting on incremental use cases that involve data sharing and federated governance while traditional players they're protecting their turf at the same time trying to compete in cloud native and of course across cloud i think there's room for both but clearly as we've shown cloud has the spending velocity and a tailwind at its back and aws along with microsoft seem to be getting stronger especially in the all-important categories related to machine intelligence ai and database now to be an essential infrastructure technology player in the data era it would seem obvious that you have to have database and or data management intellectual property in your portfolio or you're going to be less valuable to customers and investors okay we're going to leave it there for today remember these episodes they're all available as podcasts wherever you listen all you do is search breaking analysis podcast and please subscribe to the series check out etr's website at etr dot plus plus etr plus we also publish a full report every week on wikibon.com and siliconangle.com you can get in touch with me david.velante at siliconangle.com you can dm me at d vallante or you can hit hit me up on our linkedin post this is dave vellante for the cube insights powered by etr have a great week stay safe be well and we'll see you next time you

Published Date : Jul 16 2021

SUMMARY :

that the company with the best ai and ml

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
alibabaORGANIZATION

0.99+

six percentQUANTITY

0.99+

81 percentQUANTITY

0.99+

2020DATE

0.99+

2021DATE

0.99+

2019DATE

0.99+

40 percentQUANTITY

0.99+

july 23rdDATE

0.99+

microsoftORGANIZATION

0.99+

115 billionQUANTITY

0.99+

dave vellantePERSON

0.99+

50 percentQUANTITY

0.99+

41QUANTITY

0.99+

61QUANTITY

0.99+

47 responsesQUANTITY

0.99+

bostonLOCATION

0.99+

one percentQUANTITY

0.99+

second halfQUANTITY

0.99+

awsORGANIZATION

0.99+

40QUANTITY

0.99+

two leadersQUANTITY

0.99+

second pointQUANTITY

0.99+

115 billion dollarsQUANTITY

0.99+

firstQUANTITY

0.99+

half a billion dollarsQUANTITY

0.99+

more than 15 citationsQUANTITY

0.98+

mid mid-augustDATE

0.98+

two pointsQUANTITY

0.98+

googleORGANIZATION

0.98+

siliconangle.comOTHER

0.98+

end of julyDATE

0.98+

david.velantePERSON

0.97+

julyDATE

0.97+

50QUANTITY

0.97+

40 percentQUANTITY

0.97+

this yearDATE

0.97+

bothQUANTITY

0.96+

oracleORGANIZATION

0.95+

sqlTITLE

0.95+

mysqlTITLE

0.95+

first halfQUANTITY

0.95+

palo altoORGANIZATION

0.95+

pandemicEVENT

0.95+

35QUANTITY

0.94+

this weekDATE

0.93+

etrORGANIZATION

0.93+

four biggest focus areasQUANTITY

0.91+

aws azureORGANIZATION

0.91+

azureORGANIZATION

0.91+

oneQUANTITY

0.91+

23rdDATE

0.9+

40 lineQUANTITY

0.89+

Breaking Analysis: Your Online Assets Aren’t Safe - Is Cloud the Problem or the Solution?


 

from the cube studios in palo alto in boston bringing you data-driven insights from the cube and etr this is breaking analysis with dave vellante the convenience of online access to bank accounts payment apps crypto exchanges and other transaction systems has created enormous risks which the vast majority of individuals either choose to ignore or simply don't understand the internet has become the new private network and unfortunately it's not so private apis scripts spoofing insider crime sloppy security hygiene by users and much more all increase our risks the convenience of cloud-based services in many respects exacerbates the problem but software built in the cloud is a big part of the solution hello everyone and welcome to this week's wikibon cube insights powered by etr in this breaking analysis we'll try to raise awareness about a growing threat to your liquid assets and hopefully inspire you to do some research and take actions to lower the probability of you losing thousands hundreds of thousands or millions of dollars let's go back to 2019 in an event that should have forced us to act but for most of us didn't in september of that year jack dorsey's twitter twitter account was hacked the hackers took over his account and posted racial slurs and other bizarre comments before twitter could regain control of the account and assure us that this wasn't a system-wide attack most concerning however was the manner in which the attackers got a hold of dorsey's twitter account they used an increasingly common and relatively easy to execute technique referred to as a sim hijack or a sim swap the approach allows cyber thieves to take control of a victim's phone number now they often will target high-profile individuals like ceos and celebrities to embarrass or harass them but increasingly they're going after people's money of course now just in the past month we've seen a spate of attacks where individuals have lost cash it's a serious problem of increasing frequency so let's talk a little bit about how it works now some of you are familiar with this technique but most people that we talk to either aren't aware of it or aren't concerned you should be in a sim hack like this one documented on medium in may of 2019 four months prior to the dorsey attack the hackers who have many of your credentials that have likely been posted on the dark web they have your email they have your frequently used passwords your phone number your address your mother's maiden name name of your favorite pet and so forth they go in and they spoof a mobile phone carrier rep into thinking that it's you and they convince the agent that they've switched phones or have some other ruse to get a new sim card sent to them or they pay insiders at the phone carrier to steal sim card details hey 100 bucks a card big money now once in possession of the sim card info the attacker now can receive sms messages as part of two-factor authentication systems that are often used to verify identity they can't use face id on mobile but what they can do is go into your web account and change the password or other information the website then sends an sms and now the attacker has the code and is in then the individual can lock you out and steal your money before you even know what hit you all right so what can you do about it first there's no system that is hack proof if the bad guys want to get you and the value is high enough they will get you but that's the key roi what's roi simply put it's a measure of return derived from dividing the value stolen by the cost of getting that value it's benefit divided by cost so a good way to dissuade a criminal is to increase the denominator if you make it harder to steal the value goes down the roi is less here's a layered system shared by jason floyer the son of our very own david floyer smart dna there so we appreciate his contribution to the cube the system involves three layers of protection first you got to think about all the high value online systems that you have here are just a few you got bank accounts you have investment accounts you might have betting sites that has cash in it e-commerce sites and so forth now many of these sites if not most will use sms-based two-factor authentication to identify you now that exposes you to the sim hack the system that jason proposes let's start in the middle of this chart the first thing is you got to acknowledge that the logins that you're using to access your critical systems are already public so the first thing you do is to get a in quotes secure email in other words one that no one knows about and isn't on the dark web find a provider that you trust maybe the one maybe one that doesn't sell ads but that look that's your call or maybe go out and buy a domain and create a private email address now the second step is to use a password manager now for those who don't know what that is you're probably already using one that comes with your chrome browser for example and it remembers your passwords and autofills them now if you on your iphone if you're an iphone user go to settings passwords and security recommendations or if you're on an android phone open your chrome app and go to settings passwords check passwords you're likely to see a number of recommendations as in dozens or maybe even hundreds that have been compromised reuse passwords and or or are the subject of a data breach so a password manager is a single cloud-based layer that works on your laptop and your mobile phone and allows you to largely automate the creation management and maintenance of your online credentials now the third layer here involves an external cloud-based or sometimes app-based two-factor authentication system that doesn't use sms one that essentially turns your phone into a hardware authentication device much like an external device that you would use like a yubikey now that's also a really good idea to use as that third layer that hardware fob so the system basically brings together all your passwords under one roof under one system with some layers that lower the probability of your money getting stolen again it doesn't go to zero percent but it's dramatically better than the protection that most people have here's another view of that system and this venn the password manager in the middle manages everything and yes there's a concern that all your passwords are in one place but once set up it's more secure than what you're likely doing today we'll explain that and it'll make your life a lot easier the key to this system is there's there's a single password that you have to remember for the password manager and it takes care of everything else now for many password managers you can also add a non-sms based third-party two-factor authentication capability we'll come back and talk about that in a moment so the mobile phone here uses facial recognition if it's enabled so it would require somebody they had either have you at gunpoint to use your phone and to stick it in front of your face to get into your accounts or you know eventually they'll become experts at deep fakes that's probably something we're going to have to contend with down the road so it's the desktop or laptop via web access that is of the greatest concern in this use case this is where the non-sms-based third-party two-factor authentication comes into play it's installed on your phone and if somebody comes into your account from an unauthorized device it forces a two-factor authentication not using sms but using a third-party app as you guessed it is running in the cloud this is where the cloud creates this problem but it's also here to help solve this problem but the key is this app it generates a verification code that changes on your phone every 20 seconds and you can't get into the website without entering that auto generated code well normal people can't get in there's probably some other back door if they really want to get you but i think you see that this is a better system than what 99 of the people have today but there's more to the story so just as with enterprise tech and dealing with the problem of ransomware air gaps are an essential tool in com combating our personal cyber crime so we've added a couple of items to jason's slide so the this air gap and the secure password notion what you want to do is make sure that that password manager is strong and it's easy for you to remember it's never used anywhere except for the password manager which also uses the secure email now if you've set up a non s if you've set up a two factor authentication sms or otherwise you're even more protected non-sms is better for the reasons we've described now for your crypto if you got a lot first of all get out of coinbase not only does coinbase gouge you on transaction costs but we'd recommend storing a good chunk of your crypto in an air-gapped vault now what you want to do is you want to make a few copies of this critical information you want to keep your secure password on you in one spot or memorize it but maybe keep a copy in your wallet your physical wallet and put the rest in a fireproof filing cabinet and a safety deposit box and or fire proof lock a lock box or a book in your library but but have multiple copies that somebody has to get to in order to hack you and you want to put also all your recovery codes so when you set all this up you're going to get recovery codes for the password manager in your crypto wallets that you own yeah it gets complicated and it's a pain but imagine having 30 percent or more of your liquid assets stolen now look we've really just scratched the surface here and you you're going to have to do some research and talk to people who have set this stuff up to get it right so figure out your secure email provider and then focus on the password manager now just google it and take your time deciding which one is the best for you here's a sample there are many some are free you know the better ones are for pay but carve out a full day to do research and set up your system take your time and think about how you use it before pulling the trigger on these tools and document everything offline air gap it now the other tooling that you want to use is the non-sms based third-party authentication app so in case you get sim hacked you've got further protection this turns your phone into a secure token generator without using sms unfortunately it's even more complicated because not only are there a lot of tools but not all your financial systems and apps we will support the same two-factor authentication app your password manager for example might only support duo your crypto exchange might support authy but your bank might only support symantec vip or it forces you to have a key fob or use sms so it's it's a mishmash so you may need to use multiple authentication apps to protect your liquid assets yeah i'm sorry but the consequences of not protecting your money and identity are worth the effort okay well i know there's a deviation from our normal enterprise tech discussions but look we're all the cios of our respective home i.t we're the network admin the storage admin the tech support help desk and we're the chief information security officer so as individuals we can only imagine the challenges of securing the enterprise and one of the things we talk about a lot in the cyber security space is complexity and fragmentation it's just the way it is now here's a chart from etr that we use frequently which lays out the security players in the etr data set on two dimensions net score or spending velocity in the vertical axis and market share or pervasiveness within the data set on the horizontal now for change i'm not going to elaborate on any of the specific vendors today you've seen a lot of this before but the chart underscores the complexity and fragmentation of this market and this is just really literally one tiny subset but the cloud which i said at the outset is a big reason that we got into this problem holds a key to solving it now here's one example listen to this clip of dave hatfield the longtime industry exec he's formerly an executive with pure storage he's now the ceo of laceworks lace work a very well-funded cloud-based security company that in our view is attacking one of the biggest problems in security and that's the fragmentation issue that we've often discussed take a listen so at the core of what we do you know you know it's um it's really trying to merge when we look at we look at security as a data problem security and compliance is the data problem and when you apply that to the cloud it's a massive data problem you know you literally have trillions of data points you know across shared infrastructure that we you need to be able to ingest and capture uh and then you need to be able to process efficiently and provide context back to the end user and so we approached it very differently than how legacy approaches have been uh in place you know largely rules-based engines that are written to be able to try and stop the bad guys and they miss a lot of things and so our data-driven approach uh that we patented is called uh polygraph it's it's a security architecture and there are three primary benefits it does a lot of things but the three things that we think are most profound first is it eliminates the need for you know dozens of point solutions um i was shocked when i you know kind of learned about security i was at symantec back in the day and just to see how fragmented this market is it's one of the biggest markets in tech 124 billion dollars in annual spend growing at 300 billion dollars in the next three years and it's massively fragmented and the average number of point solutions that customers have to deal with is dozens like literally 75 is the average number and so we wanted to take a platform approach to solve this problem where the larger the attack service that you put in the more data that you put into our machine learning algorithms the smarter that it gets and the higher the efficacies look hatfield nailed it in our view i mean the cloud and edge explodes the threat surface and this becomes a data problem at massive scale now is lace work going to solve all these problems no of course not but having researched this it's common for individuals to be managing dozens of tools and enterprises as hatfield said 75 on average with many hundreds being common the number one challenge we hear from csos and they'll tell you this is a lack of talent lack of human skills and bandwidth to solve the problem and a big part of that problem is fragmentation multiple apis scripts different standards that are constantly being updated and evolved so if the cloud can help us reduce tooling creep and simplify and automate at scale as the network continues to expand like the universe we can keep up with the adversaries they're never going to get ahead of them so look i know this topic is a bit off our normal swim lane but we think this is so important and no people that have been victimized so we wanted to call your attention to the exposure and try to get you to take some action even if it's baby steps so let's summarize you really want to begin by understanding where your credentials have been compromised because i promise they have been just look at your phone or look into your browser and see those recommendations and you're going to go whoa i got to get on this at least i hope you do that now you want to block out an entire day to focus on this and dig into it in order to protect you or your and your family's assets there's a lot of stake here and look one day is not going to kill you it's worth it then you want to begin building those three layers that we showed you choose a private email that is secure quote-unquote quote-unquote research the password manager that's find the one that's going to work for you do you want one that's web-based or an app that you download how does the password manager authenticate what do the reviews say how much does it cost don't rush into this you may want to test this out on a couple of low risk systems before fully committing because if you screw it up it's really a pain to unwind so don't rush into it then you want to figure out how to use your non-sms based two-factor authentication apps and identify which assets you want to protect you don't want to protect everything do you really care about your credentials on a site where you signed up years ago and never use it anymore it doesn't have any credit cards in it just delete it from your digital life and focus on your financial accounts your crypto and your sites where your credit card or other sensitive information lives and can be stolen also it's important to understand which institutions utilize which authentication methods really important that you make sure to document everything and air gap the most sensitive credentials and finally you're going to have to keep iterating and improving your security because this is a moving target you will never be 100 protected unfortunately this isn't a one-shot deal you're going to do a bunch of work it's hard but it's important work you're going to maintain your password you're going to change them every now and then maybe every few months six months maybe once a year whatever whatever is right for you and then a couple years down the road maybe two or three years down the road you might have to implement an entirely new system using the most modern tooling which we believe is going to be cloud-based or you could just ignore it and see what happens okay that's it for now thanks to the community for your comments and input and thanks again to jason floyer whose analysis around this topic was extremely useful remember i publish each week on wikibon.com and siliconangle.com these episodes are all available as podcasts all you can do is research breaking analysis podcasts or you can always connect on twitter i'm at d vallante or email me at david.velante siliconangle.com of course i always appreciate the comments on linkedin and clubhouse follow me so you're notified when we start a room and riff on these topics don't forget to check out etr.plus for all the survey data this is dave vellante for the cube insights powered by etr be well and we'll see you next time

Published Date : May 24 2021

SUMMARY :

so the first thing you do is to get a

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Dave ShacochisPERSON

0.99+

AmazonORGANIZATION

0.99+

Dave VelantePERSON

0.99+

GoogleORGANIZATION

0.99+

Dave VellantePERSON

0.99+

Lisa MartinPERSON

0.99+

AWSORGANIZATION

0.99+

IBMORGANIZATION

0.99+

Francis HaugenPERSON

0.99+

Justin WarrenPERSON

0.99+

David DantePERSON

0.99+

Ken RingdahlPERSON

0.99+

PWCORGANIZATION

0.99+

CenturylinkORGANIZATION

0.99+

Bill BelichikPERSON

0.99+

MicrosoftORGANIZATION

0.99+

Peter BurrisPERSON

0.99+

DeloitteORGANIZATION

0.99+

Frank SlootmanPERSON

0.99+

AndyPERSON

0.99+

Coca-ColaORGANIZATION

0.99+

Tom BradyPERSON

0.99+

appleORGANIZATION

0.99+

David ShacochisPERSON

0.99+

Amazon Web ServicesORGANIZATION

0.99+

Don JohnsonPERSON

0.99+

CelticsORGANIZATION

0.99+

DavePERSON

0.99+

MerckORGANIZATION

0.99+

KenPERSON

0.99+

BerniePERSON

0.99+

OracleORGANIZATION

0.99+

30 percentQUANTITY

0.99+

CelticORGANIZATION

0.99+

LisaPERSON

0.99+

Robert KraftPERSON

0.99+

John ChambersPERSON

0.99+

Silicon Angle MediaORGANIZATION

0.99+

San FranciscoLOCATION

0.99+

JohnPERSON

0.99+

John WallsPERSON

0.99+

$120 billionQUANTITY

0.99+

John FurrierPERSON

0.99+

January 6thDATE

0.99+

2007DATE

0.99+

DanielPERSON

0.99+

Andy McAfeePERSON

0.99+

FacebookORGANIZATION

0.99+

ClevelandORGANIZATION

0.99+

CavsORGANIZATION

0.99+

BrandonPERSON

0.99+

2014DATE

0.99+

MWC1 Danielle Royston


 

(upbeat music) >> Hi everyone, welcome to this special CUBE conversation and kickoff preview of the Mobile World Congress, Barcelona event. It's a physical event that's going to be taking place in person. It will probably be the first hybrid big event, 68 days until the June 28th kickoff. You might've heard TelcoDR, Telco Disruptor is on a mission to move the Telco industry to the public cloud. And it's taken one of the biggest spaces this year from Ericsson, is the big story everyone's talking about. And of course theCUBE is excited to be there and broadcast and be a partner with TelcoDR. So I'm excited to bring on the founder and CEO of TelcoDR, Danielle Royston. Danielle great to see you. Thanks for coming on for this Mobile World Congress Preview. >> Thank you so much for having me. I'm psyched to talk to you about this, it's going to be great. >> So Ericsson always has the biggest booth 14 years, you're disrupting Barcelona, people are not sure it's going to be on or off. It's officially on, it's happening and there's going to be a physical event, we're coming out of COVID still a risky move. It's going to be a big hybrid event, it's going to be in person. Tell us the story. How did you guys come out of nowhere, a disruptor take the biggest real estate in the place and turn it into a community event, a news event, a media event, everything, tell us. >> Yeah, well, I think it was March 9th, a little over a month ago. Ericsson announced that they were pulling out of MWC and it's very analogous to what happened in 2020. They were one of the first vendors to bail as well. And it kind of started this like tidal wave of people saying, can't do it. And I think the distinction now is that, that was at the beginning of COVID, there's a lot of unknowns. Is it coming, is it not, is it safe, is it not? We're now, year 50 to three, four months into it. I think that when you look at where we are now, cases are trending down, the vaccine is up. And I think the legacy players were sort of backward looking. They're like, this is a repeat of 2020 it's not safe to go, we're going to pull out. And I'm like with the a hundred days to go, in the vaccine ramping, I think I see the different way. I think there's a really big opportunity. John Hoffman, CEO of the GSMA had put out a two page missive on LinkedIn where he was personally responding to questions, about how serious they were about making sure that the event was safe and could be held. And my view was this is going to happen. And with Ericsson pulling out, I mean this is hollowed ground. I mean, this is massively successful company that has customers literally trained like Skinner's chickens to come to the same spot every year. And now I get to put out my shingle right there and say welcome and show them the future. And instead of the legacy past and all the normal rhetoric that you hear from those sort of dinosaurs, Ericsson and Nokia, now they're going to hear about the public cloud. And I'm really excited for this opportunity. I think the ROI on this event is instant. And so it was a pretty easy decision. I think I thought about it for about 30 seconds. >> It's a real bold move. And again it's a risk that pays off if it happens, if it doesn't, didn't happen, but it's like the startups that put a Superbowl commercial off for the first time. It's a big hit and it's a big gamble that pays off huge. Take us through, how did it all happen? Did you just wake up and saw it was open? How did you know that it was open? Was it like, does an email go out and say, hey I got this huge space for 55 years. >> Well, I mean, it was big news. It was big news in the industry that they were pulling out and all other journalists were like, oh, here we go again. Everyone's going to bail, who's next, right? And everyone was sort of like building that sort of negative momentum energy. And I'm like, we got to squash this. So I put out a tweet on Twitter. I mean, I'm not the most followed person but I'm kind of known in Telco. And I was like, hey, GSMA, I'll take over the booth. And I don't think people even liked my tweet, right? Like no likes no retweets. I reached out to a couple of journalists. I'm like, let's do an interview, let's do a story. Everyone's like, we'll have you on the podcast, like in a month, I'm like, what's? So when John Hoffman had put out that letter I had connected to him. And so I was like, oh, I'm connected to the CEO of the GSMA. So I went out on LinkedIn and I referenced the story and I said, John Hoffman, I'll take over the booth. And I think about 30 minutes later he responded and said, let's do it. And I said, great, who do I talk to? And I was in touch with someone within a couple of hours. And I think we put the whole deal together in 48. And I think wrote the press release and announced it on Friday. So happened on Tuesday the 9th, announced by that Friday. And I really, I was like, GSMA, we've got to get this out, and we got to stop the negative momentum of the show, and get people to realize it's going to be different in June. This is going to happen, let's go do it. And so I think they're psyched that I stepped into the booth. It's a big booth it's 65,000 square feet. 6,000 square meters for the rest of the world that use the metric system. And I mean, that's huge. I mean, that's the size of a professional pitch in a football field, a soccer field. That's a one and a half football fields. It's a ton of space, it's a ton of space to fill up. >> I think what's interesting, as this points out that this new business model of being connected you were on LinkedIn, you connect to them, you get a deal done so fast. This is the direct to consumer as a start up, you're literally took over the Primo space, the best face in the area, so congratulations. And the other thing that's notable and why I'm excited to talk to you is that this kind of sets the table for the first global, what I call hybrid event. This will probably be a cornerstone case study in and of itself, because we're still kind of coming out of the pandemic. People are getting vaccinated, people want to fly, they want to get out of the house. You're partnering with theCUBE, and the CUBE 365 platform. And we love hybrid, we love doing events, theCUBE, that's what we do with video. Now, we're going to do a partnership with you to create this hybrid experience. What can people and guests who come to Barcelona or watch remotely expect? >> Yeah so, I think there's a couple of experiences that we're trying to drive in the booth. I think obviously demonstrations, I can't fill 65,000 square feet on my own. I'm a startup small company. And so I am inviting like-minded, forward thinking companies to join me in the booth. I'm paying for it providing a turnkey experience for those vendors. And so I think what we have in common is we're thinking about future technologies, like open ran on the network side and obviously public cloud which is a big part of my message. And so first and foremost, come and see the companies that are driving the change, the new technologies that are out there, and what's available for carriers to start to adopt and think about. MWC is a meeting intensive event. Deals are done at this show. In 2019, I think the stat is $65 billion of deals were put together at the show. And so a big component of the booth will be a place for executives to come together and have private conversations. And so we're going to have that. So that's going to be a big piece of it. And I think the third part is driving education and thought leadership. And so there's going to be a whole talk track, right? Tech topics, business topics, customer case studies, involve the hyperscalers, and really start to educate the telco community around these new technologies. But there'll be shorter talks. They won't be like hour long keynotes. We're talking 15, 20 minutes. And I think one thing that we're going to do with you as you were just talking about with the CUBE is, you know, MWC was the first big show to have to cancel with COVID, I think in 2019, sorry, 2020, the dates, it's always the last Monday in February and the rest of that week. And so that's like right at the beginning of the COVID stuff, Italy was just starting to take off. And so it was one of the first shows that had to make a big call and decide to cancel, which they did. This is going to be one of the first shows that comes back online post COVID, right? And so I don't think things just snap back to the way that they used to be. I don't think we as consumers are going to snap back to the way that we were operating, we're now used to being able to get curbside delivery from any restaurant in the city. I mean, it's just a sort of a different expectation. And so partnering with the CUBE, we really want to provide an experience that brings the virtual people into the booth. Typically in events like this, you really have to be there to see it. Booths are kind of like unveiled the day of the show, what's going on. One thing I'm trying to do is really educate people about what you can expect. What can you see? This is what it's going to look like. And so we're going to start to share some pictures of the booth of what it looks like. Number one, to drive excitement with the partners that are coming, right? Like you're going to be part of something really, really fabulous. I think number two, attendees can wait, I don't know week off, to make the decision to go. And so maybe if COVID continues to trend down and vaccines are picking up steam, maybe they're like it's safe for me to go and I want to go be a part of that. But I think from here on now we're going to have sort of that virtual experience. It's always going to be part of shows. And so we're going to experiment with you guys. We're going to have a live streaming event, over the course of all MWC. It's going to be a way for people who are unable to travel or can't afford it, COVID or whatever, see what's going on in the booth. And it's going to be everything from listen to a talk, to watch what you guys are typically famous for, your awesome interviews. We're going to have man on the street, like we're here at at a demo station, take us through your little demo. We're going to have telepresence robots that people can reserve. And cruise through the booth the robot can go to a talk. The robot can watch on this streaming thing, the robot can go to a demo. The robot can go to a meeting and it's controlled by the the virtual attendees. And so experimenting, right? Like how do we make this great for virtual people? How do we make the virtual people feel part of the physical? How do the physical people feel the virtual people that are attending and really just make it feel like a community or both. So, we're excited. >> That's super awesome, and first of all, thank you for having paying for everyone and including theCUBE in there. But I think this speaks to the ecosystem of open, you're creating an open ecosystem. And I think that is a huge thing. So for people who are at Mobile World Congress in Barcelona this is going to be a nice, safe place to hang space as well as get deals done. As we comfortable doing media center, we'll get you on the digital TV, but also you're also designing what I call the first hybrid experience, not just having people, having on-demand videos on their website, connecting Barcelona with other parts of the world, with media and stories and content. I think that to me is going to be a great experiment slash upgrade. We'll see, we'll get to see it how it goes. >> Well, it was really, I mean, we all lived through 2020. I mean, some of the shows went on, AWS's re-invent happened, Google did like a crazy nine week program. It's very lonely to participate in those virtual events. You kind of log on by ourselves. No one's really tweeting about it. You're watching an event, the event is great but it was really lonely. And so I think what people love about the physical events is we're together and we're networking and we're meeting people and so, I think continuing to evolve that experience so that virtual is not as lonely. So we'll see, we'll see how it goes. >> I got to say your vision is really aligned with us and others that are in this open innovation world. Because if you look at like theCUBE, physical went away, we had no events, we did CUBE Virtual, a new brand. It wasn't a pivot, it was an extension, a line extension of theCUBE. Now theCUBE's coming back to the physical, we're going to bring that CUBE Virtual to connect everybody. So this is it, and it just amplifies the value of the physical event. So if done right, it's so much cooler. So that's cool. And what I want to ask you on the physical side to kind of bring it back to physical is, there's still going to be keynotes, there's still going to be talks at Mobile World Congress, and so I saw that scheduled and I just saw last week, GSM may announced you're going to be doing a keynote speech. That's amazing, so, how did that happen? So give us the lowdown on the keynote that you're doing. >> I'm sure the entire industry is like that happened. And it probably has something to do with the fact that I have one of the biggest booths at the space. I always put in a request to speak. I feel that I have a really exciting message to share with the industry. Over the last, I guess it's been nine or 10 months, I really been trying to amplify my voice. I have a podcast, I have a newsletter, I'm talking to execs. I have a list that I literally go down one by one stalking each executive of like, have I talked to them? Like how I told them about like the power of the public cloud. And so I am super thankful that I have this opportunity to spread that this message and I'm planning a really epic talk. I really want to shake the industry And this is my opportunity, right? This is my opportunity to stand on the biggest stage in our industry and command a presence and send out my message. And I'm absolutely thrilled to go do it. And I hope I crush it, I hope it's like a mic drop experience. And can't wait to do it. >> Well, we're looking forward to covering it. And we love the open vision. We love the idea of public cloud and the enablement and the disruption. Because just like you got the deal so fast you can move fast with modern applications with the cloud, moving at cloud scale, complete content game changer, so great stuff. So totally applaud that looking forward to and we're here cheer you on and ask the tough questions. I do want to get to... On Twitter yesterday though, you put out on tweetstorm on Twitter about the plans kind of teasing out the booth, how are you going to plan to build the booth. Are you worried that you're opening up too much of the kimono here and putting too much on the table 'cause it's usually a secret. Mobile World Congress is supposed to be secret, not publicly out there. What's the-- >> Well, I mean, I think this is just a little bit of a change has happened post COVID, right. People usually build their booth at don't reveal it until the first day of the show and it's kind of like this excitement to go see what is their big message and what's the big reveal. And there's always fun stuff. I think this years will be different as a first, like I said, a first big event back. I think I need to create a little bit of excitement for people who are going and maybe entice people that maybe you should think about coming. I realized this is a super personal decision, right? It depends on where you are and the country and your health and your status. But if you can do it, I want people to know that you're going to miss out. It's going to be super fun. So, yeah. >> Let's take a look at the booth 'cause I'm sure my next question wants to see. I know we have guys, do we have that rendering... Let's pull that up and let's talk this through. Let's go look at the rendering. So you can see here on the screen... Take us through this. >> Yeah, so what we want to do is give the sense of of cloud city and that's what we're calling the space. In cloud city there's outdoor space, like you see here. And then there's an indoor space. And indoors is where you work, where you buy, where you meet. And so you can see here on the left, the demonstration that would have different vendors displaying and it goes way back. I mean, what we're feeling like I said is like a football field, an American football field and a half or a European football field, a pitch. It's pretty extensive. And so we think we're going to have, I don't know, 20, 30 vendors showing their different software. I think we're scheduling or planning for about 24 different meeting rooms that we can schedule. All COVID safe with the space requirements in there. But in that outdoor space, it would be where you learn, the education. And then I think we're going to have this fabulous booth for theCUBE. It's going to look just so amazing with the backdrop of this amazing building. And I think I underappreciated or didn't really realize how devastated the event planning industry has been from COVID as well as construction. Obviously when events were shut down, these companies had to lay off thousands of workers. Some of the big firms have laid off 50% of their workforce. And those people they didn't just go home and sit around, they had to come up with a livelihood and those people have pivoted into another job. And they're not really, I mean, events aren't really back yet. So some of these firms are shrunk. The manpower is severely reduced. But then I think on the other side is, and you can see this in just housing construction. There's a lumber shortage, there's a shortage of materials. And so everything that we source for the booth, pretty much has to come from Spain. And so when we look at the booth, we have a pretty significant ceiling, where it looks like the roof of the building. It's an engineering feat to do that we're still working through the... I'm sure someone with a protractor is doing lots of math. The glass, we have those huge beautiful glass spans in the front. Getting a glass that spans that height, I think it's 18 feet. It's six meters tall. That's going to be hard. Things like the flooring. I want to have like hardwood laminate flooring. So it looks like hardwood floors. Don't know if we can find them. There like, why don't you do carpet? I'm like, can you just check one more vendor. I really want my floor. So we'll see how it goes. And yeah, I think that sharing this plan, the trials and tribulations, like how can this small startup, take over a space that usually takes nine months to plan, right? Who is this girl? What is she doing? How are they going to pull this off? I think it's like, grab your popcorn and watch the train wreck or hero's journey. We get it done. And I'm obviously-- >> It's like keeping up with the Kardashians. It's the bachelor, it's theCUBE, reality TV show. We can keep track of everything. It's all the fun. >> No, totally. I don't know how many people would be interested in a reality TV show about how you build a booth but I find it absolutely fascinating. I think a lot of people have eyes on the GMA and MWC coming out of COVID and what does that look like, and what's the attendance like. And so I'm excited to share (murmurs) So, exact. >> Well, people are on clubhouse, they're bored, they want to get out. I think this is a case time. Mobile World Congress has a huge economic impact, as a show it's got its own little economy built around. It impacts the country of Spain in Barcelona, the city, a great city. People love it. And so it certainly is notable and newsworthy. We will be following that story. I have to ask you more kind of a tactical question if you don't mind, while I have you here. Can you talk about some of the vendors that are coming and the kinds of talks you're going to have inside the booth and how do people get involved? You mentioned it's open to people who love open ran and open public cloud, open technologies. I mean, that's pretty much everybody. That's cool and relevant, which is like almost the whole world now. Like, is it going to be a space as a criteria? How do people get involved? What's the collaboration formula? >> Yeah, no, I have been working on putting together a list of potential vendors. You'd be surprised, not everyone is as bullish as I am on the public cloud. And so there was a little bit of a filtering criteria but otherwise anyone can come. Enterprise software vendors in telco where their primary customer is communications service provider. That's their software runs on the public cloud, come on in. People using open ran. And it's still a little sort of small band of cohorts that are really trying to drive this new technology forward and they're going up against some of the biggest companies in telco, right? They're going up against Huawei, they're going up against Ericsson. Both those guys are very anti and they're not really pro open ran 'cause it's hugely disruptive to their business. And so I'm pretty sure those guys are not psyched to see open ran become a thing in telco. And so it's really sort of about disruptive technologies that are in the booth. And so yeah, I'm paying for the space, I'm paying for the build-out, bring your demos, bring your people, come with your marketing message and let's build a community. And so we're talking to open ran vendors like Mavenir which is a pretty big name in the open ran space. I've been talking with Parallel Wireless in LTO Star. Those are also great players. Software vendors like to Tutoki, which is a talk that I did a little over a month ago about this new startup that has a web-scale charger that they're trying to put out there. Auria is another company that I'm really familiar with that has some cloud for software. And in little tiny startups like Sequence and some other up-and-comers that no one's heard of. So we're really excited to invite them into the booth. I've been secretly stalking Elon Musk, and Starlink and Space X to be a part of it. And we'll see. I'm kind of using Twitter and whatever I can to reach out and see if they want to be a part of it. But yeah, it really open arms. Not really excluding-- >> Well, Elon is very disruptive and you can reach out to him on Twitter. He's accessible. I mean, you've got to break through and he's antenna up for innovators, people who think differently, they love people who break down walls and markets lower open wins. I mean, we know there's a history, we've been covering it. I've been involved in all my career. People who bet against open always lose. It's happened in every single wave of innovation. So Elon's gettable. Let's get him. >> Who doesn't love Elon Musk? I mean, I think some people don't, I love him. He's my hero. I model a lot of the things that I do around his approach, his vision. 20 years ago, or close to 20 years ago, 2003, he said he was going to put people on Mars. And I think people laughed at him for being like the PayPal guy and this guy is crazy, but every year he makes progress against his goals. We have a relandable rocket. He's doing a manned mission this week, the second man mission or third man mission. The guy makes progress. And I think I'm on the same mission here. My mission is to move Telco to the public cloud. I think it's a long journey, right? I think people are like, who is this girl? And she's like 12 people and what's her story. And I'm like, I don't care. I have a singular mission is a quest. I am not going to stop until I move the industry to the public cloud. And it's my life's mission and I'm psyched to do it. >> Well, we love the mojo, we love your style. We love Elon Musk's mojo. And again, just to bring the dots together you have that same mindset, which is, love like Elon, he's a builder. He builds things and he delivers. So as you said, so... Danielle, I really appreciate the work you're doing. I love your philosophy. We're in total agreement. Open building. Doing it together as a collective, being part of something? This is what the world needs. You got a lot of great ideas in the works and we can't wait to hear them. And what you got coming up over the next 68 days. This is the first of many conversations together. Thank you. >> Yeah, that's going to be so awesome. Thank you so much for having me. Psyched to talk to you about it. >> Okay. Mobile World Congress is happening in Barcelona on the June 28th. It's going to be in person and it's going to be probably the biggest hybrid event to date. Be there, check out TelcoDR and theCUBE and the space that they took over 14 years at the helm there. Ericson had it, now it's TelcoDR. Danielle Royston, founder and CEO here with me from TelcoDR. Thanks for watching. (upbeat music)

Published Date : Apr 21 2021

SUMMARY :

And it's taken one of the I'm psyched to talk to you about and there's going to be a physical event, And instead of the legacy past And again it's a risk that And I think we put the This is the direct to And so there's going to be I think that to me I think continuing to I got to say your vision And I'm absolutely thrilled to go do it. and the disruption. I think I need to create Let's take a look at the booth And I think I underappreciated It's the bachelor, it's And so I'm excited to share I have to ask you more and Space X to be a part of it. and you can reach out to him on Twitter. I model a lot of the things that I do And again, just to bring the dots together Psyched to talk to you about it. the biggest hybrid event to date.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Danielle RoystonPERSON

0.99+

John HoffmanPERSON

0.99+

EricssonORGANIZATION

0.99+

NokiaORGANIZATION

0.99+

DaniellePERSON

0.99+

HuaweiORGANIZATION

0.99+

six metersQUANTITY

0.99+

GSMAORGANIZATION

0.99+

20QUANTITY

0.99+

15QUANTITY

0.99+

50%QUANTITY

0.99+

SpainLOCATION

0.99+

2019DATE

0.99+

BarcelonaLOCATION

0.99+

nine monthsQUANTITY

0.99+

2020DATE

0.99+

JuneDATE

0.99+

Parallel WirelessORGANIZATION

0.99+

Elon MuskPERSON

0.99+

55 yearsQUANTITY

0.99+

18 feetQUANTITY

0.99+

68 daysQUANTITY

0.99+

AuriaORGANIZATION

0.99+

March 9thDATE

0.99+

FridayDATE

0.99+

65,000 square feetQUANTITY

0.99+

TuesdayDATE

0.99+

GMAORGANIZATION

0.99+

12 peopleQUANTITY

0.99+

last weekDATE

0.99+

TelcoORGANIZATION

0.99+

TelcoDRORGANIZATION

0.99+

ElonPERSON

0.99+

MarsLOCATION

0.99+

GoogleORGANIZATION

0.99+

AWSORGANIZATION

0.99+

$65 billionQUANTITY

0.99+

telcoORGANIZATION

0.99+

2003DATE

0.99+

June 28thDATE

0.99+

Space XORGANIZATION

0.99+

nineQUANTITY

0.99+

pandemicEVENT

0.99+

yesterdayDATE

0.99+

TutokiORGANIZATION

0.99+

two pageQUANTITY

0.99+

Mobile World CongressEVENT

0.99+

oneQUANTITY

0.99+

StarlinkORGANIZATION

0.99+

MavenirORGANIZATION

0.99+

Mobile World CongressEVENT

0.99+

bothQUANTITY

0.99+

four monthsQUANTITY

0.99+

PayPalORGANIZATION

0.99+

6,000 square metersQUANTITY

0.99+

third partQUANTITY

0.99+

firstQUANTITY

0.99+

20 years agoDATE

0.99+

10 monthsQUANTITY

0.99+

14 yearsQUANTITY

0.99+

LinkedInORGANIZATION

0.98+

over 14 yearsQUANTITY

0.98+

MWCEVENT

0.98+

BothQUANTITY

0.98+

first timeQUANTITY

0.98+

about 30 secondsQUANTITY

0.98+

Andy Jassy Becoming the new CEO of Amazon: theCUBE Analysis


 

>> Narrator: From theCUBE studios in Palo Alto in Boston, connecting with thought leaders all around the world. This is a CUBE conversation. >> As you know by now, Jeff Bezos, CEO of Amazon, is stepping aside from his CEO role and AWS CEO, Andy Jassy, is being promoted to head all of Amazon. Bezos, of course, is going to remain executive chairman. Now, 15 years ago, next month, Amazon launched it's simple storage service, which was the first modern cloud offering. And the man who wrote the business plan for AWS, was Andy Jassy, and he's navigated the meteoric rise and disruption that has seen AWS grow into a $45 billion company that draws off the vast majority of Amazon's operating profits. No one in the media has covered Jassy more intimately and closely than John Furrier, the founder of SiliconANGLE. And John joins us today to help us understand on theCUBE this move and what we can expect from Jassy in his new role, and importantly what it means for AWS. John, thanks for taking the time to speak with us. >> Hey, great day. Great to see you as always, we've done a lot of interviews together over the years and we're on our 11th year with theCUBE and SiliconANGLE. But I got to be excited too, that we're simulcasters on Clubhouse, which is kind of cool. Love Clubhouse but not since the, in December. It's awesome. It's like Cube radio. It's like, so this is a Cube talk. So we opened up a Clubhouse room while we're filming this. We'll do more live hits in studio and syndicate the Clubhouse and then take questions after. This is a huge digital transformation moment. I'm part of the digital transformation club on Clubhouse which has almost 5,000 followers at the moment and also has like 500 members. So if you're not on Clubhouse, yet, if you have an iPhone go check it out and join the digital transformation club. Android users you'll have to wait until that app is done but it's really a great club. And Jeremiah Owyang is also doing a lot of stuff on digital transformation. >> Or you can just buy an iPhone and get in. >> Yeah, that's what people are doing. I can see all the influences are on there but to me, the digital transformation, it's always been kind of a cliche, the consumerization of IT, information technology. This has been the boring world of the enterprise over the past, 20 years ago. Enterprise right now is super hot because there's no distinction between enterprise and society. And that's clearly the, because of the rise of cloud computing and the rise of Amazon Web Services which was a side project at AWS, at Amazon that Andy Jassy did. And it wasn't really pleasant at the beginning. It was failed. It failed a lot and it wasn't as successful as people thought in the early days. And I have a lot of stories with Andy that he told me a lot of the inside baseball and we'll share that here today. But we started covering Amazon since the beginning. I was as an entrepreneur. I used it when it came out and a huge fan of them as a company because they just got a superior product and they have always had been but it was very misunderstood from the beginning. And now everyone's calling it the most important thing. And Andy now is becoming Andy Jassy, the most important executive in the world. >> So let's get it to the, I mean, look at, you said to me over holidays, you thought this might have something like this could happen. And you said, Jassy is probably in line to get this. So, tell us, what can you tell us about Jassy? Why is he qualified for this job? What do you think he brings to the table? >> Well, the thing that I know about Amazon everyone's been following the Amazon news is, Jeff Bezos has a lot of personal turmoil. They had his marriage fail. They had some issues with the smear campaigns and all this stuff going on, the run-ins with Donald Trump, he bought the Washington post. He's got a lot of other endeavors outside of Amazon cause he's the second richest man in the world competing with Elon Musk at Space X versus Blue Origin. So the guy's a billionaire. So Amazon is his baby and he's been running it as best he could. He's got an executive team committee they called the S team. He's been grooming people in the company and that's just been his mode. And the rise of AWS and the business performance that we've been documenting on SiliconANGLE and theCUBE, it's just been absolutely changing the game on Amazon as a company. So clearly Amazon Web Services become a driving force of the new Amazon that's emerging. And obviously they've got all their retail business and they got the gaming challenges and they got the studios and the other diversified stuff. So Jassy is just, he's just one of those guys. He's just been an Amazonian from day one. He came out of Harvard business school, drove across the country, very similar story to Jeff Bezos. He did that in 1997 and him and Jeff had been collaborating and Jeff tapped him to be his shadow, they call it, which is basically technical assistance and an heir apparent and groomed him. And then that's how it is. Jassy is not a climber as they call it in corporate America. He's not a person who is looking for a political gain. He's not a territory taker, but he's a micromanager. He loves details and he likes to create customer value. And that's his focus. So he's not a grandstander. In fact, he's been very low profile. Early days when we started meeting with him, he wouldn't meet with press regularly because they weren't writing the right stories. And everyone is, he didn't know he was misunderstood. So that's classic Amazon. >> So, he gave us the time, I think it was 2014 or 15 and he told us a story back then, John, you might want to share it as to how AWS got started. Why, what was the main spring Amazon's tech wasn't working that great? And Bezos said to Jassy, going to go figure out why and maybe explain how AWS was born. >> Yeah, we had, in fact, we were the first ones to get access to do his first public profile. If you go to the Google and search Andy Jassy, the trillion dollar baby, we had a post, we put out the story of AWS, Andy Jassy's trillion dollar baby. This was in early, this was January 2015, six years ago. And, we back then, we posited that this would be a trillion dollar total addressable market. Okay, people thought we were crazy but we wrote a story and he gave us a very intimate access. We did a full drill down on him and the person, the story of Amazon and that laid out essentially the beginning of the rise of AWS and Andy Jassy. So that's a good story to check out but really the key here is, is that he's always been relentless and competitive on creating value in what they call raising the bar outside Amazon. That's a term that they use. They also have another leadership principle called working backwards, which is like, go to the customer and work backwards from the customer in a very Steve Job's kind of way. And that's been kind of Jobs mentality as well at Apple that made them successful work backwards from the customer and make things easier. And that was Apple. Amazon, their philosophy was work backwards from the customer and Jassy specifically would say it many times and eliminate the undifferentiated heavy lifting. That was a key principle of what they were doing. So that was a key thesis of their entire business model. And that's the Amazonian way. Faster, cheaper, ship it faster, make it less expensive and higher value. While when you apply the Amazon shipping concept to cloud computing, it was completely disrupted. They were shipping code and services faster and that became their innovation strategy. More announcements every year, they out announced their competition by huge margin. They introduced new services faster and they're less expensive some say, but in the aggregate, they make more money but that's kind of a key thing. >> Well, when you, I was been listening to the TV today and there was a debate on whether or not, this support tends that they'll actually split the company into two. To me, I think it's just the opposite. I think it's less likely. I mean, if you think about Amazon getting into grocery or healthcare, eventually financial services or other industries and the IOT opportunity to me, what they do, John, is they bring in together the cloud, data and AI and they go attack these new industries. I would think Jassy of all people would want to keep this thing together now whether or not the government allows them to do that. But what are your thoughts? I mean, you've asked Andy this before in your personal interviews about splitting the company. What are your thoughts? >> Well, Jon Fortt at CNBC always asked the same question every year. It's almost like the standard question. I kind of laugh and I ask it now too because I liked Jon Fortt. I think he's an awesome dude. And I'll, it's just a tongue in cheek, Jassy. He won't answer the question. Amazon, Bezos and Jassy have one thing in common. They're really good at not answering questions. So if you ask the same question. They'll just say, nothing's ever, never say never, that's his classic answer to everything. Never say never. And he's always said that to you. (chuckles) Some say, he's, flip-flopped on things but he's really customer driven. For example, he said at one point, no one should ever build a data center. Okay, that was a principle. And then they come out and they have now a hybrid strategy. And I called them out on that and said, hey, what, are you flip-flopping? You said at some point, no one should have a data center. He's like, well, we looked at it differently and what we meant was is that, it should all be cloud native. Okay. So that's kind of revision, but he's cool with that. He says, hey, we'll revise based on what customers are doing. VMware working with Amazon that no one ever thought that would happen. Okay. So, VMware has some techies, Raghu, for instance, over there, super top notch. He worked with Jassy, directly in his team Sanjay Poonen when they went to business school together, they cut a deal. And now Amazon essentially saved VMware, in my opinion. And Pat Gelsinger drove that deal. Now, Pat Gelsinger, CEO, Intel, and Pat told me that directly in candid conversation off theCUBE, he said, hey, we have to make a decision either we're going to be in cloud or we're not going to be in cloud, we will partner. And I'll see, he was Intel. He understood the Intel inside mentality. So that's good for VMware. So Jassy does these kinds of deals. He's not afraid he's got a good stomach for business and a relentless competitor. >> So, how do you think as you mentioned Jassy is a micromanager. He gets deep into the technology. Anybody who's seen his two hour, three hour keynotes. No, he has a really fine grasp of the technology across the entire stack. How do you think John, he will approach things like antitrust, the big tech lash of the unionization of the workforce at Amazon? How do you think Jassy will approach that? >> Well, I think one of the things that emerges Jassy, first of all, he's a huge sports fan. And many people don't know that but he's also progressive person. He's very progressive politically. He's been on the record and off the record saying things like, obviously, literacy has been big on, he's been on basically unrepresented minorities, pushing for that, and certainly cloud computing in tech, women in tech, he's been a big proponent. He's been a big supporter of Teresa Carlson. Who's been rising star at Amazon. People don't know who Teresa Carlson is and they should check out her. She's become one of the biggest leaders inside Amazon she's turned around public sector from the beginning. She ran that business, she's a global star. He's been a great leader and he's been getting, forget he's a micromanager, he's on top of the details. I mean, the word is, and nothing gets approved without Andy, Andy seeing it. But he's been progressive. He's been an Amazon original as they call it internally. He's progressive, he's got the business acumen but he's perfect for this pragmatic conversation that needs to happen. And again, because he's so technically strong having a CEO that's that proficient is going to give Amazon an advantage when they have to go in and change how DC works, for instance, or how the government geopolitical landscape works, because Amazon is now a global company with regions all over the place. So, I think he's pragmatic, he's open to listening and changing. I think that's a huge quality >> Well, when you think of this, just to set the context here for those who may not know, I mean, Amazon started as I said back in 2006 in March with simple storage service that later that year they announced EC2 which is their compute platform. And that was the majority of their business, is still a very large portion of their business but Amazon, our estimates are that in 2020, Amazon did 45 billion, 45.4 billion in revenue. That's actually an Amazon reported number. And just to give you a context, Azure about 26 billion GCP, Google about 6 billion. So you're talking about an industry that Amazon created. That's now $78 billion and Amazon at 45 billion. John they're growing at 30% annually. So it's just a massive growth engine. And then another story Jassy told us, is they, he and Jeff and the team talked early on about whether or not they should just sort of do an experiment, do a little POC, dip their toe in and they decided to go for it. Let's go big or go home as Michael Dell has said to us many times, I mean, pretty astounding. >> Yeah. One of the things about Jassy that people should know about, I think there's some compelling relative to the newest ascension to the CEO of Amazon, is that he's not afraid to do new things. For instance, I'll give you an example. The Amazon Web Services re-invent their annual conference grew to being thousands and thousands of people. And they would have a traditional after party. They called a replay, they'd have a band like every tech conference and their conference became so big that essentially, it was like setting up a live concert. So they were spending millions of dollars to set up basically a one night concert and they'd bring in great, great artists. So he said, hey, what's been all this cash? Why don't we just have a festival? So they did a thing called Intersect. They got LA involved from creatives and they basically built a weekend festival in the back end of re-invent. This was when real life was, before COVID and they turned into an opportunity because that's the way they think. They like to look at the resources, hey, we're already all in on this, why don't we just keep it for the weekend and charge some tickets and have a good time. He's not afraid to take chances on the product side. He'll go in and take a chance on a new market. That comes from directly from Bezos. They try stuff. They don't mind failing but they put a tight leash on measurement. They work backwards from the customer and they are not afraid to take chances. So, that's going to board well for him as he tries to figure out how Amazon navigates the contention on the political side when they get challenged for their dominance. And I think he's going to have to apply that pragmatic experimentation to new business models. >> So John I want you to take on AWS. I mean, despite the large numbers, I talked about 30% growth, Azure is growing at over 50% a year, GCP at 83%. So despite the large numbers and big growth the growth rates are slowing. Everybody knows that, we've reported it extensively. So the incoming CEO of Amazon Web Services has a TAM expansion challenge. And at some point they've got to decide, okay, how do we keep this growth engine? So, do you have any thoughts as to who might be the next CEO and what are some of their challenges as you see it? >> Well, Amazon is a real product centric company. So it's going to be very interesting to see who they go with here. Obviously they've been grooming a lot of people. There's been some turnover. You had some really strong executives recently leave, Jeff Wilkes, who was the CEO of the retail business. He retired a couple of months ago, formerly announced I think recently, he was probably in line. You had Mike Clayville, is now the chief revenue officer of Stripe. He ran all commercial business, Teresa Carlson stepped up to his role as well as running public sector. Again, she got more power. You have Matt Garman who ran the EC2 business, Stanford grad, great guy, super strong on the product side. He's now running all commercial sales and marketing. And he's also on the, was on Bezos' S team, that's the executive kind of team. Peter DeSantis is also on that S team. He runs all infrastructure. He took over for James Hamilton, who was the genius behind all the data center work that they've done and all the chip design stuff that they've innovated on. So there's so much technical innovation going on. I think you still going to see a leadership probably come from, I would say Matt Garman, in my opinion is the lead dog at this point, he's the lead horse. You could have an outside person come in depending upon how, who might be available. And that would probably come from an Andy Jassy network because he's a real fierce competitor but he's also a loyalist and he likes trust. So if someone comes in from the outside, it's going to be someone maybe he trusts. And then the other wildcards are like Teresa Carlson. Like I said, she is a great woman in tech who's done amazing work. I've profiled her many times. We've interviewed her many times. She took that public sector business with Amazon and changed the game completely. Outside the Jedi contract, she was in competitive for, had the big Trump showdown with the Jedi, with the department of defense. Had the CIA cloud. Amazon set the standard on public sector and that's directly the result of Teresa Carlson. But she's in the field, she's not a product person, she's kind of running that group. So Amazon has that product field kind of structure. So we'll see how they handle that. But those are the top three I think are going to be in line. >> So the obvious question that people always ask and it is a big change like this is, okay, in this case, what is Jassy going to bring in? And what's going to change? Maybe the flip side question is somewhat more interesting. What's not going to change in your view? Jassy has been there since nearly the beginning. What are some of the fundamental tenets that he's, that are fossilized, that won't change, do you think? >> I think he's, I think what's not going to change is Amazon, is going to continue to grow and develop their platform business and enable more SaaS players. That's a little bit different than what Microsoft's doing. They're more SaaS oriented, Office 365 is becoming their biggest application in terms of revenue on Microsoft side. So Amazon is going to still have to compete and enable more ecosystem partners. I think what's not going to change is that Bezos is still going to be in charge because executive chairman is just a code word for "not an active CEO." So in the corporate governance world when you have an executive chairman, that's essentially the person still in charge. And so he'll be in charge, will still be the boss of Andy Jassy and Jassy will be running all of Amazon. So I think that's going to be a little bit the same, but Jassy is going to be more in charge. I think you'll see a team change over, whether you're going to see some new management come in, Andy's management team will expand, I think Amazon will stay the same, Amazon Web Services. >> So John, last night, I was just making some notes about notable transitions in the history of the tech business, Gerstner to Palmisano, Gates to Ballmer, and then Ballmer to Nadella. One that you were close to, David Packard to John Young and then John Young to Lew Platt at the old company. Ellison to Safra and Mark, Jobs to Cook. We talked about Larry Page to Sundar Pichai. So how do you see this? And you've talked to, I remember when you interviewed John Chambers, he said, there is no rite of passage, East coast mini-computer companies, Edson de Castro, Ken Olsen, An Wang. These were executives who wouldn't let go. So it's of interesting to juxtapose that with the modern day executive. How do you see this fitting in to some of those epic transitions that I just mentioned? >> I think a lot of people are surprised at Jeff Bezos', even stepping down. I think he's just been such the face of Amazon. I think some of the poll numbers that people are doing on Twitter, people don't think it's going to make a big difference because he's kind of been that, leader hand on the wheel, but it's been its own ship now, kind of. And so depending on who's at the helm, it will be different. I think the Amazon choice of Andy wasn't obvious. And I think a lot of people were asking the question who was Andy Jassy and that's why we're doing this. And we're going to be doing more features on the Andy Jassy. We got a tons, tons of content that we've we've had shipped, original content with them. We'll share more of those key soundbites and who he is. I think a lot of people scratching their head like, why Andy Jassy? It's not obvious to the outsiders who don't know cloud computing. If you're in the competing business, in the digital transformation side, everyone knows about Amazon Web Services. Has been the most successful company, in my opinion, since I could remember at many levels just the way they've completely dominated the business and how they change others to be dominant. So, I mean, they've made Microsoft change, it made Google change and even then he's a leader that accepts conversations. Other companies, their CEOs hide behind their PR wall and they don't talk to people. They won't come on Clubhouse. They won't talk to the press. They hide behind their PR and they feed them, the media. Jassy is not afraid to talk to reporters. He's not afraid to talk to people, but he doesn't like people who don't know what they're talking about. So he doesn't suffer fools. So, you got to have your shit together to talk to Jassy. That's really the way it is. And that's, and he'll give you mind share, like he'll answer any question except for the ones that are too tough for him to answer. Like, are you, is facial recognition bad or good? Are you going to spin out AWS? I mean these are the hard questions and he's got a great team. He's got Jay Carney, former Obama press secretary working for him. He's been a great leader. So I'm really bullish on, is a good choice. >> We're going to jump into the Clubhouse here and open it up shortly. John, the last question for you is competition. Amazon as a company and even Jassy specifically I always talk about how they don't really focus on the competition, they focus on the customer but we know that just observing these folks Bezos is very competitive individual. Jassy, I mean, you know him better than I, very competitive individual. So, and he's, Jassy has been known to call out Oracle. Of course it was in response to Larry Ellison's jabs at Amazon regarding database. But, but how do you see that? Do you see that changing at all? I mean, will Amazon get more publicly competitive or they stick to their knitting, you think? >> You know this is going to sound kind of a weird analogy. And I know there's a lot of hero worshiping on Elon Musk but Elon Musk and Andy Jassy have a lot of similarities in the sense of their brilliance. They got both a brilliant people, different kinds of backgrounds. Obviously, they're running different things. They both are builders, right? If you were listening to Elon Musk on Clubhouse the other night, what was really striking was not only the magic of how it was all orchestrated and what he did and how he interviewed Robin Hood. He basically is about building stuff. And he was asked questions like, what advice do you give startups? He's like, if you need advice you shouldn't be doing startups. That's the kind of mentality that Jassy has, which is, it's not easy. It's not for the faint of heart, but Elon Musk is a builder. Jassy builds, he likes to build stuff, right? And so you look at all the things that he's done with AWS, it's been about enabling people to be successful with the tools that they need, adding more services, creating things that are lower price point. If you're an entrepreneur and you're over the age of 30, you know about AWS because you know what, it's cheaper to start a business on Amazon Web Services than buying servers and everyone knows that. If you're under the age of 25, you might not know 50 grand to a hundred thousand just to start something. Today you get your credit card down, you're up and running and you can get Clubhouses up and running all day long. So the next Clubhouse will be on Amazon or a cloud technology. And that's because of Andy Jassy right? So this is a significant executive and he continue, will bring that mindset of building. So, I think the digital transformation, we're in the digital engine club, we're going to see a complete revolution of a new generation. And I think having a new leader like Andy Jassy will enable in my opinion next generation talent, whether that's media and technology convergence, media technology and art convergence and the fact that he digs music, he digs sports, he digs tech, he digs media, it's going to be very interesting to see, I think he's well-poised to be, and he's soft-spoken, he doesn't want the glamorous press. He doesn't want the puff pieces. He just wants to do what he does and he puts his game do the talking. >> Talking about advice at startups. Just a quick aside. I remember, John, you and I when we were interviewing Scott McNealy former CEO of Sun Microsystems. And you asked him advice for startups. He said, move out of California. It's kind of tongue in cheek. I heard this morning that there's a proposal to tax the multi-billionaires of 1% annually not just the one-time tax. And so Jeff Bezos of course, has a ranch in Texas, no tax there, but places all over. >> You see I don't know. >> But I don't see Amazon leaving Seattle anytime soon, nor Jassy. >> Jeremiah Owyang did a Clubhouse on California. And the basic sentiment is that, it's California is not going away. I mean, come on. People got to just get real. I think it's a fad. Yeah. This has benefits with remote working, no doubt, but people will stay here in California, the network affects beautiful. I think Silicon Valley is going to continue to be relevant. It's just going to syndicate differently. And I think other hubs like Seattle and around the world will be integrated through remote work and I think it's going to be much more of a democratizing effect, not a win lose. So that to me is a huge shift. And look at Amazon, look at Amazon and Microsoft. It's the cloud cities, so people call Seattle. You've got Google down here and they're making waves but still, all good stuff. >> Well John, thanks so much. Let's let's wrap and let's jump into the Clubhouse and hear from others. Thanks so much for coming on, back on theCUBE. And many times we, you and I've done this really. It was a pleasure having you. Thanks for your perspectives. And thank you for watching everybody, this is Dave Vellante for theCUBE. We'll see you next time. (soft ambient music)

Published Date : Feb 4 2021

SUMMARY :

leaders all around the world. the time to speak with us. and syndicate the Clubhouse Or you can just buy I can see all the influences are on there So let's get it to and the other diversified stuff. And Bezos said to Jassy, And that's the Amazonian way. and the IOT opportunity And he's always said that to you. of the technology across the entire stack. I mean, the word is, And just to give you a context, and they are not afraid to take chances. I mean, despite the large numbers, and that's directly the So the obvious question So in the corporate governance world So it's of interesting to juxtapose that and how they change others to be dominant. on the competition, over the age of 30, you know about AWS not just the one-time tax. But I don't see Amazon leaving and I think it's going to be much more into the Clubhouse and hear from others.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
AndyPERSON

0.99+

Mike ClayvillePERSON

0.99+

Jay CarneyPERSON

0.99+

JassyPERSON

0.99+

Jeff WilkesPERSON

0.99+

JohnPERSON

0.99+

Jeff BezosPERSON

0.99+

Matt GarmanPERSON

0.99+

Dave VellantePERSON

0.99+

AmazonORGANIZATION

0.99+

1997DATE

0.99+

JeffPERSON

0.99+

Teresa CarlsonPERSON

0.99+

Jon ForttPERSON

0.99+

TexasLOCATION

0.99+

Michael DellPERSON

0.99+

CaliforniaLOCATION

0.99+

AWSORGANIZATION

0.99+

Amazon Web ServicesORGANIZATION

0.99+

January 2015DATE

0.99+

Andy JassyPERSON

0.99+

Pat GelsingerPERSON

0.99+

Larry EllisonPERSON

0.99+

MicrosoftORGANIZATION

0.99+

James HamiltonPERSON

0.99+

Donald TrumpPERSON

0.99+

John FurrierPERSON

0.99+

John YoungPERSON

0.99+

Jeremiah OwyangPERSON

0.99+

2006DATE

0.99+

Sun MicrosystemsORGANIZATION

0.99+

Palo AltoLOCATION

0.99+

45 billionQUANTITY

0.99+

BezosPERSON

0.99+

Ken Czekaj, NETSCOUT | CUBEconversation


 

welcome everyone to thecube virtual i am your host rebecca knight today we are talking about cyber security and health care our guest is ken checker he is a problem solver at netscout thanks so much for coming on the show ken oh my pleasure thank you for having me i love your job title a problem solver tell our viewers a little bit about netscout and about your role there sure no i appreciate that uh yeah netscout's been around since 1984 uh and the the gentleman starter company two gentlemen starter company uh anil sengal is still our ceo he's very passionate about what we do believes in what we do and our focus really is is really service triage and making sure that important customer services and none more important than health care are are up and running and functional and so our focus is really they're really protecting we call ourselves guardians of the connected world uh we take that very seriously uh because when you think about the the technology uh the complexity and how we all really the reliance on everything that we do and how we uh rely on technology as a just a society um we really our focus is protecting that so the applications the services the network uh that's all part of the the service chain for that well we know that healthcare organizations and hospitals are under tremendous strain and pressure because of the covet-19 pandemic but also recently hospitals all over the country have been hit and targeted in a scourge of ransomware attacks can you tell our viewers a little bit about what you're seeing and what's what's happening right now oh yes it's uh it's really sad uh it's just an interesting uh it's an interesting time in the world obviously uh but we are seeing a very heavy increase in the number of attacks on from a cyber security perspective really an extortion and ransomware and there's a there's a slight difference between the two um but effectively what's happening the we'll call them the uh the bad guys are going after healthcare organizations that have some some vulnerabilities uh where you know they have some they have some areas where they can be attacked and effectively what happens is they will either launch a denial of service attack which is really a lot of robot type computers launching just directed attacks at these particular caregiving organizations these hospitals uh and then so they're trying to take down services um and that's one thing and so that's really more of a ransomware where they hey we showed you we can do it now we're going to extort money from you until you pay the other one is more of a ransomware where they've already penetrated the what we'll call defenses of the of the hospital and then now they're they're saying okay we've already we've already taken control of your system and they lock you out until you pay the ransom both we're seeing lots of attacks in that realm so what is the upshot in terms of patient care i mean this this sounds awful what are patients seeing what are doctors seeing well it's a really good point uh especially in today's world with the pandemic but really any time for health care we all have you know children aunts uncles moms dads nobody wants to be in the hospital for extended periods of time and when they're in the hospital we want to make sure that you know from a healthcare organization they want to make sure they give the best care possible and the caregiver so the nurse the doctor has the opportunity to do what they do and focus on what their their caregiving and not on the technology so when things like ransomware extortion or any particular uh impact on performance for a particular application it just impacts the caregiver which is you know and it affects us because these are people that you care about you don't want them in the hospital you don't want them in pain and the caregivers there you know these are passionate people that do what they do obviously they're dedicated to it so when there's an impact from a cyber security perspective or a application or network issue that affects health care that affects our loved ones and you just you know you really put yourself in that position we uh especially netscout we like to view we partner with our customers so and we don't take that lightly that's something that we mean and it's heartfelt and the reason for that is we look at ourselves as an extension of their team this is what healthcare organizations offer to their to their patients and they're there for for care to get well we want to make sure they have every opportunity to do that and because those healthcare organizations rely so much on technology networks applications and really protection from bad guys in cyber security uh we just want to make sure that those services are assured and that's why that's where our focus is so this i mean there are lives in the balance as you're describing this is a technical challenge but it's also one of resources a lot of these organizations just simply do not have the resources to deal with these problems effectively great point that's a great point i mean especially in today's world the the actual industry for healthcare has really taken a beating because it really had to focus their their whole uh all of their funds frankly and all of their uh the resources towards the pandemic which would be personal equipment mobile hospitals and that's that's taken a tremendous toll and they've also from just a revenue perspective they've really taken a beating frankly on on what happens from their revenue cycles because elective surgeries are way down so when you start looking at you take that into consideration so they've got very very tight resources and cyber security in general is a just a thankless job they're under attack every single day no matter what their industry is so when you look at the at the current situation to get tight resources cyber security is under a lot of stress and oh by the way here come the ransomware and extortion attacks it's just it's just a it's terrible what's going on but this is an area where where we feel this is a spot where we can really help number one our focus is really on network and service assurance so the applications in the network and that's what we're very good at and been doing it for many years but the the upside and the place where we really feel we can help uh is really twofold and that is that same solution the same deployment that we have for network and application really can be leveraged by cyber security folks as well mainly towards the areas of denial of service mainly towards areas of voice over ip we think of telecommunications and telemedicine that's all being leveraged and heavily leveraged right now specifically by healthcare organizations well again if i'm a bad guy and i know you're trying to use your telemedicine to take care of your patients and have that interaction with the doctor and the patient and i take those services down well now i've impacted patient care though that all runs over unified communications protocols voice and video things that we can monitor not only for performance but also when we see cyber type issues and that's a it's a really big uh i would call it a bit of a hole at the moment because that's a spot where cyber security teams are so strapped so resource strapped as well uh from from what they're trying to deal with every day that's a spot we can help with and help with immediately and as i mentioned the other part is really the denial of service pieces which is that's part of what we do as part of our our framework of what we deliver for services so you're describing an exceedingly complex caregiver chain on so many different levels in terms of cyber security in terms of telemedicine um and you also said that netscout really partners with its clients talk a little bit about netscout solution and how it helps clients and or healthcare organizations grapple with these challenges no that's a great question well the the one thing uh right off the bat is we look at network traffic and that means application traffic so while we plug in on the network and take traffic from taps and spans and whatnot we take traffic into our appliances so that we can then we crunch that the data through our smart data we call adaptive service intelligence that's our patent and we run it through that engine and that creates smart data and that smart data then can be leveraged for muji is my problem with my network is my problem with my application is it something like a service enabler like dns or dhcp or ldap which is really the basic uh basic building box for active directory for authentication uh so when you look at a complete as you mentioned a complex chain uh an electronic medical records application uh an emr that's really the that's really the go-to application for for a hospital uh because it's scheduling that's billing that's diagnosis that's that's history that's patient history it's just so it's so integral to what they do and when there's an impact with that that affects patient care and no one ever wants to hear oh my goodness we we log we had a bad outcome with the patient because of a complete a computer glitch you know network application what have you uh and so what we do is the ability to take all that data in crunch it through our engine and then and then display that in dashboards that are very easily consumable by not just network people but really application even management cyber security unified communications folks and and the focus here is we want to get the problem set we know they're going to be problems it happens every day and you know networks and applications are complex the idea is when we have an issue like that let's get the problem to the right team so that they can then go through their service restoration process and again the whole point here is keep services up and running but the the challenge becomes in a complex application team set up where you've got dns dhcp ldap radius so you've got service enablers then you've got web servers application server database servers load balancers firewalls when somebody says oh my goodness the emr is down or we're having issues with our network that's a very tough chain to try and pinpoint it's almost needle in a haystack so what we do and this is kind of our our bailiwick in the world is really we take all of that different traffic and we expose uh where where the hot spots where's the latency where are the error codes where do we see protocols that aren't behaving well where are we seeing things that are we're seeing authentication failures and the big win for the for the healthcare organization on that and that standpoint is i can see all of my traffic all of my applications and then i can pinpoint where i'm having issues so that i can restore services very quickly what are some of the best practices that have emerged in terms of the company in terms of the organizations and hospitals that are doing this well what would you say that they're doing right one thing they want a partner so they recognize the fact that number one you know they've got limited staff uh and they actually want to partner with netscout and what that means is we actually go in and we'll design solutions that will address their specific requirements that's that's very important what we do but when we do so we take uh you know we different product sets but our infinite stream our infinite stream next generation isng is our data collector and that's really the the workhorse of our solution it processes all the packets from you know we'll get technical here for a second one gig to 100 gig and that's a lot of data to to to process and because we can just get to the point with the process to the smart data engine and get to the problem show me where my latency is show where my problems are showing my protocols uh pulling that up through our packet flow which engine which kind of facilitates us collecting from multiple hops of the network uh a lot of times uh iit folks will ask us well we want hop to hop views of this i'm like great let's do that we can do it right now we just need to sit down design it but we really design towards their their use cases and in healthcare it's very common you can have dmz's you're going to have people accessing their electronic medical records through their dmz uh and things like that and as it goes through the back end services we basically take a traffic feed from all those different hops of the network or in cases there that make the most sense uh the primary spartan choke points and then take that data in and then we do what we do we expose the data and expose the performance information and most customers and it's like this in the world people usually don't call you up to say hey rebecca you're doing a great job today i want to buy you a cup of coffee especially in i.t they call up to say hey things aren't working hey fix it hey i can't do something and so our our job is to help facilitate with those customers and really partner with them to design solutions so that they can not only view that information uh but also triage it really quick and the word triage makes a great deal of uh sense in health care for example if you have a you know you hurt your finger they're not going to take an x-ray of your foot it makes no sense because they've already triaged that that's not your problem we do the same thing but we do it more from the network and application side to see where the hot spots are you are the it triage so talk a little bit about about this you are a problem solver and so right now we have a crisis on our hands of monumental proportions do you think that it has forced healthcare organizations and hospitals to innovate more quickly at this time or do you think that there is still just so much uncertainty taking place right now that it is hard to see the forest for the trees what what are you seeing that's a that's a really good question uh we're seeing both uh just to put it just very so one of the biggest changes that really the the pandemics had on everybody is the switch to everybody went from i have 10 maybe 20 of my workers working remotely over vpn contractors uh things like people are there just can't be in the office for a reason they switched from 10 to 20 to 70 80 90 percent so it was an overnight change so think of the impact on that the caregivers are at the hospital they're actually you know the frontline workers they're at the hospital you know serving their p their their patients but people in the administration accounting i.t other things that are important to the organization all had to switch to work from home obviously for safety reasons so the impact on just the internet link number one huge impact before it was used for outbound hey i'm gonna go check you know i'm gonna go do some research i'm gonna go check a website i'm gonna you know see what's what's uh what sports activities going on today now all the traffic is coming inbound on the internet and number so that's number one number two big change vpns vpns took an enormous beating that maybe they were size for for that type of scalability overnight and maybe they weren't so the organizations that were kind of prepped for it not such a big change and we've seen some good results from that but there are also organizations that immediately had to switch to oh my goodness i need to upgrade my vpns and my internet links because i wasn't prepared for this um so the the larger organizations sometimes have a little more uh capabilities to make that change quick the smaller organizations that's a tough call so they really have had to innovate quite a quite a bit on that side of it but when you add the that stress on things that also puts shows that the internet and the vpn is really points where the bad guys are going to target which again we're seeing we're starting to see that in the ransomware and the extortion attacks so it has forced innovation certainly um but you bring it to the point of force through the trees uh there's still a lot of work to be done uh so that's that's where we're really uh putting a lot of our focus especially in health care right now because it's got the the biggest impact uh well frankly to society right now and the religious uh the companies so as company as healthcare organizations are navigating this period of new normal and of course we've had some positive vaccine news so we can say that that perhaps there is going to be an end to this pandemic uh in the coming year but how are they planning ahead i want you to close us out here with how healthcare organizations are thinking about the next 12 to 24 months and if you have any advice for them i'm sure they would be all ears uh yeah i think we could all use some good advice right now on that one short answer is you know i don't know either right now in healthcare it is a big challenge because of that as mentioned earlier the impact on on on the personal protection equipment mobile hospitals and and frankly where they've had in the revenue laws so it's become a you basically have to do more with less right now uh which is one of the things that we do uh and really it's kind of our message for customers anyway i'm a big proponent of use what we have what if you have our solution use what you have and use it to its fullest extent uh especially while times are lean you know we just don't the wallets aren't as big right now so we're gonna have to really focus yet i mean has there been a bigger time in healthcare ever than right now i can't think of one so our focus right now and our message to our customers and anyone else is if you've got our types of solution use it to its fullest capability so that you can triage and so that you can you know not have patient impacting issues and on top of all the other things you have to deal with you bring up the point about the vaccines one of the things that we've seen especially for what's called healthcare organizations that are more research focused is um the bad guys aren't very nice so the bad guys are going to go after organizations where they can have a big we'll call it splash or they can steal something so research hospitals that that are working on vaccines or something in that realm have been huge targets again ddos for ransomware and extortion my message for anyone in healthcare right now is you know bless you first of all and second of all use what you have to its fullest extent which means a solution like ours yes use it for network monitor use it for application monitoring but but please use it to protect yourself for cyber security type visibility uh we typically in a lot of cases uh we'll see uh traffic that that some cyber security tools don't and not because they're bad tools but because we're installed in places that they sometimes aren't so that might be uh where they're typically installed maybe on the perimeters of network and endpoints we actually are instrumented through that service chain so not only the outbound internet the wide area network links the vpns and dmzs and and vdi and all those acronyms that i'm throwing out those are typical spots for us as well as though virtualization so that can be cloud or private cloud so effectively we have areas of visibility that can be leveraged in big bigger and better ways even really on the cyber security and unified communication sides of the fence so my message would be to be just use the what you have to its fullest capability uh especially when times are lean and uh keep up the good fight excellent leverage what you got ken checkout problem solver at netscout thank you so much for coming on thecube thank you for having me been a pleasure i'm rebecca knight stay tuned for more of the cube virtual you

Published Date : Dec 21 2020

SUMMARY :

the what you have to its fullest

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
100 gigQUANTITY

0.99+

Ken CzekajPERSON

0.99+

10QUANTITY

0.99+

ken checkerPERSON

0.98+

todayDATE

0.98+

1984DATE

0.98+

rebeccaPERSON

0.98+

pandemicEVENT

0.98+

covet-19 pandemicEVENT

0.97+

netscoutORGANIZATION

0.96+

one thingQUANTITY

0.96+

oneQUANTITY

0.95+

bothQUANTITY

0.95+

20QUANTITY

0.95+

one gigQUANTITY

0.92+

pandemicsEVENT

0.92+

one short answerQUANTITY

0.9+

twoQUANTITY

0.89+

90 percentQUANTITY

0.89+

20 of my workersQUANTITY

0.88+

70QUANTITY

0.87+

anil sengalPERSON

0.86+

many yearsQUANTITY

0.81+

a lot of workQUANTITY

0.8+

firstQUANTITY

0.76+

netscoutTITLE

0.75+

80QUANTITY

0.75+

kenPERSON

0.74+

monthsDATE

0.73+

next 12DATE

0.73+

single dayQUANTITY

0.71+

thingsQUANTITY

0.66+

coming yearDATE

0.64+

NETSCOUTORGANIZATION

0.61+

bigTITLE

0.61+

lotQUANTITY

0.61+

two gentlemenQUANTITY

0.6+

a cup of coffeeQUANTITY

0.6+

timesQUANTITY

0.59+

mujiTITLE

0.57+

secondQUANTITY

0.56+

the biggestQUANTITY

0.54+

24QUANTITY

0.48+

Sanjay Poonen, VMware & Matt Garman, Amazon | 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. Everyone welcome back to the cubes coverage of a Davis reinvent 2020. It's a virtual conference this year. This is the Cube virtual. I'm John for your host. We're not in person this year. We're doing it remote because of the pandemic, but it's gonna be wall to wall coverage for three weeks. We've got you covered. And we got a great interview signature interview here with Two Cube alumni's Matt Garment, vice president of sales and marketing at AWS, formerly head of the C two and, of course, Sanjay Poon in CEO of VM Ware. Both distinguished guests and alumni of the Cube. Good to see you, Sanjay. Matt. Thanks for coming on. Uh, let's just jump into it. How are you guys doing? >>Great. Exciting. Excited for reinvent and, uh, excited for the conversation. So thanks for having us on. >>Yeah, I'm great to be here. We are allowed to be 6 ft away from each other, so I came in, but super excited about the partnership. Matt and I have been friends for several years on. You were so excited about another reinvent, the different circumstances doing all virtual. But it's a fantastic partnership. >>You know, I look forward to reinvent one of my most favorite times of the year, and it's also kind of stressful because it's backs up against Thanksgiving. And but, you know, you get through it, you have your turkey and you do the Friday and you guys probably Kino, perhaps, and all things going on and then you go to Vegas is a few celebration. We're not doing it this year. Three weeks eso There's gonna be a lot of big content in the first week, and we're gonna roll that out. We're gonna cover it, But it's gonna be a different celebrations so mad. I know you're in front center on this, Uh, just real quick. What are what do you expect people to be doing on the system? What's your expectations and how is this all going to play out? >>Yeah, you know, it's gonna be different, but I think we have Justus much exciting news as ever. And, you know, it's gonna be over a three week period. I think it actually gives people an opportunity to Seymour things. I think a lot of times we heard from, uh, from customers before was they love the excitement of being in Vegas, and we're not gonna be able to exactly replicate that, but But we have a lot of exciting things planned, and it'll enables customers to get two more sessions Seymour of the content and really see more of the exciting things that are coming out of AWS. And there's a lot s over the three weeks I encourage folks toe to dive in and really learn things is a This is the opportunity for customers to learn about the cloud and and some really cool things coming out. We're excited. >>Well, congratulations on all the business performs. I know that there's been a tailwind with the pandemic as people wanna go faster and smarter with cloud and on premise and Sanjay, you guys have a great results as well. Before I get into some of my point. Of course, I have a lot of I know we don't a lot of time, but I want to get a nup date on the relationship we covered in three years ago when, uh, Andy Jassy and team came down to San Francisco with Pat Gelsinger, Raghu, Sanjay. All this went down. There were skeptics. Relationship has proven to be quite strong and successful for both parties because you guys take a minute so you will start with you and talk about the relationship update. Where you guys at, What's the status? The relationship people want to know. >>Yeah, I think John, the relationship is going really well. Uh, it's rooted in first off, a clear understanding that there's value for customers. Um, this is the best of the public cloud in the private cloud in a hybrid cloud journey. And then, secondly, a deep engineering effort. This wasn't a Barney announcement. We both decided Matt in his previous role, was running a lot of the engineering efforts. Uh, we were really keen to make this a deep engineering effort, and often when we have our connected Cube ers, we're doing one little later this afternoon. I often can't tell when a Amazon personal speaking when a VM ware person speaking we're so connected both the engineering and then the go to market efforts. And I think after the two or three years that the the solution has had to just state and now we have many, many customers started to get real value. The go to market side of the operations really starting take off. So we're very excited about it. It is the preferred and the best offering. We think in the market, Um, and for Vienna, where customers. We message it as the best place for Vienna workload that's running on V sphere to move into Amazon. >>Matt, what's your take on the relationship update from your >>standpoint, I agree with Sanjay. I think it's been it's been fantastic. I think like you said, some folks were skeptical when we first announced it. But But, you know, we knew that there was something there and I think as we've gotten even deeper into this partnership, Onda figured out how we can continue Thio integrate more deeply both with on Prem and into the cloud. Our customers have really guided us and I think that's that's enabled us to further strengthen that partnership, and customers continue to get more excited when they see how easy it is to move and operate their VM where in their V sphere workloads inside of a W S on how it integrates well with the AWS environment, Um on they can still use all of the same functions and capabilities that they they built their business on the inside of the sphere. We're seeing bigger and bigger customers really just embrace us, and the partnerships only grown stronger. I think you know, Sanjay and I, we do joint sales calls together. I think that the business has really, really grown. It's been it's been a fantastic partnership. >>I was talking about that yesterday with being where in eight of us teams members as well. I want to get your thoughts on this cultural fit. Sanjay mentioned e think the engineering cultures air there. The also the corporate culture, both customer focused. Remember Andy Jassy told me, Hey, we're customer focused like you're making big. You make big, big statements Public Cloud and now he goes toe hybrid. He's very reactive to the customers and this is a cultural thing for me, was an VM where what are the customers saying to you now? What are you working backwards from this year? Because there's a lot to work backwards from. You got the pandemic. You got clear trends around at modernization automation under the covers, if you will. And you got VM Ware successful software running on their cloud on AWS. You got other customers. Matt, what's the big trends right now that are highlighted in your in your world? >>Yeah, it's a good question. And I think you know, it really does highlight the strength of this this hybrid model, I think, you know, pre pandemic. We had huge numbers of customers, obviously kind of looking at the cloud, but some of the largest enterprises in the world, in the more traditional enterprises, they really weren't doing a lot, you know, they were tipping their toes in, and some of the forward leaning enterprises were being really aggressive about getting into the cloud. But, you know, many people were just, you know, kind of hesitant or kind of telling, saying, Yes, we'll go learn about the cloud. I think as soon as the pandemic hit, we're really starting to see some of those more traditional enterprises realize it's a business imperative for them. Toe have ah, big cloud strategy and to move there quickly, and I I think our partnership with VM Ware and the VMC offering really is allowing many of these large enterprises to do that. And we see we see big traditional enterprise is really accelerating that move into the cloud. It gives them the business agility they need that allows them to operate their environment in uncertain world that allows them to operate remotely on DSO. We're seeing all of those trends, and I think I think we're going to continue to see the acceleration of our joint business. >>Sanjay, your thoughts. Virtualization has hit ah, whole nother level. It's not like server virtualization like it's cultural, it's societal. What's your take? >>Yeah, I think you know, virtualization is that fabric that connects the private cloud to the public cloud. It's the basis for a lot of the public cloud infrastructure. So when we listen to customers, I think the first kind of misconception we had to help them with was that it had to be choice between one or the other and being able to take Vienna Cloud, which was basically compute storage networking management and put that into the bare metal capabilities of AWS, an engineer deep into the stack and all the services that Matt and the engineering team were able to provide to us now allows that sort of application that sitting on premise to move like a house on wheels into a W s. And that's a beautiful experience we've even shown in in conferences, like a virtual reality moving of a workload, throwing a workload into a W s and a W s catches it. It's a good metaphor in a good way to think of those things that VM were like like the most playing the customers like like the emotional moves nicely. But then the other a misconception we had thio kind of illustrate to our customers was that you could once you were there, uh, let's take that metaphor. The house and wheels renovate the house with all the I think there's probably $200 services that Amazon AWS has. Um, all of a I data services be I I o t. Whatever. You have all the things that Andy and Matt kind of talk about in any of the reinvents. You get to participate and build on those services so it has. It's not like you take this there, and then it's sort of a dead end. You get to modernize your app after you migrated. So this migrate and modernize motion is something that we really start to reinforce with our customers, and it doesn't matter which one you do. First, you may modernize first and then migrate or migrate first and modernize. And in the modernized parts we've also made some significant investments and containers and Tan Xue. We could talk about that at this time and optimizing that for both the private cloud world and the public cloud world like Amazon. >>You know, Matt, this is something that we're talking about a lot this week. These few weeks with reinvent going on this everything is a service trend has a lot of things under it, like automation. Higher level services. One of the critics would say, Three years ago, when this announcement relationship between VM Ware enables came out was, Oh, Amazon's is going to steal all of their customers and VM we're screwed. Turns out that's not the case. You guys are both winning and rising. Tide floats all boats because VM Ware has an operator kind of market. People are operating their business with VM ware and they're adding higher level services with Cloud native, So it Xan overall win, so that was proven false. So clearly the new trend You guys are gaining a large enterprises that wanna go faster, have that existing operator kind of legacy stuff or pre conditions of the enterprise like VM ware. So how do you guide the technology teams and how do you look at this? Because this is where customers are like saying, Hey, I cannot operate my business house on wheels, modernize it in real time, come out a covert with the growth strategy and go faster your interview on all that. >>So I think you're exactly right. I think we see a lot of customers who see I don't want to necessarily lose what I have. I want to add on top of that, And so whether that's adding machine learning and kind of figuring out how they can take their data from various different data silos and put them into a large data lake and gets the machine learning insights on top of that, whether they want to do analytics, um, whether they want to d i o T. Whether they want to modernize two containers, I think there's there's a whole bunch of ways in which customers are looking at that. But you're absolutely right. It's not a I'm gonna go from a to B. It's I'm gonna take a and add B to it and, um, we see that's that's over and over again. I think what we've seen from customers doing it and, um and they're really taking advantage of that, right? And I think customers see all the announcements that we're making a reinvent over the next three weeks, and they wanna be able to take advantage of those things right? It's it's they want to be able to add that onto their production environment. They want to take a lot of the benefits they've gotten from their VM Ware environment, but also add some of these innovations from AWS. And I think that Z that really is what we focus on is what our engineering teams focus on. You know, we have joint engineering efforts to figure out how we can bridge that gap, right, so that they BMR environments can very easily reach into their A W s environment and take advantage of all the new services and offerings that we have there. So, um, that's that's exactly what our joint teams really pushed together. >>Sanjay, I wanna get your thoughts on this and we talk. Two years ago, we had a conversation with Cuba. I ask you since this is a great move for VM Ware because it simplifies the messaging and clears up the whole cloud strategy. And you had said something that I'm gonna bring this back today. You said it's not just simplifying the messaging to customers about what we're gonna do in the cloud. It's going to simplify their life is gonna make things easier. Have them set up for better bitterness. Goodness down the road. Can you take him in to explain what that what that goodness was? What came out of the simplicity of the messaging, the simplicity of solution? Where are we now? How does that all kind of Italian together? Can you take him in to explain that? >>Yeah, I think when the history books are written, John, um, this partnership will be one of the most seminal partnerships because from VM Ware's perspective, maybe a little from Amazon Let Matt talk about if you feel the same way. This is a headwind turning into a tailwind. I think that's sort of narrative that VM ware in Amazon were competing each others that maybe was the early story. In the early days of A W s Progress and VM, we're trying to build our own public cloud and then divesting that, uh, Mats, a Stanford grad. I'm a Harvard grad. So one day there'll be a case study. I think in both schools about how this partnership we have a strong partnership with deadlines, sometimes joke. That's a little bit of an arranged marriage we don't have. We didn't have much saying that because AMC Bardhyl so that's an important partnership. But this one we have to work hard to create. And I tell our customers, Del on AWS are top partners. And as you think about what we've been able to do here, the simplicity to the customer for you, as you describe this, is being able to really lower cost of ownership in any process, in terms of how they're building and migrating APs to be the best optimization of hardware, software and services. And the more you could make that better, simpler, cheaper through software and through the movement to the cloud. Um, I think customers benefit, and then you know, Of course, the innovation machine of both companies. Uh, Amazon's really building. I mean, every time I go to read and I'm just amazed at the Yeah, I think it's a near 200 services that they're building in all of these rich layers. All of those developers, services and, I don't know, two million customers. The whatever number of people that have it reinvent this year get to participate on top of all the applications and the virtualization infrastructure we built over the 20 years of our history. Uh eh. So I hope, you know, as we continue do this, this is all now, but customers success large and small customers being able to. And I'm very gratified to three years since we announced this that we're getting very good customer traction. And for us, that's gonna be a key focus to the reinvent, uh, presence we >>have at their show. It really just goes to show you when you built, when you invest in relationships up and down the spectrum from engineering Ah, product and executive. It kind of does pay off. Congratulations to you guys on that matter. I want to get your thoughts on where this kind of going because you're talking about the messaging from VM ware in the execution that comes behind it is the best, you know, Private public cloud hybrid cloud success. There's momentum there. What are the customers saying to you when you look at customer proof points? Um, what do you point to? Because you're now in charge of sales and marketing, you have to take now the installed base of Amazon Web services, which is you got the Debs and startups and, you know, cloud scale to large enterprises. Now you got the postcode growth. Go fast, cloud scale. You've got a huge customer base. You've got a target. These guys, you gotta bring this solution. What are they saying about the VM ware AWS success? Can you share some? Some >>days I'd be happy to, I think I mean, look, this this is what gets, uh, us excited. I know Sanjay gets just as excited about this. It's and it's really it's resonating across our customer base. You know, there's folks like S and P Global who's a large enterprise, right? They had, uh, they had a hardware procurement cycle. They were looking at them on front of implementation and they looked at a WSMV I'm wearing. They said, Look, we want to migrate. All of our applications want to migrate. Everything we have into the cloud, I think it was 150 critical financial applications that they seamlessly migrated with zero downtime Now all running on BMC in the cloud. Um, you look at governments, right? We have thing folks like the Scottish government on many government customers. We have folks that are like Penny Mac and regulated industries. Um, that really took critical parts of their application. Andi seamlessly migrated them to to A W S and BMC, and they looked at us. And when we talk to these customers, we really say, like, where is the best place for us to run these v sphere workloads? And, um and the great thing is we have a consistent message. We we know that it's the right that that aws nbn where's the best place to run those VCR workloads in the cloud? And so as we see enterprises as we see regulated industries as we see governments really looking to modernize and take advantage of the cloud, we're seeing them move whole swaths of their applications. And this is not just small parts. These are the critical really mission critical applications that they know that they need to get out flexibility on, and they want to get that agility. And so, um, you know, there's been a broad swath of customers like that that have really moved large large pieces of their application in date of us. So it's been fun to see. >>And John, if I might add to that what we've also sought to do is pick some of those great customers like the ones that Matt talked about and put them on stage. Uh, VM world. In previous, we had Freddie Mac and we had, you know, I h s market and these are good examples in the few that Matt talked about. So I'm super excited. I expect there'll be many more reinvent we did. Some also be in world. So we're getting these big customers to talk about this because then you get the 10 phenomenon. Everyone wants to come to this, tend to be able to participate in that momentum. The other thing I'm super excited about it started off as a US phenomenon. Just the U s customers, but I'm starting to see riel interest from European and a p J customers. Asia Pacific customers in countries Australia, Japan, U. K, France, Germany. So this becomes a global phenomenon where customers understand that this doesn't have to be just the U. S centric customers that are participating. And then that was, for me a very key objective because the early customers always gonna start in the Geo where, um, you know, there's the most resonance with the public cloud. But now we're starting to see this really take off in many parts of the world. >>Yeah, that's a great point at something we can talk about another conversation. Maybe we will bring you guys into some of our live check ins throughout the three weeks we're doing here. Reinvent. But this global regional approach Matt has been hugely successful. Um, we're on Amazon. We have Q breaches because by default, we're on top of Amazon. You're seeing companies build on top of Amazon. Look a snowflake. The largest I po in the history of Wall Street behind VM Ware. They run Amazon, right? And I will probably have other clouds to down the road. But the point is you guys are enabling this. >>Yeah, global. And it's it is one of the things that we hear from customers that they that they love about running in the cloud is that, you know, think about if you had Teoh, you know you mentioned snowflake. Imagine if your snowflake and you have to go build data centers everywhere. If you had to go roll out toe to Europe and then you have to build data centers in Germany and then you have to build data centers and the U. K. And then you had to go build data centers in Australia like that would be an enormous cost and complexity, and they probably wouldn't do it frankly, at their early stage, Um, you know, now they just they spin up another stack and their ableto serve their customers anywhere around the world. And we're seeing that from our VM or customers where, you know, they actually are spinning up brand new vmc clusters, uh, where they weren't able to do it before, where they either had toe operate from a single stack. Um, now they're able to say, you know what? I'd love to have Ah, vm or stack in Australia, and they're able to get that up and running quickly. And so I do think that this is actually enabling new business it z, enabling customers to think about. How do they put their computer environment close to where their end users are or where they need that computer environment to be sometime just close to end users? Sometimes it's for data residency requirements, but it really kind of enables customers to do that. Where think about in a cove in world, if you have to go launch a data center in a new country, you probably just I mean, maybe it wouldn't even be possible to do that way are today. And now it's just FBI calls. So >>I mean, your point about going slows in an option. The imperative we have, you know, even expression here inside silicon and on the Cube team. Is there a problem? Yes. Is it important? Yes. What are the consequences if you don't solve the problem? Can you quantify those consequences? And then you gotta look at solutions and look at the timing. So you got timing. You got cost. You got the consequences of not doing it. And speed all those things. No. No one's gonna roll out of data center in six months if they if they tried so again, Cloud. And I'm trying to come into play here. You gotta operate something. It's a hand in the glove, its's. I'm seeing the cream rise to the top with covert. You're seeing real examples of riel scale riel value problems that you solve that important that have consequences that can be quantified. I mean, it's simple. Is that >>you know, John, I was gonna say, in addition to this via McLeod on aws were also pretty, you know, prominent AWS customer for some of our services. So some of the services that we've seen accelerate through Covic Are these distributed workforce security capabilities? Eso we resume internally, that obviously runs on AWS. But then surrounding that with workspace one and carbon like to secure the laptop that goes home. Those services of us running A W. S two. So this is one of those places where we're grateful that we could run those cloud services because we're also just like Snowflake and Zoom and others. Many of the services that we build that our SAS type services run on Amazon, and that reinforces the partnership for us. Almost like a SAS customer. >>Well, gentlemen, really appreciate your insight. As always, a great conversation. We could go for another hour. You guys with leaders of your organizations, you're at the front lines as managing through the pandemic will have you guys come into our check ins throughout the three weeks now here during reinvent from or commentary. But I'd like to end this segment by sharing. In your opinion, what is the most important thing that the audience should pay attention to this year at Reinvent? I know there's a lot of things going on. It's three weeks, not four days. It's so it's longer, but still there's a lot of announcements, man, on your side vm where you got the moment and you got your announcements. What should customers pay attention to this reinvent Virtual 2020. >>So, do you wanna go first? >>No, man, it's your show. You go first. E >>I would encourage folks toe Really think about and plan the three weeks out. This this is the opportunity to really dive in and learn. Right? Reinvent is as as many of you know, this This is just a different type of conference. It's not American Conference. This is a learning conference, and and even virtually that doesn't change. And so I encourage. Look across the broad swath of things that we're doing. Learn about machine learning and what we're doing in that space. Learn about the new compute capabilities or container capabilities. Learn about you know what, what is most relevant to your business if you're looking about. Hey, I have an on premise data center, and I'm looking about how I extend into the cloud. There's a lot of new capabilities around BMC and AWS that makes sense, but there's also a lot of cool announcements around just other services. Um, that could be interesting. We have a ton of customers. They're giving talks. And learning from other customers is often the best way to really understand how you can get the most value out of the cloud. And so I encourage folks toe really kind of block that time. I think it's easy when your remote to get distracted by, you know, watching Netflix or answering emails or things like that. But this is this is a great opportunity to block that schedule. Find the time that you have to really spend time and dive into the sessions because we have a ton of great content on a lot of really cool launches coming up. >>Yeah, I'm just very quickly. I would like one of things I love about Amazon's culture and were similar. VM Ware is that sort of growth mindset. Learn it all and I'm looking forward myself personally to going to reinvent university. This is three weeks of learning, uh, listening to many of those those things. I learned a ton and I've tried to have my own sort of mindset of have being a learn it all as opposed to know it. Also these air incredible sessions and I would also reinforce what Matt said which is going find pure customers of yours that are in your same vertical. We're seeing enormous success in the key verticals Vienna plays in which itself called financial services public sector healthcare manufacturing, CPG retail. I mean, whatever it is so and many of those customers will be, uh, you know, doing virtual talks or we have case studies of use cases because often these sort of birds of a feather allow you to then plan your migration of modernization journey in a similar >>fashion, Matt Sanjay, always great to get the leaders of the two biggest companies in our world A, W s and VM where to share their perspectives. Uh, this year is gonna be different. I'm looking forward to, you know, really kinda stepping up and leaning into the virtual because, you know, we're gonna do three weeks of cube coverage. We have, like, special coverage days, Tuesday, Wednesday, Thursday for each of the three weeks that we're in. And we're gonna try to make this fun as possible. Keep everyone engaged on tryto navigate, help people navigate through the virtual world. So looking forward to having you guys back on and and sharing. Thanks for coming. I appreciate it. Thank you very much. Okay, this is the cubes. Virtual coverage of virtual reinvent 2020. I'm John for your host. Stay with us. Silicon angle dot com. The cube will be checking in with our live coverage in and out of the sessions and stay with us for more wall to wall coverage. Thanks for watching. Yeah,

Published Date : Dec 1 2020

SUMMARY :

It's the Cube with digital coverage So thanks for having us on. We are allowed to be 6 ft away from each other, And but, you know, you get through it, you have your turkey and you do the Friday and you guys Yeah, you know, it's gonna be different, but I think we have Justus much exciting news as go faster and smarter with cloud and on premise and Sanjay, you guys have a great results as well. both the engineering and then the go to market efforts. I think you know, Sanjay and I, And you got VM Ware successful software running on their cloud on AWS. And I think you know, it really does highlight the strength of this this hybrid What's your take? kind of illustrate to our customers was that you could once you were there, uh, So how do you guide the technology teams and how do you look at this? advantage of all the new services and offerings that we have there. I ask you since this is a great move for VM And the more you could make that better, What are the customers saying to you when you look at customer proof points? And so, um, you know, there's been a broad swath of customers like that that have because the early customers always gonna start in the Geo where, um, you know, there's the most resonance with the public But the point is you guys are enabling this. love about running in the cloud is that, you know, think about if you had Teoh, you know you mentioned snowflake. I'm seeing the cream rise to the top with Many of the services that we build that our SAS type services run on Amazon, through the pandemic will have you guys come into our check ins throughout the three weeks now here during No, man, it's your show. And learning from other customers is often the best way to really understand how you can get of those customers will be, uh, you know, doing virtual talks or we have case studies of use cases So looking forward to having you guys back on and and sharing.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
JohnPERSON

0.99+

MattPERSON

0.99+

SanjayPERSON

0.99+

Sanjay PoonPERSON

0.99+

Matt GarmentPERSON

0.99+

AmazonORGANIZATION

0.99+

Andy JassyPERSON

0.99+

Pat GelsingerPERSON

0.99+

Sanjay PoonenPERSON

0.99+

AustraliaLOCATION

0.99+

EuropeLOCATION

0.99+

AWSORGANIZATION

0.99+

GermanyLOCATION

0.99+

AndyPERSON

0.99+

FranceLOCATION

0.99+

$200QUANTITY

0.99+

Matt SanjayPERSON

0.99+

twoQUANTITY

0.99+

JapanLOCATION

0.99+

VegasLOCATION

0.99+

RaghuPERSON

0.99+

6 ftQUANTITY

0.99+

FBIORGANIZATION

0.99+

San FranciscoLOCATION

0.99+

U. KLOCATION

0.99+

Matt GarmanPERSON

0.99+

eightQUANTITY

0.99+

150 critical financial applicationsQUANTITY

0.99+

both partiesQUANTITY

0.99+

three weeksQUANTITY

0.99+

four daysQUANTITY

0.99+

VM WareORGANIZATION

0.99+

three yearsQUANTITY

0.99+

bothQUANTITY

0.99+

both schoolsQUANTITY

0.99+

U. K.LOCATION

0.99+

Three years agoDATE

0.99+

Two years agoDATE

0.99+

VMCORGANIZATION

0.99+

SeymourPERSON

0.99+

BMCORGANIZATION

0.99+

yesterdayDATE

0.99+

both companiesQUANTITY

0.99+

Three weeksQUANTITY

0.99+

VMwareORGANIZATION

0.99+

oneQUANTITY

0.99+

Thomas Henson and Chhandomay Mandal, Dell Technologies | Dell Technologies World 2020


 

>>from around the globe. It's the Cube with digital coverage of Dell Technologies. World Digital Experience Brought to You by Dell Technologies. >>Welcome to the Cubes Coverage of Dell Technologies World 2020. The Digital Experience. I'm Lisa Martin, and I'm pleased to welcome back a Cube alumni and a new Cube member to the program today. China. My Mondal is back with US Director of Solutions Marketing for Dell Technologies China. But it's great to see you at Dell Technologies world, even though we're very specially death. >>Happy to be back. Thank you, Lisa. >>And Thomas Henson is joining us for the first time. Global business development manager for a I and analytics. Thomas, Welcome to the Cube. >>I am excited to be here. It's my first virtual cube. >>Yeah, well, you better make it a good one. All right. I said we're talking about a I so so much has changed John to me. The last time I saw you were probably were sitting a lot closer together. So much has changed in the last 67 months, but a lot has changed with the adoption of Ai Thomas. Kick us off. What are some of the big things feeling ai adoption right now? >>Yeah, I >>would have to >>say the two biggest things right now or as we look at accelerated compute and by accelerated compute we're not just talking about the continuation of Moore's law, but how In Data Analytics, we're actually doing more processing now with GP use, which give us faster insights. And so now we have the ability to get quicker insights in jobs that may have taken, you know, taking weeks to months a song as we were measuring. And then the second portion is when we start to talk about the innovation going on in the software and framework world, right? So no longer do you have toe know C plus plus or a lower level language. You can actually do it in Python and even pull it off of Get Hub. And it's all part of that open source community. So we're seeing Mawr more folks in the field of data science and deep learning that can actually implement some code. And then we've got faster compute to be able to process that. >>Tell me, what are your thoughts? >>Think I want to add? Is the explosive growth off data on that's actually are fulfilling the AI adoption. Think off. Like all the devices we have, the i o t. On age devices are doing data are pumping data into the pipeline. Our high resolution satellite imagery, all social media generating data. No. All of this data are actually helping the adoption off a I because now we have very granular data tow our friend the AI model Make the AI models are much better. Besides, so the combination off both in, uh, data the power off Like GPU, power surfers are coupled with the inefficient in the eye after and tools helping off. Well, the AI growth that we're seeing today >>trying to make one of the things that we've known for a while now is that it's for a I to be valuable. It's about extracting value from that. Did it? You talked about the massive explosion and data, but yet we know for a long time we've been talking about AI for decades. Initiatives can fail. What can Dell Technologies do now to help companies have successfully I project? >>Yeah, eso As you were saying, Lisa, what we're seeing is the companies are trying to add up AI Technologies toe Dr Value and extract value from their data set. Now the way it needs to be framed is there is a business challenge that customers air trying to solve. The business challenge gets transformed into a data science problem. That data scientist is going toe work with the high technology, trained them on it. That data science problem gets to the data science solution on. Then it needs to be mapped to production deployment as a business solution. What happens? Ah, lot off. The time is the companies do not plan for output transition from all scale proof of concept that it a scientists are playing with, like a smaller set of data two, when it goes toe the large production deployment dealing with terabytes toe terabyte self data. Now that's where we come in. At their technologies, we have into end solutions for the, uh for the ai for pollution in the customers journeys starting from proof of concept to production. And it is all a seamless consular and very scalable. >>So if some of the challenges there are just starting with iterations. Thomas question for you as business development manager, those folks that John um I talked about the data scientists, the business. How are you helping them come together from the beginning so that when the POC is initiated, it actually can go on the right trajectory to be successful? >>No, that's a great point. And just to kind of build off of what Shonda my was talking about, You know, we call it that last mile, right? Like, Hey, I've got a great POC. How do I get into production? Well, if you have executive sponsorship and it's like, Hey, everybody was on board, but it's gonna take six months to a year. It's like, Whoa, you're gonna lose some momentum. So where we help our customers is, you know, by partnering with them to show them how to build, you know, from an i t. And infrastructure perspective what that ai architectural looks like, right? So we have multiple solutions around that, and at the end of the day, it's about just like Sean. Um, I was saying, You know, we may start off with a project that maybe it's only half a terabyte. Maybe it's 10 terabytes, but once you go into production, if it turns out to be three petabytes four petabytes. Nobody really, you know, has the infrastructure built unless they built on those solid practices. And that's where our solutions come in. So we can go from small scale laboratory all the way large scale production without having to move any of that data. Right? So, you know, at the heart of that is power scale and giving you that ability to scale your data and no more data migration so that you can handle one PC or multiple PCs as those models continue to improve as you start to move into production >>and I'm sticking with you 1st. 2nd 0, sorry. Trying to go ahead. >>So I was going to add that, uh, just like posthumous said right. So if you were a data scientist, you are working with this data science workstations, but getting the data from, uh, L M c our scales thes scale out platform and, uh, as it is growing from, you see two large kills production data can stay in place with the power scale platform. You can add notes, and it can grow to petabytes. And you can add in not just the workstations, but also our They'll power it, solve our switches building out our enter A I ready solutions are already solution for your production. Giving are very seamless experience from the data scientist with the i t. >>So China may will stick with you then. I'm curious to know in the last 6 to 7 months since 2020 has gone in a very different direction thing we all would have predicted our last Dell Technologies world together. What are you seeing? China. My in terms of acceleration or maybe different industries. What our customers needs, how they changed. I guess I should say in the in 2020. >>So in 2020 we're seeing the adoption off a I even more rapidly. Uh, if you think about customers ranging from like say, uh, media and entertainment industry toe, uh, the customer services off any organization to, uh the healthcare and life sciences with lots off genome analysts is going on in all of these places where we're dealing with large are datasets. We're seeing ah, lot off adoption foster processing off A. I R. Technologies, uh, giving with, say, the all the research that the's Biosciences organizations are happening. Uh, Thomas, I know like you are working with, like, a customer. So, uh, can you give us a little bit more example in there? >>Yes, one of the areas. You know, we're talking about 2021 of the things that we're seeing Mawr and Mawr is just the expansion of Just look at the need for customer support, right arm or folks working remotely their arm or folks that are learning remote. I know my child is going through virtual schools, So think about your I t organization and how Maney calls you're having now to expand. And so this is a great area where we're starting to see innovation within a I and model building to be ableto have you know, let's call it, you know, the next generation of chatbots rights. You can actually build these models off the data toe, augment those soup sports systems >>because you >>have two choices, right? You can either. You know, you you can either expand out your call center right for for we're not sure how long or you can use AI and analytics to help augment to help maybe answer some of those first baseline questions. The great thing about customers who are choosing power scale and Dell Technologies. Their partner is they already have. The resource is to be able to hold on to that data That's gonna help them train those models to help. >>So, Thomas, whenever we're talking about data, the explosions it brings to mind compliance. Protection, security. We've seen ransom where really skyrocket in 2020. Just you know, the other week there was the VA was hit. Um, I think there was also a social media Facebook instagram ticktock, 235 million users because there was an unsecured cloud database. So that vector is expanding. How can you help customers? Customers accelerate their AI projects? Well, ensuring compliance and protection and security of that data. >>Really? That's the sweet spot for power scale. We're talking with customers, right? You know, built on one FS with all the security features in mind. And I, too, came from the analytics world. So I remember in the early days of Hadoop, where, you know, as a software developer, we didn't need security, right? We you know, we were doing researching stuff, but then when we took it to the customer and and we're pushing to production, But what about all the security features. We needed >>the same thing >>for artificial intelligence, right? We want toe. We want to make sure that we're putting those security features and compliance is in. And that's where you know, from from an AI architecture perspective, by starting with one FS is at the heart of that solution. You can know that you're protecting for you know, all the enterprise features that you need, whether it be from compliance, thio, data strategy, toe backup and recovery as well. >>So when we're talking about big data volumes Chanda, mind we have to talk about the hyper scale er's talk to us about, you know, they each offer azure A W s Google cloud hundreds of AI services. So how does DEL help customers use the public cloud the data that's created outside of it and use all of those use that the right AI services to extract that value? >>Yeah. Now, as you mentioned, all of these hyper scholars are they differentiate with our office is like a i m l r Deep Learning Technologies, right? And as our customer, you want toe leverage based off all the, uh, all the cloud has to offer and not stuck with one particular cloud provider. However, we're talking about terabytes off data, right? So if you are happy with what doing service A from cloud provider say Google what you want to move to take advantage off another surface off from Asia? It comes with a very high English p a migration risk on time it will take to move the data itself. Now that's not good, right? As the customer, we should be able to live for it. Best off breed our cloud services for AI and for that matter, for anything across the board. Now, how we help customers is you can have all of your data say, in a managed, uh, managed cloud service provider running on power scale. But then you can connect from this managed cloud service provider directly toe any off the hyper scholars. You can connect toe aws, azure, Google Cloud and even, like even, uh, the in place analytics that power scale offers you can run. Uh, those, uh I mean, run those clouds AI services directly on that data simultaneously from these three, and I'll add like one more thing, right? Thes keep learning. Technologies need GPU power solvers, right? and cloud even within like one cloud is not homogeneous environment. Like sometimes you'll find a US East has or gp part solvers. But like you are in the West and the same for other providers. No, with our still our technologies cloud power scale for multi cloud our scale is sitting outside off those hyper scholars connected directly to our any off this on. Then you can burst into different clouds, take advantage off our spot. Instances on are like leverage. All the GP is not from one particular service provider part. All of those be our hyper scholars. So those are some examples off the work we're doing in the multi cloud world for a I >>So that's day. You're talking about data there. So powers failed for multi cloud for data that's created outside the public club. But Thomas, what about for data that's created inside the cloud? How does Del help with that? >>Yes. So, this year, we actually released a solution, uh, in conjunction with G C. P. So within Google Cloud, you can have power scale for one fs, right? And so that's that native native feature. So, you know, goes through all the compliance and all the features within being a part of that G c p natively eso counts towards your credits and your GP Google building as well. But it's still all the features that you have. And so we've been running some, actually, some benchmarks. So we've got a couple of white papers out there, that kind of detail. You know what we can do from an artificial intelligence perspective back to Sean Demise Example. We were just talking about, you know, being able to use more and more GPU. So we we've done that to run some of our AI benchmarks against that and then also, you know, jumped into the Hadoop space. But because you know, that's 11 area from a power scale, prospective customers were really interested. Um, and they have been for years. And then, really, the the awesome portion about this is for customers that are looking for a hybrid solution. Or maybe it's their first kickoff to it. So back Lisa to those compliance features that we were talking about those air still inherent within that native Google G C P one fs version, but then also for customers that have it on prim. You can use those same features to burst your data into, um, your isil on cluster using all the same native tools that you've been using for years within your enterprise. >>God, it's so starting out for power. Skill for Google Cloud Trying to get back to you Kind of wrapping things up here. What are some of the things that we're going to see next from Dell from an AI Solutions perspective? >>Yes. So we are working on many different interesting projects ranging from, uh, the latest, uh, in video Salford's that they have announced d d x a 100. And in fact, two weeks ago at GTC, uh, Syria announced take too far parts with, uh, it takes a 100 solvers. We're part off that ecosystem. And we are working with, uh, the leading, uh uh, solutions toe benchmark, our ai, uh, environments, uh, for all the storage, uh, ensuring, like we are providing, like, all the throughput and scalability that we have to offer >>Thomas finishing with you from the customer perspective. As we talked about so many changes this year alone as we approach calendar year 2021 what are some of the things that Dell is doing with its customers with its partners, the hyper scale er's and video, for example, Do you think customers are really going to be able to truly accelerate successful AI projects? >>Yeah. So the first thing I'd like to talk about is what we're doing with the D. G. S A 100. So this month that GTC you saw our solution for a reference architecture for the G s, a 100 plus power scale. So you talk about speed and how we can move customers insights. I mean, some of the numbers that we're seeing off of that are really a really amazing right. And so this is gives the customers the ability to still, you know, take all the features and use use I salon and one f s, um, like they have in the past, but now combined with the speed of the A 100 still be ableto speed up. How fast they're using those building out those deep learning models and then secondly, with that that gives them the ability to scale to. So there's some features inherent within this reference architecture that allow for you to make more use, right? So bring mawr data scientists and more modelers GP use because that's one thing you don't see Data scientist turning away right there always like, Hey, you know, I mean, this this project here needs needs a GPU. And so, you know, from a power scale one fs perspective, we want to be able to make sure that we're supporting that. So that as that data continues to grow, which, you know we're seeing is one of the large factors. Whenever we're talking about artificial intelligence is the scale for the data. We wanna them to be able to continue to build out that data consolidation area for all these multiple different workloads. That air coming in. >>Excellent, Thomas. Thanks for sharing that. Hopefully next time we get to see you guys in person and we can talk about a customer who has done something very successful with you guys. Kind of me. Always great to talk to you. Thank you for joining us. >>Thank you. Thank you >>for China. May Mandel and Thomas Henson. I'm Lisa Martin. You're watching the cubes Coverage of Dell Technologies, World 2020

Published Date : Oct 21 2020

SUMMARY :

It's the Cube with digital coverage of Dell But it's great to see you at Dell Technologies world, Happy to be back. Thomas, Welcome to the Cube. I am excited to be here. So much has changed in the last 67 months, but a lot has changed with And so now we have the ability to get quicker insights in jobs that may have taken, you know, Well, the AI growth that we're seeing today You talked about the massive explosion Yeah, eso As you were saying, Lisa, what we're seeing is the So if some of the challenges there are just starting with iterations. at the heart of that is power scale and giving you that ability to scale your data and no more and I'm sticking with you 1st. So if you were a data scientist, you are working with this data science workstations, So China may will stick with you then. So, uh, can you give us a little bit more to be ableto have you know, let's call it, you know, the next generation of chatbots rights. for for we're not sure how long or you can use AI and analytics to help Just you know, the other week there was the VA was hit. So I remember in the early days of Hadoop, where, you know, as a software developer, And that's where you know, from from an AI architecture perspective, talk to us about, you know, they each offer azure A W s Google cloud hundreds of So if you are happy with what doing created outside the public club. to run some of our AI benchmarks against that and then also, you know, jumped into the Hadoop space. Skill for Google Cloud Trying to get back to you Kind of wrapping things up And we are working with, uh, the leading, uh uh, Thomas finishing with you from the customer perspective. And so this is gives the customers the ability to still, you know, take all the features and use use I salon Hopefully next time we get to see you guys in person and we can talk about a customer who has Thank you. of Dell Technologies, World 2020

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
ThomasPERSON

0.99+

Lisa MartinPERSON

0.99+

JohnPERSON

0.99+

Thomas HensonPERSON

0.99+

GoogleORGANIZATION

0.99+

LisaPERSON

0.99+

2020DATE

0.99+

Dell TechnologiesORGANIZATION

0.99+

AsiaLOCATION

0.99+

10 terabytesQUANTITY

0.99+

DellORGANIZATION

0.99+

SeanPERSON

0.99+

Dell TechnologiesORGANIZATION

0.99+

six monthsQUANTITY

0.99+

C plus plusTITLE

0.99+

PythonTITLE

0.99+

two weeks agoDATE

0.99+

second portionQUANTITY

0.99+

ChinaLOCATION

0.99+

three petabytesQUANTITY

0.99+

hundredsQUANTITY

0.99+

threeQUANTITY

0.98+

this yearDATE

0.98+

four petabytesQUANTITY

0.98+

FacebookORGANIZATION

0.98+

first timeQUANTITY

0.98+

Chhandomay MandalPERSON

0.98+

May MandelPERSON

0.98+

half a terabyteQUANTITY

0.98+

11 areaQUANTITY

0.98+

this yearDATE

0.98+

bothQUANTITY

0.97+

235 million usersQUANTITY

0.97+

two choicesQUANTITY

0.97+

MoorePERSON

0.97+

oneQUANTITY

0.97+

Deep Learning TechnologiesORGANIZATION

0.95+

first kickoffQUANTITY

0.94+

100 solversQUANTITY

0.94+

petabytesQUANTITY

0.94+

USLOCATION

0.93+

GTCLOCATION

0.93+

A 100COMMERCIAL_ITEM

0.92+

EnglishOTHER

0.92+

decadesQUANTITY

0.91+

1st. 2nd 0QUANTITY

0.91+

first thingQUANTITY

0.91+

two large killsQUANTITY

0.9+

instagramORGANIZATION

0.9+

this monthDATE

0.9+

HadoopTITLE

0.9+

todayDATE

0.89+

US EastLOCATION

0.89+

terabytesQUANTITY

0.88+

MondalPERSON

0.88+

D.COMMERCIAL_ITEM

0.88+

first baselineQUANTITY

0.87+

secondlyQUANTITY

0.86+

two biggest thingsQUANTITY

0.86+

100 plusCOMMERCIAL_ITEM

0.86+

Technologies World 2020EVENT

0.85+

Get HubTITLE

0.84+

DelPERSON

0.84+

G C. P.ORGANIZATION

0.83+