Enrico Canzonieri, Yelp, Inc. | Flink Forward 2018
>> Narrator: Live from San Francisco, it's The Cube, covering Flink Forward, brought to you by Data Artisans. (upbeat music) >> Hi this is George Gilbert, we are at Flink Forward the conference for the Apache Flink community, sponsored by Data Artisans, which is the company commercializing Flink, and we have with us now Enrico Canzonieri, wait a minute I didn't get that right, Canzonieri, Sorry, Enrico from Yelp. And he's going to tell us how sort of Flink has taken Yelp by storm over the past year. Why don't we start off with where you were last year in terms of your data pipeline and what challenges you were facing. >> Yeah sure, so we had a Python company in the sense we developed most of our software in Python, so until last year we had most of our stream processing was depending on Python. We had developed and announced framework that was doing Python processing, and that was really what we had, there was no Flink running, most of the applications were built around a very simple interface that was process message function, that was what we expected developers to use, so no real obstruction there. >> Okay so, in other words, it sounds like you had a discrete task, request response or a batch, and then hand it off to the next function, and is that what the pipeline looked like? >> The pipeline was more of a streaming pipeline where we had a Kafka topic and input and we had these developers who would write this process message function where each message would be individually processed, there was a kind of the semantic of the pipeline there. And then we will get the result of that processing task into another Kafka topic and then get another processing function on top of that So we could have very easily, two or three processing tasks all connected by Kafka topics. Obviously there were like big limitations of that kind of architecture, especially when you want to do something more advanced that can include windowing, aggregation, or especially state management. >> Well Kafka has several layers of abstraction and I guess you'd have to go pretty low level to get the windowing, all the windowing and state management capabilities. >> Yeah it becomes really hard you basically have to implement by yourself unless you're using a (mumbles) on the conference platform or you're using what they call Kafka streams, but we are not using that. >> Oh, not? Okay. >> Obviously we were trying to implement that on top of what Python or Simple Flame work from zero. >> So tell us how the choice of Flink, sort of where did it hit your awareness and where did you start mapping it into this pipeline that was Python based? >> Yeah so we had the really I think two main use cases, this was last year, that we were struggling to get right and to really get working. The first one was a connector and the challenge there was to aggregate that locally, scale it to hundreds of streams, and then once we aggregated that locally, upload at our own S3. So that was one application, we were really struggling to get that work because in the framework we had, we had no real obstruction for windowing so we had this process message function where it was trying to implement all of that. And also because we were using a very low level Kafka code primitives, getting scalability was not as straight forward. So that was one application that was pretty challenging, the other one was really purer state full application, where we needed to retain the state forever. It was doing a windowed join across streams, so obviously the challenges in that case are even harder more because you have to implement a state management from the ground up. >> And all the time semantics. >> Yeah we had basically no even time semantics. We were not supporting that. >> Okay. >> So we looked at Flink because of even time support so then we could actually do even time processing. State management support, already implemented, it's way different than implementing it from the ground up. And then obviously the abstractions so the streaming primitives, you have windows, you have a nice interface that you can use that makes developers who are writing code it becomes easier for them. >> So let's start with the state management, help us walk through like, what capabilities in state management does Flink have relative to the lowest level abstraction you were using in Kafka or perhaps what spark structured streaming might provide. >> Yeah so I think the nice features in streams are really around the fact that the state management is implemented and fully supports the clusterized approach of Flink. So for example if you're using Kafka, Flink already, in the Kafka connector, Flink already provides a way to represent the Kafka state the state of a Kafka consumer. It also, for open editors, if you have a flat map or you have a window, state for Windows is already fully supported so if you are cumulating events, in your window, you don't really know what to do, then nothing special, these states will be automatically maintained by the Flink framework. That means that if Flink is taking a snapshot so a check point or a save point, all the state that was there will get stored in the check point and then will be able to recover. >> For the full window. >> Yeah. >> It's cause it understands the concept of the window when it does a check point. >> Yeah because there's native support in Flink for that. >> And what's the advantage of having state be integrated with the compute as opposed to compute and then some sort of API to a separate state manager? >> It's definitely like call to clarity, it's a big simplification of how you implement your code, your streaming application. Cause in the end if for every simple string application you need to go ahead and implement or define, implement basically the way your state gets stored, that really makes a very complex application, especially on the maintain, for maintenance. So in Flink you kind of focus on the business logic we actually did some tuning on the state manager that was necessary, but the tuning that we did applies in the same way across all the applications we built. Then users want to build an application, they focus on the business logic that they want, and they have, I would say the state is more kind of declarative, you say you want this map, you need this list and this state as part of the state and Flink will take care of actually making sure that that gets into the check point. >> So the sort of semantics of state management are built in at the compute layer, as opposed to going down to an API for a separate service in other implementations. >> Yeah, yeah. >> Okay. All right we have just a minute left, tell us about some of the things you're looking forward to doing with Flink, and are they similar to what the DA platform that's coming out from Data Artisans or do you have still a whole bunch of things on the data pipeline that you want to accomplish with just the core functionality? >> Yeah we definitely, I will say one of the features that we are really excited about is the stream sequel. I see a lot of potential there for new applications, we actually use a stream sequel at Yelp and we deploy that as a service so it makes it easier for users to deploy and to develop stream plus string applications. We definitely are planning to expand our Flink deployment into just new apps. Especially one of the things that we try to do especially building reusable components, and trying to deploy the reusable components are very coupled with the way we think about our data pipeline. >> Okay so would it be fair to say that can you look at the DA platform and say for companies that are not quite as sophisticated as you, that this is going to make it easier for you know main stream companies to build and deploy, operate? >> I see good potential there, I was looking at the presentation in the morning I like the integration we culminated for sure, since like that's where kind of the current trend for application deployment is going. So yeah I definitely see potential, I think for Yelp we clearly have a complex enough deployment and service integration that won't probably be a good fit for us. But probably companies that are approaching the route of Flink, now and we'll probably have an already existing deployment they may probably give it a try. >> Okay, all right Enrico we got to end it there but that was very helpful and thanks for stopping by. >> Thanks for having me here. >> Okay. And this is George Gilbert we are at Flink Forward, the Data Artisan's conference for the Apache Flink community, and we will be right back after this short break. (upbeat music)
SUMMARY :
covering Flink Forward, brought to you by Data Artisans. and we have with us now Enrico Canzonieri, in the sense we developed most of our software in Python, and we had these developers who would write this and state management capabilities. on the conference platform or you're using Okay. Obviously we were trying to implement that because in the framework we had, Yeah we had basically no even time semantics. so then we could actually do even time processing. relative to the lowest level abstraction you were using all the state that was there It's cause it understands the concept of the window that was necessary, but the tuning that we did So the sort of semantics of state management on the data pipeline that you want to accomplish Especially one of the things that we try to do I like the integration we culminated for sure, but that was very helpful and thanks for stopping by. and we will be right back after this short break.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
George Gilbert | PERSON | 0.99+ |
Enrico Canzonieri | PERSON | 0.99+ |
Enrico | PERSON | 0.99+ |
Data Artisans | ORGANIZATION | 0.99+ |
Flink | ORGANIZATION | 0.99+ |
Canzonieri | PERSON | 0.99+ |
Python | TITLE | 0.99+ |
last year | DATE | 0.99+ |
two | QUANTITY | 0.99+ |
Kafka | TITLE | 0.99+ |
Apache | ORGANIZATION | 0.99+ |
Yelp | ORGANIZATION | 0.99+ |
each message | QUANTITY | 0.99+ |
one application | QUANTITY | 0.99+ |
Yelp, Inc. | ORGANIZATION | 0.99+ |
S3 | TITLE | 0.99+ |
hundreds of streams | QUANTITY | 0.99+ |
San Francisco | LOCATION | 0.98+ |
one | QUANTITY | 0.96+ |
past year | DATE | 0.94+ |
2018 | DATE | 0.93+ |
Simple Flame | TITLE | 0.92+ |
Windows | TITLE | 0.91+ |
first one | QUANTITY | 0.9+ |
two main use cases | QUANTITY | 0.88+ |
Flink | TITLE | 0.87+ |
Data Artisan | EVENT | 0.82+ |
three processing tasks | QUANTITY | 0.76+ |
Flink Forward | ORGANIZATION | 0.73+ |
zero | QUANTITY | 0.72+ |
Narrator | TITLE | 0.69+ |
The Cube | TITLE | 0.69+ |
string | QUANTITY | 0.68+ |
windows | TITLE | 0.64+ |
things | QUANTITY | 0.52+ |
Flink Forward | EVENT | 0.5+ |
Forward | EVENT | 0.49+ |
Zachary Musgrave & Chris Gordon, Yelp | Splunk .conf 2017
>> Narrator: Live from Washington D.C., it's theCUBE. Covering .conf2017. Brought to you by Splunk. >> Well welcome back here on theCUBE. We continue our coverage of .conf2017, we're in Washington D.C. Along with Dave Vellante, I'm John Walls. And Dave, you know what time it is, by the way? Just about? >> I don't know, this is the penultimate interview. >> It's almost five o'clock. >> Okay. >> And that means it's almost happy hour time. So I was thinking where might we go tonight, so-- >> There's an app for that. >> There was, and so I looked. It turns out that the Penny Whiskey Cafe is just two tenths of a mile from here. And you know how I knew that? >> How's the ratings on that? >> We got four. >> Four and half with 52. >> 52 reviews? >> Yeah, I feel good about that. >> Yeah, that's pretty good. That's a substantive base. >> I feel very solid with that one. We'll make it 53 in about a half hour. Of course I found it on Yelp. We have a couple of gentlemen from Yelp with us tonight. I don't have to tell you what Yelp does, it does everything for everybody, right. Zach Musgrave, technical lead, and Chris Gordon, software engineer at Yelp. Gentlemen, thanks for being here. And U can join us, by the way, later on, at the Penny Whiskey if you'd like to. First off, what are you doing here, right, at Splunk? What's Yelp and Splunk, what's that intersection all about? Zach, if you would. >> Sure, well Yelp uses Splunk for all sorts of purposes. Operational, intelligence, business metrics, pretty much any sort of analytics from event driven data that you can really think of, Yelp has found a way, and our engineers have found a way to get that into Splunk and derive business value from it. So Chris and I are actually here, we just gave a breakout session at .conf, talking about how we find strong business value and how we quantify that value and mutate our Splunk cluster to really drive that. >> Okay. >> So, so how do you find value then, I mean, what was? >> It's hard. Chris was one of the people who really, really drove this for us. And when we looked at this, you know I once had an engineer who came up to our team, we maintain Splunk amongst other things, and the engineer said can I ingest 10 terabytes of data a day into Splunk and then keep it forever? And I said, um, please don't. And then we talked a bit more about what that engineer was actually trying to do and why they needed this massive amount of data, and we found a better way that was much more efficient. And then where we didn't need to keep all the data forever. So, by being able to have those conversations and to quantify with the data you're already ingesting into Splunk, being able to quanitfy that and actually show how many people were searching this, how's it being used, what's the depth of the search look like, how far back are they looking in time. You can really optimize your Splunk cluster to get a lot more business value than just naively setting it up and turning it on. >> So you weren't taking a brute force approach, you were smarter about that, but you weren't deduping, you were identifying the data that was not necessary to keep, did I get that right? >> Correct. Yeah, we essentially kind of identified what are highest cost per search logs, which we basically just totaled up how many times each log was searched, and then tried to quantify how much each logs was costing us. And then this ended up being a really good metric for figuring out what we'd want to remove or something that was a candidate for dislodging the data somehow. >> So, you guys gave a talk today. We were talking off camera about pricing, that's not something you guys get involved in, but I would categorize this as sort of how do you get the most out of that asset, called Splunk, right. Is that sort of the >> Exactly. >> theme of your talk, right? >> Yeah. We talk a lot about expected value amongst our team, and in the talk we just gave. And we don't ever think about this as, oh do this so that you can spend less money on Splunk or on your infrastructure that's backing Splunk. Think about is more as we have this right now and we can utilize it more effectively. We can get more value out of what we already have. >> Okay, so, I wonder if we could just talk a little bit about your environment. We know you run on AWS. How does that cloud fit in with Splunk, paint a picture for us, if you would. What does it all look like? >> Yeah, so we have two clusters actually. One is the high value, high quality of service cluster, it's the larger generic, we call it generic prod, and then we have another one, where we kind of have our more verbose, maybe slightly less valuable per log cluster. And this runs on a D2, which is just instant storage. And then the higher performance cluster runs all on a GP2. So it's basically just SSDs. And we also do, we also have four copies of each log and we have two searchable copies of each log, so it's pretty well replicated. >> Dave: Okay, so that's how you protect the data. >> Yeah. >> Is to make copies, in what, in different zones, or? >> Yeah, we have two copies of each log in each availability zone, and then one searchable copy of each log in each availability zone. >> And you guys are cloud natives, all cloud, just out of school and graduate school. So you talked about infrastructure as code. You don't do any of that on-prem stuff, you're not like installing gear. And so it's not part of your lexicon, right? >> No. >> Okay. So I want to do a little editorial thing. Kristen Nicole, our managing editor, sent the note around today saying 101s get the best traffic on the website. So I want to do a little DevOps 101, okay. Even though, it's second nature to you, and a lot of people in our audience know what it is. How do you describe DevOps? Give us the 101 on DevOps. >> Okay so, DevOps is a complicated thing, but and occasionally you see it as like a role on like a job board or something. And that always strikes me as odd, because it's not really a role. Like it's a philosophy moreso. The way that I always see it, is it used to be like pre DevOps, was the software developers make a thing, and then they throw it over the fence, and operations just picks it up. And they're like well what do we do with this, and deploy it, okay, good luck. And so with this result in a sort of an us against them mentality, where the developers aren't incentivized to really make it resilient, or really document it well, and operations and the sys admins are not incentivized to really be flexible and to be really hard charging and move quickly, because they're the ones who are going to be on call for whatever the developers made. DevOps is a we, instead of an us verses them. So for example, product teams have an on-call rotation. Operations and sys admins write code. There are still definitely specializations, but it all comes together in a much more holistic manner. >> Okay, and the ops guys will write code, as opposed to hacking code, messing up your code, throwing it back over the fence, and saying hey your code doesn't work. >> Exactly. >> And then you say well it worked when I gave it to you. And then like you said that sort of finger pointing. >> We are totally done with works on my machine, it's over. No more. >> Okay, and the benefits obviously are higher quality, faster time to market, less food fighting. >> Yup, exactly. In the old model you'd have a new deployment of like a website like maybe once a week or maybe even once a month. Yelp deploys multiple times everyday over and over again. And each one of those is going to include changes from a dozen different engineers. So we need to be agile in that manner, just like with our Splunk cluster. >> I mean you guys are relatively new, four years and two years, perspectively. But these days it's a long time. How would you describe your Splunk journey. Where did it start and where do you want to take it? >> I would say it started, you actually had Kris Wehner on here last year, and he talked a lot about it. He was the VP of engineering at SeatMe. And he kind of got Yelp onto the whole Splunk train. And at that point it was used mostly by SeatMe and everyone at Yelp was like oh this is fantastic, we want to use this. And we started basically migrating it to our VPC. And have generally, we're starting to now get everything going, get all the kinks worked out, and really now we're trying to see where we can provide the most value and make things as easy as possible for our developers to add logs and add searches and get what they need out of it. >> So what kind of use cases are you envisioning, and where are you getting value out of it? >> So we have our operations teams get a lot of value out of it when there's some outage happening. And it's really useful for them to be able to just look at the access logs and see what's going on. And Splunk makes that very easy. And we also get a lot of value out of Yelp's application logs. Splunk has been great for figuring out when something's not right. And allowing us to dig in further. >> So yeah, at the end of the day, as consumers, what does this mean to us, ultimately? Like our searches are faster, searches are more refined, searches are more accurate? What does it mean to me at the end of the day that you're enabling what activity through this technology. >> Dave: Yeah, it'll be more secure? >> Yeah, what does it mean? >> As an end user of Yelp? >> Yes. >> So, I'll give you one example that always sticks out in my mind. So I don't know if you all know this, but you can actually do things like order food via Yelp, you can make appointments via Yelp, even with like a dentist. You can beauty appointments, all sorts of personal services. >> Hair salon came up today actually, when I was looking for a bar. >> Absolutely. That's not supposed to happen. >> Dave: Well that was the Penny Whiskey Cafe. >> You never know, but what ever's next door I don't know. >> Can you get a haircut while you drink? >> Hair salons in the District are pretty impressive. >> I wasn't planning on it, no. But anyway, I'm sorry. >> Anyway, so we work with a lot of external partners to enable all these different integrations, right. So you press start order, and then eventually you see the menu, and then you add some stuff to your cart, and then you have to pay. And so if you haven't given us your credit card information yet, then you have to enter that, and that has to go to a payment processor, the order of course has to go out to the partner who's going to fulfill your order, and so on. So there's this pipeline of many different micro services plus the main Yelp application, plus this partner who's actually fulfilling your order, plus the payment processor, and so on, and so on. And it ends up with this really complicated state machine. So the way that actually works under the hood, to be very simplistic, is there's a unique order identifier that is assigned to you when you start the order. And then that passed through the whole process. So at every step in this process a bunch of events are emitted out of the various parts of the pipeline and into Splunk, where they're then matched to show that your order is progressing. And the order didn't get stuck. Because you know what's really sad is when you order food and it doesn't show up. So we really have to guard against that. >> Yeah, we hate that. >> Yeah, everybody does. So it's really important that we're able to unify this data, from all these different places, Splunk's really great for that, and to be able to then alert on that and page somebody and say hey, something's not quite right here, we have hungry folks. >> So while I have the smartest guys that we've interviewed all week here, you mentioned, >> Please. You mentioned, aw shucks, I know. You mentioned state machine. Are you playing around with functional programming, so called server lists, probably don't like that word either, but what are you doing there? Are you finding sort of new applications in use cases for so called server lists? >> I would say not so much. I don't know, is anyone at Yelp doing that? >> Yeah, there's some Lambda stuff going on. Like core back end is doing that work right now. A lot of our infrastructure is actually build up before the AWS Lambdas were a thing. So we found other ways to do that, and we have this really cool internal platform as a service, it's a docker, and some scheduling stuff on top of that. So a lot of things, like it's really easy to just launch a batch job in there. And it takes away some of the need for the true server lists. >> Well the reason I ask is because people are saying a lot of the state list IoT apps are going to use that sort of Lambda or homegrown stuff. And I'm not sure what the play is for Yelp in Internet of Things. I would imagine there's actually a play there for you guys though, and I'm curious as to the data angle, and maybe where Splunk might fit in. >> I'm certain that we're going to be using Splunk to read data from all of those different components as they're being launched. I know that there's been a couple early forays into the Lambda space that I've seen go by in code reviews and everything. But of course, with Splunk itself we can get data out of those. So as that happens, like we already have all our pipe lining set up. And it'll be pretty easy for them to analyze their self with Splunk. >> What gets you young folks excited these days? What keeps you enthralled and passionate? What do you look for? >> I don't know I think just in general anything that empowers you to get a lot done without having to fight it constantly. And general DevOps tools have been getting really good at that recently. And yeah, I would say anything that empowers you, gives you the feeling that you can do anything really. >> Yeah, all of the infrastructure is code stuff that's going on right now. So one of the pipelines that we use to get data out of Amazon S3, but it passes notifications through this S3 event notifications to Amazon SNS, to Amazon SQS, to our Splunk forwarders. And so that's a very complicated pipeline. And you have to set it all up, it works really well, but here's the cool part. That's all defined in code. And so this means that if you set up a new integration there's a code review. And we have some verification and validation that it's correct. And furthermore, if anything goes wrong with it, we can just hit a button and it recreates itself. That's what gets me happy. When tools get in my way that's not so good. >> Well and it just leaves more time for higher value activities and that's exciting. the transformation in infrastructure over the last five years has just been mind boggling. So, thanks you guys. >> It does. It does give me a lot of pleasure when something can go catastrophically wrong, and then just like, oh wait, it's self healing, all it can take is give three plays fine. And we're all dandy. >> Well to Dave's point, while I was off camera I did a search on the two smartest guys in the room. And it said one is six feet away the other one is seven feet away, so Yelp works, I mean it really does. But thanks for the time. It's been interesting. Next generation, right? So far over us. >> Yeah, I know. It's kind of depressing, but I love it. (laughing) >> Very good, thanks guys. >> Thank you so much. >> Back with more, here on theCUBE at .conf2017. We are live, Washington D.C. >> Dave: I've kind of had it with millennial. (upbeat music)
SUMMARY :
Brought to you by Splunk. And Dave, you know what time it is, by the way? And that means it's almost happy hour time. And you know how I knew that? Yeah, that's pretty good. I don't have to tell you what Yelp does, from event driven data that you can really think of, and to quantify with the data And then this ended up being a really good metric as sort of how do you get the most out of that asset, and in the talk we just gave. We know you run on AWS. and then we have another one, Yeah, we have two copies of each log And you guys are cloud natives, all cloud, and a lot of people in our audience know what it is. and operations and the sys admins Okay, and the ops guys will write code, And then you say We are totally done with works on my machine, it's over. Okay, and the benefits obviously are And each one of those is going to include changes How would you describe your Splunk journey. And he kind of got Yelp onto the whole Splunk train. And we also get a lot of value What does it mean to me at the end of the day So I don't know if you all know this, Hair salon came up today actually, That's not supposed to happen. but what ever's next door I don't know. Hair salons in the District I wasn't planning on it, and then you add some stuff to your cart, and to be able to then alert on that but what are you doing there? I don't know, is anyone at Yelp doing that? And it takes away some of the need and I'm curious as to the data angle, And it'll be pretty easy for them to analyze anything that empowers you to get a lot done And so this means that if you set up Well and it just leaves more time and then just like, oh wait, And it said one is six feet away the other one It's kind of depressing, but I love it. Back with more, here on theCUBE at .conf2017. Dave: I've kind of had it with millennial.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Chris | PERSON | 0.99+ |
Zach Musgrave | PERSON | 0.99+ |
Dave | PERSON | 0.99+ |
Dave Vellante | PERSON | 0.99+ |
Chris Gordon | PERSON | 0.99+ |
Yelp | ORGANIZATION | 0.99+ |
Kristen Nicole | PERSON | 0.99+ |
John Walls | PERSON | 0.99+ |
SeatMe | ORGANIZATION | 0.99+ |
six feet | QUANTITY | 0.99+ |
four | QUANTITY | 0.99+ |
seven feet | QUANTITY | 0.99+ |
Kris Wehner | PERSON | 0.99+ |
Four | QUANTITY | 0.99+ |
One | QUANTITY | 0.99+ |
Washington D.C. | LOCATION | 0.99+ |
Zach | PERSON | 0.99+ |
two copies | QUANTITY | 0.99+ |
last year | DATE | 0.99+ |
AWS | ORGANIZATION | 0.99+ |
two smartest guys | QUANTITY | 0.99+ |
once a week | QUANTITY | 0.99+ |
four years | QUANTITY | 0.99+ |
each log | QUANTITY | 0.99+ |
53 | QUANTITY | 0.99+ |
once a month | QUANTITY | 0.99+ |
Splunk | ORGANIZATION | 0.99+ |
one | QUANTITY | 0.99+ |
two clusters | QUANTITY | 0.99+ |
Zachary Musgrave | PERSON | 0.99+ |
Lambda | TITLE | 0.99+ |
each logs | QUANTITY | 0.99+ |
today | DATE | 0.99+ |
52 reviews | QUANTITY | 0.99+ |
52 | QUANTITY | 0.99+ |
tonight | DATE | 0.99+ |
second nature | QUANTITY | 0.99+ |
four copies | QUANTITY | 0.99+ |
Amazon | ORGANIZATION | 0.98+ |
DevOps | TITLE | 0.98+ |
Penny Whiskey Cafe | ORGANIZATION | 0.98+ |
Splunk | PERSON | 0.98+ |
First | QUANTITY | 0.97+ |
Lambdas | TITLE | 0.97+ |
DevOps 101 | TITLE | 0.97+ |
about a half hour | QUANTITY | 0.97+ |
each one | QUANTITY | 0.96+ |
one example | QUANTITY | 0.96+ |
each availability zone | QUANTITY | 0.95+ |
two years | QUANTITY | 0.94+ |
Jim Harris, International Best Selling Author of Blindsided & Carolina Milanesi, Creative Strategies
>> Narrator: "theCUBE's" live coverage is made possible by funding from Dell Technologies. Creating technologies that drive human progress. (intro music) >> Good afternoon, everyone. Welcome back to "theCUBE's" day three coverage of MWC23. Lisa Martin here in Spain, Barcelona, Spain with Dave Nicholson. We're going to have a really interesting conversation next. We're going to really dig into MWC, it's history, where it's going, some of the controversy here. Please welcome our guests. We have Jim Harris, International Best Selling Author of "Blindsided." And Carolina Milanese is here, President and Principle Analyst of creative strategies. Welcome to "theCUBE" guys. Thank you. >> Thanks. So great to be here. >> So this is day three. 80,000 people or so. You guys have a a lot of history up at this event. Caroline, I want to start with you. Talk a little bit about that. This obviously the biggest one in, in quite a few years. People are ready to be back, but there's been some, a lot of news here, but some controversy going on. Give us the history, and your perspective on some of the news that's coming out from this week's event. >> It feels like a very different show. I don't know if I would say growing up show, because we are still talking about networks and mobility, but there's so much more now around what the networks actually empower, versus the network themselves. And a little bit of maybe that's where some of the controversy is coming from, carriers still trying to find their identity, right, of, of what their role is in all there is to do with a connected world. I go back a long way. I go back to when Mobile World Congress was called, was actually called GSM, and it was in Khan. So, you know, we went from France to Spain. But just looking at the last full Mobile World Congress here in Barcelona, in pre-pandemic to now, very different show. We went from a show that was very much focused on mobility and smartphones, to a show that was all about cars. You know, we had cars everywhere, 'cause we were talking about smart cities and connected cars, to now a show this year that is very much focused on B2B. And so a lot of companies that are here to either work with the carriers, or also talk about sustainability for instance, or enable what is the next future evolution of computing with XR and VR. >> So Jim, talk to us a little bit about your background. You, I was doing a little sleuthing on you. You're really focusing on disruptive innovation. We talk about disruption a lot in different industries. We're seeing a lot of disruption in telco. We're seeing a lot of frenemies going on. Give us your thoughts about what you're seeing at this year's event. >> Well, there's some really exciting things. I listened to the keynote from Orange's CEO, and she was complaining that 55% of the traffic on her network is from five companies. And then the CEO of Deutsche Telecom got up, and he was complaining that 60% of the traffic on his network is from six entities. So do you think they coordinated pre, pre-show? But really what they're saying is, these OTT, you know, Netflix and YouTube, they should be paying us for access. Now, this is killer funny. The front page today of the show, "Daily," the CO-CEO of Netflix says, "Hey, we make less profit than the telcos, "so you should be paying us, "not the other way around." You know, we spend half of the money we make just on developing content. So, this is really interesting. The orange CEO said, "We're not challenging net neutrality. "We don't want more taxes." But boom. So this is disruptive. Huge pressure. 67% of all mobile traffic is video, right? So it's a big hog bandwidth wise. So how are they going to do this? Now, I look at it, and the business model for the, the telcos, is really selling sim cards and smartphones. But for every dollar of revenue there, there's five plus dollars in apps, and consulting and everything else. So really, but look at how they're structured. They can't, you know, take somebody who talks to the public and sells sim cards, and turn 'em in, turn 'em in to an app developer. So how are they going to square this circle? So I see some, they're being disrupted because they're sticking to what they've historically done. >> But it's interesting because at the end of the day, the conversation that we are having right now is the conversation that we had 10 years ago, where carriers don't want to just be a dumb pipe, right? And that's what they are now returning to. They tried to be media as well, but that didn't work out for most carriers, right? It is a little bit better in the US. We've seen, you know, some success there. But, but here has been more difficult. And I think that's the, the concern, that even for the next, you know, evolution, that's the, their role. >> So how do they, how do they balance this dumb pipe idea, with the fact that if you make the toll high enough, being a dumb pipe is actually a pretty good job. You know, sit back, collect check, go to the beach, right? So where, where, where, where does this end up? >> Well, I think what's going to happen is, if you see five to 15 X the revenue on top of a pipe, you know, the hyperscalers are going to start going after the business. The consulting companies like PWC, McKinsey, the app developers, they're... So how do you engage those communities as a telco to get more revenue? I think this is a question that they really need to look at. But we tend to stick within our existing business model. I'll just give you one stat that blows me away. Uber is worth more than every taxi cab company in North America added together. And so the taxi industry owns billions in assets in cars and limousines. Uber doesn't own a single vehicle. So having a widely distributed app, is a huge multiplier on valuation. And I look to a company like Safari in Kenya, which developed M-Pesa, which Pesa means mo, it's mobile money in Swahili. And 25% of the country's GDP is facilitated by M-Pesa. And that's not even on smartphones. They're feature phones, Nokia phones. I call them dumb phones, but Nokia would call them "feature phones." >> Yeah. >> So think about that. Like 25, now transactions are very small, and the cut is tiny. But when you're facilitating 25% of a country's GDP, >> Yeah. >> Tiny, over billions of transactions is huge. But that's not the way telcos have historically thought or worked. And so M-Pesa and Safari shows the way forward. What do you think on that? >> I, I think that the experience, and what they can layer on top from a services perspective, especially in the private sector, is also important. I don't, I never believe that a carrier, given how they operate, is the best media company in the world, right? It is a very different world. But I do think that there's opportunity, first of all, to, to actually tell their story in a different way. If you're thinking about everything that a network actually empowers, there's a, there's a lot there. There's a lot that is good for us as, as society. There's a lot that is good for business. What can they do to start talking about differently about their services, and then layer on top of what they offer? A better way to actually bring together private and public network. It's not all about cellular, wifi and cellular coming together. We're talking a lot about satellite here as well. So, there's definitely more there about quality of service. Is, is there though, almost a biological inevitability that prevents companies from being able to navigate that divide? >> Hmm. >> Look at, look at when, when, when we went from high definition 720P, very exciting, 1080P, 4K. Everybody ran out and got a 4K TV. Well where was the, where was the best 4K content coming from? It wasn't, it wasn't the networks, it wasn't your cable operator, it was YouTube. It was YouTube. If you had suggested that 10 years before, that that would happen, people would think that you were crazy. Is it possible for folks who are now leading their companies, getting up on stage, and daring to say, "This content's coming over, "and I want to charge you more "for using my pipes." It's like, "Really? Is that your vision? "That's the vision that you want to share with us here?" I hear the sound of dead people walking- (laughing) when I hear comments like that. And so, you know, my students at Wharton in the CTO program, who are constantly looking at this concept of disruption, would hear that and go, "Ooh, gee, did the board hear what that person said?" I, you know, am I being too critical of people who could crush me like a bug? (laughing) >> I mean, it's better that they ask the people with money than not consumers to pay, right? 'Cause we've been through a phase where the carriers were actually asking for more money depending on critical things. Like for instance, if you're doing business email, then were going to charge you more than if you were a consumer. Or if you were watching video, they would charge you more for that. Then they understood that a consumer would walk away and go somewhere else. So they stopped doing that. But to your point, I think, and, and very much to what you focus from a disruption perspective, look at what Chat GTP and what Microsoft has been doing. Not much talk about this here at the show, which is interesting, but the idea that now as a consumer, I can ask new Bing to get me the 10 best restaurants in Barcelona, and I no longer go to Yelp, or all the other businesses where I was going to before, to get their recommendation, what happens to them? You're, you're moving away, and you're taking eyeballs away from those websites. And, and I think that, that you know, your point is exactly right. That it's, it's about how, from a revenue perspective, you are spending a lot of money to facilitate somebody else, and what's in it for you? >> Yeah. And to be clear, consumers pay for everything. >> Always. Always. (laughs) >> Taxpayers and consumers always pay for everything. So there is no, "Well, we're going to make them pay, so you don't have to pay." >> And if you are not paying, you are the product. Exactly. >> Yes. (laughing) >> Carolina, talk a little bit about what you're seeing at the event from some of the infrastructure players, the hyperscalers, obviously a lot of enterprise focus here at this event. What are some of the things that you're seeing? Are you impressed with, with their focus in telco, their focus to partner, build an ecosystem? What are you seeing? >> I'm seeing also talk about sustainability, and enabling telco to be more sustainable. You know, there, there's a couple of things that are a little bit different from the US where I live, which is that telcos in Europe, have put money into sustainability through bonds. And so they use the money that they then get from the bonds that they create, to, to supply or to fuel their innovation in sustainability. And so there's a dollar amount on sustainability. There's also an opportunity obviously from a growth perspective. And there's a risk mitigation, right? Especially in Europe, more and more you're going to be evaluated based on how sustainable you are. So there are a lot of companies here, if you're thinking about the Ciscos of the world. Dell, IBM all talking about sustainability and how to help carriers measure, and then obviously be more sustainable with their consumption and, and power. >> Going to be interesting to see where that goes over the years, as we talk to, every company we talk to at whatever show, has an ESG sustainability initiative, and only, well, many of them only want to work with other companies who have the same types of initiative. So a lot of, great that there's focus on sustainability, but hopefully we'll see more action down the road. Wanted to ask you about your book, "Blind," the name is interesting, "Blindsided." >> Well, I just want to tag on to this. >> Sure. >> One of the most exciting things for me is fast charging technology. And Shalmie, cell phone, or a smartphone maker from China, just announced yesterday, a smartphone that charges from 0 to 100% in five minutes. Now this is using GAN FEST technology. And the leader in the market is a company called Navitas. And this has profound implications. You know, it starts with the smartphone, right? But then it moves to the laptops. And then it'll move to EV's. So, as we electrify the $10 trillion a year transportation industry, there's a huge opportunity. People want charging faster. There's also a sustainability story that, to Carolina's point, that it uses less electricity. So, if we electrify the grid in order to support transportation, like the Tesla Semi's coming out, there are huge demands over a period. We need energy efficiency technologies, like this GAN FEST technology. So to me, this is humongous. And it, we only see it here in the show, in Shalmie, saying, "Five minutes." And everybody, the consumers go, "Oh, that's cool." But let's look at the bigger story, which is electrifying transportation globally. And this is going to be big. >> Yeah. And, and to, and to double click on that a little bit, to be clear, when we talk about fast charging today, typically it's taking the battery from a, not a zero state of charge, but a relatively low state of charge to 80%. >> Yep. >> Then it tapers off dramatically. And that translates into less range in an EV, less usable time on any other device, and there's that whole linkage between the power in, and the battery's ability to be charged, and how much is usable. And from a sustainability perspective, we are going to have an avalanche of batteries going into secondary use cases over time. >> They don't get tossed into landfills contrary to what people might think. >> Yep. >> In fact, they are used in a variety of ways after their primary lifespan. But that, that is, that in and of itself is a revolutionary thing. I'm interested in each of your thoughts on the China factor. Glaringly absent here, from my perspective, as sort of an Apple fanboy, where are they? Why aren't they talking about their... They must, they must feel like, "Well we just don't need to." >> We don't need to. We just don't need to. >> Absolutely. >> And then you walk around and you see these, these company names that are often anglicized, and you don't necessarily immediately associate them with China, but it's like, "Wait a minute, "that looks better than what I have, "and I'm not allowed to have access to that thing." What happens in the future there geopolitically? >> It's a pretty big question for- >> Its is. >> For a short little tech show. (Caroline laughs) But what happens as we move forward? When is the entire world going to be able to leverage in a secure way, some of the stuff that's coming out of, if they're not the largest economy in the world yet, they shortly will be. >> What's the story there? >> Well, it's interesting that you mentioned First Apple that has never had a presence at Mobile World Congress. And fun enough, I'm part of the GSMA judges for the GLOMO Awards, and last night I gave out Best Mobile Phone for last year, and it was to the iPhone4 Team Pro. and best disruptive technology, which was for the satellite function feature on, on the new iPhone. So, Apple might not be here, but they are. >> Okay. >> And, and so that's the first thing. And they are as far as being top of mind to every competitor in the smartphone market still. So a lot of the things that, even from a design perspective that you see on some of the Chinese brands, really remind you of, of Apple. What is interesting for me, is how there wouldn't be, with the exception of Samsung and Motorola, there's no one else here that is non-Chinese from a smartphone point of view. So that's in itself, is something that changed dramatically over the years, especially for somebody like me that still remember Nokia being the number one in the market. >> Huh. >> So. >> Guys, we could continue this conversation. We are unfortunately out of time. But thank you so much for joining Dave and me, talking about your perspectives on the event, the industry, the disruptive forces. It's going to be really interesting to see where it goes. 'Cause at the end of the day, it's the consumers that just want to make sure I can connect wherever I am 24 by seven, and it just needs to work. Thank you so much for your insights. >> Thank you. >> Lisa, it's been great. Dave, great. It's a pleasure. >> Our pleasure. For our guests, and for Dave Nicholson, I'm Lisa Martin. You're watching, "theCUBE," the leader in live and emerging tech coverage coming to you day three of our coverage of MWC 23. Stick around. Our next guest joins us momentarily. (outro music)
SUMMARY :
that drive human progress. We're going to have a really So great to be here. People are ready to be back, And so a lot of companies that are here to So Jim, talk to us a little So how are they going to do this? It is a little bit better in the US. check, go to the beach, right? And 25% of the country's GDP and the cut is tiny. But that's not the way telcos is the best media company "That's the vision that you and I no longer go to Yelp, consumers pay for everything. Always. so you don't have to pay." And if you are not (laughing) from some of the infrastructure and enabling telco to be more sustainable. Wanted to ask you about And this is going to be big. and to double click on that a little bit, and the battery's ability to be charged, contrary to what people might think. each of your thoughts on the China factor. We just don't need to. What happens in the future When is the entire world for the GLOMO Awards, So a lot of the things that, and it just needs to work. It's a pleasure. coming to you day three
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Dave | PERSON | 0.99+ |
Jim | PERSON | 0.99+ |
Dave Nicholson | PERSON | 0.99+ |
Caroline | PERSON | 0.99+ |
Samsung | ORGANIZATION | 0.99+ |
Lisa Martin | PERSON | 0.99+ |
Carolina Milanese | PERSON | 0.99+ |
Jim Harris | PERSON | 0.99+ |
Nokia | ORGANIZATION | 0.99+ |
Europe | LOCATION | 0.99+ |
Motorola | ORGANIZATION | 0.99+ |
Spain | LOCATION | 0.99+ |
PWC | ORGANIZATION | 0.99+ |
IBM | ORGANIZATION | 0.99+ |
five companies | QUANTITY | 0.99+ |
Uber | ORGANIZATION | 0.99+ |
Lisa | PERSON | 0.99+ |
six entities | QUANTITY | 0.99+ |
Barcelona | LOCATION | 0.99+ |
France | LOCATION | 0.99+ |
McKinsey | ORGANIZATION | 0.99+ |
80% | QUANTITY | 0.99+ |
Netflix | ORGANIZATION | 0.99+ |
Apple | ORGANIZATION | 0.99+ |
Dell | ORGANIZATION | 0.99+ |
60% | QUANTITY | 0.99+ |
Orange | ORGANIZATION | 0.99+ |
China | LOCATION | 0.99+ |
Deutsche Telecom | ORGANIZATION | 0.99+ |
five minutes | QUANTITY | 0.99+ |
67% | QUANTITY | 0.99+ |
Carolina Milanesi | PERSON | 0.99+ |
55% | QUANTITY | 0.99+ |
North America | LOCATION | 0.99+ |
25% | QUANTITY | 0.99+ |
Navitas | ORGANIZATION | 0.99+ |
M-Pesa | ORGANIZATION | 0.99+ |
Microsoft | ORGANIZATION | 0.99+ |
YouTube | ORGANIZATION | 0.99+ |
US | LOCATION | 0.99+ |
yesterday | DATE | 0.99+ |
24 | QUANTITY | 0.99+ |
telco | ORGANIZATION | 0.99+ |
Kenya | LOCATION | 0.99+ |
Mobile World Congress | EVENT | 0.99+ |
five | QUANTITY | 0.99+ |
iPhone | COMMERCIAL_ITEM | 0.99+ |
Khan | LOCATION | 0.99+ |
Blindsided | TITLE | 0.99+ |
Yelp | ORGANIZATION | 0.99+ |
Dell Technologies | ORGANIZATION | 0.99+ |
last year | DATE | 0.99+ |
five plus dollars | QUANTITY | 0.99+ |
MWC23 | EVENT | 0.99+ |
MWC 23 | EVENT | 0.99+ |
0 | QUANTITY | 0.99+ |
10 best restaurants | QUANTITY | 0.98+ |
theCUBE | ORGANIZATION | 0.98+ |
720P | QUANTITY | 0.98+ |
today | DATE | 0.98+ |
GLOMO Awards | EVENT | 0.98+ |
billions | QUANTITY | 0.98+ |
15 X | QUANTITY | 0.98+ |
last night | DATE | 0.98+ |
first thing | QUANTITY | 0.98+ |
Carolina | PERSON | 0.98+ |
Safari | ORGANIZATION | 0.98+ |
this year | DATE | 0.98+ |
One | QUANTITY | 0.97+ |
GAN FEST | ORGANIZATION | 0.97+ |
seven | QUANTITY | 0.97+ |
1080P | QUANTITY | 0.97+ |
80,000 people | QUANTITY | 0.97+ |
Five minutes | QUANTITY | 0.97+ |
First | QUANTITY | 0.97+ |
Shalmie | ORGANIZATION | 0.97+ |
10 years ago | DATE | 0.97+ |
10 years before | DATE | 0.97+ |
Tesla | ORGANIZATION | 0.96+ |
100% | QUANTITY | 0.96+ |
Sam Kassoumeh, SecurityScorecard | CUBE Conversation
(upbeat music) >> Hey everyone, welcome to this CUBE conversation. I'm John Furrier, your host of theCUBE here in Palo Alto, California. We've got Sam Kassoumeh, co-founder and chief operating office at SecurityScorecard here remotely coming in. Thanks for coming on Sam. Security, Sam. Thanks for coming on. >> Thank you, John. Thanks for having me. >> Love the security conversations. I love what you guys are doing. I think this idea of managed services, SaaS. Developers love it. Operation teams love getting into tools easily and having values what you guys got with SecurityScorecard. So let's get into what we were talking before we came on. You guys have a unique solution around ratings, but also it's not your grandfather's pen test want to be security app. Take us through what you guys are doing at SecurityScorecard. >> Yeah. So just like you said, it's not a point in time assessment and it's similar to a traditional credit rating, but also a little bit different. You can really think about it in three steps. In step one, what we're doing is we're doing threat intelligence data collection. We invest really heavily into R&D function. We never stop investing in R&D. We collect all of our own data across the entire IPV force space. All of the different layers. Some of the data we collect is pretty straightforward. We might crawl a website like the example I was giving. We might crawl a website and see that the website says copyright 2005, but we know it's 2022. Now, while that signal isn't enough to go hack and break into the company, it's definitely a signal that someone might not be keeping things up to date. And if a hacker saw that it might encourage them to dig deeper. To more complex signals where we're running one of the largest DNS single infrastructures in the world. We're monitoring command and control malware and its behaviors. We're essentially collecting signals and vulnerabilities from the entire IPV force space, the entire network layer, the entire web app player, leaked credentials. Everything that we think about when we talk about the security onion, we collect data at each one of those layers of the onion. That's step one. And we can do all sorts of interesting insights and information and reports just out of that thread intel. Now, step two is really interesting. What we do is we go identify the attack surface area or what we call the digital footprint of any company in the world. So as a customer, you can simply type in the name of a company and we identify all of the domains, sub domains, subsidiaries, organizations that are identified on the internet that belong to that organization. So every digital asset of every company we go out and we identify that and we update that every 24 hours. And step three is the rating. The rating is probabilistic and it's deterministic. The rating is a benchmark. We're looking at companies compared to their peers of similar size within the same industry and we're looking at how they're performing. And it's probabilistic in the sense that companies that have an F are about seven to eight times more likely to experience a breach. We're an A through F scale, universally understood. Ds and Fs, more likely to experience a breach. A's we see less breaches now. Like I was mentioning before, it doesn't mean that an F is always going to get hacked or an A can never get hacked. If a nation state targets an A, they're going to eventually get in with enough persistence and budget. If the pizza shop on the corner has an F, they may never get hacked because no one cares, but natural correlation, more doors open to the house equals higher likelihood someone unauthorized is going to walk in. So it's really those three steps. The collection, we map it to the surface area of the company and then we produce a rating. Today we're rating about 12 million companies every single day. >> And how many people do you have as customers? >> We have 50,000 organizations using us, both free and paid. We have a freemium tier where just like Yelp or a LinkedIn business profile. Any company in the world has a right to go claim the score. We never extort companies to fix the score. We never charge a company to see the score or fix it. Any company in a world without paying us a cent can go in. They can understand what we're seeing about them, what a hacker could see about their environment. And then we empower them with the tools to fix it and they can fix it and the score will go up. Now companies pay us because they want enterprise capabilities. They want additional modules, insights, which we can talk about. But in total, there's about 50,000 companies that at any given point in time, they're monitoring about a million and a half organizations of the 12 million that we're rating. It sounds like Google. >> If you want to look at it. >> Sounds like Google Search you got going on there. You got a lot of search and then you create relevance, a score, like a ranking. >> That's precisely it. And that's exactly why Google ventures invested in us in our Series B round. And they're on our board. They looked and they said, wow, you guys are building like a Google Search engine over some really impressive threat intelligence. And then you're distilling it into a score which anybody in the world can easily understand. >> Yeah. You obviously have page rank, which changed the organic search business in the late 90s, early 2000s and the rest is history. AdWords. >> Yeah. >> So you got a lot of customer growth there potentially with the opt-in customer view, but you're looking at this from the outside in. You're looking at companies and saying, what's your security posture? Getting a feel for what they got going on and giving them scores. It sounds like it's not like a hacker proof. It's just more of a indicator for management and the team. >> It's an indicator. It's an indicator. Because today, when we go look at our vendors, business partners, third parties were flying blind. We have no idea how they're doing, how they're performing. So the status quo for the last 20 years has been perform a risk assessments, send a questionnaire, ask for a pen test and an audit evidence. We're trying to break that cycle. Nobody enjoys it. They're long tail. It's a trust without verification. We don't really like that. So we think we can evolve beyond this point in time assessment and give a continuous view. Now, today, historically, we've been outside in. Not intrusive, and we'll show you what a hacker can see about an environment, but we have some cool things percolating under the hood that give more of a 360 view outside, inside, and also a regulatory compliance view as well. >> Why is the compliance of the whole third party thing that you're engaging with important? Because I mean, obviously having some sort of way to say, who am I dealing with is important. I mean, we hear all kinds of things in the security landscape, oh, zero trust, and then we hear trust, supply chain, software risk, for example. There's a huge trust factor there. I need to trust this tool or this container. And then you got the zero trust, don't trust anything. And then you've got trust and verify. So you have all these different models and postures, and it just seems hard to keep up with. >> Sam: It's so hard. >> Take us through what that means 'cause pen tests, SOC reports. I mean the clouds help with the SOC report, but if you're doing agile, anything DevOps, you basically would need to do a pen test like every minute. >> It's impossible. The market shifted to the cloud. We watched and it still is. And that created a lot of complexity, not to date myself. But when I was starting off as a security practitioner, the data center used to be in the basement and I would have lunch with the database administrator and we talk about how we were protecting the data. Those days are long gone. We outsource a lot of our key business practices. We might use, for example, ADP for a payroll provider or Dropbox to store our data. But we've shifted and we no longer no who that person is that's protecting our data. They're sitting in another company in another area unknown. And I think about 10, 15 years ago, CISOs had the realization, Hey, wait a second. I'm relying on that third party to function and operate and protect my data, but I don't have any insight, visibility or control of their program. And we were recommended to use questionnaires and audit forms, and those are great. It's good hygiene. It's good practice. Get to know the people that are protecting your data, ask them the questions, get the evidence. The challenge is it's point in time, it's limited. Sometimes the information is inaccurate. Not intentionally, I don't think people intentionally want to go lie, but Hey, if there's a $50 million deal we're trying to close and it's dependent on checking this one box, someone might bend a rule a little bit. >> And I said on theCUBE publicly that I think pen test reports are probably being fudged and dates being replicated because it's just too fast. And again, today's world is about velocity on developers, trust on the code. So you got all kinds of trust issues. So I think verification, the blue check mark on Twitter kind of thing going on, you're going to see a lot more of that and I think this is just the beginning. I think what you guys are doing is scratching the surface. I think this outside in is a good first step, but that's not going to solve the internal problem that still coming and have big surface areas. So you got more surface area expanding. I mean, IOT's coming in, the Edge is coming fast. Never mind hybrid on-premise cloud. What's your organizations do to evaluate the risk and the third party? Hands shaking, verification, scorecards. Is it like a free look here or is it more depth to it? Do you double click on it? Take us through how this evolves. >> John it's become so disparate and so complex, Because in addition to the market moving to the cloud, we're now completely decentralized. People are working from home or working hybrid, which adds more endpoints. Then what we've learned over time is that it's not just a third party problem, because guess what? My third parties behind the scenes are also using third parties. So while I might be relying on them to process my customer's payment information, they're relying on 20 vendors behind the scene that I don't even know about. I might have an A, they might have an A. It's really important that we expand beyond that. So coming out of our innovation hub, we've developed a number of key capabilities that allow us to expand the value for the customer. One, you mentioned, outside in is great, but it's limited. We can see what a hacker sees and that's helpful. It gives us pointers where to maybe go ask double click, get comfort, but there's a whole nother world going on behind the firewall inside of an organization. And there might be a lot of good things going on that CISO security teams need to be rewarded for. So we built an inside module and component that allows teams to start plugging in the tools, the capabilities, keys to their cloud environments. And that can show anybody who's looking at the scorecard. It's less like a credit score and more like a social platform where we can go and look at someone's profile and say, Hey, how are things going on the inside? Do they have two-factor off? Are there cloud instances configured correctly? And it's not a point in time. This is a live connection that's being made. This is any point in time, we can validate that. The other component that we created is called an evidence locker. And an evidence locker, it's like a secure vault in my scorecard and it allows me to upload things that you don't really stand for or check for. Collateral, compliance paperwork, SOC 2 reports. Those things that I always begrudgingly email. I don't want to share with people my trade secrets, my security policies, and have it sit on their exchange server. So instead of having to email the same documents out, 300 times a month, I just upload them to my evidence locker. And what's great is now anybody following my scorecard can proactively see all the great things I'm doing. They see the outside view. They see the inside view. They see the compliance view. And now they have the holy grail view of my environment and can have a more intelligent conversation. >> Access to data and access methods are an interesting innovation area around data lineage. Tracing is becoming a big thing. We're seeing that. I was just talking with the Snowflake co-founder the other day here in theCUBE about data access and they're building a proprietary mesh on top of the clouds to figure out, Hey, I don't want to give just some tool access to data because I don't know what's on the other side of those tools. Now they had a robust ecosystem. So I can see this whole vendor risk supply chain challenge around integration as a huge problem space that you guys are attacking. What's your reaction to that? >> Yeah. Integration is tricky because we want to be really particular about who we allow access into our environment or where we're punching holes in the firewall and piping data out out of the environment. And that can quickly become unwieldy just with the control that we have. Now, if we give access to a third party, we then don't have any control over who they're sharing our information with. When I talk to CISOs today about this challenge, a lot of folks are scratching their head, a lot of folks treat this as a pet project. Like how do I control the larger span beyond just the third parties? How do I know that their software partners, their contractors that they're working with building their tools are doing a good job? And even if I know, meaning, John, you might send me a list of all of your vendors. I don't want to be the bad guy. I don't really have the right to go reach out to my vendors' vendors knocking on their door saying, hi, I'm Sam. I'm working with John and he's your customer. And I need to make sure that you're protecting my data. It's an awkward chain of conversation. So we're building some tools that help the security teams hold the entire ecosystem accountable. We actually have a capability called automatic vendor discovery. We can go detect who are the vendors of a company based on the connections that we see, the inbound and outbound connections. And what often ends up happening John is we're bringing to the attention to our customers, awareness about inbound and outbound connections. They had no idea existed. There were the shadow IT and the ghost vendors that were signed without going through an assessment. We detect those connections and then they can go triage and reduce the risk accordingly. >> I think that risk assessment of vendors is key. I was just reading a story about this, about how a percentage, I forget the number. It was pretty large of applications that aren't even being used that are still on in companies. And that becomes a safe haven for bad actors to hang out and penetrate 'cause they get overlooked 'cause no one's using them, but they're still online. And so there's a whole, I called cleaning up the old dead applications that are still connected. >> That happens all the time. Those applications also have applications that are dead and applications that are alive may also have users that are dead as well. So you have that problem at the application level, at the user level. We also see a permutation of what you describe, which is leftover artifacts due to configuration mistakes. So a company just put up a new data center, a satellite office in Singapore and they hired a team to go install all the hardware. Somebody accidentally left an administrative portal exposed to the public internet and nobody knew the internet works, the lights are on, the office is up and running, but there was something that was supposed to be turned off that was left turned on. So sometimes we bring to company's attention and they say, that's not mine. That doesn't belong to me. And we're like, oh, well, we see some reason why. >> It's his fault. >> Yeah and they're like, oh, that was the contractor set up the thing. They forgot to turn off the administrative portal with the default login credentials. So we shut off those doors. >> Yeah. Sam, this is really something that's not talked about a lot in the industry that we've become so reliant on managed services and other people, CISOs, CIOs, and even all departments that have applications, even marketing departments, they become reliant on agencies and other parties to do stuff for them which inherently just increases the risk here of what they have. So there inherently could be as secure as they could be, but yet exposed completely on the other side. >> That's right. We have so many virtual touch points with our partners, our vendors, our managed service providers, suppliers, other third parties, and all the humans that are involved in that mix. It creates just a massive ripple effect. So everybody in a chain can be doing things right. And if there's one bad link, the whole chain breaks. I know it's like the cliche analogy, but it rings true. >> Supply chain trust again. Trust who you trust. Let's see how those all reconcile. So Sam, I have to ask you, okay, you're a former CISO. You've seen many movies in the industry. Co-founded this company. You're in the front lines. You've got some cool things happening. I can almost imagine the vision is a lot more than just providing a rating and score. I'm sure there's more vision around intelligence, automation. You mentioned vault, wallet capabilities, exchanging keys. We heard at re:Inforce automated reasoning, metadata reasoning. You got all kinds of crypto and quantum. I mean, there's a lot going on that you can tap into. What's your vision where you see SecurityScorecard going? >> When we started the company, the rating was the thing that we sold and it was a language that helped technical and non-technical folks alike level the playing field and talk about risk and use it to drive their strategy. Today, the rating just opens the door to that discussion and there's so much additional value. I think in the next one to two years, we're going to see the rating becomes standardized. It's going to be more frequently asked or even required or leveraged by key decision makers. When we're doing business, it's going to be like, Hey, show me your scorecard. So I'm seeing the rating get baked more and more the lexicon of risk. But beyond the rating, the goal is really to make a world a safer place. Help transform and rise the tide. So all ships can lift. In order to do that, we have to help companies, not only identify the risk, but also rectify the risk. So there's tools we build to really understand the full risk. Like we talked about the inside, the outside, the fourth parties, fifth parties, the real ecosystem. Once we identified where are all the Fs and bad things, will then what? So couple things that we're doing. We've launched a pro serve arm to help companies. Now companies don't have to pay to fix the score. Anybody, like I said, can fix the score completely free of charge, but some companies need help. They ask us and they say, Hey, I'm looking for a trusted advisor. A Sherpa, a guide to get me to a better place or they'll say, Hey, I need some pen testing services. So we've augmented a service arm to help accelerate the remediation efforts. We're also partnered with different industries that use the rating as part of a larger picture. The cyber rating isn't the end all be all. When companies are assessing risk, they may be looking at a financial ratings, ESG ratings, KYC AML, cyber security, and they're trying to form a complete risk profile. So we go and we integrate into those decision points. Insurance companies, all the top insurers, re-insurers, brokers are leveraging SecurityScorecard as an ingredient to help underwrite for cyber liability insurance. It's not the only ingredient, but it helps them underwrite and identify the help and price the risk so they can push out a policy faster. First policy is usually the one that's signed. So time to quote is an important metric. We help to accelerate that. We partner with credit rating agencies like Fitch, who are talking to board members, who are asking, Hey, I need a third party, independent verification of what my CISO is saying. So the CISO is presenting the rating, but so are the proxy advisors and the ratings companies to the board. So we're helping to inform the boards and evolve how they're thinking about cyber risk. We're helping with the insurance space. I think that, like you said, we're only scratching the surface. I can see, today we have about 50,000 companies that are engaging a rating and there's no reason why it's not going to be in the millions in just the next couple years here. >> And you got the capability to bring in more telemetry and see the new things, bring that into the index, bring that into the scorecard and then map that to potential any vulnerabilities. >> Bingo. >> But like you said, the old days, when you were dating yourself, you were in a glass room with a door lock and key and you can see who's two folks in there having lunch, talking database. No one's going to get hurt. Now that's gone, right? So now you don't know who's out there and machines. So you got humans that you don't know and you got machines that are turning on and off services, putting containers out there. Who knows what's in those payloads. So a ton of surface area and complexity to weave through. I mean only is going to get done with automation. >> It's the only way. Part of our vision includes not attempting to make a faster questionnaire, but rid ourselves of the process all altogether and get more into the continuous assessment mindset. Now look, as a former CISO myself, I don't want another tool to log into. We already have 50 tools we log into every day. Folks don't need a 51st and that's not the intent. So what we've done is we've created today, an automation suite, I call it, set it and forget it. Like I'm probably dating myself, but like those old infomercials. And look, and you've got what? 50,000 vendors business partners. Then behind there, there's another a hundred thousand that they're using. How are you going to keep track of all those folks? You're not going to log in every day. You're going to set rules and parameters about the things that you care about and you care depending on the nature of the engagement. If we're exchanging sensitive data on the network layer, you might care about exposed database. If we're doing it on the app layer, you're going to look at application security vulnerabilities. So what our customers do is they go create rules that say, Hey, if any of these companies in my tier one critical vendor watch list, if they have any of these parameters, if the score drops, if they drop below a B, if they have these issues, pick these actions and the actions could be, send them a questionnaire. We can send the questionnaire for you. You don't have to send pen and paper, forget about it. You're going to open your email and drag the Excel spreadsheet. Those days are over. We're done with that. We automate that. You don't want to send a questionnaire, send a report. We have integrations, notify Slack, create a Jira ticket, pipe it to ServiceNow. Whatever system of record, system of intelligence, workflow tools companies are using, we write in and allow them to expedite the whole. We're trying to close the window. We want to close the window of the attack. And in order to do that, we have to bring the attention to the people as quickly as possible. That's not going to happen if someone logs in every day. So we've got the platform and then that automation capability on top of it. >> I love the vision. I love the utility of a scorecard, a verification mark, something that could be presented, credential, an image, social proof. To security and an ongoing way to monitor it, observe it, update it, add value. I think this is only going to be the beginning of what I would see as much more of a new way to think about credentialing companies. >> I think we're going to reach a point, John, where and some of our customers are already doing this. They're publishing their scorecard in the public domain, not with the technical details, but an abstracted view. And thought leaders, what they're doing is they're saying, Hey, before you send me anything, look at my scorecard securityscorecard.com/securityrating, and then the name of their company, and it's there. It's in the public domain. If somebody Googles scorecard for certain companies, it's going to show up in the Google Search results. They can mitigate probably 30, 40% of inbound requests by just pointing to that thing. So we want to give more of those tools, turn security from a reactive to a proactive motion. >> Great stuff, Sam. I love it. I'm going to make sure when you hit our site, our company, we've got camouflage sites so we can make sure you get the right ones. I'm sure we got some copyright dates. >> We can navigate the decoys. We can navigate the decoys sites. >> Sam, thanks for coming on. And looking forward to speaking more in depth on showcase that we have upcoming Amazon Startup Showcase where you guys are going to be presenting. But I really appreciate this conversation. Thanks for sharing what you guys are working on. We really appreciate. Thanks for coming on. >> Thank you so much, John. Thank you for having me. >> Okay. This is theCUBE conversation here in Palo Alto, California. Coming in from New York city is the co-founder, chief operating officer of securityscorecard.com. I'm John Furrier. Thanks for watching. (gentle music)
SUMMARY :
to this CUBE conversation. Thanks for having me. and having values what you guys and see that the website of the 12 million that we're rating. then you create relevance, wow, you guys are building and the rest is history. for management and the team. So the status quo for the and it just seems hard to keep up with. I mean the clouds help Sometimes the information is inaccurate. and the third party? the capabilities, keys to the other day here in IT and the ghost vendors I forget the number. and nobody knew the internet works, the administrative portal the risk here of what they have. and all the humans that You're in the front lines. and the ratings companies to the board. and see the new things, I mean only is going to and get more into the I love the vision. It's in the public domain. I'm going to make sure when We can navigate the decoys. And looking forward to speaking Thank you so much, John. city is the co-founder,
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
John | PERSON | 0.99+ |
Sam Kassoumeh | PERSON | 0.99+ |
Sam | PERSON | 0.99+ |
30 | QUANTITY | 0.99+ |
John Furrier | PERSON | 0.99+ |
Singapore | LOCATION | 0.99+ |
50 tools | QUANTITY | 0.99+ |
12 million | QUANTITY | 0.99+ |
20 vendors | QUANTITY | 0.99+ |
Fitch | ORGANIZATION | 0.99+ |
Today | DATE | 0.99+ |
$50 million | QUANTITY | 0.99+ |
fifth parties | QUANTITY | 0.99+ |
ORGANIZATION | 0.99+ | |
Palo Alto, California | LOCATION | 0.99+ |
today | DATE | 0.99+ |
SecurityScorecard | ORGANIZATION | 0.99+ |
First policy | QUANTITY | 0.99+ |
two folks | QUANTITY | 0.99+ |
ORGANIZATION | 0.99+ | |
Excel | TITLE | 0.99+ |
50,000 vendors | QUANTITY | 0.99+ |
Dropbox | ORGANIZATION | 0.99+ |
late 90s | DATE | 0.99+ |
fourth parties | QUANTITY | 0.99+ |
51st | QUANTITY | 0.99+ |
Yelp | ORGANIZATION | 0.99+ |
early 2000s | DATE | 0.99+ |
two-factor | QUANTITY | 0.99+ |
securityscorecard.com | OTHER | 0.99+ |
first step | QUANTITY | 0.99+ |
two years | QUANTITY | 0.99+ |
three steps | QUANTITY | 0.98+ |
eight times | QUANTITY | 0.98+ |
one bad link | QUANTITY | 0.98+ |
about 50,000 companies | QUANTITY | 0.98+ |
one box | QUANTITY | 0.98+ |
millions | QUANTITY | 0.98+ |
Googles | ORGANIZATION | 0.97+ |
both | QUANTITY | 0.97+ |
step two | QUANTITY | 0.97+ |
about 12 million companies | QUANTITY | 0.97+ |
Snowflake | ORGANIZATION | 0.97+ |
50,000 organizations | QUANTITY | 0.97+ |
One | QUANTITY | 0.96+ |
2005 | DATE | 0.96+ |
ORGANIZATION | 0.96+ | |
zero trust | QUANTITY | 0.96+ |
2022 | DATE | 0.95+ |
step one | QUANTITY | 0.95+ |
360 view | QUANTITY | 0.95+ |
300 times a month | QUANTITY | 0.94+ |
securityscorecard.com/securityrating | OTHER | 0.94+ |
a cent | QUANTITY | 0.93+ |
Sherpa | ORGANIZATION | 0.93+ |
AdWords | TITLE | 0.93+ |
SOC 2 | TITLE | 0.92+ |
New York city | LOCATION | 0.91+ |
CUBE | ORGANIZATION | 0.91+ |
about a million and a half organizations | QUANTITY | 0.89+ |
Amazon Startup Showcase | EVENT | 0.89+ |
Series B | OTHER | 0.86+ |
CISO | ORGANIZATION | 0.86+ |
one | QUANTITY | 0.86+ |
step three | QUANTITY | 0.86+ |
next couple years | DATE | 0.84+ |
24 hours | QUANTITY | 0.84+ |
zero | QUANTITY | 0.84+ |
single | QUANTITY | 0.84+ |
about seven | QUANTITY | 0.83+ |
Charlie Brooks & Michael Williams, Unstoppable Domains | Unstoppable Domains Partner Showcase
(upbeat music) >> Hello, and welcome to theCUBE special presentation of Unstoppable Domains Partner Showcase. I'm John Furrier, your host of theCUBE. We've got a great conversation talking about the future of the infrastructure of Web3, all around domains, non fungible tokens and more. Two great guests, Charlie Brooks with Business Development of Unstoppable Domains, and Michael Williams, Product Leader and Advisor with Unstoppable Domains. Gentlemen, thanks for coming on theCUBE, Partner Showcase with Unstoppable Domains. >> Thanks John, excited to be here. >> So I love what you guys are doing. Congratulations on all your success. You guys are on the leading edge of what is a major infrastructure. Shift to Web3 is being called, but people who have been doing this for a while know that you see the blockchain, you see decentralization, you see immutability all these future smart contracts. All the decentralized applications are now hitting the scene and NFTs are super hot as you can imagine, you guys in the middle of it. So you guys are in the sweet spot of what I call the Pragmatic pioneers. You guys are the building solutions that are making a difference, like single sign-on you have the login product, let's get into it. What is the path to a digital identity beyond the web? 'Cause we know what web identity is. But now that the web is being abstracted a away by this new Web3 layer, what is digital identity? >> I can take that one. So I think what we're really seeing is this transition away from a purely physical identity. Where your online identity is really just a reflection of the parts of your physical identity. Where you live, where you go to school, all of these things. And we're really seeing this world emerge where your online identity becomes much more of a primary. So if you have a way that you represent yourself in the online world, whether that's an Instagram account, or TikTok, or email address or username, all of these things together make up your digital identity. So congrats, if you have any of those things, you already have one. >> We see that all the time with Linktree, people put their Linktree out there and it's got the zillion handles. We all get up to Instagram. Everyone's got like zillion identities. Is that a problem or an opportunity? >> I think it's just a reality. The fact is our identities are spread across all of these different services and platforms that we use. The problem with something like Linktree is that it is owned by Linktree. If I won the lottery, purchased Linktree and decided I wanted to change your personal website, John, I could easily do that. Moving to the architecture that we have and NFT architecture, changes that significantly. It puts a lot of power back in the hands of the people who actually own those identities. I do a lot of CUBE showcases with folks around talking about machine learning and AI, and the number one conversation that they bring up, the number one issue, is data. And they say, when data's siloed and protected and owned, it is not optimized for machine learning. So I can almost imagine, as you bring NFTs to the digital identity, you mentioned you don't own your identity if someone else is managing the service like Linktree. This is a cultural shift, and infrastructure software shift at the same time. Can you guys expand more about what you guys are doing with the NFT and unstoppable domains with respect to that digital identity, because is that power shifting to the users now? And how does that compare to what's out there today? >> Sure, I think so. Our domains are NFTs, so they are ERC 721 tokens. And if you think about in the past Web2 identities are controlled by the platforms that we use. Twitter, Facebook, whatnot. There's really a lack of data portability there. Our accounts and data live on their servers, they can be deleted any time. So using an NFT to anchor your data identity, really gives you full control over your identity. It can't be deleted, it can't be revoked or edited, or changed without your permission. And really even better, the information you store on your entity domain can be plugged into the services you use, so that you never have to enter the same data twice. So when you go from platform to platform, everything can be tied to your existing domain. You're not going to a new site, entering their ecosystem and providing all this information time and time again, and not really having a clear understanding of how your data's being used and where it's being stored. >> So the innovation here is the NFT is your identity. And a non fungible token NFT is different than say a fungible token. So for the folks out there that's trying to follow the bouncing ball, Michael, what's the difference between an NFT and a fungible token? And why is that important for identity? >> My favorite metaphor here is baseball cards versus dollar bills. So a dollar bill is fungible. If I have a dollar and you have a dollar, we can trade dollars and none of us is richer or poorer. If I have a Babe Ruth and you have a Hank Aaron, and we swap baseball cards, we have changed something fundamental. So the important thing about NFTs is that they are non fungible. So if I have a domain and you have a domain, like I have that identity and you have that identity, they are unique, they're independent, they're owned by each one of us, and then we can't swap them interchangeably. >> And that's why you're seeing NFTs hot with art and artists, because it's like a property. It's a property issue, not so much- >> Absolutely >> Interchangeable or divisible kind of asset. >> Yep, it is ownership rights in digital form, yes. >> All right, so now let's get into what the identity piece. I think find that interesting because if I have something that's an NFT, it's non fungible, it's unique to me, it's property, my property my login, this sounds compelling. So how does login work with the NFT? Can you guys take us through that architecture, what does it do? How does it work? And what's the benefit? >> Good, so the way our login product works is it effectively uses your NFT domain. So Michael.crypto, for example, as the authentication piece of a login session. So basically when I go and I try to log in with my domain, I type in Michael.crypto, I sign it with my wallet which cryptographically proves that I am this human, this is me, I have the rights to log in. And then when I do so, I have the ability to share certain parts of my identity information with the applications that I use. So it really blends the ease of use from Web2 of just a standard like login with Gmail, SSO experience, with all of the security and privacy benefits of Web3. >> How important is single sign-on? Because right now people are used to seeing things like log with your GitHub handle or LinkedIn, or Google, Apple. You seeing people offering login. What's the difference here from those solutions and why does it make sense for the user? >> Sure, the big difference is what we're building is really user first. So if you think about traditional SSOs, you are the product. When you use their product, they're selling your data, they're tracking everything you do. Login with unstoppable handles not only authentication, but data sharing as well. So when you log in a domain owner can choose to share aspects of their online identities, such as first name, preferred language, profile picture, location. So this is a user controlled way of using a sign-on where their permissioning these different of their identity. And really apps can use this information to enable new experiences, such as, for example, website might automatically enable high contrast mode for someone visually impaired. It could pre-populate your friends from a decentralized social graph. So, what we're doing is taking the best parts of Web2 SSO and combining them with the best of Web3. So, no more losing your password, entering in the same data hundreds of times depending on other services to keep your information safe. Login with unstoppable really puts you in complete control of your data. And a big part of that is you're not going to have 80 plus usernames and passwords anymore. We have these tools like password managers that exist to put a bandaid on this issue, but it's not really a long term solution. So what we're building is really seamless onboarding where everything can be tied to your domains so that you can navigate to different apps in a much more seamless way. >> Michael, I got to get your thoughts on this because in the product side, it's interesting, my mind's connecting some dots. If I have first of all, great convenience to reduce all those logins. So, check their little pain reduction. But when you just think about what's different, I can now broker my data as well as login. So let's just say, hypothetically, I'm cruising around some dApps and I'm doing things in earning reputation, or attention, or points, or whatever utility tokens. There could be a way for me to control what I own. I'm the product, I own the data. Is that where this is going? >> I think it's definitely a direction it could go, say, for example, if I'm a e-commerce platform and I'm trying to figure out where I'm going to place a new billboard. One of the things that I could request from a user, is their address. I can figure out where they live, what city they're in, that will help inform me the decision that I need to make as a business. And in return, maybe I give that person a dollar off their purchase. We can start to build a stronger relationship between the applications that people use, and the people that use them. And try to optimize that whole experience, and try to just transfer information back and forth to make everyone's lives better. >> What's the roadmap on the business side Charlie, when you see companies adopting it, they're probably taking babies steps they're crawling before they walk, they're walking before they run. I can see decentralized applications in the future where there's FinTech or whatever, having new kinds of marketplaces that take advantage of the paradigm where the script flips to the user first. Okay, so I see that. How do people get started now? What are some of the success momentum points that you're seeing companies do now with unstoppable? >> Sure, so a lot of Web3 apps are very sensitive about respecting the information that their users are providing. So, what we're doing is offering different ways for apps can touch with their users in a way that is user controlled. So, an example there is that a lot of Web3 companies will use WalletConnect to allow users to log in using a wallet address. An issue there is that one person can have hundreds of wallet addresses, and it's impossible for the app to understand that. So, what we do is we use login, we attach an email address, some other pieces to a wallet address so that we can identify who our unique user is. And the app is able to collect that information, they don't have to deal with passwords or PII storage. They have access to a huge amount of new data for an improved UX. It's really simple to maintain as well. So one example there is if you are a DeFi platform and you want to reward your users for coming to their site for the first time, now that they can identify unique user, they can drop a token into that user's wallet. All because they're able to identify that user as unique. So they have a better way of understanding their customers. They enable their customers to share data. A lot of these companies will ask users to follow them on Twitter or Discord when they need to provide updates or bug bounties, all these different things. And login if unstoppable lets them permission email addresses so they can collect emails if they want to do a newsletter. And instead of harvesting data from elsewhere and forcing people to join this newsletter program, it's all user controlled. So each user saying, yes, you can use my email for your newsletter. I'm supporting your project, I want to be kept up to date with bugs or bounties or rewards programs. So really it's just a better way for users to share the data that they're willing to with dAPPs, and dAPPs can use it to create all sorts of incentives and really just understand their users on a different level. >> How is the development Michael, going on the smart contract side of the business? Ethereum has always been heralded as being very developer focused. There's been created innovations, you still got gas fees out there. You still got to do some things. How is the development environment? How are the applications coming? 'Cause I can see the flywheel kicking in as the developer front gets more streamlined, more efficient. And now you got the identity piece nailed down. I just see a lot of dominoes falling at the same time. What's the status on the DEV side. What you're doing. >> Good. The fascinating thing about crypto is how quickly it changes. When I joined Ethereum there was pretty reasonable still for transactions. It was very cheap to get things done very fast. With a look at last summer that things went completely out of control. This is a big reason that unstoppable for a long time has been working on a layer two. And we've moved over to the polygon as our primary source of record, which is built on top of Ethereum. Of course, I think saved well over a hundred million in gas fees for our users. We're constantly keeping an eye on new technologies that are emerging, weighing how we can incorporate those things. And really where of this industry is going to take us. In many ways we are just as much passengers as the other people floating around the ecosystem as well. >> It's certainly getting faster every day, I'm seeing a huge uptake on Ethereum. I heard a stat that most people at the university of California, Berkeley, 30% of the computer science students are dropping out to join Web3 companies. This goes to show you this cultural shift and you're going to see a lot more companies getting involved. So I got to ask you Charlie, on the BizDev front, how are companies getting started? What's the playbook? Are they putting their toe in the water? They jumping in full throttle? What's the roadmap? What's the best practice for people to get started with unstoppable? >> Absolutely. We're lucky that we get a lot of inbound interest from companies Web2 and Web3, because they first want to secure their domains. And we do a ton of work on the back end to protect trademark domains. We want to avoid squatting as much as possible. We don't think that's the spirit of Web3 at all. And certainly not what the original tension of the internet was. So, fair amount of companies will reach out to us to get their domain. And then we can have a longer conversation about some of the other integrations and ways we can collaborate. So certainly visiting our website, unstoppabledomains.com is a great starting point. We have an app submission page where apps can reach out to us, even request a grant. We have a grant program to help developers get started, provide them some resources to work with us and integrate some of our technology. We have great documentation as well on the site. So you can read all about what it takes to resolve domains, if you're a wallet and an exchange, as well as what it takes to integrate login with unstoppable, which is actually a super easy integration as well, which we're really excited about. So yeah, I'd say check out the website, apply for a grant if you think you're a fit there, then of course, people can always reach out to me directly on Twitter, on Telegram, email. We're very reachable and we're always happy to chat with projects and learn more about what they're doing. >> What's the coolest thing you see going on Charlie, with your partners right now? What's the number one use case that's cool that people are jumping on right now to get in and get some success out of the gate? >> Maybe GameFi play to earn is huge. It's blowing up and the gaming community is really passionate, vibrant, just expanding like crazy. Same with DeFi, there's all this cool new stuff you can do with DeFi where no matter how big your portfolio is, you're able to stake and use all these interesting tools to grow your book. So it's super exciting to see and talk to all these projects. And, there's certainly an energy in the community where everyone wants to onboard the general public to Web3. So we're all working on these school projects, but we need everyone to come over from Web2, understand the advantages of DeFi, of GameFi of having an entity domain. So, I'm lucky that I'm one of the first layers there of meeting new projects and helping get access to more users so that they can grow along with us. >> I remember the early days of Bitcoin and Ethereum, we were giving it away. The community mantra was, give a Bitcoin to someone. That was like, >> Right. >> When you can actually give a Bitcoin to someone. What's the word of mouth or organic viral? I won't say growth hack 'cause that's got negative connotations. But what's the community's way of putting forth the mission for unstoppable? Is it just more domains? You guys have any programs got going on? Is it give it away? Obviously you can get domains on your site, but what's the way to get people ingratiated in and getting comfortable? >> So much of what we do is really to solve that question, answer that question. We spend a ton of time and energy just on education and whether that's specifically around domains or just general Web3. We have a podcast which is pretty exceptional, which talks to Web3 leaders from across the space and makes the project that they're working on more accessible. I think we passed over a hundred episodes, not too long ago. There's a ton of stuff that we do that other people do. If anyone has questions, I'm happy to talk about our resources, of course. >> The pod, I think you guys are up to 117, but that's a deep dive. You guys go deep on the podcast. So that's where you go in. What else is new on digital identity? Where do you guys see the future going? Now that you get the baseline identity with the NFT. Makes a lot of sense, create innovation. Good logic, makes sense. Solid technically, what's next? >> I think this really boils down to the way that the internet has grown. Doesn't really feel like the way that the internet should be. Like our data shouldn't live in these wild gardens, controlled by these large companies. Ultimately people should be responsible for their own identities. They should have control over of things that they do online. The data that's shared, the benefit of that data. It's about the world that we are working towards, is very much that. Where we are giving people the ability to be paid for sharing their data with companies. We're giving applications the ability to request information from the people that use those applications to improve their experience. We're really just trying to make connections across the ecosystem through these products, to enable a better experience for everyone. So whether that's the use cases that I mentioned already, or maybe viewing reviews on something like Yelp or Amazon, that just confirm that the person that you are you're looking at is actually a real person, not some bot that's been paid to load a review. The interesting thing about these products is they're so universally applicable. There are so many different ways that we can try to plug them in. So we are- >> A bots is a great example, double-edged sword. You can have a metaverse image and have pre-programmed conversations with liquid audio and the video application. Or it's a real person. How do you know the difference? These are going to be questions around who solves that problem. Now there's time for bots and there's a time not for bots. We all know what happens when you get into the game of manipulation, but also it can be helpful. This is where you got to be smart. And identity's critical in this future. Charlie, what's your reaction to the future of digital identity? So much to look at here on the trajectory. >> I think a big part of it is data portability. If you go to a site like Instagram, you're giving them all this content that's very personal to you, and you can't just pack up and leave Instagram. So we want a future where most of these apps are just a front end and you can navigate from one to the other and bring your data with you. And not be beholden to the companies that operate centralized servers. So, I think data portability is huge and it's going to open up a lot of doors. And just going back to that thought on cleaning up Web2 for a better web three. When I think about the Amazons, the Yelps of the world, there are all these bots, there are all these awful fake reviews. There's a lot of gamification happening that is really just creating a lot of noise. And I want to bring transparency back to the internet where when you see a review, you should know that that's a real human. And blockchain technology is enabling us to do that. And certainly FT domains are going to play a huge part of that. So I think that having an experience where you know and trust the people that you're interacting with is going to be really powerful and just a better experience for everyone. And there's a lot of ramifications with that. politically speaking, we've all seen all the issues with attacking communities and using bots and fake accounts to hit people's pain points, it's sad and certainly not something that we want to see continue happening. So, whatever we can do to give people their digital identity and help people understand that this is a real person on the other end, I think is huge for the future of the internet and really for society as well. >> That's a great call out there Charlie. Cleaning up the mess of Web 2.0, Web2, actually it was 2.0 technically, now Web3 is no point zero in it. But I saw on or listened to the podcast with Matt. This recent one, he had a great metaphor that went back to when I was growing up in the internet, you had IP addresses. And the mess there was, you couldn't find what you want to look. And no one could remember what to type in, 'cause you could type in IP address in the browser back then. And then DNS came out and then keywords that's web. Now that mess, now is fraud, misinformation, bot manipulation, deep fakes, many other kind of unwanted time to innovate. And every year, every time you had these inflection points, there'd be an abstraction on top of it. So, similar thing happening here, is that how you guys see it too? >> I think we're going back to some of the foundational architecture of the internet, DNS. And really bringing that forward about 30, 40 years in terms of technology. So loading in some more cryptography and some other fancy things to help patch some of those issues from the previous versions of the web. >> Awesome. Well guys, thanks so much for coming on and the spirit of TikTok, Emily summarizes asking, can you guys give us a quick TikTok moment, short comment on where this is all going, where is login, single sign-on mean and what should people do to steps to secure their digital identity? >> Sure, I'll jump in here. So, it's time for people to secure their digital identity. The great first step is going to sample domains and getting an NFT domain. You can control your data. You can do a lot of cool different things with your domain, including posting your own website that you will own forever, no one can take it away from you. I would certainly recommend that people join our Discord, Telegram communities, check out our podcasts. It's really great especially if you're new to crypto Web3. We do a great job of explaining all the basic concepts and expanding on them. So yeah, I would say, the time is now to get your digital identity and start embracing Web3 because it's really exploding right now. And there's just so many incredible advantages, especially for the user. >> Michael, what's your take? >> But not, have said it better myself. >> Like we always say, if you're not on the next wave, you're driftwood. And this is a big wave that's happening. It's pretty clear guys, it's there, it's happening now. And again, very pragmatic implementations of solving problems. The sign-on, the app integration. Congratulations and we got our CUBE domain too, by the way. So I think we're good. >> Excellent. >> So, we got to put it to use. Appreciate it, Charlie, Michael, thanks for coming on and sharing the update. >> It's pleasure. >> Welcome. >> Okay, this is theCUBE, with Unstoppable Domains Partner Showcase I'm John for your host, got a lot of other great interviews. Check them out. We're going to continue our coverage and continue on with this great showcase. Thanks for watching. (upbeat music)
SUMMARY :
of the infrastructure of What is the path to a digital of the parts of your physical identity. We see that all the time with Linktree, and the number one conversation into the services you use, is the NFT is your identity. So the important thing about NFTs is And that's why you're seeing NFTs hot divisible kind of asset. Yep, it is ownership Can you guys take us So it really blends the What's the difference that you can navigate to different apps Michael, I got to get your thoughts and the people that use them. of the paradigm where the And the app is able to 'Cause I can see the flywheel kicking in as the other people floating So I got to ask you Charlie, of the internet was. the general public to Web3. I remember the early days of putting forth the and makes the project that they're working So that's where you go in. that the internet should be. So much to look at here on the trajectory. and it's going to open up a lot of doors. is that how you guys see it too? of the foundational architecture and the spirit of TikTok, to get your digital identity The sign-on, the app integration. and sharing the update. We're going to continue
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Charlie Brooks | PERSON | 0.99+ |
Charlie | PERSON | 0.99+ |
John | PERSON | 0.99+ |
Michael Williams | PERSON | 0.99+ |
Michael | PERSON | 0.99+ |
Matt | PERSON | 0.99+ |
Emily | PERSON | 0.99+ |
John Furrier | PERSON | 0.99+ |
30% | QUANTITY | 0.99+ |
Linktree | ORGANIZATION | 0.99+ |
Amazon | ORGANIZATION | 0.99+ |
Apple | ORGANIZATION | 0.99+ |
ORGANIZATION | 0.99+ | |
twice | QUANTITY | 0.99+ |
Yelp | ORGANIZATION | 0.99+ |
Amazons | ORGANIZATION | 0.99+ |
ORGANIZATION | 0.99+ | |
GameFi | ORGANIZATION | 0.99+ |
one person | QUANTITY | 0.99+ |
Web3 | ORGANIZATION | 0.99+ |
first step | QUANTITY | 0.99+ |
first time | QUANTITY | 0.99+ |
Unstoppable Domains | ORGANIZATION | 0.99+ |
One | QUANTITY | 0.98+ |
80 plus usernames | QUANTITY | 0.98+ |
ORGANIZATION | 0.98+ | |
ORGANIZATION | 0.98+ | |
Web2 | ORGANIZATION | 0.98+ |
ORGANIZATION | 0.98+ | |
one example | QUANTITY | 0.98+ |
each user | QUANTITY | 0.98+ |
WalletConnect | TITLE | 0.97+ |
ERC 721 | OTHER | 0.97+ |
Two great guests | QUANTITY | 0.96+ |
zillion handles | QUANTITY | 0.96+ |
SSO | TITLE | 0.96+ |
today | DATE | 0.96+ |
single | QUANTITY | 0.96+ |
Discord | ORGANIZATION | 0.96+ |
Unstoppable Domains Partner Showcase | EVENT | 0.96+ |
last summer | DATE | 0.96+ |
Gmail | TITLE | 0.96+ |
Telegram | TITLE | 0.96+ |
first | QUANTITY | 0.96+ |
a dollar | QUANTITY | 0.95+ |
hundreds of wallet addresses | QUANTITY | 0.95+ |
TikTok | ORGANIZATION | 0.94+ |
zillion | QUANTITY | 0.94+ |
Ethereum | ORGANIZATION | 0.93+ |
one | QUANTITY | 0.92+ |
BizDev | ORGANIZATION | 0.92+ |
over a hundred episodes | QUANTITY | 0.92+ |
GitHub | ORGANIZATION | 0.91+ |
first layers | QUANTITY | 0.91+ |
about 30 | QUANTITY | 0.91+ |
unstoppabledomains.com | OTHER | 0.9+ |
each one | QUANTITY | 0.88+ |
Berkeley | LOCATION | 0.85+ |
117 | QUANTITY | 0.84+ |
single sign | QUANTITY | 0.83+ |
Partner Showcase | EVENT | 0.83+ |
DeFi | ORGANIZATION | 0.83+ |
next | EVENT | 0.83+ |
CUBE | ORGANIZATION | 0.83+ |
up | QUANTITY | 0.81+ |
Yelps | ORGANIZATION | 0.8+ |
theCUBE | ORGANIZATION | 0.79+ |
Michael.crypto | TITLE | 0.79+ |
2022 007 Charlie Brooks and Michael Williams1
>>Hello, and welcome to the cube special presentation of unstoppable domains partner showcase. I'm John furrier, your host of the cube. We got a great conversation talking about the future of the infrastructure of web three, all around domains, non fungible tokens, and more two great guests. Charlie Brooks, with business development of ensemble domains, and Michael Williams, product leader and advisor with unstoppable doing gentlemen, thanks for coming on the cube partner showcase with unstoppable domains. >>Thanks John. Excited to be here. So >>I love what you guys are doing. Congratulations on all your success. You guys are on the leading edge of what is a major infrastructure shift. Web three is being called, but people who have been doing this for a while, know that you see the blockchain, you see decentralization, you see immutability, all these future smart contracts. All the decentralized applications are now hitting the scene and NFTs are super hot as, as, as you can imagine, you guys are in the middle of it. So you guys are in, in, in the sweet spot of what I call the pragmatic pioneers. You guys are to building solutions that are making a difference like single sign-on. You have the login product, let's get into it. What is the path to I digital identity beyond the web, because we know what web identity is, but now that the web is kind of being abstracted away by this new web three layer, what is digital identity? >>Yeah, I can take that one. So I think what we're really seeing is this transition away from a purely physical identity where your digital life or where your, your online identity is really just a reflection of the, the parts of your physical identity, where you live, where you go to school, all of these things. And we're really seeing this world emerge where your online identity becomes much more of a primary. So if you have a way that you represent yourself in the online world, whether that's an Instagram account or TechTalk or email address or username, all of these things together make up your digital identity. So congrats. If you have any of those things, you already have one. >>Yeah. And we see that all the time with link tree people put their link tree out there and it's got the zillion handles. You're right. We all get up to Instagram and everyone's got like zillion identities. Is that a problem or an opportunity? >>I think it's just a reality. The fact that as our identities are spread across all of these different services and platforms that we use, the problem with something like link tree is that it is owned by link tree. You know, if I won the lottery purchased link tree and decided I wanted to change your personal website, John, I could easily do that. Moving to the kind of architecture that we have. And then if T architecture changes that significantly, it puts a lot of power back in the hands of the people who actually own those identities. >>You know, I do a lot of cube showcases with folks rent on my machine, learning and AI, and the number one conversation that they bring up. The number one issue is data. And they say when data is siloed and, and protected and owned, it is not optimized for machine learning. So I can almost imagine, as you bring NFTs to the digital identity, you mentioned you don't own your identity. If someone else is managing the service like link tree, this is, this is a cultural shift. This is an infrastructure software shift at the same time. Can you guys expand more about what you guys are doing with the NFT and ensemble domains with respect to that digital identity, because is that power shifting to the users now? And how does that compare to what's out there today? >>Sure. I think so. Our domains are NFTs, so they are ERC 7 21 tokens. And if you think about the past kind of web two identities are controlled by the platforms that we use, Twitter, Facebook, whatnot. There's a really a lack of data portability there. Our accounts and data live on their servers. They can be deleted at any time. So using an NFT to anchor your digital identity really gives you full control over your identity. You can't, it can't be deleted. It can't be revoked or edited or changed without your permission. And really, even better than information you store on your entity domain can be plugged into the services you use so that you never have to enter the same data twice. So when you go from platform to platform, everything can be tied to your existing domain. You're not going to a new site, kind of entering their ecosystem and providing all this information time and time again, and not really having a clear understanding of how your data is being used and where it's being stored. >>So the innovation here is the NFT is your identity and, and a non fungible token NFT is different than say a fungible tokens. So for the folks out there, that's trying to follow the bouncing ball. Michael, what's the difference between an NFT and a fungible token. And how does, and why is that important for identity? >>Yeah. My favorite metaphor here is baseball cards versus like dollar bills. So a dollar bill is fungible. If I have a dollar and then you have a dollar, we can trade dollars. And none of us is richer or poorer. If I have a babe Ruth and you have a Hank Aaron, and we swap baseball cards, like we have, we have changed something fundamental. So the, the important thing about NFT is, is that they are non fungible. So if I have a domain and you have a domain, like I have that identity and you have that identity, they are unique. They're independent, they're owned by each one of us. And then we can kind of swap them interchangeably. >>And that's why you're seeing NFTs hot with art and artists, because it's like a property, it's a property issue, not so much absolutely changeable, a divisible kind of asset. >>It is a, it is ownership rights in digital >>Form. Yes. All right. So now let's get into what the, the identity piece. I think I find that interesting because if I have something that's an NFT, it's not fungible. It's unique to me. It's property, my property, my login, this sounds compelling. So how does log-in work with the NFT? Can you guys take us through that, that architecture, what does it do? How does it work? And what's the benefit? >>So the way our login product works is it effectively uses your NFT domain. So Michael dot crypto, for example, as the authentication piece of a, of a login session. So basically when I, when I go and I try to log in with my domain, I type in Michael dot crypto. I sign it with my wallet, which cryptographically proves that I am this human. This is me. I have the rights to log in. And then when I do so I have the ability to share certain parts of my identity information with the applications that I use. And so it really blends the best of the ease of use from web to have just a standard like login with Gmail SSL experience, with all of the security and privacy benefits of web three. >>How important is single sign-on because, I mean, right now people are used to like, seeing things like log with your kid hub handle or LinkedIn, or, you know, Google, apple. I mean, you're seeing people offering login. Okay. What's the difference here from those solutions and why is it make sense for the user? >>Sure. Yeah. The big differences, what we're building is really user first. So if you think about traditional SSOs, you are the product. When you use their product, they're selling your data and, you know, they're tracking everything you do logging in with unstoppable handles, not only authentication, but data sharing as well. So when you log in a domain or owner can choose to share aspects of their online identity, such as first name, preferred language profile, picture location. So this is a user controlled way of using a sign-on, where they are permissioning, these different pieces of their identity. And really apps can use this information to enable new experiences, such as for example, website might automatically enable high contrast mode for someone visually impaired. It could, pre-populate your friends from a decentralized social graph. So what we're doing is taking the best parts of web to SSL and combining them with the best parts of web three. >>So no more losing your password entering in the same data, hundreds of times, you know, depending on other services, keep your information safe. Logging with unstoppable really puts you in complete control of your data. And, you know, a big part of that is you're not going to have 80 plus usernames and passwords anymore. You know, we have these tools like password managers that exist to kind of put a bandaid on this issue, but it's not really a long-term solution. So we're, we're building is really seamless onboarding where everything can be tied to your domain so that you can navigate to different apps in a much more seamless way. >>Michael, I got to get your thoughts on this because on the product side, it's interesting. My mind's kind of connecting some dots if I have, first of all, great convenience to reduce all those logins, right? So, you know, check their little pain, pain reduction. But when you think about what's different, I can now broker my data as well as log in. So let's just say, hypothetically, I'm cruising around some D apps and, you know, doing things and earning reputation or attention or points or whatever, tokens utility tokens. There could be a way for me to control what I own. I'm the product I own the data. Is that kind of where this is going? >>I think it's definitely a direction. It could go say, for example, if I'm a e-commerce platform and I'm trying to figure out where I'm going to place a new billboard, you know, one of the things that I could request from a user is their address. I can figure out where they live, what city they're in that will help inform the, the decision that I need to make as a business. And in return, maybe I give that person a dollar off their purchase, right? Like we can, we can start to build a stronger relationship between the applications that people use and the people that use them and try to optimize that whole experience and try to just transfer information back and forth to make everyone's lives better. >>What's the roadmap on the business side, Charlie, when you see companies kind of adopting it, they're probably taking baby steps or crawling before they walk they're walking before they run. I mean, I can see decentralized applications in the future, whether it's FinTech or whatever, having new kinds of marketplaces that take advantage of the paradigm where the, the script flips to the user first. Okay. So I see that. How do people get started now? What are some of the success momentum points that you're seeing companies do now with unstoppable? >>Sure. So a lot of web three apps are very sensitive about respecting the, the information that their users are providing, right? So what we're doing is I'm offering different ways for apps can touch with their users in a way that is user controlled. So an example there is that a lot of web three companies will use wallet connect to allow users to log in using a wallet address, an issue. There is that one person can have hundreds of wallet addresses, and it's impossible for the app to understand that. So what we do is we use login, we attach an email address, some other pieces to a wallet address so that we can identify who a unique user is. And the app is able to collect that information. They don't have to deal with passwords or PII storage. They have access to a huge amount of new data for an improved UX. >>It's really simple to implement and maintain as well. So one example there is if you are a DFI platform and you want to reward your users for coming to their site for the first time, now that they can identify unique user, they can drop a token into that user's wallet all because they're able to identify that user as unique. So they have a better way of understanding their customers. They enable their customers to share data. A lot of these companies well ask users to follow them on Twitter or discord when they need to provide updates or, you know, bug bounties, all these different things and log in with unstoppable, lets them permission, email addresses so they can collect emails if they want to do a newsletter. And instead of sort of harvesting data from elsewhere and kind of forcing people to join this newsletter program, it's all user controlled. So each user saying, yes, you can use my email for your newsletter. You know, I'm supporting your project, want to be kept up to date with bugs or bounties or rewards programs. So really it's just kind of a, a better way for users to, to share the data that they're willing to with dApps and dabs can use it to create all sorts of incentives and really just kind of understand their users on a, on a different level. >>How has the development Michael going on the, on the smart contract side of the business, you know, theories has always been heralded as being very developer focused. There's been great innovations. Just, you still got, you know, gas fees out there. You still gotta do some things. How is the development environment, how are the applications coming? Cause I can see the really, I can see the flywheel kicking in as a developer, Frank gets more streamlined, more efficient, and now you've got the identity piece nailed down. I just see a lot of kind of dominoes falling at the same time. What's the status on the dev side? >>What's your tour? The fascinating thing about crypto is how quickly it changes. You know, when I, when I joined Ethereum was pretty reasonable still for transactions. It was very cheap to get things done very fast. We've looked at last summer that things went completely out of control. This is a big reason that unstoppable for a long time has been working on a layer two and we've moved over to the Pollyanna, our primary source of record, which is built on top of it. The area of course, I think saved well over a hundred million dollars in Gaspe is for our users that we're constantly keeping an eye on new technologies that are emerging, weighing how we can incorporate those things and really where this industry is going to take us. You know, in many ways we are, are just as much passengers as the other people floating around the ecosystem as well. >>Yeah, it's, it's certainly getting faster every day and seeing a huge uptake on a theorem. I heard a stat that most people at the university of California, Berkeley, 30% of the computer science students are dropping out to join web three companies just goes to show you this cultural shift and you can see a lot more companies getting involved. So I got to ask you Charlie, on the biz dev front, how are companies getting started? What's the playbook? Are they putting their toe in the water? Are they jumping in full throttle? What's, what's the, what's the roadmap. What's the best practice for people to get started with unstoppable? >>Absolutely. You know, we're lucky that we get a lot of inbound interest from companies web two and web three because they first want to secure their domains. And we do a ton of work on the backend to protect trademark domains. We want to avoid squatting as much as possible. You know, we don't think that's the spirit of, of weaponry at all. And certainly not what the original intention of the internet was. So fair amount of companies will reach out to, out to us to get their domain. And then we can have a longer conversation about some of the other integrations and ways we can collaborate. So certainly visiting our website and several domains.com is a great starting point. We have an app submission page where asking, reach out to us, even request a grant. We have a grant prop, a program to help developers get started, provide them some resources to, to work with us and integrate some of our technology. >>We have great documentation as well on the site. So you can read all about what it takes to resolve domains, if you're a water and an exchange, as well as what it takes to integrate login within softball, which is actually a super easy integration as well, which we're, we're really excited about. So yeah, I'd say check out the website apply for our grant. If you think you're a fit there, then of course, people can always reach out to me directly on Twitter, on telegram email. We're very reachable and, and we're always happy to chat with projects and, and learn more about what they're doing. >>What's the coolest thing you've seen going on trial with your partners right now. What's, what's the, what's the number one use case that's cool that people are jumping on right now to get in and get some, some, you know, some success out of the gate. >>Yeah. Maybe, maybe gamefied kind of played, earns huge. It's blowing up. And the gaming community is really passionate, vibrant, just expanding like crazy same with there's all this cool new stuff you can do with defy where no matter, you know, how many, how, how big your kind of portfolio is, you're you're able to stake and use all these interesting tools to kind of grow your book. So it's super exciting to see and talk to all these projects and, you know, there's certainly kind of an energy in the community where everyone wants to onboard the general public to web three, right? So we're all working on these school projects, but we need everyone to come over from web to kind of understand the advantages of defy of game fi of having an empty domain. So I'm lucky that I'm kind of one of the first layers there of, of meeting new projects and kind of helping them get access to more users so that they can grow along with. >>Yeah. I remember the early days of Bitcoin and Ethereum, we were giving it away to give the, the community manager was give a, give a Bitcoin to someone that was when it was, you can actually give a Bitcoin to someone what's the, what's the word of mouth or organic viral. I won't say growth hack because that's got negative connotations, but what's the community's way of putting forth the mission for unstoppable. Is it just more domains you guys have any programs got going on? Is it give it away? I'll see you, you can get domains on your site, but what's the, what's the way to get people in gray shaded in and getting comfortable. >>Yeah. So much of what we do is really just all of that, to all that question, to answer that question, we spent a ton of time and energy just on education and whether that's specifically around domains or just general led three, we have a podcast which is pretty exceptional, which talks to what three leaders from across the space and makes the projects that they're working on more accessible. I think we passed over a hundred episodes, not too long ago. There's a ton of stuff that we do that other people do. If anyone has questions, I'm happy to talk about resources. >>Yeah. The part I think you guys are up to one 17, but that's a deep dive that you guys go deep on the podcast. So that's, you know, where you go in, what else is new on digital identity? Where do you guys see the future going now that you get the baseline identity with the NFT? It makes a lot of sense. Create innovation. Good logic makes sense. Solid. Technically what's next. >>Yeah. I think that's really boils down to the way that the internet has grown. Doesn't really feel like the way that the internet should be like our data shouldn't live in these walled gardens controlled by these large companies. Like ultimately people should be responsible for their own identity it's they should have control over the things that they do online, the data that's shared or the benefit of that data. And so the world that we are working towards is very much that where we are giving people the ability to be paid for sharing their data with companies, we're giving applications, the ability to request information from the people that use those applications to improve their experience. We're really just trying to make connections across the ecosystem, through these products to enable a better experience for everyone. So whether that's the, the use cases that I mentioned already, or maybe viewing reviews on something like Yelp or Amazon that just confirmed that the person that you are looking at is actually a real person, not some bot that's been paid to to the loader review. Like the, the interesting thing about these products is they're so universally applicable, applicable. There are so many different games that we can try to plug them in. So have >>It's a great example. It's double-edged sword. You can have a, a metaverse image and have pre-programmed conversations with, with, you know, liquid audio and the video application, you know, or it's a real person. How do you know the difference? You, these are going to be questions, you know, around, around who solves that problem. Now this is time for bots and is it time not for bots? We all know what happens when you get into the, you know, the game of manipulation, but also it can be helpful. This is where you gotta be smart and identity is critical in this future. Charlie, what's your reaction to the future of digital identity? I mean so much to look at here on the trajectory. >>Yeah. You know, I think a big part of it is data portability, right? If you go to a site like Instagram, you're giving them all this content that's very personal to you and you can't just pack up and leave Instagram. So we want a future where most of these apps are just kind of a front end and you can navigate from one to the other and bring your data with you and not be beholden to the companies that operate centralized servers. So I think data portability is huge and it's going to open up a lot of doors. And, and just going back to that thought on kind of cleaning up web two for a better web three. When I think about the Amazons, the Alps, the Yelps of the world, they're all these bots are all these awful fake reviews. There's a lot of gamification happening that is really just creating a lot of noise. >>And I want to bring kind of transparency back to the internet, where when you see a review, you should know that that's a real human and blockchain technology is enabling us to do that. And certainly enough, two domains are going to play a huge part of that. So I think that having an experience where, you know, and trust the people that you're interacting with is going to be really powerful and just a better experience for everyone. And there's a lot of ramifications with that. You know, politically speaking, we've, we've all seen all the issues with kind of attacking communities and using bots and fake accounts to kind of hit people's pain points is it's kind of sad and, and certainly not something that we want to see continue happening. So whatever we can do to kind of give people their digital identity and help people understand that this is a real person on the other end, I think is huge for, for the future of the internet and really for society as well. >>That's a great call out there. Charlie cleaning up the mess of web 2.0 web two. Well, actually I was, it was 2.0 technically now web three is no nos 0.0 in it, but, but I saw on our listen to the podcast with Matt, this recent one, and he had a great metaphor that went back to when I was growing up in the internet, you got IP addresses, right? And the mess there was, it was, you couldn't find what you want to look and no one could remember what to type in. Cause you can type in IP addresses in the browser back then. And then DNS came out and then keywords that's web. Okay. Now that mess now is fraud. Misinformation, bot manipulation, deep fakes, many other kind of unwanted kind of time to innovate. And every year, every time you had these inflection points, there'd be an abstraction on top of it. So similar thing happening here is that you guys see it too. >>Yeah. I think we're going back to some of the foundational architecture of the internet DNS and really bringing that forward about 30, 40 years in terms of technology. So loading in some work cryptography and some other fancy things to help patch some of those issues from the previous versions of the web. >>Yeah. Awesome. Well guys, thanks so much for coming on and the spirit of our tick talk, you know, I'm only summarize this. Can you guys give us a quick tick tock moment, short comment on, you know, where this is all going, whereas log-in single sign on mean and what should people do to take steps to secure their digital identity? >>Sure. I'll jump in here. So it's time for people to secure their digital identity. That great first step has gone on several domains and getting an entity domain. You know, you can control your data. You can do a lot of cool different things with your domain, including posting your own website that you own forever. And no one can take it away from you. I would certainly recommend the people join. Our discord, telegram community is check out our podcasts. It's really great. Especially if you're new to crypto web three, you know, we do a great job of sort of explaining all the basic concepts and expanding on them. So yeah, I'd say, you know, the time is now, so to get your digital identity and start embracing web three, because it's really exploding right now. And there's just so many incredible advantages, especially for the user, >>Michael, what's your take? >>I mean, I put not, I've said it better myself. >>Like we always say, if you're not on the next wave, your driftwood, and this is a big wave it's happening. It's pretty clear guys. It's it's there, it's happening now. And again, very pragmatic implementations of solving problems. The sign-on the app integration. Congratulations. And we've got our cube domain too, by the way. So we're we're I think we're good. You know, so we've got to put it to you. It's appreciate it, Charlie, Michael, thanks for coming on and sharing the update. Okay. This is the cube with unstoppable domains partner showcase, shout for your hosts. Got a lot of other great interviews. Check them out. We're going to continue our coverage and continue on with this great showcase. Thanks for watching.
SUMMARY :
We got a great conversation talking about the future of the infrastructure So So you guys are in, So if you have a way that you represent yourself Is that a problem or an opportunity? changes that significantly, it puts a lot of power back in the hands of the people who actually own those identities. So I can almost imagine, as you bring NFTs to the digital identity, So when you go from platform to platform, everything can be tied to your existing So the innovation here is the NFT is your identity and, So if I have a domain and you have a domain, like I have that identity and you have that identity, And that's why you're seeing NFTs hot with art and artists, because it's like a property, Can you guys take us through that, that architecture, what does it do? So the way our login product works is it effectively uses your NFT domain. seeing things like log with your kid hub handle or LinkedIn, or, you know, Google, So when you log in a domain or owner you know, depending on other services, keep your information safe. I have, first of all, great convenience to reduce all those logins, right? I'm trying to figure out where I'm going to place a new billboard, you know, one of the things that I could What's the roadmap on the business side, Charlie, when you see companies kind of adopting it, And the app is able to collect that information. So each user saying, yes, you can use my email Cause I can see the really, around the ecosystem as well. So I got to ask you Charlie, on the biz dev front, how are companies getting started? of the internet was. So you can read all about what it takes to resolve domains, What's the coolest thing you've seen going on trial with your partners right now. So it's super exciting to see and talk to all these projects and, you know, there's certainly kind of an energy Is it just more domains you guys have any programs to answer that question, we spent a ton of time and energy just on education and So that's, you know, where you go in, what else is new on digital identity? that just confirmed that the person that you are looking at is actually a real person, We all know what happens when you get into the, you know, the game of manipulation, you can navigate from one to the other and bring your data with you and not be beholden to the And I want to bring kind of transparency back to the internet, where when you see a review, So similar thing happening here is that you guys the previous versions of the web. on, you know, where this is all going, whereas log-in single sign on mean and what So yeah, I'd say, you know, the time is now, This is the cube with unstoppable domains partner showcase, shout for your hosts.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Michael | PERSON | 0.99+ |
John | PERSON | 0.99+ |
Michael Williams | PERSON | 0.99+ |
Charlie | PERSON | 0.99+ |
Matt | PERSON | 0.99+ |
Charlie Brooks | PERSON | 0.99+ |
Amazon | ORGANIZATION | 0.99+ |
Frank | PERSON | 0.99+ |
ORGANIZATION | 0.99+ | |
30% | QUANTITY | 0.99+ |
Yelp | ORGANIZATION | 0.99+ |
apple | ORGANIZATION | 0.99+ |
ORGANIZATION | 0.99+ | |
Amazons | ORGANIZATION | 0.99+ |
NFT | ORGANIZATION | 0.99+ |
twice | QUANTITY | 0.99+ |
hundreds of times | QUANTITY | 0.99+ |
two domains | QUANTITY | 0.99+ |
one person | QUANTITY | 0.99+ |
first time | QUANTITY | 0.99+ |
link tree | ORGANIZATION | 0.98+ |
first | QUANTITY | 0.98+ |
Gmail | TITLE | 0.98+ |
last summer | DATE | 0.98+ |
ORGANIZATION | 0.98+ | |
today | DATE | 0.97+ |
three leaders | QUANTITY | 0.97+ |
80 plus usernames | QUANTITY | 0.97+ |
first step | QUANTITY | 0.97+ |
Ruth | PERSON | 0.97+ |
single | QUANTITY | 0.97+ |
one example | QUANTITY | 0.97+ |
ORGANIZATION | 0.97+ | |
two identities | QUANTITY | 0.97+ |
two great guests | QUANTITY | 0.97+ |
hundreds of wallet addresses | QUANTITY | 0.96+ |
ORGANIZATION | 0.96+ | |
each one | QUANTITY | 0.96+ |
a dollar | QUANTITY | 0.95+ |
Pollyanna | LOCATION | 0.95+ |
over a hundred million dollars | QUANTITY | 0.95+ |
Michael Williams1 | PERSON | 0.94+ |
Michael dot | ORGANIZATION | 0.94+ |
one | QUANTITY | 0.94+ |
zillion handles | QUANTITY | 0.94+ |
Alps | ORGANIZATION | 0.94+ |
ERC 7 21 | OTHER | 0.93+ |
each user | QUANTITY | 0.93+ |
big | EVENT | 0.91+ |
first layers | QUANTITY | 0.9+ |
2022 007 | OTHER | 0.9+ |
over a hundred episodes | QUANTITY | 0.88+ |
Michael dot crypto | ORGANIZATION | 0.87+ |
Ethereum | OTHER | 0.87+ |
university of California | ORGANIZATION | 0.86+ |
three layer | QUANTITY | 0.86+ |
TechTalk | ORGANIZATION | 0.85+ |
Berkeley | LOCATION | 0.85+ |
John furrier | PERSON | 0.83+ |
three companies | QUANTITY | 0.81+ |
Web three | ORGANIZATION | 0.8+ |
about 30, 40 years | QUANTITY | 0.79+ |
tree | ORGANIZATION | 0.76+ |
DFI | ORGANIZATION | 0.74+ |
Yelps | ORGANIZATION | 0.74+ |
single sign | QUANTITY | 0.74+ |
first name | QUANTITY | 0.72+ |
softball | TITLE | 0.69+ |
web two | QUANTITY | 0.66+ |
one 17 | QUANTITY | 0.63+ |
layer two | QUANTITY | 0.62+ |
up | QUANTITY | 0.62+ |
web three | QUANTITY | 0.61+ |
link | TITLE | 0.61+ |
Chen Goldberg, Google Cloud | CUBE Conversation
(peaceful music) >> Welcome to this cube conversation. I'm Dave Nicholson, and I am delighted to welcome back to the cube, cube veteran, Chen Goldberg, VP of engineering from Google. Chen, welcome back to the cube. >> Hey Dave, super happy to be here. >> Absolutely delighted to have you here. Let's dive right into this conversation. There was a, there was a blog post this week, talking about Google Cloud putting a lot of weight behind this idea of principles for software development. What are those principles and why are they important? >> The three principles that we put in that blog post is open, easy, and transformative. And I think what's really important to recognize with the three principles that those are not new principles, not for Google Cloud, and definitely not for me. I joined Google about, a little bit over five years ago. Right when just Kubernetes started to lead Kubernetes and Google Kubernetes engine team. And we immediately recognized, the idea of open and the importance of flexibility and choice is a foundation to the idea of Kubernetes and portability workloads. But pretty early on, it was clear that it's not enough just to have portability and flexibility because it creates a lot of complexity. So how can we still have that without creating a trade-off or tension for our customers? So really making sure that everything is also easy. You know, and one of the things, I use, I like to say it's not just portability of workloads, but also portability of skills and you achieve that through consistent experience, right? A lot of automation. And when you bring all of those things together, what I love about Google Cloud is that, you know, I'm an infrastructure person. I've always been infrastructure person. And what excites me the most is seeing others take this innovation and, and really empowers developers to make amazing, or, you know, unique ideas, a reality. And that's really the foundation principles for Google Cloud. >> So how does that translate into, from a customer perspective? >> So I would just start with some customer examples, right? Starting from, their perspective. So when we think about open, this is actually part of the, our customers cloud strategy, right? You say cloud, you immediately think only about public cloud, but from our customer perspectives, right? They think about public clouds, right? Most of them have more than one cloud, but they also think about the private cloud, you know, IOT edge and having that openness and flexibility to choose where they can run their workload, is critical. It's critical for them. What I hear mostly is of course, innovation, managing costs, and also making sure that they are not locked out of innovation that happens for example, in any cloud or, or somewhere else. So that's a really a key consideration for our customers when they think about their cloud strategy. The second thing that open matters is that it's really hard to hire talent that is expert and has the right skills. And we see that by using a leveraging open source technologies, it actually makes it easier to our customers to hire the best talent there is in the industry. At one of the previous Google Cloud Next sessions, we had the Loblaw for example, which is the biggest grocery in Canada. And, you know, we were joking on stage, that even though at our hiring for grocery shop, they still can hire the best talent because they are using the best technologies out there in the industry. So that's one, if you think about the importance of easy, I would just call out Western Digital that we've just announced how they decided to standardize on Anthos for their cloud strategy, right? Both of course, Google cloud platform, but On Prem and the Edge. And for them what's important is that when they have all of their amazing developers and operators, how can they provide them reach experience, right. We don't want our developers or operators to spend time on things that can be automated or managed by others. So having a smooth, intuitive experience is really critical. And we we've been announcing some new stuff like a, a Google Cloud deploy and really integrating the entire experience, especially integration for managing, deploying directly to Google Kubernetes engine. And of course, one of my favorite is Jiechi autopilot, which really takes all the goodness with Kubernetes and automatically managing. And then transformative, this is like what I said before, unleashing innovation. And we see Wendy's, for example, right, they want to actually have AI machine learning at run time at their branches, which will allow them to create a new experience for their customers. So this is how we see customers really appreciate these three principles. >> So whenever the subject of Kubernetes and Google comes up, we have to talk Anthos. We're now into what year three of Anthos. How has adoption looked what's the latest on that front? >> That has been really great. We actually have been seeing a 500% growth on the end of Q2 of year over year. And it's important you know to mention that the journey with Anthos is not something new, but something that we have built with our customers when they really love the experience they have on GCP, but needed to innovate elsewhere and not just on Google Cloud. So we've been seeing that, you know, I mentioned the Western Digital, blah, blah, and Wendy's we also have customers like MLB, which is really exciting how they've changed their entire fans' experience using Anthos. And for them, again, it was both the easy part, right? How can I deal with that complexity of having compute and storage everywhere in every one of the stadiums, but also how can I use AI and machine learning, which is unique to Google Cloud in order to create unique experiences for the fans, at real time, of course. >> Yeah. Now you've, touched on this a bit already, if you had to, if you thought about someone reviewing Anthos, their Anthos experience, because we're in the midst of people adopting Anthos and becoming new to Anthos at this point. What does a delighted customers response sound like to you? What is that Yelp review that they would write? If they were telling people we, doubled down on Anthos and we are thrilled because, fill in the blank for a second. >> The first thing that comes to mind is that it works everywhere and the developer experience that comes with it, right? So we have, of course the platform and the infrastructure, but where Anthos really shine is that experience, on top of thinking about all developers and operators that can really work in every environment without paying too much attention to that. And just having that intuitive experience, right? If you go to the Google Cloud console, you see all your clusters, and now we're actually also going to add your VMs into that view, and you can use tools like Anthos config managers, and Anthos service mash to manage your security posture or the configuration in all of those environments. >> So we hear a lot about Multicloud. Multicloud is fantastic, but it sounds like, dealing with the complexity associated with Multicloud is something that Anthos definitely helps with. >> Yes, you know, Google is best with complexity at scale, we've been running containers and really large environments for many years. And some of those principles really, you know, have been fundamental to the way we've started with Kubernetes. So the idea of the declarative intent and automation is really critical in managing large environment and high complexity because in those environments, lots of things can change, but with the declarative approach, you don't have to anticipate everything that is going to change, but you need to know what is your desired state. And that's really one way that Anthos is leveraging the Kubernetes primitives and those ideas to manage different types of environments. In addition to that, it's actually really adding that layer that I talked about before, around the easy can I make sure that my tools, right, if it's, for example, a cloud hybrid build or cloud deploy or Anthos service manager, Anthos config manager, can I make sure that this UI, the CLI the API will be consistent in all of those environments? Can I view in one place, all of my clusters, all of my applications, and this is really where Anthos shines. >> So the cloud data foundation had a, had to get together at the same time as, Google Cloud Next. And there's been a lot of discussion around topics like security. I just like to get your thoughts on, you know, what what's at the forefront of your mind, working in engineering at Google, working in this world where people are deploying Anthos, working in a world where in a multi-cloud environment, you don't necessarily have control as vice president of engineering at Google over what's happening in these other clouds. So what are some of the things that are at the front of your mind is security one of them, what are your thoughts? >> Security is top of mine. Similar to all of our customers and definitely internally. And there are many things that we are very worried about or create some risks. You know, we've just started talking about the secure central supply chain, by building with open source, how can we make sure that everything is secure, right? Then we know what is the contribution that's from the software that we are delivering, how can we make sure that the security posture is portable, right? We talked about workloads portability. We talked about skills portability, and experience, but really I think the next phase for us as an industry is to think about security posture portability. Can I really apply the same policy everywhere and still make sure that I have the right controls in place, which will have to be different depending on the environment, and to make sure that that really is the case. So lots of work around that, and again, talking about the other things we talked about. We talked about open and flexibility, how can you make sure that it's easy? One of the areas that we are very excited about is really around binary authorization, for example. So when you use our tools like cloud build, cloud deploy, artifact, registry, you can get your container images automatically scanned for vulnerabilities and tools like onto service mesh, which allows you to actually manage your security posture, traffic management, who can access what without doing any changes to your applications. >> Fantastic stuff. As we, as we wrap up our time here, do you have any final thoughts on the direction of cloud where we are in the adoption curve? You know, by some estimates, something like 75% of IT is still happening on premises. There've been some announcements coming out of Cloud Next regarding the ability to run all sorts of Google goodness on premises. So we seem to all be acknowledging that we're going to be in a bit of a hybrid world, in addition to a multicloud world, moving forward. Do you want to place any bets on, on when we'll hit the 50, 50 mark or the 25% on premises, 75% cloud mark. What do you think? >> Yeah, I'm not the best gambler to be honest, but I do have a thought about that. I think what's interesting is that customers started to talk, you know, few years back, it was, hey, I have my on-prem environment and I have the cloud. How can they, these two work together. And now what we see our customers talking, you know, they're on premises, their edge is part of their cloud strategy. It's not separated. And I think this is what we'll see more and more of, right? Regardless if this is your private cloud or public cloud, your edge, we would like to have a cloud like experience in that environment and consistency. And of course, we would love to leverage all the goodness of the cloud. If it's like machine learning, AI, and other capabilities, automation, everywhere we go. So I think this is the biggest change we're starting to see. And in addition to that, I think we will see, today everybody are already multicloud cloud, right? If it's recquisitions and just by cause of bottom up culture, you know, people choose different services. And I expect we'll see more strategic thinking about our customers multicloud strategy. Where do I deploy my workloads? What are the benefits? If it's latency, if it's specific services that are available, maybe cost, we'll see the customers becoming more intentional about that and this is really exciting. >> Well Chen, amazing insights. It's obvious why you're a cube veteran. It's obviously why we seek you out for your counsel and guidance on a variety of subjects. Thank you so much for spending time with us today in this cube conversation. With that I'd like to thank you for joining us. Until next time, I'm Dave Nicholson, thanks for joining (peaceful music)
SUMMARY :
and I am delighted to Absolutely delighted to have you here. And that's really the foundation the private cloud, you know, the latest on that front? but something that we have What is that Yelp review and Anthos service mash to is something that Anthos everything that is going to that are at the front of One of the areas that we are regarding the ability to run all is that customers started to With that I'd like to
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Dave Nicholson | PERSON | 0.99+ |
Canada | LOCATION | 0.99+ |
Dave | PERSON | 0.99+ |
Western Digital | ORGANIZATION | 0.99+ |
Chen Goldberg | PERSON | 0.99+ |
75% | QUANTITY | 0.99+ |
50 | QUANTITY | 0.99+ |
ORGANIZATION | 0.99+ | |
500% | QUANTITY | 0.99+ |
25% | QUANTITY | 0.99+ |
Chen | PERSON | 0.99+ |
Both | QUANTITY | 0.99+ |
Yelp | ORGANIZATION | 0.99+ |
Anthos | TITLE | 0.99+ |
today | DATE | 0.98+ |
one | QUANTITY | 0.98+ |
two | QUANTITY | 0.98+ |
both | QUANTITY | 0.98+ |
first thing | QUANTITY | 0.97+ |
second thing | QUANTITY | 0.97+ |
Multicloud | TITLE | 0.97+ |
three principles | QUANTITY | 0.97+ |
Wendy | ORGANIZATION | 0.96+ |
Cloud Next | TITLE | 0.96+ |
this week | DATE | 0.96+ |
Wendy | PERSON | 0.95+ |
more than one cloud | QUANTITY | 0.95+ |
Kubernetes | PERSON | 0.94+ |
Google Cloud | TITLE | 0.93+ |
Google Cloud | TITLE | 0.92+ |
Kubernetes | TITLE | 0.91+ |
one place | QUANTITY | 0.9+ |
One | QUANTITY | 0.9+ |
Anthos | ORGANIZATION | 0.87+ |
Kubernetes | ORGANIZATION | 0.83+ |
one way | QUANTITY | 0.82+ |
five years ago | DATE | 0.79+ |
end of Q2 | DATE | 0.77+ |
year three | QUANTITY | 0.76+ |
Google Kubernetes | TITLE | 0.76+ |
few years | DATE | 0.73+ |
Jiechi | ORGANIZATION | 0.72+ |
Loblaw | PERSON | 0.71+ |
GCP | TITLE | 0.68+ |
MLB | ORGANIZATION | 0.58+ |
second | QUANTITY | 0.58+ |
over | DATE | 0.56+ |
Sachin Gupta, Google Cloud | CUBE Conversation 2021
(upbeat music) >> Welcome to this Cube Conversation. I'm Dave Nicholson, and this is continuing coverage of Google Cloud Next '21. I'm joined today by Sachin Gupta, General Manager and Vice President of Open Infrastructure at Google Cloud. Sachin, welcome to theCube. >> Thanks Dave, it's great to be here. >> So, you and I both know that the definition of what constitutes Cloud has been hotly contested by some over the last 20 years. But I think you and I both know that in some quarters there really has never been a debate. NIST, for example, the standard body that calls out what constitutes Cloud, has always considered Cloud an operational model, a set of capabilities, and it has never considered Cloud specifically tied to a location. With that in mind, how about if you share with us what was announced at Cloud Next '21 around Google Distributed Cloud? >> Yeah, thanks Dave. The power of Cloud in terms of automation, simplicity, observability, is undeniable, but our mission at Google Cloud is to ensure that we're meeting customers where they are, in their digital transformation journey. And so in talking to customers, we found that there are some reasons that could prevent them to move certain workloads to Cloud. And that could be because there's a low latency requirement. There is high amounts of data processing that needs to happen on-prem. So taking data from on-prem, moving into the Cloud to get it processed and all the way back may not be very efficient. There could be security, privacy, data residency, compliance requirements that they're dealing with. And then some industries, for some customers, there's some very strict data sovereignty requirements that don't allow them to move things into the public Cloud. And so when we talked to customers, we realized that we needed to extend the Cloud, and therefore we introduced Google Distributor Cloud at Next 2021. And what Google Distributed Cloud provides is all of that power of Cloud anywhere the customers need it. And this could be at a Google network edge, it could be at an operator or communication server provider edge as well. It could be at the customer edge, so right on-premise at their site, it could be in their data centers. And so a lot of flexibility in how you deploy three fully managed hardware and software solutions delivered through Google. >> Yeah it's interesting because often statistics are cited that somewhere near 75% of of what we do in IT, is still "on-premises." The reality is, however, that what's happening in those physical locations on the edge is looking a lot more Cloudy, isn't it. (laughs) >> Yes, and the customers are looking for that computational power, storage, automation, simplicity, in all of these locations. >> So what does this look like from an infrastructure stack perspective? Is there some secret sauce that you're layering into this that we should know about? >> Yeah, so let me just talk about it a little bit more. So we start off with third party hardware. So we're sourcing from Dell, HPE, Cisco, Nvidia, NetApp, bringing it together. We're using Anthos, you are hopefully familiar with Anthos, which is our hybrid multi-cloud software layer. And then on top of that, we use open source technologies. For example, built on Kubernetes. We offer a containerized environment, a VM environment, that enables both Google first-party services, as well as third-party services that customers may choose to deploy, on top of this infrastructure. And so the management of the entire infrastructure, top to bottom, is delivered to Google directly, and therefore customers can focus on applications, they can focus on business initiatives, and not worry about the infrastructure complexity. They can just leave that to us. >> So you mentioned both Kubernetes, thinking of containerization as Cloud native, you also said VMs. So this spans the divide between containerized microservices-based applications and say VM-ware style of virtual machines or other VMs? >> Yes, look, the majority of customers are looking to modernize and move to a containerized environment with Kubernetes, but there are some workloads that they may have that still require a VM-like environment, and having the simplicity and the efficiency of operating VMs like containers on top of Google Distributed Cloud, built on Anthos, is extremely powerful for them. And so it goes back to our mission. We're going to meet customers where they are, and if they need VM support as well, we're providing it. >> So let's talk about initial implementations of this. What kind of scale are you anticipating that customers will deploy? >> The scale is going to vary based on use case. So it could be a very small, let's think about it as a single server type of scale, all the way to many, many dozens of racks that could be going in to support Google Distributed Cloud. And so, for example, from a communication service provider point of view, looking to modernize their 5G network, in the core it could be many, many racks with Google Distributed Cloud the edge product. And for their RAM solutions, it could be a much smaller form factor, as an example. And so depending on use case, you're going to find all kinds of different form factors. And I didn't mention this before, but we also, in addition to scale, we offer two operational modes. One is the edge product. So Google Distributed Cloud edge that is connected to the Cloud. And so it gets operational updates, et cetera, directly through the Cloud. And the second one is something we call the hosted mode, and in hosted mode, it's completely air-gapped. So this infrastructure, what is modernized and provides rich 1PN third party services, does not connect to the Cloud at all. And therefore, the organizations that have the strictest data latency sovereignty requirements, can benefit from a completely air-gapped solution as well. >> So I'm curious, let's say you started with an air-gapped model. Often our capabilities in Cloud exceed our customer's comfort level for a period of time. Can that air-gapped, initial implementation be connected to the Cloud in the future? >> The air-gap implementation, typically customers, the same customer, may have multiple deployments, where one will require the air-gap solution, and another could be the hosted solution, and the other could be the edge product, which is connected. And in both cases, the underlying stack is consistent. So, while I don't hear customers saying, "I want to start from air-gap and move," we are providing Google Distributed Cloud as one portfolio to customers so that we can address these different use cases. In the air-gap solution, the software updates obviously still come from Google, and customers need to move that across the air gap check signatures, check for vulnerability, load it in the system, and the system will then automatically update itself. And so the software we still provide, but in that case, there's additional checks that that customer will typically go through before enabling that software onto their system. >> Yeah, so you mentioned at the outset, some of the drivers, latency security, et cetera, but can you restate that? I'd like to hear what the thinking behind this was at Google when customers were presenting you with a variety of problems they needed solutions for. I think it bears recapping that. >> Right, so let me give you a few examples here. So one is, when you think about 5G, when you think about what 4G did for the industry in terms of enabling the gig economy, with 5G we can really enable richer experiences. And this could be highly immersive experiences, it could be augmented reality, it could be all kinds of technologies that require lower latency. And for this, you need to build out the 5G infrastructure on top of a modernized solution like Google Distributed Cloud. Let me just get into a few use cases though, to just bring some color here. For example, for a retailer, instead of worrying about IP and infrastructure in the store, the people in the store can focus on their customers, and they can implement solutions using Google Distributed Cloud for things like inventory management, asset protection, et cetera, in the store. Inside a manufacturing facility, once again, you can reduce incidents, you can reduce injuries, you can look at your robotic solutions that require low latency feedback, et cetera. There's a whole bunch of emerging applications through ISVs, that a rich, on-prem or anywhere you want it in the edge infrastructure, can enable a new suite of possibilities that weren't possible before. In some cases, customers say, "You know what, I want 5G. But I actually you want a private 5G deployment." And that becomes possible with the Google Distributed Cloud as well. >> So we talked a little bit about scale. What's the smallest increment that someone could deploy? You just gave an example of retail. Some retail outfits are small stores, without any IT staff at all. There's the concept of a single-node Kubernetes cluster, which is something we love to come up with in our business terminology that makes no sense, single node cluster. The point is, these increments, especially in the containerized world, are getting smaller. What's the smallest increment that you can deliver, you're planning to deliver? >> I'll answer this two ways. First of all, we are planning to deliver a smallest increment, think of it as one server. We are planning to deliver that as well, all the way up to many, many racks. But in addition, there's something unique that I wanted to call out. Let's say you're in the medium or larger deployment in the racks, and you want to scale up, compute, and store it separately. That's something we enable as well, because we will work with customers in terms of what they need for their application, and then scale that hardware up and down based on their need. And so there's a lot of flexibility in that, but we will enable scale all the way down to a single server unit as well. >> So what is the feedback been from the partners that will be providing the hardware infrastructure, folks like Dell. What has their reaction been? >> I think that they're obviously very eager to work with us. We're happy to partner with them in order to provide customers flexibility, any kind of scale in any kind of location, different kind of hardware equipment that they need. But in addition to those partners on the hardware side, there are customers and partners as well who are enabling rich experiences and solutions for that retailer, for that manufacturer, for example. And so working with AT&T, we announced partnership on 5G and edge to enable experiences, especially in the areas of retail and manufacturing, like I talked about earlier, but then in Europe, we're partnering with OVHcloud, for example, in order to enable very strict data sovereignty requirements that are happening in that country. And so where there's many communication service providers, there's many partners trying to solve for different use cases for their end customers. >> Yeah, that makes a lot of sense. Let's pretend for a minute that you're getting Yelp reviews of this infrastructure that you're responsible for moving forward. What would a delighted customer's comments look like? >> I think a delighted customer's comments will be probably in two or three areas, all right? So first up will be, it's all about the applications and the end user experience that this can enable. And so the power of Google AI ML technology, third-party software as well, that can run consistently single operational model, build once, deploy anywhere, is extremely powerful. So I would say, the power of the applications and the simplicity that it enables is number one. I think number two is the scale of operations experience that Google has. They don't need to worry about, "do I have 5 sites or 500 sites or 5,000 sites?" It doesn't matter. The fleet operations, the scaled operations capability, the global network capability that Google has, all that experience in site reliability engineering, we can now bring to all of these vast amounts of edge locations, so they don't need to worry about scale at all. And then finally, they can be sort of rest assured that this is built on Anthos, it's built on Kubernetes, there's a lot of open source components here, they have flexibility, they have choice, they can run our one-piece services, they can run third-party services on this, and so we're going to preserve the flexibility in choice. I think these are the things that would likely get highlighted. >> So Sachin, you talk to customers around the world. Where do you see the mix between net-neu stuff going into infrastructure like this, versus modernized and migrated workloads into the solution? What does that mix look like? And I know it's a bit of speculation, but what are your thoughts? >> I think, Dave, that's a great question, I think it's a difficult one to answer because we find that those conversations happen together with the same customers. At least that's what I find. And so they are looking to modernize, create a much richer environment for their developers, so that they can innovate much more quickly, react to business needs much more quickly, to cater to their own end customers in a much better way, get business insights from the data that they have. They're looking to do all of this, but at the same time, they have, perhaps, legacy infrastructure or applications that they just can't easily migrate off of, that may still be in a VM environment, more traditional type of storage environment, and they need to be able to address both worlds. And so, yes, there are some who are so-called "born in the Cloud," everything is Cloud native, but the vast majority of customers that I talked to, are absolutely looking to modernize, like you don't find a customer that says, "Just help me lift and shift, I'm not looking to modernize." I don't quite see that. They are looking to modernize but they want to make sure that we have the options that they need to support different kinds of environment that they have today. >> And you mentioned insights. We should explore that a little further. Can you give us an example of artificial intelligence, machine learning being used now at the edge, where you're putting more compute power at the edge? Can you give us an idea of the kinds of things that that enables specifically? >> Yes, so when you think about video processing, for example, if I have a lot of video feeds and I'm looking based on that, I want to apply artificial intelligence, I'm trying to detect object inventory movement, people movement, et cetera. Again, adhering to all the privacy and local regulations. When I have that much data streaming in, if I have to take that out of my edge all the way across the WHEN network, into the Cloud for processing, and bring it all the way back and then make a decision, I'm just moving a lot of data up and down into the Cloud. And in this case, what you're able to do is say, no, you don't actually need to move it into the public Cloud. You can keep that data locally. You can have a Google Distributed Cloud edge instance there, you're going to run your AI application right there, achieve the insights and take an action very, very quickly. And so it saves you, from a latency point of view, significantly, and it saves you from a data transmission up and down into the Cloud significantly, which you sometimes, you know, you're not supposed to send that data up, that there's data residency requirements, and sometimes the cost of just moving it, it doesn't make sense. >> So do you have any final thoughts? What else should we know about this? Anything that we didn't touch on? >> I think we've touched on a lot of great things. I think I'm just going to reiterate, you started with a "what is the definition of Cloud itself" and our mission once again, is to really understand what customers are trying to do and meet them where they are. And we're finding that they're looking for Cloud solutions in a public region. We've announced a lot more regions. We continue to grow our footprint globally, but in addition, they want to be able to get that power of Google Cloud infrastructure and all the benefits that it provides in many different edge locations all the way on onto their premises. And I think one of the things we perhaps spent less time on is, we're also very unique that in our strategy, we're bringing in underlying third-party hardware, but it's a fully managed solution that can operate in that connected edge mode, as well as a disconnected hosted mode, which just enables pretty much all the use cases we've heard about from customers. So one portfolio that can address any kind of need that they have. >> Fantastic. Well, I said at the outset Sachin, before we got started, you and I could talk for hours on this subject. Sadly, we don't have hours. I'd like to thank you for joining us in theCube. I'd like to thank everyone for joining us for this Cube conversation, covering the events at Google Cloud NEXT 2021. I'm Dave Nicholson. Thanks for joining. (upbeat music)
SUMMARY :
Welcome to this Cube Conversation. that the definition of that could prevent them to move on the edge Yes, and the customers are looking for And so the management of So you mentioned both Kubernetes, And so it goes back to our mission. that customers will deploy? that could be going in to Can that air-gapped, And so the software we still some of the drivers, in terms of enabling the gig economy, that you can deliver, in the racks, been from the partners especially in the areas of that you're getting Yelp And so the power of customers around the world. And so they are looking to modernize, of the kinds of things that and bring it all the way back and all the benefits that it provides I'd like to thank you for
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Dave | PERSON | 0.99+ |
Dave Nicholson | PERSON | 0.99+ |
Nvidia | ORGANIZATION | 0.99+ |
Dell | ORGANIZATION | 0.99+ |
Sachin | PERSON | 0.99+ |
Cisco | ORGANIZATION | 0.99+ |
Europe | LOCATION | 0.99+ |
5 sites | QUANTITY | 0.99+ |
two | QUANTITY | 0.99+ |
500 sites | QUANTITY | 0.99+ |
Sachin Gupta | PERSON | 0.99+ |
5,000 sites | QUANTITY | 0.99+ |
ORGANIZATION | 0.99+ | |
NetApp | ORGANIZATION | 0.99+ |
One | QUANTITY | 0.99+ |
HPE | ORGANIZATION | 0.99+ |
AT&T | ORGANIZATION | 0.99+ |
two ways | QUANTITY | 0.99+ |
first | QUANTITY | 0.99+ |
one server | QUANTITY | 0.99+ |
both cases | QUANTITY | 0.99+ |
today | DATE | 0.99+ |
Yelp | ORGANIZATION | 0.99+ |
OVHcloud | ORGANIZATION | 0.99+ |
both | QUANTITY | 0.99+ |
First | QUANTITY | 0.98+ |
Anthos | TITLE | 0.98+ |
Cloud | TITLE | 0.97+ |
both worlds | QUANTITY | 0.97+ |
three areas | QUANTITY | 0.97+ |
second one | QUANTITY | 0.97+ |
one | QUANTITY | 0.97+ |
Google Cloud Next '21 | TITLE | 0.97+ |
dozens of racks | QUANTITY | 0.97+ |
single | QUANTITY | 0.92+ |
Kubernetes | TITLE | 0.9+ |
one-piece | QUANTITY | 0.9+ |
last 20 years | DATE | 0.89+ |
single server | QUANTITY | 0.89+ |
NIST | ORGANIZATION | 0.88+ |
near 75% | QUANTITY | 0.88+ |
three | QUANTITY | 0.87+ |
two operational modes | QUANTITY | 0.83+ |
Cloud | EVENT | 0.82+ |
Google Distributed Cloud | TITLE | 0.8+ |
one portfolio | QUANTITY | 0.73+ |
Google Distributed Cloud | ORGANIZATION | 0.71+ |
number two | QUANTITY | 0.68+ |
Peter Cho | KubeCon + CloudNativeCon NA 2021
(soft techno music) >> Good evening. Welcome back to the Kube. Live in Los Angeles. We are at KubeCon Cloud Native Con 2021. Lisa Martin with Dave Nicholson, rounding out our day. We're going to introduce you to a new company, a new company that's new to us. I should say, log DNA. Peter Choi joins us the VP of product. Peter, welcome to the program. >> Thanks for having me. >> (Lisa) Talk to us about log DNA. Who are you guys? What do you do? >> So, you know, log DNA is a log medicine platform. Traditionally, we've been focused on, you know, offering log analysis, log management capabilities to dev ops teams. So your classic kind of troubleshooting, debugging, getting into your systems. More recently, maybe in like the last year or so we've been focused on a lot of control functionality around log medicine. So what I mean by that is a lot of people typically think of kind of the analysis or the dashboards, but with the pandemic, we noticed that you see this kind of surge of data because all of the services are being used, but you also see a downward pressure on cost, right? Because all of a sudden you don't want to be spending two X on those digital experiences. So we've been focused really on kind of tamping down kind of controls on the volume of log data coming in and making sure that they have a higher kind of signal and noise ratio. And then, you know, I'll talk about it a little bit, but we've really been honing in on how can we take those capabilities and kind of form them more in a pipeline. So log management, dev ops, you know, focusing on log data, but moving forward really focused on that flow of data. >> (Dave) So, when you talk about the flow of data and logs that are being read, make this a little more real, bring it up, bring it up just to level in terms of data, from what? >> Yeah. >> What kind of logs? What things are generating logs? What's the relevant information that's being. Kept track of? >> Yeah, I mean, so from our perspective, we're actually agnostic to data source. So we have an assist log integration. We have kind of basic API's. We have, you know, agents for any sort of operating system. Funny enough people actually use those agents to install, log DNA on robots, right? And so we have a customer they're, you know, one of the largest E-commerce platforms on, in the, in the world and they have a warehouse robots division and they installed the agent on every single one of those robots. They're, you know, they're running like arm 64 processors and they will send the log data directly to us. Right? So to us, it's no different. A robot is no different from a server is no different from an application is no different from a router. We take in all that data. Traditionally though, to answer your question, I guess, in the simplest way, mostly applications, servers, firewalls, all the traditional stuff you'd expect kind of going into a log platform. >> So you mentioned a big name customer. I've got a guess as to who that is. I won't, I won't say, but talk to us about the observability pipeline. What is that? What are the benefits in it for customers? >> (Peter) Sure. So, like if we zoom out again, you know, you think about logs traditionally. I think a lot of folks say, okay, we'll ingest the logs. We'll analyze them. What we noticed is that there's a lot of value in the step before that. So I think in the earlier days it was really novel to say, Hey, we're going to get logs and we're going to put it into a system. We're going to analyze it. We're going to centralize. Right. And that had its merits. But I think over time it got a little chaotic. And so you saw a lot of the vendors over the last three years consolidating and doing more of a single pane of glass, all the pillars of observability and whatnot. But then the downside of that is you're seeing a lot of the teams that are using that then saying being constrained by single vendor for all the ways that you can access that data. So we decided that the control point being on the analysis side on, on the very far right side was constricting. So we said, okay, let's move the control point up into a pipeline where the logs are coming to a single point of ingress. And then what we'll do is we will offer views, but also allow you to stream into other systems. So we'll allow you to stream into like a SIM or a data warehouse or something, something like that. Right? So, and you know, we're still trying to like nail down the messaging. I'm sure our marketing person's going to roast me after this. But the simplest way to think of observability pipeline is it's the step before the analysis part, that kind of ingest processes and routes the data. >> (Dave) Yeah. This is the Kube, by the way, neither one of us is a weather reporter. (laughing) So, so the technical stuff is good with us. >> Yes. It is. What are, and talk to us about some of the key features and capabilities and maybe anything that's newly announced are going to be announced. >> Yeah. For sure. So what we recently announced early access on is our streaming capabilities. So it's something that we built in conjunction with IBM and with a couple of, you know, large major institutions that we were working with on the IBM cloud. And basically we realized as we were ingesting a log data, some of those consumers wanted to access subsets of that data and other systems such as Q radar or, you know, a security product. So we ended up taking, we filtered down a subset of that data and we stream it out into those systems. And so we're taking those capabilities and then bringing it into our direct product, you know, whatever you access via logging.com. That is what's essentially going to be the seed for the kind of observability pipeline moving forward. So when you start thinking about it, all of this stuff that I mentioned, where we say, we're focusing on control, like allowing you to exclude logs, allowing you to transform logs, you take those processing capabilities, you take the streaming capabilities, you put them together and all of a sudden that's the pipeline, right? So that's the biggest focus for us now. And then we also have supporting features such as, you know, control API's. We have index rate alerting so that you can get notified if you see aberrations in the amount of flow of data. We have things like variable retention. So when a certain subset of logs come in, if you want it store it for seven days or 30 days, you can go ahead and do that because we know that a large block of logs is going to have many different use cases and many different associated values, right? >> So let's pretend for a moment that a user, somebody who has spent their money on log DNA is putting together a Yelp review and they've given you five stars. >> Yup. >> What do they say about log DNA? Why did they give you that five star rating? >> Yeah. Absolutely. I think, you know, the most common one and it's funny it's Yelp because we actually religiously mine, our G2 crowd reviews. (all laughing) And so the thing that we hear most often is, it's ease of use, right? A lot of these tools. I mean, I'm sure, you know, you're talking to founders and product leaders every day with developers. Like the, the bar, the baseline is so low, you know, a lot of, a lot of organizations where like, we'll give them the, you know, their coders, they'll figure it out. We'll just give them docs and they'll figure it out. But we, we went a little bit extra in terms of like, how can we smooth that experience so that when you go to your computer and you type in QTPL, blah, blah, blah, two lines, and all of a sudden all your logs are shipping from your cluster to log DNA. So that's the constant theme for us in all of our views is, Hey, I showed up, I signed up and within 30 minutes I had everything going that I needed to get. >> (Lisa) So fast time to value. >> Yes. >> Which is critical these days. >> Absolutely. >> Talk to me. So here we are at, at KubeCon, the CNCF community is huge. I think I, the number I saw yesterday was 138,000 contributors. Lots of activity, because we're in person, which is great. We can have those hallway networking conversations that we haven't been able to have in a year and a half. What are some of the things that you guys have heard at the booth in terms of being able to engage with the community again? >> You know, the thing that we've heard most often is just like having a finger on the pulse. It's so hard to do that because you know, when we're all at our computers, we just go from zoom to zoom. And so it, it like, unless it punches you in the face, you're not aware of it. Right. But when you come here, you look around, you go, you can start to identify trends, you hear the conversations in the hallway, you see the sessions. It's just that, that sense of, it's almost like a Phantom limb that, that sense of community and being kind of connected. I think that's the thing that we've heard most often that people are excited. And, you know, I think a lot of us are just kind of treating this like a dry run. Like we're kind of easing our way back in. And so it, you know, it felt good to be back. >> Well, they've done a great job here, right? I mean, you have to show your proof of vaccination. They're doing temperature checks, or you can show your clear health pass. So they're making it. We were talking to the executive director of CNCF earlier today and you're making it, it's not rocket science. We have enough data to know that this can be done carefully and safely. >> (David) Don't forget the wristbands. >> That's right. And, and did you see the wristbands? >> (Peter) Oh yeah. >> Yeah, yeah that's great. >> Yep, it is great. >> I was, I was on the fence by the way. I was like, I was a green or yellow, depending on the person. >> (both) Yeah. >> Yeah. But giving, giving everybody the opportunity to socialize again and to have those, those conversations that you just can't have by zoom, because you have somebody you've seen someone and it jogs your memory and also the control of do I want to shake someone's hand or do I not. They've done a great job. And I think hopefully this is a good test in the water for others, other organizations to learn. This can be done safely because of the community. You can't replicate that on video. >> (Peter) Absolutely. And I'll tell you this one for us, this is our, this is our event. This is the event for us every single year. We, we it's the only event we care about at the end of the day. So. >> What are some of the things that you've seen in the last year, in terms of where, we were talking a lot about the, the adoption of Kubernetes, kind of, where is it in its maturation state, but we've seen so much acceleration and digital transformation in the last 18 months for every industry businesses rapidly pivoting multiple times to try to, to survive one and then figure out a new way to thrive in this, this new I'll call it the new. Now I'll borrow that from a friend at Citrix, the new now, not the new normal, the new now, what are some of the things that you've seen in the last year and a half from, from your customer base in terms of what have they been coming to you saying help? >> (Peter) You know, I think going back to the earlier point about time to value, that's the thing that a lot. So a lot of our customers are, you know, very big Kubernetes, you know, they're, they're big consumers of Kubernetes. I would say, you know, for me, when I do the, we do our, our QBRs with our top customers, I would say 80% of them are huge Kubernetes shops. Right. And the biggest bottleneck for them actually is onboarding new engineers because a lot of the, and you know, we have a customer, we have better mortgage. We have, IBM, we have Rappi is a customer of ours. They're like Latin American version of Instacart. They double their engineering base and you, you know, like 18 in 18 months. And so that's, you know, I think it was maybe from 1500 to 3000 developers or so, so their thing is like, we need to get people on board as soon as possible. We need to get them in these tools, getting access to, to, to their longs, to whatever they need. And so that's been the biggest thing that we've heard over and over again is A, how can we hire? And then B when we hire them, how do we onboard them as quickly as possible, so that they're ramped up and they're adding value. >> How do you help with that onboarding, making it faster, seamless so that they can get value faster? >> So for us, you know, we really lean in on our, our customer success teams. So they do, you know, they do trainings, they do best practices. Basically. We kind of think of ourselves given how much Kubernetes contradiction we have, we think of ourselves as cross pollinators. So a lot of the times we'll go into those decks and we'll try to learn just as much as we're trying to try to teach. And then we'll go and repeat that process through every single set of our customers. So a lot of the patterns that we'll see are, well, you know, what kinds of tools are you using for orchestration? What kind of tools are you using for deployment? How are you thinking about X, Y, and Z? And then, you know, even our own SRE teams will kind of get into the mix and, you know, provide tips and feedback. >> (Lisa) Customer centricity is key. We've heard that a lot today. We hear that from a lot of companies. It's one thing to hear it. It's another thing to see it. And it sounds like the Yelp review that you would have given, or, or what you're hearing through G2 crowd. I mean, that voice of the customer is valid. That's, that's the only validation. I think that really matters because analysts are paid. >> Yeah. >> But hearing that validation through the voice of the customer consistently lets you know, we're going in the right direction here. >> Absolutely. >> I think it's, it's interesting that ease of use comes up. You wonder if those are only anonymous reviews, you don't necessarily associate open source community with cutting edge, you know, we're the people on the pirate ship. >> (Peter) Yeah. And so when, when, when people start to finally admit, you know, some ease of use would be nice. I think that's an indication of maturity at a certain point. It's saying, okay, not everyone is going to come in and sit behind a keyboard and program things in machine language. Every time we want to do some simple tasks, let's automate, let's get some ease of use into this. >> And I'll tell you in the early days it drove me and our, our CEO talker. It drove us nuts that people would say easiest to be like, that's so shallow. It doesn't mean anything. Well, you know, all of that. However, but to your point, if we don't meet the use case, if we don't have the power behind it, the ease of use is abstracting away. It's like an iceberg, right. It's abstracting away a lot. So we can't even have the ease of use conversation unless we're able to meet the use case. So, so what we've been doing is digging into that more, be like, okay, ease of use, but what were you trying to do? What, what is it that we enabled? Because ease of use, if it's a very shallow set of use cases is not as valid as ease of use for petabytes of data for an organization like IBM. Right? >> That's a great, I'm glad that you dug into that because ease of use is one of those things that you'll see it in marketing materials, but to your point, you want to know what does this actually mean? What are we delivering? >> Right. >> And now, you know what you're delivering with Peter, thank you for sharing with us about logged in and what you guys are doing, how you're helping your community of customers and hearing the voice of the customer through G2 and others. Good work. >> Thank you. And by the way, I'll be remiss if I, if I don't say this, if you're interested in learning more about some of the stuff that we're working on, just go to logging in dot com. We've got, I think we've got a banner for the early access programs that I mentioned earlier. So, you know, at the end of the day, to your point about customer centricity, everything we prioritize is based on our customers, what they need, what they tell us about. And so, you know, whatever engagement that we get from the people at the show and prospects, like that's how we drive a roadmap. >> (Lisa) Yup. That's why we're all here. Log dna.com. Peter, thank you for joining Dave and me today. We appreciate it. >> Thanks for having me. >> Our pleasure for Dave Nicholson. I'm Lisa Martin signing off from Los Angeles today. The Kubes coverage of KubeCon clouding of con 21 continues tomorrow. We'll see then. (soft techno music)
SUMMARY :
you to a new company, What do you do? And then, you know, I'll What kind of logs? We have, you know, So you mentioned a big name customer. So, and you know, we're So, so the technical some of the key features and so that you can get notified they've given you five stars. experience so that when you go to that you guys have heard It's so hard to do that because you know, I mean, you have to show did you see the wristbands? depending on the person. that you just can't have I'll tell you this one for us, coming to you saying help? lot of the, and you know, So for us, you know, review that you would have customer consistently lets you know, cutting edge, you know, you know, some ease of use would be nice. Well, you know, all of that. And now, you know what And so, you know, Peter, thank you for The Kubes coverage of KubeCon
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Dave Nicholson | PERSON | 0.99+ |
Dave | PERSON | 0.99+ |
IBM | ORGANIZATION | 0.99+ |
Peter | PERSON | 0.99+ |
Lisa Martin | PERSON | 0.99+ |
Peter Choi | PERSON | 0.99+ |
seven days | QUANTITY | 0.99+ |
Dave Nicholson | PERSON | 0.99+ |
Citrix | ORGANIZATION | 0.99+ |
five star | QUANTITY | 0.99+ |
30 days | QUANTITY | 0.99+ |
five stars | QUANTITY | 0.99+ |
Los Angeles | LOCATION | 0.99+ |
David | PERSON | 0.99+ |
18 | QUANTITY | 0.99+ |
today | DATE | 0.99+ |
138,000 contributors | QUANTITY | 0.99+ |
Peter Cho | PERSON | 0.99+ |
CNCF | ORGANIZATION | 0.99+ |
80% | QUANTITY | 0.99+ |
yesterday | DATE | 0.99+ |
last year | DATE | 0.99+ |
Lisa | PERSON | 0.99+ |
KubeCon | EVENT | 0.99+ |
18 months | QUANTITY | 0.99+ |
tomorrow | DATE | 0.99+ |
last year | DATE | 0.99+ |
1500 | QUANTITY | 0.98+ |
both | QUANTITY | 0.98+ |
two lines | QUANTITY | 0.98+ |
CloudNativeCon | EVENT | 0.98+ |
two X | QUANTITY | 0.98+ |
Kubernetes | ORGANIZATION | 0.98+ |
a year and a half | QUANTITY | 0.97+ |
one | QUANTITY | 0.96+ |
Latin American | OTHER | 0.96+ |
Yelp | ORGANIZATION | 0.95+ |
pandemic | EVENT | 0.95+ |
3000 developers | QUANTITY | 0.95+ |
single vendor | QUANTITY | 0.94+ |
G2 | ORGANIZATION | 0.94+ |
last 18 months | DATE | 0.93+ |
Kube | ORGANIZATION | 0.92+ |
con 21 | EVENT | 0.91+ |
Kubernetes | TITLE | 0.91+ |
single point | QUANTITY | 0.91+ |
single pane | QUANTITY | 0.91+ |
last year and | DATE | 0.88+ |
single | QUANTITY | 0.87+ |
earlier today | DATE | 0.86+ |
last three years | DATE | 0.86+ |
30 minutes | QUANTITY | 0.86+ |
KubeCon Cloud Native Con 2021 | EVENT | 0.84+ |
logging.com | OTHER | 0.82+ |
one thing | QUANTITY | 0.77+ |
single set | QUANTITY | 0.72+ |
NA 2021 | EVENT | 0.7+ |
Log dna.com | OTHER | 0.69+ |
every single year | QUANTITY | 0.68+ |
Rappi | PERSON | 0.68+ |
double | QUANTITY | 0.66+ |
arm 64 | OTHER | 0.59+ |
half | DATE | 0.55+ |
QTPL | TITLE | 0.54+ |
SRE | ORGANIZATION | 0.53+ |
Instacart | TITLE | 0.51+ |
Kubes | PERSON | 0.37+ |
Sudheesh Nair, ThoughtSpot | CUBE Conversation
>>mhm >>Hello welcome to this cube conversation here in Palo alto California and john for with the cube we had a great conversation around the rise of the cloud and the massive opportunities and challenges around analytics data ai suggestion. Air ceo of thought spot is here with me for conversation. Great to see you. Welcome back to the cube. How are you? >>Well john it is so good to be back. I wish that we could do one of those massive set up that you have and do this face to face but zoom is not bad. >>You guys are doing very well. We have been covering you guys been covering the progress um great technology enabled business. You're on the wave of this cloud analytics you're seeing, we've seen massive changes and structural changes for the better. It's a tailwind for anyone in the cloud data business. And you also on the backdrop of all that the Covid and now the covid is looking at coming out of covid with growth strategies. People are building modern or modernizing their infrastructure and data is not just a department, it's everywhere. You guys are in the middle of this. Take us through what's the update on thought spot. What are you guys doing? What do you see the market right now? Honestly, delta variants coming coming strong but we think will be out of this soon. Where where are >>we look I think it all starts with the users like you said the consumers are demanding more and more from the business they are interacting with. You're no longer happy with being served like uh I'm gonna put you all in a bucket and then Delaware services to you. Everyone's like look look at me, I have likes and dislikes that is probably going to be different from someone that you think are similar to me. So unless you get to know me and deliver bespoke services to me, I'm gonna go somewhere else who does that And the call that the way you do that is through the data that I'm giving to you. So the worst thing you can do is to take my data and still treat me like an average and numbers and what's happening with the cloud is that it is now possible and it wasn't okay. So I grew up in India where newspapers will always have stock market summary on like one full page full of takers and prices and the way it used to work is that you wake up in the morning you look at the newspaper, I don't know if you have had the same thing and then you call your broker is based on in place of that. Can you imagine doing that now? I mean the information is at your fingertips. Hurricane IDa either is actually going to enter in Louisiana somewhere. What good is it? Yesterday morning state on this morning state if I'm trying to make a decision on whether I should pack my stuff and move away or you know finding to from home depot supply chain manager. I shouldn't figure out what should I be doing for Louisiana in the next two days, this is all about the information that's available to you. If you plan to use it and deliver better services for your consumer cloud makes it possible. >>You know, it's interesting you mentioned that the old way things were it seems so slow, then you got the 15 minute quotes, then there's now a real time. Everything has to be real time. And clearly there's two major things happening at the same time which makes exciting the business model and the competitive advantages for leaders and business to use data is critical but also on the developer side where apps are being developed if you don't have the data access, the machine learning won't work well. So as machine learning becomes really courted driving ai this modern analytics cloud product that you guys announced brings to bear kind of two major lifts the developer app modernization as well as competitive advantage for the companies that need to deploy this. So you guys have announced this modern approach analytics cloud, so to speak. What are some of the challenges that companies are having? Because you gotta, if you hit both of those you're gonna right a lot of value. What are some of the challenges for people who want to do this modern cloud? >>I think the challenge is basically all inside in the company. If you ask companies why are they failing to modernize? They will point to what's inside, it's not outside the technology is there the stack is the vendors are there, It is sometimes lack of courage at the leadership level which is a huge problem. I'll give an example. Uh, we have recently announced what we call thoughts part everywhere, which is our way of looking at how to modernize and bring the data inside that you're looking forward to where you are because Lord knows we all have enough apps on our Octa or a single sign on. The last thing you need is one more how no matter how good it is, they don't want to log into yet under their tool, whether it's thought spot or not. But the insights that you are talking about needs to be there when you need. And the difference is uh, the fundamental approach of data analytics was built on embedded model. You know what we are proposing is what we call data apps. So the difference between data apps and the typical dashboard being embedded into your analytics model is sort of like think of it. Uh newspapers telephones and the gap in between. So there is newspapers radio that is walkie talkie and telephone. They're all different and newspapers get printed and it comes to you and you read in the morning, you can talk back to it, you can drag and drop, you can change it right walkie talkies on the other hand, you know, you could have one conversation then come back to that. Whereas phone, you can have true direction conversation? They're all different if you think of embedding it is sort of like the newspaper, the information that you can't talk back. So somebody resembling something that came out monday, you're going to a board meeting on Wednesday and you look at that and make decisions. That is not enough in the new world, you just can't do that. It's not about what a lot of tools can actually answer what the real magic the real value for customers are unlocked when you ask three subsequent questions and answer them and they will come down to when you hear what you have to know. So what? Right and then what if and then the last is what next Imagine you can answer those three questions every business person every time no matter how powerful the dashboard is, they will always have the next question. What? So what? Okay the business customers are turning so what is it good, is it bad? Is it normal or the next question is like now what what do I do with it two, the ability to take all these three questions so what and what a fun. Now what? That requires true interactivity, you know, start with an intent and with an action and that is what we are actually proposing with the data apps which is only possible if you're sitting on top of a snowflake or red shift kind of really powerful and massive cloud data warehouse where the data comes and moves with agility. >>So how has this cloud data model rewritten the rules of business? Because what you're bringing up is essentially now full interactivity really getting in, getting questions that are iterating and building on context to each other. But with all this massive cloud data, people are really excited by this. How is it changing business than the rules of business? >>Yeah. So think about, I mean topical things like there is a hurricane able to enter, hit the cost of the United States. It's a moving target. No one knows exactly where it is going to be. There is only 15 models from here. 10, 10 models from Europe that's going to predict which way it's going to take every millimeter change in that map is going to have significant consequences for lives and resources and money. Right. This is true for every business. What cloud does this? Uh you have your proprietary data for example, let's say you're a bank and you have proprietary data, you're launching a new product And the propriety data was 2025 extremely valuable. But what what's not proprietary but what is available to you? Which could make that data so much more relevant if you layer them on top census data, this was a census here. The census data is updated. Do you not want that vaccination leader? We clearly know that purchasing power parity will vary based on vaccinations and county by county. But is that enough? You need to have street by street is county data enough. If you're going to open startup, Mr Starbucks? No, you probably want to know much more granular data. You wanna know traffic. Is the traffic picking up business usually an office space where people are not coming to office or is it more of a shopping mall where people are still showing all of these data is out there for you? What cloud is making it possible? Unlike the old era where you know, your data is an SFP oracle or carry later in your data center, it's available for you with a matter of clicks. What thought sport modern analytics. Cloud is a simple thing. We are the front end to bring all of this data and make sense of it. You can sit on top of any cloud data and then interact with a complete sort of freedom without compromising on security, compliance or relevance. And what happens is the analysts, the people who are responsible for bringing the data and then making sure that it is secure and delivered. They are no longer doing incremental in chart updates and dashboard updates. What they're doing is solving business problems, business people there freely interacting and making bigger decisions. That actually adds value to their consumers. This is what your customers are looking for, your users are looking for and if you're not doing it, your competitor will do that. So this is why cloud is not a choice for you. It's not an option for you. It is the only way and if you fail to take that back the other way is taking the world out of a cliff. >>Yeah, that's I love it. But I want to get this uh topic of thoughts about anywhere, but I want to just close out on this whole idea of modern cloud scale analytics. What technology under the hood do you guys see that customers should pay attention to with thought spot and in general because the scale there. So is it just machine learning? We hear data lakes, you know, you know different configurations of that. Machine learning is always thrown around like a buzzword. What new technology capability should every executive by your customer look for when it comes to really doing analytics, modern in the cloud >>analytics has to be near real time, Which means what two things speed at scale, make sure it's complex, it can deal with complexity in data structure. Data complexity is a huge problem. Now imagine doing that at scale and then delivering with performance. That means you have to rethink Look Tableau grew out of excellent worksheets that is the market leader, it is a $40 billion dollar market with the largest company having only a billion dollars in revenue. This is a massive place where the problems need to be solved differently. So the underlying technology to me are like I said, these three things, number one cannot handle the cloud scale, you will have hundreds of billions of rows of data that you brought. But when you talk about social media sentiment of customers, analysis of traffic and weather patterns, all of these publicly available valuable data. We're talking trillions of rows of data. So that is scale. Now imagine complexity. So financial sector for example, there is health care where you know some data is visible, some data is not visible, some some is public assumption not or you have to take credit data and let it on top of your marketing data. So it becomes more complex. And the last is when you answer ask a question, can you deliver with absolute confidence that you're giving the right answer With extremely high performance and to do that you have to rebuild the entire staff. You cannot take your, you know, stack that was built in 1990s and so now we can do search So search that is built for these three things with the machine learning and ai essentially helping at every step of the way so that you're not throwing all this inside directly to a human, throw it to a i engine and the ai engine curates what is relevant to you, showing it to you. And then based on your interaction with that inside, I improve my own logic so that the next interaction, the next situation is going to be significantly better. My point is you cannot take a triple a map and then try to act like this google maps. One is built presuming and zoom out and learn from you. The other one is built to give you rich information but doesn't talk back. So the staff has to be fundamentally rebuilt for the club. That's what he's doing. >>I love I love to buy direction. I love the interactivity. This topic of thought spot everywhere, which you mentioned at the beginning of this conversation, you mentioned data apps which by the way I love that concept. I want to do a drill down on that. Uh I saw data marketplace is coming somewhat working but I think it's going to get it better. I love that idea of an app um, and using as developers but you also mentioned embedded analytics. You made a comment about that. So I gotta ask you what's the difference between data apps and embedded analytics? >>Embedded analytics means that uh you know the dashboards that you love but the one that doesn't talk back to you is going to be available inside the app that you built for your other So if a supply chain app that was built by let's say accenture inside that you haven't had your dashboard without logging into tablet. Great. But what you do, what's the big deal? It is the same thing. My point is like I said every time a business user sees a chart. The questions are going to come up. The next 10 question is where the values on earth for example on Yelp imagine if you will piece about I'm hungry. I want to find a restaurant and it says go to this burrito place. It doesn't work like that. It's not good enough. The reason why yell towards is because I start with an intent. I'm hungry. Okay show me all restaurants. Okay I haven't had about it for a while. Let me see the photos. Let me read the reviews. Let me see if my friends have eaten, let me see some menu. Can I walk there? I do all of this but just what underneath it. There is a rich set of data that probably helped have their own secret source and reviews and then you have google map powering some of them. But I don't care all of that is coming together to deliver a seamless experience that satisfies my hunger. Which will be very different from if you use the same map at the same place you might go to an italian place. I go to bed right. That is the power of a data app in business people are still sitting with this. I am hungry. I gotta eat burrito. That's not how it should be in the new world. A business user should have the freedom to add exactly what the customers require looking for and solve that problem without delay. That means every application should be power and enriched with the data where you can interact and customized. That is not something that enterprise customers are actually used to and to do that you need like I said a I and search powering like the google map underneath it, but you need an app like a yelp like app, that's what we deliver. So for example, uh just last week we delivered a service now app on snowflake. You know, it just changes the game. You are thinking about customer cases. You're a large company, you have support coming from Philippines and India some places the quality is good. Some places bad dashboards are not good enough saying that okay, 17% of our customers are unhappy but we are good. That's not the world we live in. That is the tyranny of >>average, >>17% were unhappy. You got to solve for them. >>You mentioned snowflake and they had their earnings. David and I were commenting about how some of the analysts got it all wrong. And you bring up a really good point that kind of highlights the real trend. Not so much how many new customers they got. But there do what customers are doing more. Right? So, so what's happening is that you're starting to see with data apps, it does imply Softwares in there because it's it's application. So the software wrapping around data. This is interesting because people that are using the snowflakes of the world and thought spot your software and your platform, they're doing more with data. So it's not so much. I use snowflake, I use snowflake now I'm going to do more with it. That's the scale kicking. So this is an opportunity to look at that more equation. How do you talk >>with >>when you see that? Because that's the real thing is like, okay, that's I bought software as a service. But what's the more that's happening? What do you see >>that is such an important point? Even I haven't thought about it that john but you're absolutely right. That is sometimes people think of snowflake is taking care of it and no. Yeah, yes, Sarah later used to store once and zeros and they're moving it into club. That is not the point. Like I said, marketplace as an example when you are opening it up for for example, bringing the entire world's data with one click accessible to you securely. That is something you couldn't do on number two. You can have like 100 suppliers and all of a sudden you can now take a single copy of data and then make it available to all of them without actually creating multiple copies and control it differently. That's not something without cloudy, potentially could do. So things like that are fundamentally different. It is much more than like one plus one equals two. It is one plus one is 33. Like our view is that when you are re platform ng like that, you have to think from customer first. What does the customer do? The customer care that you meant from Entre into cloud or event from Teradata snowflake. No, they will care if their lives are better. Are they able to get better services are able to get it faster. That's what it is. So to me it is very simple. The destiny of an insight or data information is action, right? Imagine you're driving a car and if your car updates the gas tank every monday morning, imagine how you know, stressful your life will be for the whole week. I have to wait until next monday wanting to figure out what, whether I have enough gas or not, that's not the new world, that information is there, you need to have it real time and act on it. If you go through the Tesla you realize now that you know, I'm never worried about mileage because it is going to take me to the supercharger because it knows what I need to get to, it knows how long it is going to be, how bad the traffic is. It is synthesizing all of that to give me peace of mind. >>So this is a great >>conversation. That's a >>great question. It's a great conversation because it's really kind of brings in kind of what's happening, you see successful companies that are working with cloud scale and data like you're talking about, it's you get in there, you get the data, the data apps and all of a sudden you hit it, you hit the value equation and it's like almost like discovering oil all of a sudden you have a gusher and then people just see massive increase in value. It's not like the outcome, it's kind of there, you've got to kind of get in there and this is the scale piece and you see people having strategies to do that, they say okay we're gonna get in there, we're going to use the data to iterate but also watch the data learn where's that value, This is that more trend and and there's a successful of the developing. So I have to ask you when you, when you talk about people and culture, um that's not the way it used to be, used to be like okay I'm buying an outcome. I deployed some software mechanisms and at the end of the day there's some value there. Maybe I write it off maybe I, you know, overtime charges and some accounting thing. All changed the culture and the people in charge now are transforming the management techniques. What do you see as a successful mindset for a customer as they managed through these new paradigms and new new success formulas. >>I see a fork in leadership when it comes to courage. There are people with the spine and there are people without the spine and the ones with the spine are absolutely killing it. They are unafraid. They are not saying, look, I'm just going to stick with the incumbents that I've known for the last 20 years. Look, I used to drive a Toyota forever because I love the Toyota. And then you know after Nutanix IPO went to Lexus still Toyota because it's reliable. I don't, I'm not a huge card person. It works. But guess what? I knew they were missing Patrick and I care about the environment. I don't want to keep pushing hydrocarbons out there. It's not politics. I just don't like burning stuff into the earth atmosphere. So when Tesla came out, it's not like I love the quality I don't personally like alone mask, you know after that Thailand fiasco of cave rescue and all of that. But I can clearly see that Toyota is not going to catch up to Tesla in the next 10 years. And guess what? My loyalty is much more to doing the right thing for my family and to the world. And I switched this is what business leaders need to know. They can't simply say, well, tabloid as search to. They're not as good as thought sports. We'll just stick with them because they have done with us. That's what weak leaders do and customers suffer for that. What I see like the last two weeks ago when I was in new york. I met with them. A business leader for one of the largest banks in the world with 25,000 people reporting to him. The person walks into the room wearing shorts and t shirts uh, and was so full of energy and so full of excitement. I thought I'm going to learn from him and he was asking questions about how we do our business in bed and learning from me. I was humbled, I was flawed and I realized that's what a modern business leader looks like. Even if it is one of the largest and oldest banks in the world, that's the kind of people are making big difference and it doesn't matter how all the companies, how old their data is they have mainframes or not. I hear this excuses all the type of er, mainframes, we can't move, we have COBOL going on. And guess what? You keep talking about that and hear leaders like him are going to transform those companies And next thing you know, there are some of the most modern companies in the world. >>Well certainly they, we know that they don't have any innovation strategy or any kind of R and D or anything going on that could be caught flat footed in the companies that didn't have that going on, didn't have the spine or the, the, the vision to, to at least try the cloud before Covid when Covid hit, those companies are really either going out of business or they're hurting the people who were in the cloud really move their teams into the cloud quicker to take advantage of uh, the environment that they had to. So this became a skill issue. So, so this is a big deal. This is a big deal. And having the right skills are people skilled, it will be a, I both be running everything for them. What is your take on that? >>This is an important question. You can't just say you got to do more things or new things and not take care of all things. You know, there's only 89, 10 hours so you can work in their uh, analysts in the Atlantic species constantly if your analysts are sitting there and making incremental dashboards and reports change every day and then backlog is growing for 56 days and the users are unhappy because you're not getting answers and then you ask them to go to new things. It's just not going to be enough and you can hire your way out of it. You have to make sure that if you say that I have 20 100 x product already, I don't want 21st guess what? Sometimes to be five products, you need to probably go to 21 you got to do new things to actually take away the gunk off the old and in that context, the re skilling starts with unburdening, unburdening of menial task, unburned routine task. There is nothing more frustrating than making reports and dashboards that people don't even use And 90% of the time analysts, they're amazing experiences completely wasted when they're making incremental change to tabloid reports. I kind of believe thought spot and self service on top of cloud data takes away all of that without compromising security and then you invest the experienced people. Business experience is so critical. So don't just go and hire university students and say, okay, they'll go come and quote everything the experience that they have in knowing what the business is about and what it matters to their users, that domain experience and then uplevel them res kill them and then bring fresh energy to challenge that and then make sure there is a culture that allows that to happen. These three things. That's why I said leadership is not just about hiring event of firing another, it's about cultivating a culture and living that value by saying, look if I am wrong, call me, call me out in public because I want to show you how I deal with conflict. So this is I love this thing because when I see these large companies where they're making these massive changes so fast, it inspires you to say you know what if they can do it, anyone can do it. But then I also see if the top leadership is not aligned to that. They are just trying to retire without the stock tanking too much and let me just get through two more years. The entire company suffers. >>So that's great to chat with you got great energy, love your business, love the energy, love the focus. Um it's a new wave you're on. It's a big wave um and it's it's relevant, it's cool and relevant and it's the modern way and people have to have a spine to be successful if not for the faint of heart, but the rewards are there if you get this right. This is what I I love about this new environment. Um so I gotta ask you just to kind of close it out. How would you plug the company for the folks watching that might want to engage with you guys. What's the elevator pitch? What's the positioning? How would you describe thought spot in a bumper sticker or in a positioning statement. Take a minute to talk about that. >>Remember martin Anderson said that software is eating the world, I think it is now time to update that data is eating everything including software. If you don't have a way to turn data into bespoke action for your customers. Guess what? Your customers are gonna go somewhere where they that's happening right? You may not be in the data business but the data company is going to take your business. Thought spot is very simple. We want to be the friend tent for all cloud data when it comes to structured because that's where business value numbers is world satisfaction and dissatisfaction for reduces allying it is important to move data to action and thought Spot is the pioneer in doing that through search and I >>I really think you guys want something very powerful. Looking forward to chatting with you at the upcoming eight of a startup showcase. I think data is a developer mindset. It's an app, it's part of everything. It will. Everyone's a data company, everyone is a media company. Data is everything you guys are on something really big and people got a program it with it, make experiences whether it's simple scripts, point and click. That is a new kind of developer out there. You guys are tapping into it. Great stuff. Thank >>you for coming on. Thank you john it's good to talk to you. >>Okay. It's a cube conversation here in Palo alto California were remote. We're virtual. That's the cube virtual. I'm sean for your host. Thanks for watching. Mhm. Mhm
SUMMARY :
around the rise of the cloud and the massive opportunities and challenges around analytics data you have and do this face to face but zoom is not bad. that the Covid and now the covid is looking at coming out of covid with growth strategies. So the worst thing you can do is to take my data and still treat me like an average and numbers but also on the developer side where apps are being developed if you don't have the data access, sort of like the newspaper, the information that you can't talk back. How is it changing business than the rules of business? It is the only way and if you fail to take that you guys see that customers should pay attention to with thought spot and in general because the I improve my own logic so that the next interaction, the next situation is going to be significantly better. which you mentioned at the beginning of this conversation, you mentioned data apps which by the but the one that doesn't talk back to you is going to be available inside the app that you built for You got to solve for them. And you bring up a really good point that kind of highlights the real trend. What do you see and all of a sudden you can now take a single copy of data and then make it available to all of them That's a So I have to ask you when you, when you talk about people and culture, um that's not the way it used to be, leaders like him are going to transform those companies And next thing you know, in the cloud really move their teams into the cloud quicker to take advantage It's just not going to be enough and you can hire your way out of it. So that's great to chat with you got great energy, love your business, love the energy, You may not be in the data business but the data company is going to take your business. Looking forward to chatting with you at the upcoming eight of a startup showcase. Thank you john it's good to talk to you. That's the cube virtual.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
David | PERSON | 0.99+ |
Toyota | ORGANIZATION | 0.99+ |
Louisiana | LOCATION | 0.99+ |
Philippines | LOCATION | 0.99+ |
India | LOCATION | 0.99+ |
Lexus | ORGANIZATION | 0.99+ |
Wednesday | DATE | 0.99+ |
Tesla | ORGANIZATION | 0.99+ |
Sarah | PERSON | 0.99+ |
15 minute | QUANTITY | 0.99+ |
10 | QUANTITY | 0.99+ |
1990s | DATE | 0.99+ |
Patrick | PERSON | 0.99+ |
Europe | LOCATION | 0.99+ |
90% | QUANTITY | 0.99+ |
three questions | QUANTITY | 0.99+ |
2025 | DATE | 0.99+ |
five products | QUANTITY | 0.99+ |
25,000 people | QUANTITY | 0.99+ |
martin Anderson | PERSON | 0.99+ |
56 days | QUANTITY | 0.99+ |
new york | LOCATION | 0.99+ |
two | QUANTITY | 0.99+ |
United States | LOCATION | 0.99+ |
Sudheesh Nair | PERSON | 0.99+ |
Yesterday morning | DATE | 0.99+ |
17% | QUANTITY | 0.99+ |
monday | DATE | 0.99+ |
one | QUANTITY | 0.99+ |
last week | DATE | 0.99+ |
Nutanix | ORGANIZATION | 0.99+ |
100 suppliers | QUANTITY | 0.99+ |
33 | QUANTITY | 0.99+ |
two more years | QUANTITY | 0.99+ |
one click | QUANTITY | 0.99+ |
21st | QUANTITY | 0.99+ |
john | PERSON | 0.99+ |
google map | TITLE | 0.99+ |
next monday | DATE | 0.98+ |
both | QUANTITY | 0.98+ |
Yelp | ORGANIZATION | 0.98+ |
three things | QUANTITY | 0.98+ |
last two weeks ago | DATE | 0.97+ |
Covid | PERSON | 0.97+ |
15 models | QUANTITY | 0.97+ |
zeros | QUANTITY | 0.97+ |
Teradata | ORGANIZATION | 0.97+ |
this morning | DATE | 0.97+ |
Palo alto California | LOCATION | 0.97+ |
delta variants | OTHER | 0.96+ |
Delaware | LOCATION | 0.95+ |
three subsequent questions | QUANTITY | 0.95+ |
first | QUANTITY | 0.94+ |
10 question | QUANTITY | 0.94+ |
single copy | QUANTITY | 0.94+ |
one conversation | QUANTITY | 0.94+ |
earth | LOCATION | 0.93+ |
21 | QUANTITY | 0.93+ |
two things | QUANTITY | 0.92+ |
10 models | QUANTITY | 0.92+ |
COBOL | ORGANIZATION | 0.92+ |
google maps | TITLE | 0.91+ |
once | QUANTITY | 0.9+ |
next 10 years | DATE | 0.9+ |
Thailand | LOCATION | 0.9+ |
Atlantic | LOCATION | 0.89+ |
two major things | QUANTITY | 0.89+ |
ThoughtSpot | ORGANIZATION | 0.87+ |
$40 billion dollar | QUANTITY | 0.85+ |
hundreds of billions of rows of data | QUANTITY | 0.85+ |
Hurricane IDa | EVENT | 0.83+ |
20 100 x | QUANTITY | 0.82+ |
trillions of rows of | QUANTITY | 0.81+ |
One | QUANTITY | 0.8+ |
Welcome to Data Citizens'21
>>Welcome to data, citizens, to anyone I'm thrilled that so many of you joining us this year for what I think will be our best conference yet. This is always my favorite moment of the year. And what makes it especially meaningful for me at this time is that we've all faced so much uncertainty over the last year. Being able to bring together or community of data, citizens, data professionals, customers, and partners gives me so much energy. We all share the same passion to use data, to create positive change in our work. And in our lives 2021 has been called a year of transitions and rightfully so the pandemic has changed our lives, our businesses and our society. It has changed or world. There's been a number of notable shifts over the last 18 months. And I like to bring up three shifts that I personally connect to. >>And these will likely resonate with many of you too. First as a shift though, it's remote work at the start of the pandemic, tens of millions of people across many industries, transition to working from home. This transition happened and presented really fast. And in many cases have happened overnight. For me not being able to meet our customers and our federal court. He begins in Berson, especially during such turbulent times. I've always actually welcomed over 200 new colleagues. New Colombians was especially hard. The second is of course, a shift towards online retail in the U S e-commerce was forecasted to reach 24% of total retail sales by 2024, but by July, 2020. So four years earlier, it had already reached 33% that has translated into an enormous boost for delivery companies. And finally, the supply chain reinvention, the pandemic reveal the complexity and vulnerabilities in the supply chains of many different companies from raw materials to freight disruptions, to labor shortages. >>The damage from the pandemic was felt everywhere. For example, my wife and I have been waiting for us for over six months for a four year old daughter's first bike. Now, many companies are oriented towards data and analytics to reduce costs and better understand, manage and optimize their entire value chain. Now, the one thing that all of these shifts have in common is that they accelerated the massive growth of digitization. This transition to digital isn't new, but how much it has accelerated. Hasn't been easy for organizations in many cases as has happened under enormous pressure. And that digitization has resulted in two related trends. First, an explosion of digital channels, which has created unprecedented amounts of new data, this more volume and more variety of data than ever before. It's been distributed broadly across organizations. Again, this is not a nutrient, but one that has also accelerated imagine just the amount of data that is now on tick-tock. >>It's also a great example of the responsibilities and risks that come with all of that data. This brings me to the second trend and risk that we had started seeing even before the pandemic, the creation of ever more data silos, these silos result in disjointed and often ineffective data teams. And what is more concerning is that it's often a lack of confidence in the outcome. This leads to an overall lack of trust in the information we need to solve this every day, maybe every hour, every minute we rely on data to make both transactional and transformative business decisions. Every organization today depends on mission, critical insights and data critical processes. What happens if suddenly there's a data problem, this could impact our resourcing or customers or back-office or entire ecosystem, the integrity and the reliability of data has real immediate, uh, long-term implications for our businesses and our reputations. >>And this will determine the trajectory of our success. We all feel the weight of data, the immense opportunities and potential implications associated with it. And this is a lot of pressure to bear, but I believe that we have the ability to take control of our data to become more effective and how we work to be more productive and to ultimately generate faster and better outcomes. I believe this is a pivotal moment as organizations transition from reacting to the pandemic, to building a healthy new, normal, we have an extraordinary opportunity to make good use of our data and by doing so, I believe we can achieve extraordinary things by making trusted data more accessible and more usable. We can do even more. We can get more out of our work. Uh, we can put more work into it. We can help our organizations serve more customers and enrich more communities with trusted data. We have the power to change things for good and with it, there's no limit to what people, businesses or society can achieve. When we are United by data, >>The world doesn't just run on information. It runs on people living their passion, dreaming big ideas, but without information without the data, those ideas won't become innovations. That's why at Colibra we're changing how organizations use data. So our customers can change the world. We make data easier to access by making it usable, manageable, and practical. We make it make sense. So people have a common language to share and shape their ideas. And no matter how far and wide that data is scattered, we make sure it's all within reach, connecting the disconnected, joining the disjointed so people can collaborate and trust that their data won't slow them down so they can prove that data has the power to change things for good, doing more enriching, more, helping more together with Collibra. You can be United by data >>United by data. All of us here are United by our passion for data. We are all data citizens, and there's so much power in this community. Uniting is also what the Colibra data intelligence cloud or product does it unites your entire organization to deliver accurate, trusted data for every use for every user and across every source managed, trusted, and accessible. These are the crucial elements that will give your teams the ability to easily collaborate and make every data workflow more productive. There's also some of the experience and the impacts of our customers take Freddie Mac. For example, it's driving their data ecosystem transformation with 5.5 billion data points and over true trillion dollars in assets. Under management, Freddie Mac leveraged Columbia to support the digital transformation and management of its data ecosystem. They eliminate duplicate data, spending improve data lake productivity and drive enhance data quality while delivering increased value for their customers. >>It's also at the heart of what Yelp is doing to connect its engineers, to trusted data unleashed product innovation and instill a data-driven culture. And why companies like audio and BT are promoting the importance of data, culture, and making data easily accessible to the data citizens throughout their organization. Over the next couple of days, the knowledge shared by our partners, our customers, guest speakers. And could you begins, will inspire and energize you to keep moving forward as change agents United by data. Again, I'm so glad to kick off data citizens and thank you for being here with us.
SUMMARY :
We all share the same passion to use data, to create positive change in the supply chains of many different companies from raw materials to freight disruptions, imagine just the amount of data that is now on tick-tock. It's also a great example of the responsibilities and risks that come with all of that data. We have the power to change things for good and with it, We make data easier to access by making it These are the crucial elements that will give your teams the ability It's also at the heart of what Yelp is doing to connect its engineers, to trusted data unleashed
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
33% | QUANTITY | 0.99+ |
24% | QUANTITY | 0.99+ |
July, 2020 | DATE | 0.99+ |
Yelp | ORGANIZATION | 0.99+ |
United | ORGANIZATION | 0.99+ |
first bike | QUANTITY | 0.99+ |
2021 | DATE | 0.99+ |
First | QUANTITY | 0.99+ |
2024 | DATE | 0.99+ |
last year | DATE | 0.99+ |
Colibra | ORGANIZATION | 0.99+ |
Berson | LOCATION | 0.99+ |
second | QUANTITY | 0.99+ |
over six months | QUANTITY | 0.99+ |
Freddie Mac | ORGANIZATION | 0.99+ |
pandemic | EVENT | 0.99+ |
5.5 billion data points | QUANTITY | 0.98+ |
four year old | QUANTITY | 0.98+ |
this year | DATE | 0.98+ |
BT | ORGANIZATION | 0.98+ |
both | QUANTITY | 0.98+ |
over 200 new colleagues | QUANTITY | 0.98+ |
four years earlier | DATE | 0.97+ |
second trend | QUANTITY | 0.97+ |
today | DATE | 0.97+ |
U S | LOCATION | 0.96+ |
tens of millions of people | QUANTITY | 0.96+ |
Collibra | ORGANIZATION | 0.95+ |
one thing | QUANTITY | 0.94+ |
last 18 months | DATE | 0.94+ |
trillion dollars | QUANTITY | 0.94+ |
Columbia | ORGANIZATION | 0.93+ |
two related | QUANTITY | 0.85+ |
three shifts | QUANTITY | 0.66+ |
days | DATE | 0.59+ |
United | LOCATION | 0.59+ |
a year | QUANTITY | 0.58+ |
one | QUANTITY | 0.57+ |
Colombians | PERSON | 0.52+ |
hour | QUANTITY | 0.5+ |
Data | ORGANIZATION | 0.45+ |
couple | DATE | 0.36+ |
Ajay Khanna, Explorium | CUBE Conversation. May 2021
(introductory upbeat music) >> Hello and welcome to this Cube conversation. I'm Natalie Ehrlich your host for theCube. Today we're going to speak with an AI enhancing data startup that recently raised $75 million in C-series funding. Now we're joined by the chief marketing officer of Exosporium Ajay Khanna. [Natalie] Thank you so much for being with us today. >> Thank you so much, Natalie. Thanks for inviting me in. >> So tell us what is Exosporium. >> Sure. So Exosporium, we provide external data platform and this platform helps you discover thousands of relevant data signals external data signals that you can then use in your analytics or in your machine learning models and all. So what we are offering here is this a unique end to end platform where you can have access to thousands and thousands of data signals. And then you can take those signals and match it with your internal data. You can enrich your internal data, do the transformations and then build pipelines that business analysts can use and take it to their, their tool of their choice. Or what data scientists can do is take that enriched data and improve their ML algorithms. So that is the end-to-end platform that we provide. >> That's really fascinating. So you're constantly improving on the data and providing better analytics. Can you tell us how specifically are you helping your customers? >> Ajay: Absolutely. So as we kind of jump into the customer use cases let's first discuss this challenge with the external data, right? So when we refer to external data with the increase in AI and ML adoption there has been increase in interest in external data like getting the company data from external sources whether it is formal graphics, technographic data, you want socio-economic data, you may want like foot traffic data. You may want to include like data about website visits and, and the tons of data out there website interaction that are not within your organization but you want to get that data to get better understanding of your customers. But the challenge is that getting external data is really hard. So, and what I mean by that is that it is hard to access. First of all you don't even know how many data sources out there. It could be thousands of data sources. If you just go to data.gov there are like 250,000 data sources out there. So that is the first problem to tackle is where do I get the data from? And how do I get? And even before that what is the data that is going to impact my business? So having that issue of like data access is, is big problem. Second thing is that once you know which data you want to get it is very hard to use within your systems, or it is hard to kind of like you're going to just directly use the data into your analytics or into machine learning. You have to clean it up. You have to evaluate the quality of the data. You have to do the proper alignment and matching and integration and so on and so forth. And by various estimates like data scientists and analysts spend 80% of their time doing just that job. And the third is around the, compliance issues. We want to make sure that data is compliant with the GDPR or CCPA kind of regulations. So what we are helping our customers do is have an easy access to all these relevant data sources and where the system can recommend that, okay this is the relevant data which is going to make an impact to your business. This is the relevant data, which is going to make your ML and analytics better, and then match that data with your internal data sources automatically so that you can focus on the business value that you want to generate and take that data... Once you understand the impact of the data take it to your actual business use cases of the models that you have created. So our customers are in like various kind of industries, right? They are in CPG, they are in retail. Our customers are coming from various FinTech organizations like payments and lending and insurance. And they are using us for like various use cases. Like whether it is lead gen or whether it is a lead enrichment fraud and risk kind of use cases understanding the loan risk loan application risks and the by having access to these additional data sources that helps them make better decisions about their customers, about their business. >> Natalie: Fascinating. Well tell us, how do you see this market evolving? >> Market is, is, is really dynamic. And we have seen this whole market changing the whole data market, kind of like changing in, last year and a half with the pandemic coming in, right? So the models that we were working on for credit risk for evaluating loan applications were not working anymore. The data that we had was not really usable to make those decisions. So many of our customers, they had to depend on external data to make those credit decisions, right? I mean, if I have to approve an application for a small or a medium business restaurant and the restaurant is closed for last to five months how do I do that? So they were looking for additional data sources like foot traffic data about the Yelp reviews or about the ratings around how they're signed up for various delivery services and use those alternative sources to make those decisions. I think with these kind of like, as the situation come in, companies will become much more agile to react to these kinds of either data losses or changes in the data that they need. And some of the things that we also see right now is where Google is stopping the third party cookies with Chrome, right? Or Apple saying that with iOS 14, there are new transparency requirements that you have to, you have to abide by. So if those signals are gone, then how do companies better understand their customers? How do the companies will redesign their information, that they are delivering to their customers or the products that they are presenting to their customers. So having that agility will be determining the competitive advantage for these companies. And once these data signal losses happen, you cannot start evaluating the alternate data at that point in time because it takes like six, seven months to going to find the data sources and negotiate for those data sources bring them on board and then integrate them to kind of start using them. Then it is already too late. So what we are seeing is that companies will be much more agile and looking for a lot of external data sources to bring them in seamlessly and be able to make their business decision by incorporating those data sources as well. So, so that's how we are seeing that the use of external data is going to, going to increase with the time. >> Fascinating. And also that you mentioned the pandemic and the company added new data signals to help organizations understand risk. >> Ajay: Absolutely. Can you explain how that actually works to our audience? >> Ajay: Sure. So let's take a couple of scenarios, right? So for example, there is a lending organization and then they are looking for approving a loan application for a small medium business. And they had like three years back revenues or three years previous employee data or their tax returns and everything. But that is irrelevant right now because the business is not running. So how can they use alternate data signals to make that loan decisions or credit decisions? So they will be relying on some of like foot traffic data. They may rely on ratings and reviews. They may rely on, on other delivery services subscription that they have subscribed to and helping their customers, and then use those additional signals to make those credit decisions. This is like one situation. Another situation that we came across was in, CPG where food and beverages, sellers, whether those are like convenience stores or whether those are like small restaurants they're going in and out of business. And now when they're coming back in or the new restaurants or convenience stores are emerging, how do this food and beverage provider find those new customers? What are the additional signals they can use to go to that customer right away and say that, okay we are there with you. We are here to kind of like support your business. What are the additional things that you need to kind of like bring everything back to business? What are the additional shelf spaces available to place your product out there? Because now you don't have data, there's a data lag now. So you need to kind of like provide that additional data to your field operations so that they can find the right businesses. They can find they can prioritize them and they can see that, okay these are the businesses which are going to kind of like come back and we need to proactively go and market to them. So that once we are out of this COVID which hopefully we are now and how to support the small businesses that come come right back on track. >> Very, very interesting. And recently your company Exosporium closed $75 million in seed series funding and not even a year before another $31 million. So what do you attribute to that success? >> I think it is, it is the whole idea of a increase in adoption of AI and ML that we are seeing in the last few years. And as this adoption increases there is an increase in appetite for external data. So companies do realize that just having ML algorithms is not enough. That is not a competitive advantage. Everybody has the same algorithms. The advantage is the data that you have, advantages the domain expertise that you have, and then having the wide variety of data that is really important. So what we are seeing is that there is an increase in trust and getting access to these external data sources as a competitive advantage and then having that access easily and being able to easily use that external data into your analytics, into your ML models. That's where the, the real kind of advantages where you can actually bring your big ideas to life and execute on those ideas, but are coming from your business analysts and from your data scientists. So I think that increased interest is what we are seeing here. >> Well, that's a fascinating point on how data is really the central point of analytics. Really appreciate your fantastic insights on this program for this conversation on theCUBE. I'm Natalie Ehrlich your host. And that was Ajay Khanna the chief marketing officer of Exosporium. Thanks so much for joining us today. (concluding upbeat music)
SUMMARY :
data startup that recently Thank you so much, Natalie. So that is the end-to-end on the data and providing So that is the first Well tell us, how do you So the models that we were and the company added new data signals to Can you explain how that that additional data to So what do you attribute to that success? and ML that we are seeing And that was Ajay Khanna
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Natalie Ehrlich | PERSON | 0.99+ |
Natalie | PERSON | 0.99+ |
Ajay Khanna | PERSON | 0.99+ |
May 2021 | DATE | 0.99+ |
80% | QUANTITY | 0.99+ |
thousands | QUANTITY | 0.99+ |
Exosporium | ORGANIZATION | 0.99+ |
$75 million | QUANTITY | 0.99+ |
iOS 14 | TITLE | 0.99+ |
six | QUANTITY | 0.99+ |
$31 million | QUANTITY | 0.99+ |
ORGANIZATION | 0.99+ | |
Apple | ORGANIZATION | 0.99+ |
third | QUANTITY | 0.99+ |
first problem | QUANTITY | 0.99+ |
one situation | QUANTITY | 0.99+ |
Yelp | ORGANIZATION | 0.98+ |
first | QUANTITY | 0.98+ |
GDPR | TITLE | 0.98+ |
today | DATE | 0.98+ |
CCPA | TITLE | 0.98+ |
Ajay | PERSON | 0.98+ |
First | QUANTITY | 0.98+ |
pandemic | EVENT | 0.98+ |
Today | DATE | 0.97+ |
Chrome | TITLE | 0.97+ |
seven months | QUANTITY | 0.96+ |
last year and a half | DATE | 0.95+ |
250,000 data sources | QUANTITY | 0.91+ |
Second thing | QUANTITY | 0.9+ |
three years | QUANTITY | 0.87+ |
data.gov | OTHER | 0.86+ |
thousands of data sources | QUANTITY | 0.84+ |
last few years | DATE | 0.83+ |
three | DATE | 0.82+ |
a year | DATE | 0.78+ |
Explorium | ORGANIZATION | 0.76+ |
years | QUANTITY | 0.71+ |
Cube | ORGANIZATION | 0.69+ |
tons | QUANTITY | 0.66+ |
five months | QUANTITY | 0.64+ |
data | QUANTITY | 0.58+ |
COVID | TITLE | 0.52+ |
CPG | ORGANIZATION | 0.46+ |
-series | TITLE | 0.39+ |
theCube | COMMERCIAL_ITEM | 0.37+ |
Satyen Sangani, Alation | CUBEConversation
>> Narrator: From theCUBE studios in Palo Alto, in Boston, connecting with thought leaders all around the world. This is a CUBE Conversation. >> Hey, welcome back everybody Jeff Frick here with theCUBE. We're coming to you today from our Palo Alto studios with theCUBE conversation, talking about data, and we're excited to have our next guest. He's been on a number of times, many times, CUBE alum, really at the forefront of helping companies and customers be more data centric in their activities. So we'd like to welcome onto the show Satyen Sangani. He is the co founder and CEO of Alation. Satyen, great to see you. >> Great to see you, Jeff. It's good to see you again in this new world, a new format. >> It is a new world, a new format, and what's crazy is, in March and April we were talking about this light switch moment, and now we've just turned the calendar to October and it seems like we're going to be doing this thing for a little bit longer. So, it is kind of the new normal, and even I think when it's over, I don't think everything's going to go back to the way it was, so here we are, but you guys have some exciting news to announce, so let's just jump to the news and then we'll get into a little bit more of the nitty gritty. So what do you got coming out today, right? >> Yeah its so. >> What we are announcing today is basically Alation 2020, which is probably one of the biggest releases that I've been with, that we've had since I've been with the company. We with it are releasing three things. So in some sense, there's a lot of simplicity to the release. The first thing that we're releasing is a new experience around what we call the business user experience, which will bring in a whole new set of users into the catalog. The second thing that we're announcing is basically around Alation analytics and the third is around what we would describe as a cloud-native architecture. In total, it brings a fully transformative experience, basically lowering the total cost of getting to a data management experience, lower and data intelligent experience, much lower than previously had been the case. >> And you guys have a really simple mission, right? You're just trying to help your customers be more data, what's the right word? Data centric, use data more often and to help people actually make that decision. And you had an interesting quote in another interview, you talked about trying to be the Yelp for information which is such a nice kind of humanizing way to think about it because data isn't necessarily that way and I think, you mentioned before we turned on the cameras, that for a lot of people, maybe it's just easier to ignore the data. If I can just get the decision through, on a gut and intuition and get onto my next decision. >> Yeah, you know it's funny. I mean, we live in a time where people talk a lot about fake news and alternative facts and our vision is to empower a curious and rational world and I always smile when I say that a little bit, because it's such a crazy vision, right? Like how you get people to be curious and how do you get people to think rationally? But you know, to us, it's about one making the data really accessible, just allowing people to find the data they need when and as they want it. And the second is for people to be able to think scientifically, teaching people to take the facts at their disposal and interpret them correctly. And we think that if those two skills existed, just the ability to find information and interpret it correctly, people can make a lot better decisions. And so the Yelp analogy is a perfect one, because if you think about it, Yelp did that for local businesses, just like Amazon did it for really complicated products on the web and what we're trying to do at Alation is, in some sense very simple, which is to just take information and make it super usable for people who want to use it. >> Great, but I'm sure there's the critics out there, right? Who say, yeah, we've heard this before the promise of BI has been around forever and I think a lot of peoples think it just didn't work whether the data was too hard to get access to, whether it was too hard to manipulate, whether it was too hard to pull insights out, whether there's just too much scrubbing and manipulating. So, what is some of the secret sauce to take? What is a very complex world? And again and you got some very large customers with some giant data sets and to, I don't want to say humanize it, but kind of humanize it and make it easier, more accessible for that business analyst not just generally, but more specifically when I need it to make a decision. >> Yeah I mean, it's so funny because, making something, data is like a lot of software death by 1000 cuts. I mean you look at something from the outside and it looks really, really, really simple, but then you kind of dwell into any problem and that can be CRM something like Salesforce, or it can be something like service now with ITSM, but these are all really, really complicated spaces and getting into the depths and the detail of it is really hard. And data is really no different, like data is just the sort of exhaust from all of those different systems that exist inside of your company. So the detail around the data in your company is exhaustingly minute. And so, how do you make something like that simple? I think really the biggest challenge there is progressively revealing complexity, right? Giving people the right amount of information at the right amount of time. So, one of the really clever things that we do in this business user experience is we allow people to search for and receive the information that's most relevant to them. And we determined that relevance based upon the other people in the enterprise that happen to be using that data. And we know what other people are using in that company, because we look at the logs to understand which data sources are used most often, and which reports are used most often. So right after that, when you get something, you just see the name of the report and it could be around the revenues of a certain product line. But the first thing that you see is who else uses it. And that's something that people can identify with, you may not necessarily know what the algorithm was or what the formula might be, how the business glossary term relates to some data model or data artifact, but you know the person and if you know the person, then you can trust the information. And so, a lot of what we do is spend time on design to think about what is it that a person expects to see and how do they verify what's true. And that's what helps us really understand what to serve up to somebody so that they can navigate this really complicated, relevant data. >> That's awesome, cause there's really a signal to noise problem, right? And I think I've heard you speak before. >> Yeah >> And of course this is not new information, right? There's just so much data, right? The increasing proliferation of data. And it's not that there's that much more data, we're just capturing a lot more of it. So your signal to noise problem just gets worse and worse and worse. And so what you're talking about is really kind of helping filter that down to get through a lot of that, a lot of that noise, so that you can find the piece of information within the giant haystack. That is what you're looking for at this particular time in this particular moment. >> Yeah and it's a really tough problem. I mean, one of the things that, it's true that we've been talking about this problem for such a long time. And in some instance, if we're lucky, we're going to be talking about it for a lot longer because it used to be that the problem was, back when I was growing up, you were doing research on a topic and you'd go to the card catalog and you'd go to the Dewey decimal system. And in your elementary school or high school library, you might be lucky if you were to find, one, two or three books that map to the topic that you were looking for. Now, you go to Google and you find 10,000 books. Now you go inside of an enterprise and you find 4,000 relational database tables and 200 reports about an artifact that you happened to be looking for. And so really the problem is what do I trust? And what's correct and getting to that level of accuracy around information, if there's so much information out there is really the big problem of our time and I think, for me it's a real privilege to be able to work on it because I think if we can teach people to use information better and better then they can make better decisions and that can help the world in so many different. >> Right, right, my other favorite example that everybody knows is photographs, right? Back when you only got 24 and a roll and cost you six bucks to develop it. Those were pretty special and now you go buy a fancy camera. You can shoot 11, 11 frames a second. You go out and shoot the kids at the soccer game. You come home with 5,000 photos. How do you find the good photo? It's a real, >> Yeah. >> It's a real problem. If you've ever faced something like that, it's kind of a splash of water in the face. Like where do I even begin? But the other piece that you talk about a lot, which is slightly different but related is context, and in favorite concept, it's like 55, right? That's a number, but if you don't have any context for that number, is it a temperature? Is it cold inside the building? Is it a speed? Is it too slow on i5? Or is it fast because I'm on a bicycle going down a Hill and without context data is just, it's just a number. It doesn't mean anything. So you guys really by adding this metadata around the data are adding a lot more contextual information to help figure out kind of what that signal is from the noise. >> Yap, you'll get facts from anywhere, right? Like, you're going to have a Hitchcock, you've got a 55 or 42, and you can figure out like what the meaning of the universe is and apparently the answer is 42 and what does that mean? It might mean a million different things and that, to me, that context is the difference between, suspecting and knowing. And there's the difference between having confidence and basically guessing. And I think to the extent that we can provide more of that over time, that's, what's going to make us, an ever more valuable partner to the customers that we satisfy today. >> Right, well, I do know why 42 is always the answer 'cause that's Ronnie Lot and that's always the answer. So, that one I know that's an easy one. (both chuckles) But it is really interesting and then you guys just came out. I heard Aaron Kalb on, one of your co-founders the other day and we talked about this new report that you guys have sponsored the Data Culture Report and really, putting some granularity on a Data Culture Index and I thought it was pretty interesting and I'm excited that you guys are going to be doing this, longitudinally because whether you do or do not necessarily agree with the method, it does give you a number, It does give you a score, It's a relatively simple formula. And at least you can compare yourself over time to see how you're tracking. I wonder if you could share, I mean, the thing that jumps out right off the top of that report is something we were talking about before we turned the cameras on that, people's perception of where they are on this path doesn't necessarily map out when you go bottoms up and add the score versus top down when I'm just making an assessment. >> Yeah, it's funny, it's kind of the equivalent of everybody thinks they're an above average driver or everybody thinks they're above average in terms of obviously intelligence. And obviously that mathematically is not possible or true, but I think in the world of data management, we all talk about data, we all talk about how important it is to use data. And if you're a data management professional, you want people in your company to use more data. But ironically, the discipline of data management doesn't actually use a lot of data itself. It tends to be a very slow methodical process driven gut oriented process to develop things like, what data models exist and how do I use my infrastructure and where do I put my data and which data quality is best? Like all of those things tend to be, somewhat heuristic driven or gut driven and they don't have to be and a big part of our release actually is around this product called Alation Analytics. And what we do with that product is really quite interesting. We start measuring elements of how your organization uses data by team, by data source, by use case. And then we give you transparency into what's going on with the data inside of your landscape and eco-system. So you can start to actually score yourself both internally, but also as we reveal in our customer success methodology against other customers, to understand what it is that you're doing well and what it is that you're doing badly. And so you don't need necessarily to have a ton of guts instinct anymore. You can look at the data of yourselves and others to figure out where you need to improve. And so that's a pretty exciting thing and I think this notion that says, look, you think you're good, but are you really good? I mean, that's fundamental to improvement in business process and improvement in data management, improvement in data culture fundamentally for every company that we work with. >> Right, right and if you don't know, there's a problem, and if you're not measuring it, then there's no way to improve on it, right? Cause you can't, you don't know, what you're measuring is. >> Right. >> But I'm curious of the three buckets that you guys measured. So you measured data search and discovery was bucket number one, data literacy, you know what you do once you find it and then data governance in terms of managing. It feels like that the search and discovery, which is, it sounds like what you're primarily focused on is the biggest gap because you can't get to those other two buckets unless you can find and understand what you're looking for. So is that JIve or is that really not problem, is it more than manipulation of the data once you get it? >> Yeah, I mean we focus really. We focus on all three and I think that, certainly it's the case that it's a virtuous cycle. So if you think about kind of search and discovery of data, if you have very little context, then it's really hard to guide people to the right bit of information. But if I know for example that a certain data is used by a certain team and then a new member of that team comes on board. Then I can go ahead and serve them with exactly that bit of data, because I know that the human relationships are quite tight in the context graph on the back end. And so that comes from basically building more context over time. Now that context can come from a stewardship process implemented by a data governance framework. It can come from, building better data literacy through having more analytics. But however, that context is built and revealed, there tends to be a virtuous cycle, which is you get more, people searching for data. Then once they've searched for the data, you know how to necessarily build up the right context. And that's generally done through data governance and data stewardship. And then once that happens, you're building literacy in the organization. So people then know what data to search for. So that tends to be a cycle. Now, often people don't recognize that cycle. And so they focus on one thing thinking that you can do one to the exclusion of the others, but of course that's not the case. You have to do all three. >> Great and I would presume you're using some good machine, Machine Learning and Artificial Intelligence in that process to continue to improve it over time as you get more data, the metadata around the data in terms of the usage and I think, again I saw in another interview there talking about, where should people invest? What is the good data? What's the crap data? what's the stuff we shouldn't use 'cause nobody ever uses it or what's the stuff, maybe we need to look and decide whether we want to keep it or not versus, the stuff that's guiding a lot of decisions with Bob, Mary and Joe, that seems to be a good investment. So, it's a great application of applied AI Machine Learning to a very specific process to again get you in this virtuous cycle. That sounds awesome. >> Yeah, I know it is and it's really helpful to, I mean, it's really helpful to think about this, I mean the problem, one of the biggest problems with data is that it's so abstract, but it's really helpful to think about it in just terms of use cases. Like if I'm using a customer dataset and I want to join that with a transaction dataset, just knowing which other transaction datasets people joined with that customer dataset can be super helpful. If I'm an analyst coming in to try to answer a question or ask a question, and so context can come in different ways, just in the same way that Amazon, their people who bought this product also bought this product. You can have all of the same analogies exist. People who use this product also use that product. And so being able to generate all that intelligence from the back end to serve up simple seeming experience on the front end is the fun part of the problem. >> Well I'm just curious, cause there's so many pieces of this thing going on. What's kind of the, aha moment when you're in with a new customer and you finish the install and you've done all the crawling and where all the datasets are, and you've got some baseline information about who's using what I mean, what is kind of the, Oh, my goodness. When they see this thing suddenly delivering results that they've never had at their fingertips before. >> Yeah, it's so funny 'cause you can show Alation as a demo and you can show it to people with data sets that are fake. And so we have this like medical provider data set that, we've got in there and we've got a whole bunch of other data sets that are in there and people look at it and interestingly enough, a lot of time, they're like, Oh yeah, I can kind of see it work and I can kind of like understand that. And then you turn it on against their own data. The data they have been using every single day and literally their faces change. They look at the data and they say, Oh my God, like, this is a dataset that Steven uses, I didn't even know that Steven thought that this data existed and, Oh my God, like people are using this data in this particular way. They shouldn't be using that data at all, Like I thought I deprecated that dataset two years ago. And so people have all of these interesting insights and it's interesting how much more real it gets when you turn it on against the company's systems themselves. And so that's been a really fun thing that I've just seen over and over again, over the course of multiple years where people just turn on the cup, they turn on the product and all of a sudden it just changes their view of how they've been doing it all along. And that's been really fun and exciting. >> That's great yeah, cause it means something to them, right? It's not numbers on a page, It's actually, it's people, it's customers, it's relationships, It's a lot of things. That's a great story and I'm curious too, in that process, is it more often that they just didn't know that there were these other buckets of reports and other buckets of data or was it more that they just didn't have access to it? Or if they did, they didn't really know how to manipulate it or to integrate it into their own workflow. >> Yeah, It's kind of funny and it's somewhat role dependent, but it's kind of all of the above. So, if you think about it, if you're a data management professional, often you kind of know what data sources might exist in the enterprise, but you don't necessarily know how people are using the data. And so you look at data and you're like, Oh my God, I can't believe this team is using this data for this particular purpose. They shouldn't be doing that. They should be using this other data set. I deprecated that data set like two years ago. And then sometimes if you're a data scientist, you're you find, Oh my gosh, there's this new database that I otherwise didn't realize existed. And so now I can use that data and I can process that for building some new machine learning algorithms. In one case we've had a customer where they had the same data set procured five different times. So it was a pure, it was a data set that cost multiple hundreds of thousands of dollars. They were spending $2 million overall on a data set where they could have been spending literally one fifth of that amount. And then you had a sort of another case finally, where you're basically just looking at it and saying, Hey, I remember that data set. I knew I had that dataset, but I just don't remember exactly where it was. Where did I put that report? And so it's exactly the same way that you would use Google. Sometimes you use it for knowledge discovery, but sometimes you also use it for just remembering the thing you forgot. >> Right but, but the thing, like I remember when people were trying to put Google search in that companies just to find records not necessarily to support data efforts and the knock was always, you didn't have enough traffic to drive the algorithm to really have effective search say across a large enterprise that has a lot of records, but not necessarily a lot of activity. So, that's a similar type of problem that you must have. So is it really extracting that extra context of other people's usage that helps you get around kind of that you just don't have a big numbers? >> Yeah, I mean that kind of is fundamentally the special sauce. I mean, I think a lot of data management has been this sort of manual brute force effort where I get a whole bunch of consultants or a whole bunch of people in the room and we do this big documentation session. And all of a sudden we hope that we've kind of, painted the golden gate bridge is at work. But, knowing that three to six months later, you're going to have to go back and repaint the golden gate bridge overall all over again, if not immediately, depending on the size and scale of your company. The one thing that Google did to sort of crawl the web was to really understand, Oh, if a certain webpage was linked to super often, then that web page is probably a really useful webpage. And when we crawled the logs, we basically do the exact same thing. And that's really informed getting a really, really specific day one view of your data without having to have a whole bunch of manual effort. And that's been really just dramatical. I mean, it's been, it's allowed people to really see their data very quickly and new different ways and I think a big part of this is just friction reduction, right? We'd all love to have an organized data world. We'd love to organize all the information in a company, but for anybody has an email inbox, organizing your own inbox, let alone organizing every database in your company just seems like a specificity in effort. And so being able to focus people on what's the most important thing has been the most important thing. And that's kind of why we've been so successful. >> I love it and I love just kind of the human factors kind of overlay, that you've done to add the metadata with the knowledge of who is accessing these things and how are they accessing it. And the other thing I think is so important Satyen is, we talk about innovation all the time. Everybody wants more innovation and they've got DevOps so they can get software out faster, et cetera, et cetera. But, I fundamentally believe in my heart of hearts that it's much more foundational than that, right? That if you just get more people, access to more information and then the ability to manipulate and clean knowledge out of that information and then actually take action and have the power and the authority to take action. And you have that across, everyone in the company or an increasing number of people in the company. Now suddenly you're leveraging all those brains, right? You're leveraging all that insight. You're leveraging all that kind of First Line experience to drive kind of a DevOps type of innovation with each individual person, as opposed to, kind of classic waterfall with the Chief Innovation Officer, Doing PowerPoints in his office, on his own time. And then coming down from the mountain and handing it out to everybody to go build. So it's a really a kind of paradox that by adding more human factors to the data, you're actually making it so much more usable and so much more accessible and ultimately more valuable. >> Yeah, it's funny we, there's this new term of art called data intelligence. And it's interesting because there's lots of people who are trying to define it and there's this idea and I think IDC, IDC has got a definition and you can go look it up, but if you think about the core word of intelligence, it basically DevOps down to the ability to acquire information or skills, right? And so if you then apply that to companies and data, data intelligence then stands to reason. It's sort of the ability for an organization to acquire, information or skills leveraging their data. And that's not just for the company, but it's for every individual inside of that company. And we talk a lot about how much change is going on in the world with COVID and with wildfires here in California. And then obviously with the elections and then with new regulations and with preferences, cause now that COVID happened everybody's at home. So what products and what services do you have to deliver to them? And all of this change is, basically what every company has to keep up with to survive, right? If capitalism is creative destruction, the world's getting destroyed, like, unfortunately more often than we'd like it to be,. >> Right. >> And so then you're say there going, Oh my God, how do I deal with all of this? And it used to be the case that you could just build a company off of being really good at one thing. Like you could just be the best like logistics delivery company, but that was great yesterday when you were delivering to restaurants. But since there are no restaurants in business, you would just have to change your entire business model and be really good at delivering to homes. And how do you go do that? Well, the only way to really go do that, is to be really, really intelligent throughout your entire company. And that's a function of data. That's a function of your ability to adapt to a world around you. And that's not just some CEO cause literally by the time it gets to the CEO, it's probably too late. Innovations got to be occurring on the ground floor. And people have got to repackage things really quickly. >> I love it, I love it. And I love the other human factor that we talked about earlier. It's just, people are curious, right? So if you can make it easy for them to fulfill their curiosity, they're going to naturally seek out the information and use it versus if you make it painful, like a no fun lesson, then people's eyes roll in and they don't pay attention. So I think that it's such an insightful way to address the problem and really the opportunity and the other piece I think that's so different when you're going down the card catalog analogy earlier, right? Is there was a day when all the information was in that library. And if you went to the UCLA psych library, every single reference that you could ever find is in that library, I know I've been there, It was awesome, but that's not the way anymore, right? You can't have all the information and it's pulling your own information along with public information and as much information as you can. where you start to build that competitive advantage. So I think it's a really great way to kind of frame this thing where information in and of itself is really not that valuable. It's about the context, the usability, the speed of these ability and that democratization is where you really start to get these force multipliers and using data as opposed to just talking about data. >> Yeah and I think that that's the big insight, right? Like if you're a CEO and you're kind of looking at your Chief Data Officer or Chief Data and Analytics Officer. The real question that you're trying to ask yourself is, how often do my people use data? How measurable is it? Like how much do people, what is the level at which people are making decisions leveraging data and that's something that, you can talk about in a board room and you can talk about in a management meeting, but that's not where the question gets answered. The question gets really answered in the actual behaviors of individuals. And the only way to answer that question, if you're a Chief Analytics Officer or somebody who's responsible for data usage within the company is by measuring it and managing it and training it and making sure it's a part of every process and every decision by building habit and building those habits are just super hard. And that's, I think the thing that we've chosen to be sort of the best in the world at, and it's really hard. I mean, we're still learning about how to do it, but, from our customers and then taking that knowledge and kind of learning about it over time. >> Right, well, that's fantastic. And if it wasn't hard, it wouldn't be valuable. So those are always the best problems to solve. So Satyen, really enjoyed the conversation. Congratulations to you and the team on the new release. I'm sure there's lots of sweat, blood and tears that went into that effort. So congrats on getting that out and really great to catch up. Look forward to our next catch up. >> You too Jeff, It's been great to talk. Thank you so much. >> All right, take care. All righty Satyen and I'm Jeff, you're watching theCUBE. We'll see you next time. Thanks for watching. (ethereal music)
SUMMARY :
leaders all around the world. We're coming to you today It's good to see you again in the calendar to October and the third is around what we would and I think, you mentioned And the second is for people to be able And again and you got and if you know the person, you speak before. so that you can find and that can help the and cost you six bucks to develop it. that signal is from the noise. and you can figure out like and I'm excited that you guys and they don't have to be and if you're not measuring it, of the data once you get it? So that tends to be a cycle. in that process to continue from the back end to serve and you finish the install and you can show it to is it more often that they just the thing you forgot. get around kind of that you and repaint the golden gate and handing it out to and you can go look it up, and be really good at delivering to homes. and really the opportunity and you can talk about and really great to catch up. Thank you so much. We'll see you next time.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Jeff Frick | PERSON | 0.99+ |
Satyen | PERSON | 0.99+ |
Jeff | PERSON | 0.99+ |
Amazon | ORGANIZATION | 0.99+ |
11 | QUANTITY | 0.99+ |
Palo Alto | LOCATION | 0.99+ |
$2 million | QUANTITY | 0.99+ |
one | QUANTITY | 0.99+ |
Ronnie Lot | PERSON | 0.99+ |
Steven | PERSON | 0.99+ |
October | DATE | 0.99+ |
24 | QUANTITY | 0.99+ |
200 reports | QUANTITY | 0.99+ |
ORGANIZATION | 0.99+ | |
Aaron Kalb | PERSON | 0.99+ |
Yelp | ORGANIZATION | 0.99+ |
California | LOCATION | 0.99+ |
six bucks | QUANTITY | 0.99+ |
March | DATE | 0.99+ |
10,000 books | QUANTITY | 0.99+ |
two | QUANTITY | 0.99+ |
third | QUANTITY | 0.99+ |
Satyen Sangani | PERSON | 0.99+ |
Boston | LOCATION | 0.99+ |
April | DATE | 0.99+ |
second thing | QUANTITY | 0.99+ |
Alation | ORGANIZATION | 0.99+ |
both | QUANTITY | 0.99+ |
two skills | QUANTITY | 0.99+ |
Bob | PERSON | 0.99+ |
theCUBE | ORGANIZATION | 0.98+ |
two years ago | DATE | 0.98+ |
today | DATE | 0.98+ |
second | QUANTITY | 0.98+ |
hundreds of thousands of dollars | QUANTITY | 0.98+ |
yesterday | DATE | 0.98+ |
two buckets | QUANTITY | 0.98+ |
Data Culture Report | TITLE | 0.98+ |
1000 cuts | QUANTITY | 0.98+ |
Joe | PERSON | 0.97+ |
Alation | PERSON | 0.97+ |
5,000 photos | QUANTITY | 0.97+ |
first thing | QUANTITY | 0.97+ |
five different times | QUANTITY | 0.97+ |
55 | QUANTITY | 0.97+ |
three buckets | QUANTITY | 0.97+ |
one thing | QUANTITY | 0.97+ |
three | DATE | 0.96+ |
one case | QUANTITY | 0.96+ |
Alation 2020 | TITLE | 0.95+ |
six months later | DATE | 0.94+ |
each individual person | QUANTITY | 0.94+ |
CUBE | ORGANIZATION | 0.93+ |
COVID | EVENT | 0.92+ |
three books | QUANTITY | 0.91+ |
Mary | PERSON | 0.91+ |
one fifth | QUANTITY | 0.91+ |
three | QUANTITY | 0.91+ |
IDC | ORGANIZATION | 0.88+ |
Alation Analytics | ORGANIZATION | 0.88+ |
4,000 relational database | QUANTITY | 0.86+ |
First Line | QUANTITY | 0.85+ |
42 | QUANTITY | 0.85+ |
Hitchcock | PERSON | 0.84+ |
three things | QUANTITY | 0.82+ |
11 frames a second | QUANTITY | 0.82+ |
42 | OTHER | 0.81+ |
UCLA psych | ORGANIZATION | 0.75+ |
Sudheesh Nair, ThoughtSpot | CUBE Conversation, April 2020
>> Narrator: From theCUBE studios in Palo Alto and Boston, connecting with thought leaders all around the world, this is a CUBE conversation. >> Hi everybody, welcome to this CUBE conversation. This is Dave Vellante, and as part of my CEO and CXO series I've been bringing in leaders around the industry and I'm really pleased to have Sudheesh Nair, who is the CEO of ThoughtSpot Cube alum. Great to see you against Sudheesh, thanks for coming on. >> My pleasure Dave. Thank you so much for having me. I hope everything is well with you and your family. >> Yeah ditto back at you. I know you guys were in a hot spot for a while so you know we power on together, so I got to ask you. You guys are AI specialists, maybe sometimes you can see things before they happen. At what point did you realize that this COVID-19 was really going to be something that would affect businesses globally and then specifically your business. >> Yeah it's amazing, isn't it? I mean we used to think that in Silicon Valley we are sitting at the top of the world. AI and artificial intelligence, machine learning, Cloud, IOT and all of a sudden this little virus comes in and put us all in our places basically. We are all waiting for doctors and others to figure these things out so we can actually go outside. That tells you all about what is really important in life sometimes. It's been a hard journey for most people because of what a huge health event this has been. From a Silicon Valley point of view and specifically from artificial intelligence point of view, there is not a lot of history here that we can use to predict the future, however early February we had our sales kick off and we had a lot of our sellers who came from Asia and it became sort of clear to us immediately during our sales kick off in Napa Valley that this is not like any other event. The sort of things that they were going through in Asia we sort of realized immediately that us and when it gets to the shores of the US, this is going to really hurt. So we started hunkering down as a company, but as you mentioned early when we were talking, California in general had a head start, so we've been hunkered down for almost five weeks now, as a company and as the people and the results are showing. You know it is somewhat contained. Now obviously the real question is what next? How do we go out? But that's probably the next journey. >> So a lot of the executives that I've talked to, of course they start with the number one importance is the health and well-being of our employees. We set up the work from home infrastructure, et cetera. So that's I think, been fairly well played in the media and beginning to understand that pretty well. Also, you saw I talked to Frank Slootman and he's sort of joked about the Sequoia memos, that you know eliminate unnecessary expenses and practices. I've always eliminated unnecessary expenses, keep it to the essentials, but one of the things that I haven't probed with CEOs and I'd love your thoughts on this is, did you have to rethink sort of the ideal customer profile and your value proposition in the specific context of COVID? Was that something that you deliberately did? >> Yeah so it's a really important question that you asked, and I saw the Frank interview and I a 100% agree with that. Inside the company we have this saying, and our co-founder Ajeet actually coined the phrase of living like a middle-class company, and we've always lived that, even though we have, 300 plus million dollars in the bank and we raised a big round last year. It is important to know that as a growth stage company, we are not measured on what's in the bank. It's about the value that we are delivering and how much I'll be able to collect from customers to run the business. The living like a middle-class family has always been the ethos of the company and that has been a good thing. However, I've been with ThoughtSpot for a little more than 18 months. I joined as the CEO. I was an early investor in the company and there are a couple of big changes that we made in the last 18 months, and one of is moving to Cloud which we can talk. The other one has been around narrowing our focus on who we sell to, because one of the things that, as you know very well Dave, is that the world of data is extremely complex. Every company can come in and say, "We have the best solution out there" and it can just be in the world, but the reality is no single product is going to solve every problem for a customer when it comes to a data analytics issue. All we can hope for is that we become part of a package or solution that solves a very specific problem, so in that context there's a lot of services involved, a lot of understanding of customer problems involved. We are not a bi-product in the sense of Tableau or click on Microsoft, but they do. We are about a use case based outcomes, so we knew that we can't be everywhere. So the second change we made is actually a narrower focus, exclusively sell to global. That class, the middle class mentality, really paid off now because almost all the customers we sell to are very large customers and the four work verticals that we were seeing tremendous progress, one was healthcare, second was financial sector, the third was telecom and manufacturing and the last one is repair. Out of these four, I would say manufacturing is the one where we have seen a slowdown, but the other verticals have been, I would say cautiously spending. Being very responsible and thus far, I'm not here to say that everything is fine, but the impact if you take Zoom as a spectrum, on one end of the spectrum, where everything is doing amazingly well, because they are a good product market fit to hospitality industry on the other side. I would say ThoughtSpot and our approach to data analytics is closer to this than that. >> That's very interesting Sudheesh because, of course health care, I don't think they have time to do anything right now. I mean they're just so overwhelmed so that's obviously an interesting area that's going to continue to do well I would think. And they, the Financial Services guys, there's a lot of liquidity in the system and after 2009 the FinTech guys or the financial, the banks are doing quite well. They may squeeze you a little bit because they're smart negotiators, but as you say manufacturing with the supply chains, and in retail, look, if your ecommerce I mean Amazon hit, all-time highs today up whatever, 20% in the last two weeks. I mean just amazing what's happening, so it's really specific parts of those sectors will continue to do well, won't they? >> Absolutely, I think look, I saw this joke on Twitter, what's the number one cost? What is in fact (mic cuts out). Very soon people will say it is COVID and even businesses that have been tried to, sort of relatively, reluctant to really embrace the transformation that the customers have been asking for. This has become the biggest forcing function and that's actually a good thing because consumers are going to ultimately win because once you get groceries delivered to you into your front doors, it's going to be hard to sort of go back to standing in the line in Costco, when InstaCart can actually deliver it for you and you get used to it, so there are some transformation that is going to happen because of COVID. I don't think that society will go back from, but having said that, it's also not transformation for the sake of transformation. So speaking from our point of view on data analytics, I sort of believe that the last three to four years we have been sort of living in the Renaissance of enterprise data analytics and that's primarily because of three things. The first thing, every consumer is expecting, no matter how small or the big business, is to get to know them. You know, I don't want you to treat me like an average. I don't want you treat me like a number. Treat me like a person, which means understand me but personalize the services you are delivering and make sure that everything that you send me are relevant. If there's a marketing campaign or promo or customer support call, make sure it's relevant. The relevance and personalization. The second is, in return for that. customers are willing to give you all sorts of data. The privacy, be damned, so to a certain extent they are giving you location information, medical information,-- And the last part is with Cloud, the amount of data that you can collect and free plus in data warehouse like Snowflakes, like Redshift. It's been fundamentally shifted, so when you toggle them together the customers demand for better actors from the business, then amount of data that they're willing to give and collect to IOT and variables and then cloud-based technologies that allows you to process and store this means that analyzing this data and then delivering relevant actions to the consumers is no longer a nice to have and that I think is part of the reason why ThoughtSpot is finding sort of a tailwind, even with all this global headwind that we are all in. >> Well I think too, the innovation formula really has changed in our industry. I've said many times, it's not Moore's law anymore, it's the combination of data plus AI applied to that data and Cloud for scale and you guys are at the heart of that, so I want to talk about the market space a little bit. You look at BI and analytics, you look at the market. You know the Gartner Magic Quadrant and to your point, you know the companies on there are sort of chalk and cheese, to borrow a phrase from our friends across the pond. I mean, you're not power BI, you're not SaaS. I mean you're sort of search led. You're turning natural language into complex sequel queries. You're bringing in artificial intelligence and machine intelligence to really simplify and dramatically expand and put into the hands of business people analytics. So explain a little bit. First of all, do I have that sort of roughly right? And help us frame the market space how you think about it. >> Yeah I mean first of all, it is amazing that the diverse industry and technologies that you speak to and how you are able to grasp all of them and summarize them within a matter of seconds is a term to understand in itself. You and Stew, you both have that. You are absolutely right. So the way I think of this is that BI technologies have been around and it's played out really well. It played it's part. I mean if you look at it the way I think of BI, the most biggest BI tool is still Excel. People still want to use Excel and that is the number one BI tool ever. Then 10 years ago Tableau came in and made visualizations so delightful and a pic so to speak. That became the better way to consume complex data. Then Microsoft came in Power BI and then commoditized and the visualization to a point that, you know Tableau had to fight and it ended up selling to the Salesforce. We are not trying to play there because I think if you chase the idea of visualization it is going to be a long hard journey for ThoughtSpot to catch Tableau in visualization. That's not what we are trying to do. What we are trying to do is that you have a lot of data on one hand and you have a consumer sitting here and saying data doesn't mean you treated me well. What is my action that is this quote, very customized action quote. And our question is, how does beta turn into bespoke action inside a business? The insurance company is calling. You are calling an insurance company's customer support person. How do you know that the impact that you are getting from them is customized. But turning data into insight is an algorithmic process. That's what BI does, but that's like a few people in an organization can do that. Think of them like oil. They don't mix with water, that's the business people. The merchandising specialist who figures out which one should become site and what should be the price what should be ranking. That's the merchandiser. Their customer support person, that's a business user. They don't necessarily do Python or SQL, so what happens is in businesses you have the data people like water and the business people who touch the customer and interact with them every day, they're like the water. They don't mix. The idea of ThoughtSpot is very simple. We don't want this demarcation. We don't want this chasm. We want to break it so that every single person who interact with the customer should be able to have an interactive storytelling with the data, so that every decision that they make takes data into insight to knowledge to action, and that decision-making pipeline cannot be gut driven alone. It has to be enabled by data science and human experience coming together. So in our view, a well deployed data platform, decision-making platform, will enhance and augment human experience, as opposed to human experience says, this data says that, so you've got to pick one. That's an old model and that has been the approach with natural language based interactive access with the BI being done automated through AI in the backend, parts what we are able to put very complex data science in front of a 20 year experienced merchandising specialist in a large e-commerce website without learning Python, without learning people, without understanding data warehouse >> Right so, a couple of things I want to pick up on. I mean data is plentiful, insights aren't. That's really the takeaway from one of the things that you mentioned and this notion of storytelling is very, very important. I mean, all business people, they better be storytellers in some way shape or form and what better way to tell stories than with data, and so, because as you say it's no longer gut feel, it's not the answer anymore. So it seems to me Sudheesh, that you guys are transformative. The decision to focus on the global 2000 and really not, get washed up in the Excel, well I could just do it in Excel, or I'm going to go get Power BI, it's good enough. It's really, you're trying to be transformative and you've got a really disruptive model that we talked about before, search led and you're speaking to the system, or, typing in a way that's more natural, I wonder if you could comment on that and particularly that disruption of that transformation. >> Remember we are selling to global 2000. Almost all of them will have Tableau or one of these power BI or one of these solutions already, so you're not trying to go right and change that. What we have done is very clearly focus on use cases. We're transforming data into action. We will move the needle for the bit, but for example with the COVID situation going on, one of the most popular use cases for us is around working capital management. Now a CFO who's been in the business for 20 or 30 years is an expert and have the right kind of gut feeling about how her business is running when it comes to working capital. However, imagine now she can do 20 what-if scenarios in the next five seconds or next 10 minutes without going to the SPN 18, without going to the BI team. She can say what if we reduce hiring in Japan and instead we focus them on Singapore? What if we move 20% of marketing dollars from Germany to New York? What would be the impact of AR going up by 1% versus AP going down by 1%? She needs to now do complex scenarios, but without delay. It's sort of like how do I find a restaurant through Yelp versus going to the lobby to talk to a specialist who tells me the local restaurant. This interactive database storytelling for gut enhances the decision-making is very powerful. This is why, customer have, our largest customer has spent more than $26 million with ThougthSpot and this is not small. Our average is around close to 700k. This week for example, we are having a webinar where Verizon's SVP of Analytics specifically focused on finance. He's actually going to be on a webinar with our CFO. Our CFO Sophie, one of our financial specialists and Jeff Noto from Verizon are going to be on this talking about working capital management. What parts ThoughtSpot is a portion of, but they are sharing their experience of how do we manage, so that kind of varies, like extremely rigid focus on use cases, supply chain, modeling different things so that someone who knows Asia can really interact with the data to figure out if our supply chain from Bangladesh is going to be impacted because of COVID can we go to Ecuador? What will that look like? What will be the cost? What's the transportation cost, the fuel cost, Business has become so complex you don't have time to take five, six days to look at the report, no matter how pretty that report is, you have to make it efficient. You need to be able to make a lightning fast decision and something like COVID is really exposing all of that because day by day situation on the ground is changing. You know, employees are calling in sick. The virus is breaking out in one place, other place. If it's not, curves are going up and down so you cannot have any sort of delay between human experience and data signs and all of that comes down to your point telling visual stories so that the organization can rally behind the changes that they want to make. >> So these are mission-critical use cases. They are big problems that you're solving and attacking. As you said, you're not all things to all people. One of the things you're not is a data store, right? So you've got a partner, you've got to have an ecosystem, whether it's cloud databases, the cloud itself. I wonder if you could talk about some of the key partnerships that you're forming and how you're going to market and how that's affecting your business. >> Yeah, I mean one of the things that I've always believed in Silicon Valley is that companies die out of indigestion, not out of starvation. You try to do everything. That's how you end up dying and for us in the space of data, it's an extremely humbling space because there is so much to do, data prep, data warehousing, you know a mash-up of data, hosting of data, We have clearly decided that our ability is best spent on making artificial intelligence to work, interactive storytelling for business use and that's it. With that said, we needed a high velocity agility partner in the back end and Cloud based data warehouse have become a huge tailwind for us because our entire customer deployments are on Cloud, and the number one, obviously as you know from Frank's thing, the Snowflake has actually given, customers have seen Snowflakes plus ThoughtSpot is actually a good thing and we are exclusive in global 2000 and the Snowflake is climbing up there and we are able to build a good mutual partnership, but we are also seeing a really creative partnership all the way from product design to go to market and compensation alignment with Amazon on their push on Redshift as well. Google, we have announced partnership. There is a little bit of (mic cuts out) in the beginning we are getting, and just a couple of weeks ago we started working with Microsoft on their Azure Synapse algo. Now I would say that it's lagging, we still have work to do but Amazon and Snowflake are really pushing in terms of what customers want to see, and it completely aligns with our value popular, one plus one equals three. It really works well for our customers >> And Google is what, BigQuery plus Google Cloud, or what are you doing there? >> Yep so both Amazon and Google. Well, what we are doing at three different pieces. One if obviously the hosting of their cloud platforms. Second is data warehouse and enterprise data warehouse, which is Redshift and BigQuery. Third, we are also pretty good at taking machine learning algorithms that they have built for specific verticals. We're going to take those and then ingest them and deliver better. So for example if you are one of the largest supply companies in the world and you want to know what's the shipment rate from China and it shows and then the next thing you want to know is what the failure rate on this based on last behavior when you compressed a shipment rate, and that probably could use a bit of specific algorithms and you know Google and others have actually built a library of algorithms that can be injected into ThoughtSpot. We will simply answer the question of we may have gotten that algorithm from the Google library, sort of the business use is concerned. It doesn't really matter, so we have made all that invisible and we are able to deliver democratized access to Bespoke Insights to a business user, who are too sort of been afraid to deal with the sector data. >> Since you mentioned that you've got obviously several hundred million dollars in cash. You've raised over half a billion. You've talked previously about potential acquisitions, about IPO, are you considering acquisitions? M&A at this point in time? I mean there may be some deals out there. There's certainly some talent out there, but boy the market is changing so fast. I mean, it seems to, certain sectors are actually doing quite well. Will you consider M&A at this point? >> Yes, so I think IPO and M&A are two different-- IPO definitely, it will be foolish to say that this hasn't pushed our clients back a little bit because this is a huge event. I think there will be a correction across valuation and all of that. However, it is also important for us we use this opportunity to look at how we are investing our resources and investment for long-term versus the short-term and make sure that we are more focused and more tightening at the belt. We are doing that internally. Having said that, being a private company our valuation is, you know at least in theory, frozen, and then we have a pretty good cash position of close to $300 million, which means that it is absolutely an opportunity for us to seriously consider M&A. The important thing going back to my adage of, companies don't die out of starvation. It is critical to make sure that whatever we do, we do it with clarity. Are we doing it for talent? Are we doing it for tech? Or are we doing it for market? When you have a massive event like this, it is a poor idea to go after new market. It is important to go to our existing customers who are very large global 2000 firms and then identify problems that we cannot solve otherwise and then add technology to solve those problems, so technology acquisitions are absolutely something to consider, but it needs some more time to settle in because, the first two weeks were all people who were blindsided by this, then the last two weeks we have now gotten the mojo back in sales and mojo back in engineering, and now I think it is time for us to digest and prepare for these next two, three quarters of event and as part of that, companies like us who are fortunate enough to be on a good cash position, we'll absolutely look for interesting and good deals in the M&S space. >> Yeah, it makes sense, is tell and tech and, post IPO you can worry about Tam expansion. You'll be under pressure to do that as the CEO, but for now that's a very pragmatic approach. My last question is, there's some things when you think about, you say five weeks now you've been essentially on lockdown. You must, as many of us start thinking about wow, a lot of this work from home which came so fast people wouldn't even think about it earlier. You know, some companies mandated the beehive approach. Now everybody's open to that. There are certain things that are likely to remain permanent post COVID. Have you thought much about that? Generally and specifically how it might affect your business, the permanence of post COVID. Your thoughts. >> Yeah I've thought a lot about it. In fact, this morning I was speaking with our CRO Brian McCarthy about this. I think the change will happen, think of like an onion's inner most layer, I think the most, my hope is, that the biggest change will be in every one of us internally, as a what sort of a person am I and what does my position in the world means. The ego of each one of us that we carry because if this global event in one shot did not make you rethink your own sort of position in this big universe I think that's a mess. So the first thing has to be about being a better person. The second thing is, I had this two, three days of fever which was negative for COVID but I isolated myself, but that gave me sort of an idea of dipping in the dark room where I'm hoping my family won't get infected and you know my parents are in India so I sort of also realized that what is really important for you in life and how much family should mean to you, so that goes to the first, yourself second, your relationship with family, but having said that, the third thing when it comes to business building is also the importance for building with quality people, because when things go wrong it is so critical to have people who believe in the purpose of what you are trying to build. People with good faith and unshakable faith, personal faith and unshakable faith in the purpose of the company and most importantly you mentioned something which is the story telling. People, leaders who can absolutely communicate with clarity and certainty. It becomes the most important thing to lead an organization. I mean, you are a small business owner. You know we are in a small company with around 500 people. There is nothing like sitting at home waiting to see how the company is doing over email if you're a friend line engineer or a seller. Communication becomes so critical, so having the trust and the respect of organization and have the ability to clearly and transparently communicate is the most important thing for the company and over communicating due to the time of crisis. These things are so useful even after this crisis is over. Obviously from a technology point of view, you know people have been speaking a lot about working remotely and technology changes, security, those things will happen but I think if these three things were to happen in that order. Be a better person, be a better family member and be a better leader, I think the world will be better off and the last thing I'll also tell you, that you know in Silicon Valley sometimes we have this disregard for arts and literature and fight over science. I hope that goes away, because I can't imagine living without books, without movies, without Netflix and everything. Art makes yourself creative and enriches our lives. You know, sports is no longer there on TV and the fact that people are able to immerse their imagination in books and fiction and watch TV. That also reminds you how important it is to have a good balance between arts and science in this world, so I have a long list of things that I hope we as a people and as a society will get better. >> Yeah, a lot more game playing in our household and it's good to reconnect in that regard. Well Sudheesh, you've always been a very clear thinker and you're in a great spot and an awesome leader. Thanks so much for coming on theCUBE. It was really great to see you again. All the best to you, your family and the broader community in your area. >> Dave, you've been very kind with this. Thank you so much, I wish you the same and hopefully we'll get to see face-to-face in the near future. Thanks a lot. >> I hope so, thank you. All right and thank you for watching everybody. This is Dave Vellante for theCUBE and we'll see you next time. (upbeat music)
SUMMARY :
connecting with thought leaders all around the world, and I'm really pleased to have Sudheesh Nair, I hope everything is well with you and your family. so you know we power on together, so I got to ask you. and it became sort of clear to us immediately and he's sort of joked about the Sequoia memos, and I saw the Frank interview and I a 100% agree with that. and after 2009 the FinTech guys or the financial, I sort of believe that the last three to four years You know the Gartner Magic Quadrant and to your point, and that is the number one BI tool ever. and so, because as you say it's no longer gut feel, and all of that comes down to your point One of the things you're not is a data store, right? and the Snowflake is climbing up there and it shows and then the next thing you want to know but boy the market is changing so fast. and make sure that we are more focused You know, some companies mandated the beehive approach. and have the ability to clearly and the broader community in your area. in the near future. and we'll see you next time.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Jeff Noto | PERSON | 0.99+ |
Dave | PERSON | 0.99+ |
Frank Slootman | PERSON | 0.99+ |
Dave Vellante | PERSON | 0.99+ |
Asia | LOCATION | 0.99+ |
Amazon | ORGANIZATION | 0.99+ |
Napa Valley | LOCATION | 0.99+ |
India | LOCATION | 0.99+ |
Japan | LOCATION | 0.99+ |
Verizon | ORGANIZATION | 0.99+ |
Sudheesh | PERSON | 0.99+ |
Sudheesh Nair | PERSON | 0.99+ |
Microsoft | ORGANIZATION | 0.99+ |
New York | LOCATION | 0.99+ |
ORGANIZATION | 0.99+ | |
20 | QUANTITY | 0.99+ |
five | QUANTITY | 0.99+ |
Silicon Valley | LOCATION | 0.99+ |
Palo Alto | LOCATION | 0.99+ |
Sophie | PERSON | 0.99+ |
20% | QUANTITY | 0.99+ |
Excel | TITLE | 0.99+ |
Boston | LOCATION | 0.99+ |
two | QUANTITY | 0.99+ |
Germany | LOCATION | 0.99+ |
April 2020 | DATE | 0.99+ |
Costco | ORGANIZATION | 0.99+ |
Stew | PERSON | 0.99+ |
Bangladesh | LOCATION | 0.99+ |
Ecuador | LOCATION | 0.99+ |
100% | QUANTITY | 0.99+ |
US | LOCATION | 0.99+ |
Python | TITLE | 0.99+ |
30 years | QUANTITY | 0.99+ |
ThougthSpot | ORGANIZATION | 0.99+ |
early February | DATE | 0.99+ |
three days | QUANTITY | 0.99+ |
five weeks | QUANTITY | 0.99+ |
M&A | ORGANIZATION | 0.99+ |
one | QUANTITY | 0.99+ |
20 year | QUANTITY | 0.99+ |
second thing | QUANTITY | 0.99+ |
1% | QUANTITY | 0.99+ |
One | QUANTITY | 0.99+ |
more than $26 million | QUANTITY | 0.99+ |
ThoughtSpot | ORGANIZATION | 0.99+ |
SQL | TITLE | 0.99+ |
Singapore | LOCATION | 0.99+ |
COVID-19 | OTHER | 0.99+ |
three | QUANTITY | 0.99+ |
2009 | DATE | 0.99+ |
last year | DATE | 0.99+ |
six days | QUANTITY | 0.99+ |
Second | QUANTITY | 0.99+ |
Tableau | TITLE | 0.99+ |
Brian McCarthy | PERSON | 0.99+ |
third | QUANTITY | 0.99+ |
first | QUANTITY | 0.99+ |
Power BI | TITLE | 0.99+ |
This week | DATE | 0.99+ |
Frank | PERSON | 0.99+ |
over half a billion | QUANTITY | 0.99+ |
one shot | QUANTITY | 0.99+ |
Ajeet | ORGANIZATION | 0.99+ |
China | LOCATION | 0.98+ |
second | QUANTITY | 0.98+ |
around 500 people | QUANTITY | 0.98+ |
10 years ago | DATE | 0.98+ |
Nancy Gohring, 451 Research | Sumo Logic Illuminate 2019
>> from Burlingame, California It's the Cube covering Suma logic Illuminate 2019. Brought to You by Sumer Logic. >> Hey, welcome back, everybody. Jeffrey here with the Cube worth, assume a logic illuminate 2019 of it. It's at the Hyatt Regency San Francisco airport. About 809 100 people are second year. It's a 30 year of the event, excited to be here and watch it grow. We've seen a bunch of these things grow from little to bigger over a number of years, and it's always funded kind of beer for the zenith. We're excited to do it by our next guest. She's an analyst. It's Nancy Goering, senior analyst for 4 51 research. Nancy, great to see you. >> Thank you for having me. >> Absolutely so first off, Just kind of impressions of the event here. >> Yeah, good stuff. You know, like he's definitely trying to, you know, get on top of some of the big trends. You know, The big news here was their new Cooper nineties monitoring, also obviously kind of staying on the the leading edge of the cloud. Native Technologies. >> It's it's amazing how fast it's growing, you know, doing some research for this. Then I found some of your stuff out on the Internet and just one quote. I think it's from years ago, but just for people to kind of understand the scale, I think, he said, Google was launching four billion containers a week. Twitter had 12,000. Service is uber 4000. Micro service is Yelp and Justin 25 million data points per minute. I think this is like a two or three year old presentation. I mean, the scale in which the data is moving is astronomical. >> Yeah, well, I mean, if you think of Google launching four billion containers every week, they're collecting a number of different data points about a container spinning up about the operation of that container while it's alive about the container spinning down. So it's not even just four billion pieces of data. It's, you know, multiply that by 10 20 or many more. So, yeah, So the volume of operations dated that people are faced with is just, you know, out of this world, and some of that is beginning to get abstracted away, terms of what you need to look at. So, you know, Kubernetes is an orchestration engine so that's helping move things around. You still need to collect that data to inform automation tools, right? So even if you was, even if humans aren't really looking at it, it's being used to drive automation, right? It still has to be collected, >> right, And they're still configurations and settings and and dials. And it seems like a lot of the breaches that we hear about today are people just miss configuring something on us. It's human error. And so how do we kind of square the circle? Because the date is only growing. The quantity sources, the complexity, Yeah, the lack of structure. And that's before we had a I ot And now we got edge devices and they're all reporting in from from home. Yeah, crazy problem. It's >> really, I think, driving a lot of the investments in the focus and more sophisticated analytics, right? So that's why you're hearing a lot more about machine learning. And a I in this space is because humans can't just look at that huge volume >> of data and >> figure out what it means. So the development of machine learning tools, for instance, is gonna pull out a piece of data that's important. Here is the anomaly. This is the thing you should be paying attention to. Andi, obviously getting increasingly sophisticated, right? In terms of correlating data from different parts of your infrastructure in order to yet make sense of it, >> right? And then, Oh, by the way, they're all made up of micro service is a literal interconnected in AP eyes. The third party providers. Yeah. I mean, the complexity is ridicu >> and then, you know, and I've been actually thinking and talking a lot recently about organizational issues within companies that exacerbate some of these challenges. So you mentioned Micro Service is so ah, lot of times, you know, you've got Dev ops groups and an individual Dev Ops group is responsible for a or multiple. Micro service is right. They're all running, sort of autonomous. They're doing their own thing, right? So they could move quickly. But is there anybody overseeing the application that's made up of maybe 1000 Micro Service's? And in some cases, the answer is no. And so it may look like all the Micro Service's are operating well, but the user experience actually is not good, and no one really notices until the user starts complaining. So it's like things start. You know, you have to think about organizational things. Who's responsible for that, right? You know, if you're on a Dev ops team and your job has been to support the certain service's and not the whole, like who's responsible for the whole application and that's it's a challenge, it's something. Actually, in our surveys, we're hearing from people that they're looking for people that skill set, someone who understands how to look at Micro Service's as they work together to deliver a service, right? It's it's a It's a pain point. Shouldn't >> the project the product manager for that application would hopefully have some instances abilities to kind of what they're trying to optimize for? >> In some cases, they're not technical enough, right? A product manager doesn't necessarily have the depth to know that, or they're not used to using the types of tools that the Dev Ops team or the operations team would use to track the performance of an application. So sometimes it's just a matter of having the right tooling in front of them, >> and then even the performance I was like What do you optimizing four you optimized for security up the mind thing for speed are optimizing for yeah, you can optimize for everything if you got a stack rank order at some point in time. So that would also then drive in a different prioritization or the way that you look at those doctorsservices performance. Yeah, interesting. It's another big topic that comes up often is the vision of a single pane of glass in You know, I can't help but think is in my work day. You know how often I'm tabbing between, you know, sales force and email and slack and asana and, um, a couple of browsers air open. I mean, it's it's it's bananas, you know, it's no longer just that that email is the only thing that's open on my desk all day and only imagine the Dev Ops world. No, we saw just crazy complexity around again, managing all the micro service's of the AP eyes. So what's kind of the story? What are you seeing in kind of the development of that? And there's so many vendors now, and so many service is yeah, it's not just we're just gonna put in HB open view, and that's the standard, and that's what we're all right on. >> So if you're looking at it from the lens of of monitoring or observe ability or performance. Traditionally, you had different tools that looked at, say, different layers of a service, so you had a tool that was looking at infrastructure. Was your infrastructure monitoring tool. You had an application performance monitoring tool. You might have a network performance monitoring tool. You might have point tools that are looking just at the data base layer. But as things get more complicated, Azadliq ations are getting much more complex. Looking at that data in a silo tool tends to obscure the bigger picture. You don't understand when you're looking at the's separate tools how some piece of infrastructure might be impacting the application, for instance. And so the idea is to bring all of that operations data about the performance of an application in tow. One spot where you can run again, these more sophisticated analytics so that you can understand the relationship between the different layers of the application stack also horizontally, right? So how micro service's that are dependent on each other? How one micro service might be impacting the performance of another. So that's conceptually the idea behind having a single pane of glass. Now the execution can happen in a bunch of different ways, so you can have one vendor. There are vendors that are growing horizontally, so they're collecting data across the stack. And there's other vendors that are positioning themselves as that sort of central data repositories, so they may not directly collect all of that data. But they might in just some data that another monitoring vendor has collected. So there's an end. You know, there's there's always going to be good arguments for best of breed tools, right? So, you know, in most cases, businesses are not going to settle on just one monitoring tool that does it all. But that's conceptually the reason, right, and you want to bring all of this data together. However you get it, however, it's being collected so that you can analyze it and understand that big picture performance of a complicated application, >> right? But then, even then, as you said, you don't even want, you're not really monitoring the application performance per se. You're just waiting for the you're waiting for some of those needles to fall out of the haystack because you just you just can't get that much stuff. And you know, it's where do you focus your priority? You know what's most critical? What needs attention now. And if without a machine to help kind of point you in the right direction, you're gonna have a hard time finding that needle. >> And there's a lot of different approaches that are beginning to develop. So one is this idea of SL owes or service level objectives. And so, for instance, a really common service level objective that teams are looking at is Leighton. See, So this Leighton see of the service should never drop under whatever ah 100 milliseconds. And and if it does, I want to be alerted. And also if it drops below that objective for a certain amount of time, that can actually help you as a team. Allocate, resource is so if you're not living up to that service level objective, maybe you should shift some people's time toe working on improving the application instead of developing a new feature, right? So it can really help you prioritize your time because you know what? There was a time when people in operations teams or Dev. Ops teams had a really hard time, and they still d'oh figuring out which problems are important because you've always people always have a lot of performance problems going on. So which do you focus your time on? And it's been pretty opaque. It's hard to see. Is this performance impacting the bottom line of my business? Is this impacting? You know, my customers? Are we losing business over this? Like that's That's a really common question that people I can't answer, right? So there you people are beginning to develop these approaches to try to figure out how to prioritize work on performance problems. It's >> interesting because the other one that and some of you mentioned before is kind of this post incident review instead of a post boredom. And, you know, you talked about culture and words matter, and I think that's a really interesting take because it's it's it implies we're gonna learn, and we're gonna go forward. It's dead. Um, yeah, you know, we're gonna yell at each other and someone's gonna get blamed. That's exactly it. And we're going to move on. So, you know, how is that kind of evolved in. And how does that really help organizations do a better job? >> There's, I mean, there's there's much more of a focus on setting aside time to do that kind of analysis, right? So look at how we're performing as a team. Look at how we responded to an incident so that you can find ways that you can do better next time and some of that Israel tactical right? It's tweaking alerts. Did we not get an alert? You know, did we not even know this problem was happening? So maybe you build new alerts or sport get rid of a bunch of alerts that did nothing. You know, there's there's a lot you can learn on again to To your point, I think part of the reason people have started calling in a post Incident review instead of a postmortem is because yet you don't want that to be a session where people are feeling like Blaine. You know, this is my fault. I screwed up. I spent way too long on this, so I >> had to >> set things out properly. It's it's meant to be productive. Let's find the weak points and fill them right. Fill those gaps. >> It's funny you had another. There's another thing I found where you were talking about not not necessarily the Post Borden, but you know, people, people being much more proactive, much more, you know, thoughtful as to how they are going to take care of these things. And it is really more of a social cultural change unnecessarily. The technical piece that culture pieces. So so >> it is and especially, you know, right now there's a lot of focus on on tooling and that can cause some, you know, interesting issues. So, you know, especially in an organization that has really adopted Dev ops practices like the idea of a Dev Ops team is that it's very autonomous. They do what they do, what they need to do right to move fast and to get the job done. And that often includes choosing your own tools, but that that has created a number of problems, especially in monitoring. So if you have 100 Dev ops teams and they all have chosen their own, monitoring tools like this is not efficient, so it's not. It's not a good idea because those tools aren't talking to each other, even though they're micro service's that are dependent on each other. It's inefficient. From a business perspective. You've got all these relationships with vendors, and in some cases, with a single vendor, you might have 50 instances of the same monitoring tool that you know you have 50 accounts with them, like that's just totally inefficient. And then you've got people on a Dev ops, an individual, all the all the individual Dev ops teams have a person who's supposed to be the resident expert in these tools, like maybe you should share that knowledge across. But my point is, you get into the situation where you have hundreds of monitoring tools, sometimes 40 50 monitoring tools. You realize that's a problem. How do you address that problem? Because you're gonna have to go out and tell people you can't use this tool that you love. That helps you do your job that you chose. And so again, this whole cultural question comes out like, How do you manage that transition in a way that's gonna be productive? >> Thea other one that you brought up that was interesting is where the the sport team basically tells the business team you only have X number of incidents. We're gonna give you a budget. Yeah, exceed the budget. We're not going to help you. It's a really different way to think about prioritization. I >> don't necessarily think that's a great approach, but I mean, there was somebody who did that, but I think it's kind of it's kind of >> an interesting thing. And you talked about it in that. I think it was one of your presentations or speeches where, you know, it makes you kind of rethink. You know, why do we have so many incidents? Yeah, and there shouldn't be that many incidents, and maybe some of the responsibility should be shifted to think about why in the how and is more of a systemic problem than a feature problem or a bug, right? It's a broken code. So again, I think there's so many kind of cultural opportunities to rethink this. In a world of continuous development, continuous publishing and continuous pushing out of new code. Yeah, yeah, sure. All right. Nancy will. Thanks for taking a few minutes, and it's really great to talk to you. Thanks >> for having me. >> Alright. She's Nancy. I'm Jeff. You're watching the Cube where it's Uma Logic illuminate 2019. Thanks for watching. We'll see next time
SUMMARY :
from Burlingame, California It's the Cube covering It's at the Hyatt Regency San Francisco airport. You know, like he's definitely trying to, you know, get on top of some of the big trends. It's it's amazing how fast it's growing, you know, doing some research for this. So even if you was, even if humans aren't really looking at it, And it seems like a lot of the breaches that we hear about today are people just miss configuring And a I in this space is because humans This is the thing you should be paying attention to. I mean, the complexity is ridicu So you mentioned Micro Service is so ah, lot of times, you know, you've got Dev ops groups and an individual So sometimes it's just a matter of having the right tooling in front of them, or the way that you look at those doctorsservices performance. And so the idea is to bring all of that operations And you know, it's where do you focus your priority? So it can really help you prioritize your time because you know what? interesting because the other one that and some of you mentioned before is kind of this post incident review instead You know, there's there's a lot you can learn on again to To your point, It's it's meant to be productive. not necessarily the Post Borden, but you know, people, people being much more proactive, and that can cause some, you know, interesting issues. tells the business team you only have X number of incidents. you know, it makes you kind of rethink. Thanks for watching.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Nancy Goering | PERSON | 0.99+ |
Nancy | PERSON | 0.99+ |
Nancy Gohring | PERSON | 0.99+ |
Jeff | PERSON | 0.99+ |
ORGANIZATION | 0.99+ | |
two | QUANTITY | 0.99+ |
50 accounts | QUANTITY | 0.99+ |
Leighton | ORGANIZATION | 0.99+ |
30 year | QUANTITY | 0.99+ |
12,000 | QUANTITY | 0.99+ |
Jeffrey | PERSON | 0.99+ |
50 instances | QUANTITY | 0.99+ |
three year | QUANTITY | 0.99+ |
four billion pieces | QUANTITY | 0.99+ |
one quote | QUANTITY | 0.99+ |
Burlingame, California | LOCATION | 0.99+ |
today | DATE | 0.99+ |
2019 | DATE | 0.99+ |
Yelp | ORGANIZATION | 0.99+ |
ORGANIZATION | 0.98+ | |
Justin | PERSON | 0.98+ |
40 50 monitoring tools | QUANTITY | 0.98+ |
Uma Logic illuminate | TITLE | 0.98+ |
second year | QUANTITY | 0.97+ |
one | QUANTITY | 0.97+ |
100 milliseconds | QUANTITY | 0.97+ |
About 809 100 people | QUANTITY | 0.96+ |
1000 Micro Service | QUANTITY | 0.96+ |
100 Dev ops | QUANTITY | 0.96+ |
hundreds of monitoring tools | QUANTITY | 0.95+ |
one vendor | QUANTITY | 0.95+ |
four billion containers | QUANTITY | 0.95+ |
Blaine | PERSON | 0.94+ |
Cooper nineties | ORGANIZATION | 0.94+ |
One spot | QUANTITY | 0.94+ |
first | QUANTITY | 0.93+ |
Dev Ops | ORGANIZATION | 0.93+ |
Cube | TITLE | 0.92+ |
SL | ORGANIZATION | 0.92+ |
single pane | QUANTITY | 0.91+ |
single vendor | QUANTITY | 0.9+ |
four billion containers a week | QUANTITY | 0.9+ |
single pane of | QUANTITY | 0.88+ |
Hyatt Regency | LOCATION | 0.83+ |
one monitoring tool | QUANTITY | 0.82+ |
years ago | DATE | 0.81+ |
10 20 | QUANTITY | 0.81+ |
Andi | PERSON | 0.79+ |
25 million data points per | QUANTITY | 0.79+ |
4 | QUANTITY | 0.78+ |
Israel | LOCATION | 0.77+ |
Native Technologies | ORGANIZATION | 0.75+ |
research | QUANTITY | 0.73+ |
San Francisco airport | LOCATION | 0.68+ |
4000 | QUANTITY | 0.64+ |
Sumo Logic Illuminate | TITLE | 0.63+ |
Kubernetes | TITLE | 0.61+ |
Sumer Logic | ORGANIZATION | 0.58+ |
every | QUANTITY | 0.56+ |
51 | OTHER | 0.54+ |
uber | QUANTITY | 0.53+ |
vendors | QUANTITY | 0.52+ |
service | QUANTITY | 0.51+ |
Ops | TITLE | 0.5+ |
number of | QUANTITY | 0.5+ |
Borden | ORGANIZATION | 0.48+ |
Suma logic | TITLE | 0.45+ |
asana | ORGANIZATION | 0.43+ |
Illuminate 2019 | EVENT | 0.4+ |
451 Research | ORGANIZATION | 0.37+ |
Nancy Gohring, 451 Research | Sumo Logic Illuminate 2019
>> Narrator: From Burlingame, California, it's theCUBE, covering Sumo Logic Illuminate 2019! Brought to you by Sumo Logic. >> Hey, welcome back everybody. Jeff Frick here with theCUBE. We're at the Sumo Logic Illuminate 2019 event. It's at the Hyatt Regency San Francisco Airport, about eight hundred, nine hundred people, our second year. It's the third year of the event. Excited to be here and watch it grow. We've seen a bunch of these things grow from little to big over a number of years and it's always fun to kind of be here for the zenith. We're excited to be joined by our next guest, she's an analyst. It's Nancy Gohring, Senior Analyst for 451 Research. Nancy, great to see you. >> Thank you, thanks for having me. >> Absolutely. So first off, just kind of impressions of the event here. >> Yeah, good stuff, you know? Definitely trying to, you know, get on top of some of the big trends, you know, the big news here was their new Kubernetes monitoring tool. So obviously kind of staying on the leading edge of the cloud-native technologies. >> It's amazing how fast it's growing, you know. Doing some research for this event, I found some of your stuff out on the internet, and just one quote, I think it's from years ago, but just for people to kind of understand the scale, I think you said Google was launching four billion containers a week, Twitter had twelve thousand services, Uber four thousand microservices, Yelp ingesting twenty-five million data points per minute, and I think this is a two or three year old presentation, I mean, the scale in which the data is moving is astronomical. >> Yeah, well if you think of Google launching four billion containers every week, they're collecting a number of different data points about a container spinning up, about the operation of that container while it's alive, about the container spinning down. So it's not even just four billion pieces of data, it's, you know, multiply that by ten or twenty or many more. So yeah, so the volume of operations data that people are faced with, is just, you know out of this world. And some of that is beginning to get abstracted away in terms of what you need to look at so you know Kubernetes is an orchestration engine so that's helping move thing around. You still need to collect that data to inform automation tools, right, so even humans aren't really looking at it, it's being used to drive automation. >> Right. >> It still has to be collected. >> Right. And there's still configurations and settings and dials and it seems like a lot of the breaches that we hear about today are just people misconfiguring something on AWS >> Yeah, it's human error. >> It's human error. And so how do we kind of square the circle cause the data's only growing the quantity, the sources, the complexity, the lack of structure and that's before we add IOT and now we have edge devices and they're all reporting in from home. >> Yeah >> Crazy problems. >> It's really, I think, driving a lot of the investments and the focus in more sophisticated analytics, right, so that's why you're hearing a lot more about machine learning and AI in this space. It's because humans can't just look at that huge volume of data and figure out what it means. So, the development of machine learning tools, for instance, is going to pull out a piece of data that's important. Like, here's the anomaly, this is the thing you should be paying attention to. And then obviously getting increasingly sophisticated, right, in terms of correlating data from different parts of your infrastructure in order to make sense of it. >> Right. And then, oh, by the way, they're all made up of microservices that are all interconnected and API is the third party providers >> Yeah. >> I mean the complexity is ridiculous. >> Yeah, and then, you know, and I've been actually thinking and talking a lot recently about organizational issues within companies that exacerbates some of these challenges. So you mentioned microservices. So, a lot of times, you know, you've got DevOps groups and an individual DevOps group is responsible for a, or multiple, microservices, right. They're all running sort of autonomous. They're doing their own thing, right, so that they can move quickly. But is there anybody overseeing the application that's made up of maybe a thousand microservices? And in some cases the answer is "no". And so it may look like all the microservices are operating well, but the user experience actually is not good. And no one really notices until the user starts complaining. So, it's like things start, you know you have to think about organizational things. Who's responsible for that, right? If you're on a DevOps team and your job as been to support these certain services and not the whole, like, who's responsible for the whole application? >> Right. >> And that's, it's a challenge. It's something, actually, in our surveys, we're hearing from people that they're looking for people, that skill set, someone who understands how to look at microservices as they work together to deliver a service, right, it's a pain point. >> Shouldn't the project, or the product manager for that application would hopefully have some visibilities to kind of what they're trying to optimize for. >> In some cases they're not technical enough, right, a product manager doesn't necessarily have the depth to know that. Or they're not used to using tools that the DevOps team or the operations team would use to track the performance of an application. >> Right. >> So sometimes it's just a matter of having the right tooling in front of them >> And then even the performance. It's like, what are you optimizing for? Are you optimizing for security? Are you optimizing for speed? Are you optimizing for... >> Experience... >> You can't optimize for everything. You've got to stack rank order at some point in time, so that would also then drive in a different prioritization or the way that you look at those microservices' performance. >> Yeah, yeah. >> Interesting. So another big topic that comes up often is the vision of a single pane of glass. And, you know, I can't help but think as in my work day how often I'm tabbing between you know, sales force, and email, and slack, and Asana, and a couple of browsers are open. I mean, it's bananas, you know. It's no longer just that email is the only thing that's open on my desk all day. >> Yeah. >> And then you can only imagine the DevOps world that we saw just crazy complexity around, again, managing all the microservices, the APIs, so what kinds of, sort of, what are you seeing in kind of the development of that? And there's so many vendors now, and so many services. >> Yeah. >> It's not just, we're just going to put in HP open view and that's the standard and that's what we're all on. >> So if you're looking at it from the lens of monitoring or observability or performance, traditionally you had different tools that looked at, say, different layers of a service. So you had a tool that was looking at infrastructure - it was your infrastructure monitoring tool. You had an application performance monitoring tool. You might have a network performance monitoring tool. You might have point tools that are looking just at the data base layer. But as things get more complicated, as applications are getting much more complex, looking at that data in a silo tool tends to obscure the bigger picture. You don't understand when you're looking at the separate tools how some piece of infrastructure might be impacting the application, for instance. And so, the idea is to bring all of that operations data about the performance of an application into one spot where you can run, again, these more sophisticated analytics so that you can understand the relationship between the different layers of the application stack, also horizontally, right, so, how microservices that are dependent on eachother how one microservice might be impacting the performance of another, so that's conceptually the idea behind having a single pane of glass. Now the execution can happen in a bunch of different ways. So you can have one vendor, there are vendors that are growing horizontally, so they're collecting data across the stack. There's other vendors that are positioning themselves as that sort of central data repository. So they may not directly collect all of that data, but they might ingest some data that another monitoring vendor has collected. So, there's, and, you know, there's always going to be good arguments for best of breed tools right, so, you know, in most cases, businesses are not going to settle on just one monitoring tool that does it all. But that's conceptually the reason, right, is you want to bring all of this data together however you get it, however it's being collected, so that you can analyze it and understand that "big picture" performance of a complicated application. >> Right. But then, even then, as you said, you don't even want to, you're not really monitoring the application performance per se, you're just waiting for the, you're waiting for some of those needles to fall out of the haystack, cause you just, you just can. There's so much stuff. And you know, it's where do you focus your priority. You know, what's most critical, what needs attention now. >> (Nancy) Yeah. >> And if, without a machine to help kind of, point you in the right direction, you're going to have a hard time finding that needle. >> Yeah, and there's a lot of different approaches that are beginning to develop. And one is this idea of SLO's, or Service Level Objectives. And so, for instance a really common Service Level Objective that teams are looking at is latency. So, the latency of the service should never drop under whatever- a hundred milliseconds, and if it does, I want to be alerted. And also, if it drops below that objective for a certain amount of time that can actually help you as a team allocate resources. So, if you're not living up to that Service Level Objective, maybe you should shift some people's time to working on improving the application instead of developing a new feature. Right? >> (Jeff) Right. >> So it can really help you prioritize your time because you know what? There was a time, people in operations teams, or DevOps teams, had a really hard time, and they still do, figuring out which problems are important. 'Cause you've always, people always have a lot of performance problems going on. So which do you focus your time on? And it's been pretty opaque. It's hard to see, is this performance impacting the bottom line in my business? Is this impacting, you know, my customers? Are we losing business over this? Like, that's, that's a really common question that people can't answer. >> Right. >> So, yeah, people are beginning to develop these approaches to try to figure out how to prioritize work on performance problems. >> It's interesting 'cause the other one that you've mentioned before, kind of this post incident review instead of a post mortem and you know, you talked about culture, and "words matter" >> (Nancy) Yeah. >> And I think that's a really interesting take because it's, it implies, we're going to learn, and we're going to go forward as opposed to "it's dead". >> (Linda) Yeah. >> And, you know, we're going to yell at eachother, and someone's going to get blamed... >> (Linda) That's exactly it... >> And we're going to move on. So, you know, how has that kind of evolved and how does that really help organizations do a better job? >> There's, I mean, there's much more of a focus on setting aside time to do that kind of analysis, right? So look at how we're performing as a team. Look at how we responded to an incident so that you can find ways that you can do better next time. And some of that is real tactical, right, it's tweaking alerts. Did we not get an alert? You know, did we not even know this problem was happening? So maybe you build new alerts or get rid of a bunch of alerts that did nothing. You know, there's a lot you can learn and again, to your point, I think part of the reason people have started calling it a post incident review instead of a post mortem is because, yeah, you don't want that to be as session where people are feeling like blame, you know, this is my fault, I screwed up, I spent way too long on this, or I hadn't set things up properly. It's meant to be productive. >> Right. >> Let's find the weak points and fill them. Right? Fill those gaps. >> It's funny you had another, there was another thing I found, you were talking about not, not necessarily the post mortem but, you know, people being much more pro-active, much more, you know, thoughtful as to how they are going to take care of these things. And it is really more of a social, cultural change than necessarily the technical piece. That culture piece is so, so important. >> It is, and especially, you know, right now there's a lot of focus on tooling and that can cause some, you know, interesting issues. So you know, especially in an organization that has really adopted DevOps practices like, the idea of a DevOps team is that it's very autonomous. They do what they need to do, right, to move fast and to get the job done and that often includes choosing your own tools. But that has created a number of problems especially in monitoring. So if you have a hundred DevOps teams and they all have chosen their own monitoring tools, like, this is not efficient. So it's not a good idea because those tools aren't talking to each other, even though they're microservices that are dependent on each other. It's inefficient from a business perspective. You've got all these relationships with vendors and in some cases with a single vendor. You might have fifty instances of the same monitoring tool that, you know, you have fifty accounts with them. Like that's just totally inefficient. And then you've got people on a DevOps and individual, all the individual DevOps teams have a person who's supposed to be the resident expert in these tools, like, maybe you should share that knowledge across... But my point is you get into this situation where you have hundreds of monitoring tools. Sometimes forty, fifty monitoring tools. You realize that's a problem. How do you address that problem? 'Cause you're going to have to go out and tell people you can't use this tool that you love, that helps you do your job, that you chose. So again this whole cultural question comes up. Like, how do you manage that transition in a way that's going to be productive? >> The other one that you brought up that was interesting was where the support team basically tells the business team you only have X-number of incidents, we're going to give you a budget. (laughs) >> Yeah. >> If you exceed the budget we're not going to help you. It's a really different way to think about prioritization... >> Yeah, I don't necessarily think that's a great approach. I mean there was somebody who did that but like... >> But I think its kind of, it's kind of an interesting thing. And you talked about it in that I think it was one of your presentations or speeches where, you know, it makes you kind of re-think, you know, why do we have so many incidents? >> Yeah. >> And there shouldn't be that many incidents. And maybe some of the responsibility should be shifted to think about why, and the how, and is it more of a systemic problem than a feature problem, or a bug, or... >> Right >> A piece of broken code, so again I think there's so many, kind of, cultural opportunities to re-think this, in this world of continuous development, continuous publishing, continuous pushing out of new code. >> Yeah, yeah. For sure. (laughs) >> Alright Nancy, well thanks for taking a few minutes and it was really great to talk to you. >> Thanks for having me. >> Alright, she's Nancy, I'm Jeff. You're watching theCUBE, where it's Sumo Logic Illuminate 2019. Thanks for watching We'll see you next time (electonic music)
SUMMARY :
Brought to you by Sumo Logic. and it's always fun to kind of just kind of impressions of the event here. So obviously kind of staying on the leading edge I think you said And some of that is beginning to get abstracted and it seems like a lot of the breaches the lack of structure and the focus in more sophisticated and API is the third party providers and then, you know, that they're looking or the product manager or the operations team what are you optimizing for? or the way that you look at And, you know, And then you can only imagine and that's the standard so that you can understand the And you know, point you in the right direction, that can actually help you as a team So it can really help you prioritize these approaches to try to and we're going to go forward you know, you know, to an incident so that you can find Let's find the weak points much more, you know, that helps you do your job, The other one that you brought up If you exceed the budget we're not I mean there was somebody who did that And you talked about it in that And maybe some of the responsibility to re-think this, Yeah, yeah. and it was really great to talk to you. We'll see you next time
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Nancy Gohring | PERSON | 0.99+ |
Nancy | PERSON | 0.99+ |
Jeff Frick | PERSON | 0.99+ |
Jeff | PERSON | 0.99+ |
two | QUANTITY | 0.99+ |
Linda | PERSON | 0.99+ |
ORGANIZATION | 0.99+ | |
twelve thousand services | QUANTITY | 0.99+ |
ten | QUANTITY | 0.99+ |
fifty accounts | QUANTITY | 0.99+ |
AWS | ORGANIZATION | 0.99+ |
ORGANIZATION | 0.99+ | |
fifty instances | QUANTITY | 0.99+ |
Burlingame, California | LOCATION | 0.99+ |
Uber | ORGANIZATION | 0.99+ |
one quote | QUANTITY | 0.99+ |
Sumo Logic | ORGANIZATION | 0.99+ |
twenty | QUANTITY | 0.99+ |
second year | QUANTITY | 0.99+ |
Yelp | ORGANIZATION | 0.99+ |
third year | QUANTITY | 0.98+ |
four thousand microservices | QUANTITY | 0.98+ |
HP | ORGANIZATION | 0.98+ |
one | QUANTITY | 0.98+ |
today | DATE | 0.98+ |
Sumo Logic Illuminate 2019 | EVENT | 0.98+ |
one vendor | QUANTITY | 0.98+ |
451 Research | ORGANIZATION | 0.97+ |
Sumo Logic Illuminate 2019 | TITLE | 0.97+ |
four billion containers | QUANTITY | 0.96+ |
about eight hundred | QUANTITY | 0.96+ |
first | QUANTITY | 0.93+ |
single pane | QUANTITY | 0.93+ |
four billion containers a week | QUANTITY | 0.92+ |
one spot | QUANTITY | 0.91+ |
fifty monitoring tools | QUANTITY | 0.9+ |
hundreds of monitoring tools | QUANTITY | 0.89+ |
four billion pieces of data | QUANTITY | 0.89+ |
DevOps | TITLE | 0.88+ |
DevOps | ORGANIZATION | 0.88+ |
Hyatt Regency San Francisco Airport | LOCATION | 0.87+ |
nine hundred people | QUANTITY | 0.87+ |
forty, | QUANTITY | 0.87+ |
years | DATE | 0.87+ |
single vendor | QUANTITY | 0.86+ |
twenty-five million data points per minute | QUANTITY | 0.85+ |
one monitoring tool | QUANTITY | 0.84+ |
Kubernetes | TITLE | 0.83+ |
three year old | QUANTITY | 0.82+ |
Asana | ORGANIZATION | 0.81+ |
slack | ORGANIZATION | 0.78+ |
hundred milliseconds | QUANTITY | 0.74+ |
theCUBE | ORGANIZATION | 0.73+ |
every week | QUANTITY | 0.64+ |
hundred | QUANTITY | 0.55+ |
thousand | QUANTITY | 0.54+ |
451 | OTHER | 0.53+ |
theCUBE | EVENT | 0.45+ |
Andy Fang, DoorDash | AWS Summit New York 2019
>> live from New York. It's the Q covering AWS Global Summit 2019 brought to you by Amazon Web service is >> Welcome back. I'm stupid like co host Cory Quinn. And we're here at the end of a summit in New York City, where I'm really happy to welcome to the program first time guests, but somebody that has a nap, it's on my phone. So, Andy thing, who's the CEO of Door Dash, gave a great presentation this morning. Thanks so much for joining us. >> Absolutely happy to be here, guys. >> All right, so, you know, before we dig into the kind of your Amazon stack, bring us back. You talked about 2013. You know, your mission of the company will help empower local businesses. I think most people know, you know, door dash delivery from my local businesses. Whether that is a small place or, you know, chipotle o r like there. And I love little anecdote that you said the founders actually did the first few 100 deliveries, but it gives a little bit of the breath of the scope of the business now. >> Absolutely. I mean, when we started in 2013 you know, we started out of Ah dorm on Stanford campus and, like you said, we're doing the first couple 100 deliveries ourselves. But, you know, fast forwarding to today you were obviously at a much, much different level of scale. And I think one thing that I mentioned about it, Mikey No, a cz just We've been trying to keep up pays and more than doubling as a business every year. And it's a really fascinating industry that were in in the on demand delivery space in particular, I mean, Dara, the CEO of uber himself, said in May, which is a month and 1/2 ago. He said that you know, the food delivery industry may become bigger than a ride hailing industry someday. >> So just just one quick question on kind of food delivery. Because when I think back when I was in college, I worked at a food truck. It was really well known on campus, and there are people that 20 years later they're like stew. I remember you serving me these sandwiches, and I loved it in the community and we gather and we talk today on campus. Nobody goes to that place anymore, you know, maybe I know my delivery person more than I know the person that's making it. So I'm just curious about the relationship between local businesses and the people. How that dynamic changing the gig? Economy? I mean, yeah, you guys were right in the thick of it. No, it's a >> great question. I think. You know, for merchants, a lot of the things that we talk to them about it is you're actually getting access to customers who wouldn't even walk by your store in the first place. And I think that's something that they find to be very captivating. And it shows in the store sales data when they start partnering with the door dash. But we've also tried to building our products to really get customers to interact with the physical neighborhoods. Aaron the most concrete example of that as we launch a product called In Store in Star Pickup Chronic, where you can order online, skip the line and pick up the order yourself in the store, and I think a way we can build the AB experience around that, you know, you're gonna actually start building kind of a geospatial. Browse experience for customers with the door dash app, which means that they can get a little bit more familiarity with what's around them, as opposed to just kind of looking at it on their phones themselves. All right, >> so the logistics of this, you know, are not trivial. You talked about 325% order growth. You know, your database is billions of rose. You know, just the massive scale massive transaction. Therefore, you know, as a you know, your nap on. You know the scale you're at technology is pretty critical to your environment. So burgers inside that a little? >> Yeah. I mean, we're fortunate enough, and you and I are talking before the show. I mean, we're kind of born on the cloud way started off, actually on Roku. Uh, back in 2013 we adopted eight of us back in 2015. And there's just so many different service is that Amazon Web services has been able to provide us and they've added more overtime. I think the one that I talked about, uh was one that actually came out only in early 2018 which is the Aurora Post product. Um, we've been able to sail our databases scale up our analytics infrastructure. We've also used AWS for things like, you know, really time data streaming. They have the cloudwatch product where it gives us a lot of insight into the kind of our servers are behaving. And so the eight of us ecosystem in of itself is kind of evolving, and we feel like we've grown with them and they're growing with us. So it's been a great synergy over the past couple of years >> as you take a look at where you started and where you've wound up. Can you use that to extrapolate a little bit further? As far as what shortcomings you seeing today? That, ideally, would be better met by a cloud provider or at this point is it's such a simpatico relationship is you just alluded to where you just see effectively your continued to grow in the same simple directions just out of, I guess, happenstance. Yeah, it is a >> good question. I think there are some shortcomings. For example, eight of us just recently launched and chaos, which is their in house coffin solution. We're looking for something that's kind of a lot more vetted, right? So we're considering Do we adopt eight of us version or do we try to do it in house, or do we go with 1/3 party vendor? That's >> confidence. Hard to say no to these days. >> Yeah, exactly. And I think, you know, we want to make sure that we are building our infrastructure in a way that way, feel confident in can scale. I mean, with Aurora Post Chris, it's done wonders for us, but we've also kind of been the Pi. One of the pioneers were eight of us for scaling that product, and I think we got kind of lucky in some ways they're in terms of how it's been ableto pan out. But we want to make sure the stakes are a lot higher for us now. And so you know, when we have issues, millions of people face issues, so we want to make sure that we're being more thoughtful about it. Eight of us certainly has matured a lot over the past couple of years, but we're keeping our options open and we want to do what's best for our customers. Eight of us more often than not has a solution, but sometimes we have the you consider other solutions and consider the back that AWS may or may not. So some of the future problems. >> Oh yeah, it's, I think, that it's easy to overlook. Sometimes with something like a food delivery service. It's easy to make jokes about it about what you're too lazy to cook something. And sure, when I was younger, absolutely then I had a child. And when she wasn't going to sleep when she was a baby, I only had one hand. How do I How do I feed myself? There's an accessibility story. People aren't able to easily leave the house, so it's not just people aren't able to get their wings at the right time. This starts becoming impacting for people. It's an important need. >> Yeah, and I think it's been awesome to see just how quickly it's been adopted. And I think another thing about food delivery that you know people don't necessarily remember about today is it was Premier Li, just the very dense urban area phenomenon, like obviously in Manhattan, where we are today who delivers existed forever. But the suburbs is where the vast, vast majority of the growth of the industry has been and you know It's just awesome to see how this case has flourished with all different kinds of people. >> I have to imagine there's a lot of analytics that are going on for some of these. You said. In the rural areas, the suburban areas you've got, it's not as dense. And how do you make sure you optimize for people that are doing so little? So what are some of the challenges you're facing their in house technology helping? >> Exactly? Yeah. I mean, with our kind of a business, it's really important for us again to the lowest level of detail, right? Just cause we're going through 100 25% year on year in 2019 maybe we're growing faster in certain parts of the United States and growing slower and others, and that's definitely the case. And so, uh, one of the awesome things that we've been able to leverage from our cloud infrastructure is just the ability to support riel, time data access and our business operators across Canada. In the United States, they're constantly trying to figure out how are we performing relative to the market in our particular locality, meaning not just, you know, the state of New York. But Manhattan, in which district in Manhattan. Um, all that matters with a business like ours. Where is this? A hyper local economy? And so I think the real time infrastructure, particularly with things like with Aurora the faster up because we're able to actually get a lot of Reed. It's too these red because because it's not affecting our right volume. So that's been really powerful. And it's allowed our business operators to just really run in Sprint. >> So, Andy, I have to imagine just data is one of the most important things of your business. How do you look at that as an asset is their, You know, new things. That new service is that you could be putting out there both for the merchants as well for the customers. Absolutely. I think one of >> the biggest ones we try to do is you know, we never give merchant direct access to the customer data because we want to protect the customer's information, but we do give them inside. That's how they can increase their sales and target customers. I haven't used them before, So one of the biggest programs we launched over the past few years is what we call Try me free so merchants can actually target customers who've never place an order from their store before and offer them a free delivery for their order from that store. So that's a great way for merchants acquire new customers. And it's simple concept for them to understand. And over time we definitely want to be able to personalize the ability to target the sort of promotions on. So we have a lot of data to do that on. We also have data in terms of what customers like what they don't like in terms of their order behavior in terms of how they're raiding the food, the restaurant. So that kind of dynamic is something that is pretty interesting Data set for us to have. You know, you look at a other local companies out there like Yelp, Google Maps. They don't actually have verified transaction information, whereas we d'oh. So I think it's really powerful. Merchants actually have that make decisions. >> It's a terrific customer experience. It almost seems to some extent to be aligned with the Amazons Professor customer obsession leadership principle to some extent, and the reason I bring that up is you mentioned you started on Hiroko and then in 2015 migrated off to AWS. Was it a difficult decision for you to decide first to eventually go all in on a single provider? And secondly, to pick AWS as that provider It wasn't >> a hard decision for us to go to. Ah, no cloud provider. That was, you know, ready to like showtime. It's a hero is more of a student project kind of scale at that time. I don't know what they're doing today. Um, but I think a doubt us at the time was still very, very dominant and that we're considering Azure and G C P. I think was kind of becoming a thing back then made of us. It was always the most mature, and they've done a great job of keeping their lead in this space. Uh, Google, an azure have cropped up. Obviously, Oracle clouds coming up Thio and were considered I mean, we consider the capabilities of something like Google Cloud their machine. Learning soft service is a really powerful. They actually have really sophisticated, probably more so than a W s kubernetes service is actually more sophisticated. I guess it's built in house at Google. That makes sense. But, you know, we've considered landscape out there, but AWS has served a lot of our knees up to this point. Um, and I think it's gonna be a very dynamic industry with the cloud space. And there's so much at stake for all these different companies. It's fascinating to just be a part of it and kind of leverage. It >> s o nd I'm guessing, you know, when you look at some of your peers out there and you know, when a company files in s one and every goes, Oh, my God, Look at their cloud, Bill. You know, how do you look at that balance? You send your keynote this morning. You know, you like less than a handful of engineers working on the data infrastructure. So you know that line Item of cloud you know, I'm guessing is nontrivial from your standpoint. So how do you look at that? Internally is how do you make sure you keep control and keep flexibility and your options Yet focus on your core business and you know not, you know, that the infrastructure piece >> of it that was such a great question, because it's something that way we think about that trade off a lot. Obviously. In the early days, what really mattered ultimately is Do we have product market bid? Do we have? Do we have something that people will care about? Right. So optimizing around costs obviously was not prudent earlier on. Now we're in a such a large scale, and obviously the bills very big, uh, that, you know, optimizing the cost is very real thing, um, and part of what keeps, you know, satisfied with staying on one provider is kind of a piece of set up. And what you already have figured there? Um and we don optimization is over the years wear folks on financing now who basically looking at Hey, where are areas were being extremely inefficient. Where are areas that we could do? Bookspan, this is not just on AWS with is on all our vendors. Obviously eight of us is one of our biggest. I'm not the biggest line item there. Um, and we just kind of take it from there, and there's always trade offs you have to make. But I know there's companies out there that are trying to sell the value proposition of being ableto optimize your cloud span, and that is definitely something that there's a lot of. I'm sure there's a lot of places to cut costs in that we don't know about. And so, yeah, I think that's something that way we're being mindful of. >> Yeah, it's a challenge to you See across the board is that there's a lot of things you can do programmatically with a blind assessment of the bill. But without business inside, it becomes increasingly challenging. And you spoke to it yourself. Where you're not going to succeed or fail is a business because the bill winds up getting too high. Unless you're doing something egregious, it's a question of growth. It's about ramping, and you're not gonna be able to cost optimize your way to your next milestone unless something is very strange with your business. So focusing on it in due course is almost always the right answer. >> Yeah, I mean, when I think about increasing revenue or deep recent costs nine times out of 10 we're trying to provide more value, right, so increasing revenues, usually they go to option for us, but they're sometimes where it's obvious. Hey, there's a low hanging fruit and cutting costs, and if it's relatively straightforward to do, then let's do it. I think with all the cloud infrastructure that we've been able to build on top of, we've been able to focus a lot of our energy and efforts on innovating, building new things, cementing our industry position. And, yeah, I think it's been awesome. On top >> of what? Want to give you the final word? Any addressing insights in your business? You know, it's like I like food and I like eating out and, you know, it feels like, you know, we've kind of flatten the world in lot is like, You know, I think it was like, uh, like, 556 years ago. The first time I went white and I got addressed to Pok. Everybody in California knows, okay, but I live on the East Coast now. I've got, like, three places within half an hour of me that I could get it. So you know those kind of things. What insight to you seeing you know what's changing in the marketplace? What? What's exciting you these >> days? Yeah, I mean, for us, we've definitely seen phenomenon where different food trans kind of percolate across different areas. I'm going to start in one region and then spread out across the entire United States or even Canada. I would say I don't way try to have as much emergence election on a platform. It's possible so that no matter what the new hot hottest trend is that more likely than not, we're gonna have what you want on the platform. And I think what's really exciting to us over the next couple years is you know, last year we actually started way started satisfying grocery delivery. So, uh, in fact, we power a lot of grocery deliveries for Walmart today, which is exciting, and a lot of other grocers lined up as well. We're gonna see how far we can take our logistics capabilities from that standpoint, But really, we want to want to have as many options as possible for our customers. >> Anything. Thanks so much for joining us. Congressional Congratulations on the progress with your death for Cory Quinn. I'm stupid and we'll be back here with more coverage from eight of US summit in New York City. 2019. Thanks is always watching. Cute
SUMMARY :
Global Summit 2019 brought to you by Amazon Web service is And we're here at the end of a summit in New York And I love little anecdote that you said the founders actually did the first few 100 deliveries, I mean, when we started in 2013 you know, we started out of Ah dorm on Nobody goes to that place anymore, you know, You know, for merchants, a lot of the things that we talk to them about it is so the logistics of this, you know, are not trivial. We've also used AWS for things like, you know, really time data streaming. provider or at this point is it's such a simpatico relationship is you just alluded to where you or do we try to do it in house, or do we go with 1/3 party vendor? Hard to say no to these days. And I think, you know, we want to make sure that we are building our It's easy to make jokes about it about what you're too lazy to cook something. Yeah, and I think it's been awesome to see just how quickly it's been adopted. And how do you make sure you optimize for people that are doing so little? meaning not just, you know, the state of New York. is that you could be putting out there both for the merchants as well for the customers. the biggest ones we try to do is you know, we never give merchant direct access to obsession leadership principle to some extent, and the reason I bring that up is you mentioned you started on Hiroko That was, you know, s o nd I'm guessing, you know, when you look at some of your peers out there and you know, And what you already have figured there? Yeah, it's a challenge to you See across the board is that there's a lot of things you can do programmatically I think with all the What insight to you seeing you know what's changing in the marketplace? And I think what's really exciting to us over the next couple years is you know, Congressional Congratulations on the progress with your death for
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Dara | PERSON | 0.99+ |
Walmart | ORGANIZATION | 0.99+ |
2015 | DATE | 0.99+ |
California | LOCATION | 0.99+ |
AWS | ORGANIZATION | 0.99+ |
2013 | DATE | 0.99+ |
Manhattan | LOCATION | 0.99+ |
New York | LOCATION | 0.99+ |
Canada | LOCATION | 0.99+ |
May | DATE | 0.99+ |
last year | DATE | 0.99+ |
Andy | PERSON | 0.99+ |
Cory Quinn | PERSON | 0.99+ |
New York City | LOCATION | 0.99+ |
uber | ORGANIZATION | 0.99+ |
Amazon | ORGANIZATION | 0.99+ |
Aaron | PERSON | 0.99+ |
United States | LOCATION | 0.99+ |
2019 | DATE | 0.99+ |
New York City | LOCATION | 0.99+ |
ORGANIZATION | 0.99+ | |
nine times | QUANTITY | 0.99+ |
eight | QUANTITY | 0.99+ |
today | DATE | 0.99+ |
early 2018 | DATE | 0.99+ |
556 years ago | DATE | 0.99+ |
Sprint | ORGANIZATION | 0.99+ |
One | QUANTITY | 0.99+ |
Oracle | ORGANIZATION | 0.99+ |
first | QUANTITY | 0.98+ |
one | QUANTITY | 0.98+ |
20 years later | DATE | 0.98+ |
three places | QUANTITY | 0.98+ |
both | QUANTITY | 0.98+ |
Yelp | ORGANIZATION | 0.98+ |
Andy Fang | PERSON | 0.98+ |
100 25% | QUANTITY | 0.98+ |
one region | QUANTITY | 0.98+ |
10 | QUANTITY | 0.98+ |
Star Pickup Chronic | TITLE | 0.97+ |
Amazons | ORGANIZATION | 0.97+ |
Bookspan | ORGANIZATION | 0.97+ |
a month and 1/2 ago | DATE | 0.96+ |
secondly | QUANTITY | 0.96+ |
chipotle | ORGANIZATION | 0.96+ |
one quick question | QUANTITY | 0.96+ |
one hand | QUANTITY | 0.96+ |
Hiroko | ORGANIZATION | 0.96+ |
Mikey No | PERSON | 0.96+ |
first time | QUANTITY | 0.96+ |
AWS Global Summit 2019 | EVENT | 0.96+ |
half an hour | QUANTITY | 0.95+ |
East Coast | LOCATION | 0.95+ |
Roku | ORGANIZATION | 0.94+ |
Door Dash | ORGANIZATION | 0.94+ |
AWS Summit | EVENT | 0.94+ |
billions of rose | QUANTITY | 0.93+ |
one provider | QUANTITY | 0.93+ |
Aurora Post | ORGANIZATION | 0.92+ |
about 325% | QUANTITY | 0.92+ |
Stanford | LOCATION | 0.91+ |
single provider | QUANTITY | 0.91+ |
next couple years | DATE | 0.91+ |
one thing | QUANTITY | 0.91+ |
Chris | PERSON | 0.89+ |
Amazon Web | ORGANIZATION | 0.88+ |
Max Goralnick, Deloitte Consulting LLP | Coupa Insp!re19
>> from the Cosmopolitan Hotel in Las Vegas, Nevada. It's the Cube covering Cooper inspired 2019. Brought to You by Cooper. >> Welcome to the Q. But Lisa Martin on the ground in Las Vegas for Cooper Inspire. 19 Hot Vegas. Fresh Insight. I'm pleased to welcome Max Ground, the managing director from Deloitte to the program. Hey, Max. >> Good morning. Good afternoon. >> Good afternoon. Whatever time it is, Vegas Right here is this. It's a time warp. They don't like you see outside It's >> only place the world. The 25th hour. >> Right? So here we are. It inspired 19 kick Everything kicked off this morning with the general session. I was teasing Rob Bernstein a couple hours ago and I had him on that. I learned three things in the general session. He likes pizza, he likes kittens. And Cuba's platform now has 1.2 trillion dollars of spending data going through it. And I thought, man procurement is not what I thought. It wa ce and you have a really >> interesting story about procurement. I'd love for you to share with our audience >> because you said in your session earlier today you said people in this standing your morning session. How many of you wanted to be on procurement? Anybody that raises their hands of line tell me about the procurement of yesterday, the >> opportunities that it's given you and what it is now. >> So I think >> in the past, >> security has been something that had to happen. It was a must have not a place that people saw value. But was the rule enforcers right? So trying to do that and really adding value by discipline, where today, if you think about it, the value that they can add by driving savings authorization drops right to the bomb line. So all the savings that are out there, all >> the negotiations that are doing, it's really unique skill set >> and something that people really should move into finance folks when they're looking for a new opportunity. It's a great skill set to have. Lately I've come across a former attorneys are practicing law but now doing strategic sourcing, doing procurement, work, people from finance because the talent that you have to have is field work with people within their companies, understand their needs, negotiate with suppliers, do hard core analytics and, oh, by the way, we're talking about Cooper has helped in change and implemented technology like that. It's really fascinating. >> It's so much more than >> being a buyer or being somebody that's controlling a particular business unit's ability to buy and spend. >> One of the interesting things about Cooper is this platform that allows what started, I >> think, initially as more procurement corner invoicing is now expanded to also include payments and expenses and travel management and contingent workhorse management. So what the CPO now has the opportunity to do is get this visibility right across an entire business of all of the spending, to your point, make massive impacts to the bottom line. >> Yeah, I >> mean, data is so important, right? In the past, the vendors had all the information. Why? Because the sales people how to get commissions. They knew exactly what was being bought of that company. Today, you can reverse engineer saying, selling cells. I say it's reverse sales. I can't go in there and I tell them now I have the full picture. So if it's divided up that category by three or four different vendors, they're making assumptions about how much market share they have. I know it all. I can create a model, a pricing model on the reverse. Engineer it. It's really for sales. I'm telling them now why they should give me a great discount for the organization and >> I >> have the ability to actually enforce that and drive the savings that we have for the organization. It also helped them drive their numbers on sales. So it's a mutually beneficial relationship. They have more market share. I drive better value for the organization. It really works well, >> Well, one of the destructor is that you're kind of alluded to Is this consumer ization? You know, when you go to buy >> a car these days, you just walk in there. You have as a as a buyer of the consumer oven automobile. You have access to every piece of information possible, the whole transaction process. The sales process is different. So as consumers in our regular lives, we have so much expectation that weaken, find anything good Amazon, find anything that we want, get it delivered tomorrow and have all these information on what? Where's the best place I could get it? Who's selling it for what? How is this person that you know, more trustworthy supplier So this consumer ization element and how it's changing the role of the CPO in the CFO is >> really revolutionary. >> It really isn't so you think about it. Most of us go out to Amazon by something, and really the only control there for me, for example, is my wife has to approve it, right, so that's the only veto authority. So that's really the only difference between the two platforms. If you think about it is, there's controls in place, so you're doing the right thing. But from an end user perspective, if I go out there and find the right item and again in Amazon, I don't to go find the supplier. I don't know if that be on contract. Why don't you do that work? We shouldn't have to. I should just go out there and say, I need this And in the background, Cooper is working all those things, presenting the right products on the right contracts, driving right value and almost is important, minimizing the risk. So across all those different lenses, you see why the value of Cooper is for the end user. They're getting what they need for the organization, for the company we're reducing risk and we're increasing value, and then you have rich reporting on the back end. So it's just it's a great way of doing business. It really is taking what you used to do or what you do. It's Sunday afternoon like Rob, you say Monday at work, and I think that's really powerful thing of perspective. >> It is. And it can be so impactful if applied in the right way with an organization, whether it's a manufacturer or hospital or retailer that has a culture that is willing to embrace change, right? I mean, there's that right, Especially >> get him to get your >> perspective on when you're implementing Cooper at a large organization. Maybe have been around for many, many years versus maybe a more modern that we think might be more nimble organization. Culturally, Do you see massive differences in how they're leading procurement, and are you able to sort of level the playing field and show them doesn't matter what your culture is? Here's how your business, your body. >> So from a change perspective, I think there's a different perception. The newer, nimbler organization believes that they changed easy, but it still may have people the older organisation again still made people most people don't like to change. What I have learned is if you help them understand the value of it, how they're doing it, how their jobs are going to change and give them the tools to do it. Some people are gonna be early adopters. But finding that one person, the organization, no matter what level they are in that business unit or in that department that has that informal voice that people look to naturally, that the Nazi leader who's in a leadership position with leader from a personality perspective get them on board. And sometimes that's the hardest thing to do. They might be the most changed resistant, but was that person flips, They become your greatest greatest advocate out there. So it's a personal thing. This is hard work. That's why I talk about in our sessions, is going through. This requires a lot of work, but it's worth it. You can measure the value on the end that you got help. People understand why you're going on this journey and have have resource is there for help. >> So what were some of that? You said you did good Q and a session during your break out this afternoon. >> Tell me some of >> the things that that some of the audience said that you thought was really like they're getting it, >> Yes. So the whole point of our session was going live is not really the goal, right? That's just >> a guess, the exact right. >> And so most people focus on going live, and the answer is congratulations. You purchased the product, Kuba, and now it's working. So what? You don't have any real data? What do you do in the future? Some questions were as they're going through Supplier Neighborhood. The shift between procurement now taking a larger role in the relationships with the vendors. Well, that's great. It should be a balanced relationship. You know, there's a procurement role in that. And then there's the end. Users are the people in the organization from the business. You have to relate with those suppliers, so work together. If you were together in the past now it's a great time to do that. There's some other questions about if something is not working correctly. Post go live how quick It's not broken, but it could be optimized or you're getting complaints about. How quick should you change it? The answer is, I don't know, measuring yourself. I mean, obviously it's broken. Fix it. But it might be something around change. And maybe you have to help people understand why they're doing this new process. If people are giving feedback positive, negative, mostly native, was positive. We just go off our way. Welcome to Yelp. But if it's negative feedback, listen, don't get offended, understand that perspective and then measure it. Say, Is this something that we did is saying the platform, or is it just changed and work with it? What I tell our clients to is in Cooper, Just cause you can doesn't mean you should. I mean, that's really easy to build a field custom field, really easy to build, custom approval chance, really hard to maintain that stuff. So try to do it out of the not out of the box, but configured without as much customization as possible, and they can always improve it, understand it better. >> I think the key to adoption is the more customization that you have. I imagine the adoption funnel gets narrower and narrower. It's got >> interesting, so you customize because you think that's the way the process should go, because that's how we do it today. So if your goal is to take how you do your process today and put into Cooper, also tell clients congratulations. If you had a bad process now you're bad process that works faster. So take the time to say, Let's step back. Companies evolve, right? And so as they're evolving, if you haven't taken a really a view purposeful of you backwards and measure organization, where you're out from a charity model assessment, then you probably don't know where your gaps are. Take the opportunity when you're implying Cooper to use kind of leading practice that Cooper has start with that and said, Going back to what you're doing today, you know what a great example. That's improvers, right? So people like to have 10 approve er's because they think it reduces risk. So if I go back and look and I asked the audience, say, how many purchase order requests rejected? Very few. And how long do people actually have it open when they re prove it? So that's three seconds when they open it up and looked at it, do they really assess it from a risk perspective? Probably not. But if four people ahead of them approved it, that person's just gotta prove it, because I think it's okay because they're assuming someone else is looking at it, as opposed to in Cooper. Now I have the rich data to understand it. I could minimize risk that way instead of trying to do it. And what is a false sense of security? >> So getting people on board with bringing in automation and leveraging like I was saying in the beginning, the 1.2 trillion of spend that's going through the Cooper platform toe leverage that intelligence to not only have Cooper create the prescriptions for companies to be able to go. Okay, we don't we shouldn't your point. We shouldn't take a process that was clunky before and just do it faster. Still clunky, being able to have the automation thing. Analytics. Really, Those core enabling technologies can also be quite revolutionary. >> Absolutely. Yeah, absolutely. So the coop insights now, and you're seeing that measured against others and its mass, but you see how you're doing it, So this is really powerful sitting your goals out there and seeing how you're doing. Adjusting those really question yourself is, if we're not getting is approved in the speed that we thought, How do we do it differently? Right, So and that's nice about Cuba. It is really sounds right, and they really do come out with three releases a year, which is powerful. And so it's always changing, which means you have to be nimble. Understand your organization, adopting the new technologies to come out. They're also looking at their acquisitions and seeing that fits into what you're doing. >> Exactly. Last question for you is the announcement of the expansion of their in the AWS marketplace today and thinking, Wow, the I t person is probably gonna finally all these Shadow I T units that are popping up in finance and marketing and engineering and whatnot. They now have the ability to see and manage the entire software from search to deployment and management through AWS. What advantage is that going to give Deloitte when you're working with Cooper customers on implementation? >> That's probably too soon to say on that one. All the expansions they're having really help us with another tool. Tell clients I would say that there's always measuring the benefit for that client in the risk. So even if you take Amazon, for example, just opened by for Cooper is managing that So Amazon. When they first came out with Amazon for business open by, you couldn't control the categories that were exposed to the client. Now you can, but you can't control the items. So having a process in place, having a category strategy and then maximizing it if Amazon works that client fantastic, AWS is gonna get them or visibility across their platforms to manage those better. Fantastic. I think it just gives another opportunity to bring clients back into Cooper. Have a look at the value for Cooper from an end and solution, and all these wraparound acquisitions are making our expansions with their clients, people pay and all those other pieces out there. It's just another thing for them to have a goal and understand make a decision from their business, whether they're going to use it or not. But there's there's value across the board. Every every client is different, >> Absolutely. But it's also that that consumer ization approach that if you can take a process that somebody does on their own time, whether they're buying soccer balls or pool and bring that to their business life, that consumer ization following them. You think with potential there to transform every industry, every function, every line of business. It's just infinite. So >> truly dot, >> dot dot to me. Continue. Absolutely Wish we had more time. But Max, thank you so much for joining me on the Cube today and talk doing talking to me about what's going on at Deloitte and congrats on having us standing. You're only sessions. That's good, right? Take for Max Ground like I'm Lisa Martin. You're watching the Cube from Cooper Inspire 19. Thanks for watching.
SUMMARY :
It's the Cube covering the managing director from Deloitte to the program. Good afternoon. They don't like you see outside It's only place the world. It wa ce and you have a really I'd love for you to share with our audience because you said in your session earlier today you said people in this standing your So all the savings that are out there, talent that you have to have is field work with people within their companies, and spend. to your point, make massive impacts to the bottom line. Because the sales people how to get commissions. have the ability to actually enforce that and drive the savings that we have for the organization. You have as a as a buyer of the consumer oven So that's really the only difference between the two platforms. And it can be so impactful if applied in the right way with an how they're leading procurement, and are you able to sort of level the playing field And sometimes that's the hardest thing to do. You said you did good Q and a session during your break out this afternoon. That's just in the past now it's a great time to do that. I imagine the adoption funnel gets narrower and narrower. So take the time to say, Let's step back. So getting people on board with bringing in automation and So the coop insights now, and you're seeing that measured against They now have the ability to see and manage the entire software So even if you take Amazon, for example, But it's also that that consumer ization approach that if you can take the Cube today and talk doing talking to me about what's going on at Deloitte and congrats on having us
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Lisa Martin | PERSON | 0.99+ |
Amazon | ORGANIZATION | 0.99+ |
Cooper | PERSON | 0.99+ |
Max Goralnick | PERSON | 0.99+ |
AWS | ORGANIZATION | 0.99+ |
Max | PERSON | 0.99+ |
three | QUANTITY | 0.99+ |
2019 | DATE | 0.99+ |
Today | DATE | 0.99+ |
Rob Bernstein | PERSON | 0.99+ |
two platforms | QUANTITY | 0.99+ |
Deloitte | ORGANIZATION | 0.99+ |
Rob | PERSON | 0.99+ |
tomorrow | DATE | 0.99+ |
Cooper | ORGANIZATION | 0.99+ |
Max Ground | PERSON | 0.99+ |
1.2 trillion | QUANTITY | 0.99+ |
Sunday afternoon | DATE | 0.99+ |
Monday | DATE | 0.99+ |
today | DATE | 0.99+ |
Las Vegas | LOCATION | 0.99+ |
Vegas | LOCATION | 0.99+ |
yesterday | DATE | 0.99+ |
1.2 trillion dollars | QUANTITY | 0.99+ |
25th hour | QUANTITY | 0.99+ |
three seconds | QUANTITY | 0.99+ |
Yelp | ORGANIZATION | 0.99+ |
Las Vegas, Nevada | LOCATION | 0.98+ |
Max. | PERSON | 0.98+ |
Deloitte Consulting LLP | ORGANIZATION | 0.98+ |
three things | QUANTITY | 0.97+ |
one | QUANTITY | 0.97+ |
first | QUANTITY | 0.97+ |
One | QUANTITY | 0.95+ |
one person | QUANTITY | 0.95+ |
earlier today | DATE | 0.95+ |
Cosmopolitan Hotel | ORGANIZATION | 0.93+ |
four different vendors | QUANTITY | 0.91+ |
Cuba | LOCATION | 0.91+ |
this afternoon | DATE | 0.89+ |
CPO | ORGANIZATION | 0.87+ |
Cooper | TITLE | 0.87+ |
Cube | TITLE | 0.86+ |
Nazi | ORGANIZATION | 0.85+ |
three releases a year | QUANTITY | 0.82+ |
10 approve er | QUANTITY | 0.79+ |
four people | QUANTITY | 0.79+ |
couple hours ago | DATE | 0.79+ |
this morning | DATE | 0.72+ |
19 | QUANTITY | 0.7+ |
Coupa | ORGANIZATION | 0.62+ |
19 | OTHER | 0.62+ |
Inspire | ORGANIZATION | 0.58+ |
Kuba | PERSON | 0.58+ |
Cube | ORGANIZATION | 0.56+ |
19 | TITLE | 0.55+ |
Cooper | LOCATION | 0.52+ |
William Oliveira & Brian "Redbeard" Harrington, Red Hat | KubeCon 2018
>> Announcer: Live from Seattle Washington, it's the Cube covering KubeCon and CloudNativeCon, North America, 2018. Brought to you by Redhat, the CloudNative Computing Foundation, and it's ecosystem's partners. (techno music) >> Okay welcome back everyone. We are live in Seattle for KubeCon and CloudNativeCon 2018, Cube's live coverage three days. Day one of a full house event here, through 8,000 people, doubled from last year, I'm John Furrier for Stu Miniman. Our next two guests are from Red Hat. Great to have these guys as our guests, as also thank Red Hat for being great sponsors. Brian "Redbeard" Harrington, Cube Alumni Back Product Manager of Service Mesh at Red Hat, and William Oliveria, Product Manager Serverless at Red Hat, we'll hear a lot about that. You guys, first of all, thanks for coming on, and thanks to your company Red Hat, for being a great supporter of the Cube and the community, the contribution you guys have helped up make, we really appreciate that. Thank you. >> Absolutely delighted to be here. >> Happy to be here. >> John Furrier: Alright, so let's get into it. So service meshes are hot because now Kubernetes is kind of like, we're seeing that is totally stabilized, and now you start to see the engineering, and the value creation happening in layers. Shim layers they call here, I got state-full applications. So you're starting to see service meshes conceptually adopt. Give us a quick update on where that is, how real is it, what's the progress, and what's some of the state-of-the-art activities around it? >> [Brian "Redbeard" Harrington] Well the beautiful thing is, using a service mesh is not anything new at all. I mean, that was really built to top the Netflix OSS ideas. They've been around for seven, eight years now. It's really just kind of decomposing what were a bunch of individual libraries that you had to implement into more infrastructure services, so that you know that you just, regardless of the language, environment, etc., you've always got a certain base platform ready to go. >> John Furrier: Is Service Mesh going to be a standard thing? Is it going to be, service meshes of your flavor, is there going to be certain instances custom services? How do you see that coming out with CSDO, Knative? There's things evolving. >> [Brian "Redbeard" Harrington] Mmhm, yeah. >> What's the state there, is that going to be the new normal, or is it going to see settling? What's your view on that? >> [Brian "Redbeard" Harrington] I think to some extent, it depends on the scale that you're at. If you are at the scale of Yelp or Stripe, one of those, and using Envoy, you already have a good idea of what that mesh is going to look like, so you're building that control plain, in the way that you need it. Where Istio and Linker D and some of the other ones come in, is when you are a smaller scale and you need to figure out what you're control plane is going to look like, that's where it really shines, because it gives you something that you can just start using and has some training wheels on it to make sure that you've got a stable platform to use from day one. >> Stu Miniman: So one of the other news items today I wanted to get your opinion on is, EtsyD has been handed over to Linux Foundation and CNCF, so EtsyD came out of CoreOS of course, which was acquired by Red Hat. Give us a little bit of the update as to why that happened and why it's a good thing for the community. >> So I think for any stable platform, it's really been the theme of what I've been talking about, you've got to know that it's safe to use the software, that there's going to be a longer term vision, and a lot of community guidance around that, and that's why Red Hat made the contribution. When we were at CoreOS, we really wanted to, and it was something that was ultimately a goal, but it kind of became a little bit of a race condition. Do we go ahead and contribute it, and then hope that other folks will join us in building it? Just by open sourcing it, we saw some contributions from IBM around PowerPC architecture and Maso's, and other groups coming in, but putting it just full-bore in the CNCF really guarantees that there will be ongoing community collaboration. >> John Furrier: Just to give a shout out to you guys at CoreOS, you guys did an amazing job, and I think this is a benefit of the Red Hat relationship, because that's the start up dilemma you have, do we get it in there, how do we support it, how do we make it better, is it competitive, was our focus what we optimized it for? But now with the Red Hat piece you guys should lean back, and do the right thing and get it in there with the right resource push, is that kind of how it's evolving, because that seems like what's-- >> It absolutely is. This goes beyond just EtsyD. The really rad thing is that I think it's safe to say that there is no part of the CoreOS portfolio that really isn't getting open sourced. You can kind of read into that what you will but, it meant that there was no technology that was getting left behind, nad that our users who really felt passionately about pieces of software, again, we're going to be able to have that utility. >> Stu Miniman: I think it goes back, we've been at Red Hat summits for many years and Red Hat is a hundred percent open sourced, it must be, and even I go back to Polvey and yourself and Brandon, all of the tools at CoreOS were creating is, they were all going to be open sourced tools that you will be involved in. I guess William, a good point to bring you into the conversation, Serverless, and fully open source, if not been have you thought about it at least for the last couple of years so, before we get into the Knative, give us the Red Hat positioning, where does Serverless fit into the architecture? And then we'd love to tease out all of the Knative discussion. >> Absolutely. For us, Serverless then is a lot about the user experience, and how we can simplify how developers can leverage technology such as Itsiu and service meshes and everything around the developer experience on top of Kuberneties. Serverless can deliver that and a lot of what we believe is that, it should not be then tied too much to functions because we can do that for functions, but we can do that for any class of applications actually running on top of the platform, and that's a lot of why we believe that Knative is this powerful interesting project going on out there right now. We already have all these different players collaborating, which is fantastic for inter-oper ability, we make sure that we can leverage that implementation on different platforms, we can run that anywhere pretty much on top of Kuberneties, and that's a big goal, to make sure that you can plug all these different parts as part of a consistent user experience there. >> Stu Miniman: Okay so we had the cube at the Google event this summer when it was announced I was at Serverless conference this year and to be honest, a lot of people were kind of scratching their heads trying to understand. Okay, Serverless and Kuberneties are going together but I'm not sure I quite get it? Give us the update where are we, when does this get baked into platforms, what can I do today, where do I learn more? >> Today, what we are offering is the three big modules as part of Knative are built, events, and serving. So it's the basic capabilities for you to build a serverless platform that, can again, work on any kind of application, not only functions, and we are at that stage. The project is very new, we are still in 0.2 release, at this point, so there's a lot of missing parts around user experience and what-not, but we are getting there, and that's where most of the focus is going on right now. But with something like events, that's a perfect opportunity for example, to integrate with all the different services we have available, let's say on Service Catalog, or through the operator's framework, for example, to connect to the applications that you are building on top of Kuberneties. That was part of the things that was missing to connect the dots when your implementing those applications, how are you going to consume events, how are you going to consume services, how those applications are going to scale? That's a lot of what we're addressing with Knative right now. >> What's the big walk away around the current event here at KubeCon? We hear maturity, great, check. A lot of people are fine in their swim lanes or whatever, their value layer, check. Clear a lot more gaps things white space start to appear, when that visibility lifts. What do you guys see the opportunities for the community, and you guys, certainly one of the big players, Red Hat, leading the way, as this ecosystem is, I mean companies I've never heard of, coming out of the woodwork. This is vibrant! There are opportunities for people to kind of, play in these white spaces. Do you guys have any thoughts on where you could give guidance to where people could jump in and create value? >> Well, there's two areas that are really fascinating to me. One is the fact that now that Kuberneties has gotten to the level of boarding infrastructure, it means that there are a lot more companies that are really comfortable saying, "we're building a top that, we don't care about what the compute layer is, because we just know". So you see a lot of organizations that are coming in, because they want to collaborate with other organizations, and see how they're using it to cross pollinate and get new ideas. That's why you've got full retail companies like Nordstrom here, that are the local band in town, and they're happy to come and show off, and you've also got a lot of, to the second piece of that, emerging companies that are finding areas, white space that we didn't consider as the incumbance in the space, and they're providing direct value. I think that as we have seen a lot more acquisitions coming through the space, there is going to be a lot of opportunity for the organization that has that five, ten, fifty million dollar idea to come in, build it quickly, know that it works on top of Kuberneties, and then be able to port it to Enterprise software that runs on a local cluster or across clouds. >> John Furrier: So new business model innovations are coming out of it as well., hence opportunities. It's okay to have a fifty million dollar business. >> Yes. >> Not bad, and could be acquired as well, some other value there. Okay, Microservice is hard to manage. Guys, talk about this dynamic. This is one of the things you guys really work hard to address, I know. We hear a lot about it. Porting to Microservice, "Hey, I'm in Enterprise! We should move from our Red Hat Linux implementation, to full cloud, and then it's going to go all the way to Microservices." Well, what the hell is Microservices? So again, this is kind of like, well I'm not saying that they're thinking that way, but this is not that easy. How do you guys make it easier? What are some of the speed bumps that customers hit? And what are the things to overcome those? What's your view on that? >> [William Oliveria] I'll talk about, first of all, how Knative is contributing to that. Again, the whole thing that we're talking about, not being tied to functions is because again, I want to leverage the serverless capabilities available in the platform for Microservices as well. And whenever you're talking about monitoring, tracing, observe-abilities, Istio comes into play, and solved that problem and connect all those different Microservices in a very nice way. With Knative, things we can improve on the user experience, so you can do that in a very easy way, when you are coming from this brown field applications when you are migrating to the cloud, when you are trying to port those applications, it's a big learning curve. You got to learn about all these different technologies. So if you can improve that user experience, so you can do what you do best, which is focus on your code, and then we can take care of a lot the complexities of building and wiring together all these different parts on the platform. We'll do that. And that's a lot of what we are doing with serverless. >> That's where the manage piece comes in, right? >> [William Oliveria] Right. >> And then the monitoring, that part of it to? >> Yeaa, well to build on top of that, there is the organizations that want to still design things the way that they've been doing it. And we've had a big focus with a project called Red Hat OpenShift Application Runtimes, or RHOAR, which it goes more in the direction of the past concept, which is a big difference between OpenShift and TechTonic, for example, and through that, a lot of the RHOAR bundles for Python and Java and Node.js kind of integrate in the concepts of distributed tracing and permethius monitoring and things like that, to make sure that you focus, again, to William's point, on building the thing that brings yuour business value and standing on the shoulders of software at the infrastructure level. >> That's great stuff and it's a lot more work to do. >> Yeah, just the last thing, I know Red Hat's been working on trying to, I don't know if you call it "templatize", but how do I make it easier for people to, I'm trying to remember the name of the term for it. >> Yeah, so it's the OpenShift Application Runtime. Having what used to be the gear in the old OpenShift realm. Which is just here is a great template, a package to start from, so that you can go in and implement the things that you care about, and really step then into, the "Okay, we know that the code's going to work okay, because we built that, we know the application platform is going to be predictable, we know that we have all of these additional hooks to manage it." So hopefully, it lowers the bar, to make it trivial to get started. >> That's awesome. Well, Redbeard and William, thanks for coming on the Cube, really appreciate it. Just quick plug, what's up next for you guys? What's on the horizon? What itch are you scratching these days? What's getting you motivated? >> The big things that's exciting for me is the fourth coming release of OpenShift 4.0, which gives me the room to shine on the GA release of all the service mesh stuff. And then, kind of in parallel, just a lot of the vector packet processing, FITO, high scale networking stuff just sends a tingle up my spine. I love keeping an eye on that >> For me we just announced a review of Knative and OpenShift as an add-on. You can just install and run that when you're on OpenShift, and like what Redbeard said, I'm looking forward for 4.0 as well, to make sure that I could plug that user experience on top of 4.0 and we are already doing a lot for the ops side, and I'd like to do that also now for our developers as well. >> Well when you're ready, we'll pop a digital cork on Twitter, let us know, we'll certainly cover it. Thanks for coming out, appreciate the insight. >> We'll bring you the insights and all the data here at KubeCon CloudNative. Of course we're the Cube, don't be confused with KubeCon, on one of our conferences coming. But only kidding, we're not going to have that. Thanks for watching day one, live coverage. Stay with us for more coverage after this short break. (techno music)
SUMMARY :
Brought to you by Redhat, the contribution you guys have helped up make, and now you start to see the engineering, into more infrastructure services, so that you know that is there going to be certain instances custom services? in the way that you need it. Stu Miniman: So one of the other news items today that there's going to be a longer term vision, You can kind of read into that what you will but, I guess William, a good point to bring you into the to make sure that you can plug all these different parts Stu Miniman: Okay so we had the cube at the Google event So it's the basic capabilities for you to build a serverless and you guys, certainly one of the big players, Red Hat, One is the fact that now that Kuberneties has gotten to the It's okay to have a fifty million dollar business. This is one of the things you guys really work hard to and then we can take care of a lot the complexities of and things like that, to make sure that you focus, again, on trying to, I don't know if you call it "templatize", a package to start from, so that you can go in and implement What's on the horizon? of all the service mesh stuff. and I'd like to do that also now for our developers as well. Thanks for coming out, appreciate the insight. We'll bring you the insights and all the data here at
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
John Furrier | PERSON | 0.99+ |
Seattle | LOCATION | 0.99+ |
William Oliveria | PERSON | 0.99+ |
five | QUANTITY | 0.99+ |
IBM | ORGANIZATION | 0.99+ |
Nordstrom | ORGANIZATION | 0.99+ |
Stu Miniman | PERSON | 0.99+ |
Red Hat | ORGANIZATION | 0.99+ |
CNCF | ORGANIZATION | 0.99+ |
William | PERSON | 0.99+ |
CloudNative Computing Foundation | ORGANIZATION | 0.99+ |
Redhat | ORGANIZATION | 0.99+ |
Brian "Redbeard" Harrington | PERSON | 0.99+ |
Linux Foundation | ORGANIZATION | 0.99+ |
Cube | ORGANIZATION | 0.99+ |
Java | TITLE | 0.99+ |
Python | TITLE | 0.99+ |
seven | QUANTITY | 0.99+ |
Node.js | TITLE | 0.99+ |
second piece | QUANTITY | 0.99+ |
KubeCon | EVENT | 0.99+ |
One | QUANTITY | 0.99+ |
OpenShift | TITLE | 0.99+ |
two areas | QUANTITY | 0.99+ |
Today | DATE | 0.99+ |
EtsyD | ORGANIZATION | 0.99+ |
one | QUANTITY | 0.99+ |
OpenShift 4.0 | TITLE | 0.99+ |
8,000 people | QUANTITY | 0.99+ |
last year | DATE | 0.99+ |
CoreOS | TITLE | 0.99+ |
CloudNativeCon | EVENT | 0.99+ |
Seattle Washington | LOCATION | 0.98+ |
three days | QUANTITY | 0.98+ |
fifty million dollar | QUANTITY | 0.98+ |
Netflix | ORGANIZATION | 0.98+ |
Brandon | PERSON | 0.98+ |
Yelp | ORGANIZATION | 0.98+ |
ORGANIZATION | 0.98+ | |
William Oliveira | PERSON | 0.98+ |
TechTonic | ORGANIZATION | 0.98+ |
today | DATE | 0.97+ |
CloudNativeCon 2018 | EVENT | 0.97+ |
two guests | QUANTITY | 0.97+ |
RHOAR | TITLE | 0.97+ |
Serverless | EVENT | 0.97+ |
North America | LOCATION | 0.96+ |
day one | QUANTITY | 0.96+ |
Stripe | ORGANIZATION | 0.96+ |
Kuberneties | ORGANIZATION | 0.96+ |
Knative | ORGANIZATION | 0.95+ |
Maso | ORGANIZATION | 0.94+ |
CoreOS | ORGANIZATION | 0.93+ |
PowerPC | ORGANIZATION | 0.93+ |
Linker D | ORGANIZATION | 0.93+ |
eight years | QUANTITY | 0.91+ |
hundred percent | QUANTITY | 0.91+ |
Redbeard | PERSON | 0.89+ |
Yinglian Xie, DataVisor | CUBEConversation, November 2018
(upbeat music) >> Okay, welcome to theCUBE everyone. This is a CUBE Conversation here in Palo Alto, California in the CUBE studios. I'm John Furrier, the co-founder of SiliconANGLE media, the host of the CUBE. I'm here with Yinglian Xie. She's the co-founder and CEO of data visor, entrepreneur, former Microsoft researcher. Thanks for joining me in CUBE conversation. >> My great pleasure to be here. >> So I'm excited to chat with you because you've got a really hot company, and a very hot space, but also as an entrepreneur, you're out competing against a huge wave of transformation. You've got big clouds out there, you've got IT enterprises moving to some sort of cloud operating model. You have global IOT market, huge security problem. You guys are trying to solve that with Data Visor, your company. So take me through the journey. First take a minute to explain what Data Visor is, and I want to ask you about how you got into this business, how it started. So what does Data Visor do, first give a one minute overview of the company. >> Sure, so Data Visor is a company that uses the AI machinery and big data, trying to detect and prevent a variety of fraud and abuse problems for all these consumer facing enterprises. So our mission is to really leverage these advance technology that you talk about in many of these, and to help these consumer facing enterprises to establish and restore trust to the end users like you and me, like every one of us. >> Yes, cyber security and security in general is a global issue. I mean, spear phishing is just so effective, you just come in and just send someone a LinkedIn message or an email, they click on a link and you're done. There's not much technology. People are struggling with this, but you guys have a unique approach that you taking with Data Visor so I want to dig into it. But first, how did it all start? When you started this company with your co-founder, did you just wake up one day and say, you know what we're going to go solve the security problems for the world. Where did the idea come from and how did it all start? >> So I would say it's probably, if you look at the background of me and my co-founder, it's probably the natural journey to it, because we actually came from a research and academia background. And me spending seven years of my post doc research in Silicon Valley before starting Data Visor, from there when we joined in 2006, actually it was where we kind of just see this parallel computing paradigm. Like Matt Purdue's paper just got published, and all the data is available, we have all these security problems and at that time we were partnering with a number of large consumer facing groups in Microsoft, and to see how we can use this big data to solve some of the challenges that they face in terms of for example the online fraud and abuse. And also we see the industry and was rapidly getting into the digital era where we have billions of users online, so everybody sees this unique challenge of, they have a variety of vulnerabilities they face, they're trying to bring more rich features to users. At the same time, they see new fraud are coming up also very rapidly. So everybody, when they see new fraud, they are trying to have point solutions. Where they say, let's just tackle this, but then afterwards there's another fraud, or another abuse coming up. >> Throw another tool at em. Build another tool. Buy another tool. >> Exactly. Kind of arms race, where they're being reactive, and catching in a cat and mouse game. So we decided, let's just come to see whether we build something different and leverage the AI machine learning, and then we see what this new cull computing, big data infrastructure can do. So let's build something a little bit more proactive, so that we've been in the security area for so long, that we feel something fundamental that can be a game changer. It's only when we don't make assumptions to see what kind of attacks we want to detect. But be a little bit more open to say, let's try to build something more robust, that can have the ability to automatically discover and detect these new type of unknown attacks more proactively. >> Yinglian, I want to talk about that point, about your time at Microsoft. At that time around 2006, I think it's notable because the environment of Microsoft scale was massive. They were powering, the browsers were everywhere, MSN, the online services that Microsoft had were certainly large scale, but they were built on what I would call gen one internet technology. Databases, big large scale. At the time there, the new entrants, Facebook, otherworlds, they were building all their own tech. So you had kind of the new entrant who had a clean sheet of paper, and they built their own large scale. And we know the history of that, those kinds of companies, that were natively at that time. That's the environment that Microsoft had, that a lot of customers today have. They have technologies that have been around, they have to transform very quickly. So when you learned about some of those data collection capabilities at scale of older technologies, and rushing to a new solution, this is a problem that a lot of end user enterprises have. CIOs, cloud architects, data architects, and they've been operating data warehouses for generations. Big fenced off databases, slow, big data lakes turning into swamps. So that's the current situation, how do you guys speak to that? Because this is the number one challenge we see. Is, I have all this data, I've got a data problem. I'm now full of data, I'm being taken advantage of with the fraud. Whether it's spear phishing or some other scams that are going on with email and all this stuff. How do you guys talk to that customer, that environment? >> You definitely very spot on the challenges and problems that we all face. So while we get into the digital era, everybody has this great sense of trying to collect data and story those data. So that has been, the amount of data we collect is tremendous nowadays. The next step everybody was looking at, the big challenge for us, is how to make value of these in a more effective way. And we also talk about a lot about the AI and machine learning, how they can transform some of the way we do things in the past. The analogy we know is how do we go from the manual driving cars to the self driving era of having all the automation intelligence, and making value out of this. So there are still a lot of challenges that you definitely touch upon. First of all, when they have the data there, does that mean we have the data, we have the data in a consistent, consolidated way. Many times, two different divisions, departments collecting data, they're still in silo mode. So how to bring the data together. And second is, we have the data, we have the computing power, how do we bring the algorithm that operate on top of that the framework to have a system that would let algorithm generating values. Like in the fraud detection space, be able to automatically process huge amount of data, and make decisions in real time. Instantly, detecting these new type of attacks. So we find that's a problem beyond the silo of just an IT problem, or just a data science problem, of just a business problem. So many times these three groups still sort of work separately, but in the end we needed the main knowledge, we need building a system, and we need good data architecture to solve them together. So that's where Datavisor is building a solution, the ecosystem to consider all of this. >> Okay, so let's talk about the ecosystem a little bit later. I want to get to the algorithm piece. That seems to be your secret sauce, right? The algorithms? Is that where the action is for you guys? The secret algorithms or is it setup in the environment first? It kind of makes sense, you've got to set the table first, get the data unified or addressable, and then apply software algorithms to them. That's where the AI comes. What's your secret sauce? >> Yeah, so that's a good question. A lot of our customers ask us the same question, is algorithm your secret sauce? And my answer is kind of partially yes, but also at the same time, not completely. Because we're all catching up very rapidly in algorithm, if you look at the new algorithm being published every year. There's a lot of great ideas out there, great algorithm there. So our unique algorithm is the differentiating technology is called unsupervised machine learning. So unsupervised means we don't need to require customers to have historical loss experience, or need to know the training labels of what past attacks look like. So to proactively discover new type of, unknown type attacks and automate it away. So that's what the algorithm part is, and it has its merit. >> And by the way, people want to know about this machine supervised and unsupervised machine learning, go Google search, there's some papers out there. But I think, most people know this, or might not know it, it's really hard to do unsupervised machine learning because supervised you just tell it what to look for, it finds it. Unsupervised is saying be ready for anything, basically. Oversimplifying. >> Exactly, unsupervised means we want it to make decisions without assumptions. And we want to be able to discover those patterns as the attackers evolve and be very adaptive. So that's definitely a great idea out there. I wouldn't say if you Google, like search unsupervised, and you would find in academia there are published articles about it.6 So I wouldn't say it's a completely new concept, it's a concept out there. >> It's been around for a while, but the compute is the value. Because now you have the computation accelerate all those calculations required that used to be stalling it, from 10 years ago. I mean it's been around for a couple decades. AI and machine learning, but it's been computation intensive. >> Very much so, very much so. So if you look at the gap where that keep the academia side of the world algorithm, to where it's working. It is something similar to deep learning requires a lot more computation complexity compared to the past algorithms. >> Yinglian, I've got to ask you, because this comes up and I'll skip back to the reality of the customer. Because I can geek out on this all day long, I love the conversation, and we should certainly do a follow up on Deep Dive with our team. But the reality is customers have been consolidating and outsourcing IT for generations. And just only few years ago did they wake up, and some woke up earlier than others and said, wow I have no intellectual property, I have no competitive advantage, my IT's all outsourced, I am getting killed with requests for top line revenue growth and I'm getting killed with security breaches, and where's my IT staff. So they don't have the luxury of just turning on a machine learning. Hey, give me some machine learning guys, and solve the problem. That's really hard to setup. You've got to kind of build a trajectory with economies of scale in IT. This is a huge problem. How do you work with companies that just say, look I got security problems but I don't have time or the capability to hire machine learning people, because that's an aspiration, that's not viable, not attainable. What do you say to the customers? Can you still work with those customers, are you a good fit for that kind of environment? Talk about that dynamic, because that seems to happen a lot. >> Yeah, so in that area, you really to bring a solution to solve their problem. Like us today, we have a lot of infrastructure capability, platforms where they can leverage. But you definitely talk about the challenge they face. They don't have people to leverage those underlying primitives and build something to immediately address their business challenges. >> Can you build it for them? >> That's where Datavisor is, to provide the platform and the service to the customers. Where we take data in, and tell them directly all the type of attacks they face, in real time. Constantly, all the time. >> I really want to get your opinion on something that I've been talking about publicly lately, and I've been interviewing folks in the industry about it, because if you look at the graphics market around AI, and nvidia has been doing very, very well. They broke into gaming, obviously is the vertical and using the graphics cards for block chain mining. Then nvidia kind of walked into these new markets because they had purpose built processor for floating point and graphic stuff that was very specialized but now becomes very popular. We're seeing the need for something around data, where you want to have agility, but you also want high performance. So people are making trade offs between agility and high performance and if you ask anyone they'll tell you that I'd love to have more performance in data. So there's no nvidia yet has come out and become the nvidia of data. There's no data processing unit out there yet. This is something that we see a need for. So what you're talking about here is customers have all these demands, it's almost like they need a data processing unit. >> What they need is a solution, like you said, when they have a business solution, they're not looking at something like a generic framework or generic paradigm. They're looking at something to tackle the specific need. For example when we talk about fraud prevention, we're talking about rebuilding a service, the ecosystem that combines the data element, combines the algorithm that address their problem right away. So that's where we talk about with your analogy with nvidia, they want something almost like that chip, directly solve their pain point. >> And that's what you guys are kind of doing, because let me see if I get this right. You guys have this kind of horizontal view of data, but you're going very vertically, and specializing on the vertical markets because that's where the need for the acute nature of the algorithms to be successful. Like say, financial services. Am I getting that right? So it's like horizontally scalable data, but very specialized purpose. >> Exactly. So horizontally scalable data, but then really mine the data and view the algorithms that optimize for the detection of these unknown type of fraud in this area. >> Because they're customized, I mean they have certain techniques that the financial guys will use to attack the banks, right? So you had to be really nimble and agile at the application. >> Right, so when we build the algorithm, we have in mind the specific application we need to target. So you don't want to be over general in the sense that it can do anything, but in the end it does nothing super, super well. So if we are solving that particular fraud detection problem, in the end it needs to be, everything needs to be optimized. The integration with data, the algorithm, the output, the integration with the customer, needs to be optimized for the scenario. In the long run, can it be even generalized. You talked about the agility, and the nimbleness to broaden out to other areas. Then they will say, we are taking approach I would love to see nvidia's approach gradually expanding to other verticals. That is something we are looking from the long term perspective. Our view is that we a layer above all the cloud computing, the data layer. We are the layer that is verticalize position and targeted to solve this specific business issues. And we want to do that really well. Solve that problem one at a time. And then leveraging that algorithm, the underlying infrastructure we built to see whether we can expand that to other verticals, other scenarios. >> So you don't get dependent upon the cloud players? You actually will draft off their success. >> So we leverage the cloud computing era aggressively. Who doesn't in this scenario? It definitely brings the scale, the agility, and the flexibility to expand. And there's a lot of great technology there. >> What do you think about the cloud players? When you look at multiple clouds and hybrid cloud is a trend happening right now. What's your opinion of how that's going? That comes up a lot. CIOs number one channel and cloud architects, and then data architects are all kind of working as the new personas we're seeing. How has the cloud and multi cloud or single cloud approach, for your customers, how do you see that evolving? Because we see trends where, for instance, the Department of Defense, probably going to go all in on Amazon. That's the single cloud solution, but it wasn't sourced as a single cloud. So it turns out that Amazon was better for that, versus spreading things around to multiple clouds. So there's a trade off, what's your thoughts on that as a technologist. >> Well you touched upon an interesting point, because actually, our position is multi cloud. Multi cloud as well as, we support even un-permissed deployment. I will talk about the reason why. The cloud is such a big space, and we see different players there. We definitely see different players, because of their historical working with different vendors, as well as their development you definitely see. Actually our position in this space was driven by the customer need. From that, what we saw is customers have these requirements of their favorite cloud environment. And then there's public cloud verses private cloud. We're not completely there to say there's one cloud that rules all. And you also see some very conservative areas, particularly financial services where their security is really their top priority, they're conservative. And from that perspective, they still are having un-permissed solutions. And we have to be considerate of all these different requirements. And also when we look at evolvement, we also see different geographic landscapes have different cloud deployment landscapes as well. And it's a dynamic environment. >> It's a new dynamic. >> It's a new dynamic. >> Especially the global component, the regions. >> Exactly, the regions. And the different regions, and we also have the GDPR, where does the data residence problem. So that also makes it also challenging to say, just deploy your solution on one type of cloud, that's a very rigid model. So definitely from very early days, we basically decide our data decision would be, we are going to support multi cloud very early on. >> And it makes sense, because people don't want to move a lot of data around. They're going to want to have data in multiple clouds, if that's where the app is. Latency in the threats around moving packets from point A to point B are a risk too. Not just latency, but hacks. Alright, great. I'm very impressed with your vision. I'm very impressed with what you guys are going. I think it's very relevant. Talk about the business. Where are you guys at in terms of customers, what kind of customers do you have, how many customers, can you talk about some of the metrics. How many customers you have, what kind of customers, what are they doing with you, what are the successes? Can you lay out some of the use cases? >> So we work with many of the largest enterprises in the world, and so the probably also the ones that face a lot of challenge of these large scale fraud at the same time they are the ones aggressively moving forward in adopting new technology solutions. They are a little bit more the early, pioneering, adopters. So our customer can be in three verticals, today. So we take a vertical approach. The first is those large social commerce, like Sector. And some of our customers, for example Yelp, Pinterest, kind of customers. And there is also the second vertical, is those mobile apps. There's a lot of fraudulence in stores, where these mobile apps are trying acquire users aggressively everywhere, but among the users acquired, those in stores there can be substantial amount that is fraudulent. So those are the separate segment we target. And the third segment, we talked about, and you mentioned the financial area, where traditionally people focus on the risk of control, the fraud detection definitely causes a big problem. Their challenge is when they move from the past existing era to the digital era, going online, and a lot of new attacks start coming up, and definitely a huge challenge problem for them as well. >> So you guys have some great funds, you have some great investors. NEA, New Enterprise Associates and sequoia capital. What's the growth plan for you? What's the goal for the company, what's your growth strategy? What's on your mind now? Hiring obviously, customer, what's the focus? What's the growth plan? >> So our focus is, we've been working with many of these large service providers. We mentioned our large enterprise customers. So globally today, we've already been protecting over a full billing end user accounts in total. So it's a lot of users at this moment, for our next step of growth and so we have two thoughts. A is we want to basically make the service even more scalable, and even more standardized in a sense that we can work with more than just the largest ones and be able to make it convenient, to be integrated with as many consumer facing providers. >> To expand the breadth. >> To expand the breadth, yes, of customers that we work with. The second aspect is, when looking at the fraud detection, we feel traditionally when the fraud market is segmented, we talk about when in the offline world, you would see financial sector fraud very different from somebody working on content. Nowadays, we can consolidate it, so in that area we're trying to build a more wholistic ecosystem. Where the device side of solutions and the analytical solutions can be consolidated together, to make it an ecosystem where we can have both sides of use and be able to provide to our customers different kind of needs. In the past, it was very point solutions. You would see data signal providers, then you would see some algorithm providers, and focusing on a specific type of fraud, and we wanted to make an ecosystem, so that, to your point in the past on the data, we will be able to connect the data, look at the use at account level and be able to detect a variety of types of fraud. As the enterprises are pushing out new features, and new flavors of these types. >> And the ecosystem participants will look like what? Ad networks, data services? Who is in the ecosystem that you want to build? >> Yeah, so that's a great question. In the ecosystem we talk about, for example, cull providers, can be an ecosystem basically. They actually power the computation layer, of all the resource there. We can also partner with data partners. That's another important element, so you're looking at technology data systems all integrated together. At the same time we can also look at the consulting firms that bring a bigger solution to the customers with the fraud being an important component that they want to address with system integrators. And so all these can fit together, and even some of the underlying algorithm solutions in the end can be plucked into the ecosystem to provide different aspects of use and make value out of data. So that different algorithms work together, and become defense area. >> It's like a security first strategy. First we had cloud first, data first, now security first. I mean, got to have the security. Well I really appreciate, we need more algorithms to police the algorithms. Algorithms for algorithms. So maybe that's next for you guys. Well with the business goal in mind we always take an open holistic view. I like you talking about security first, when we look at how to solve that problem more effectively, then we are very open minded to say, what is the best combinations we want to be three ultimately. And that's a single bit of real time, instant decision that is important at that time, because that matters with good users friction, they face whether we can be able to accurately detect attackers. So we are all optimizing for that, and then all the underlying data consolidation piece, the algorithm in combination working with each other, is just to make the barrier high, make it difficult for the attackers, and to make all of us good users easier. >> Well you're doing amazing things, and I think you're right. There's value in that data, new ways to use that data for better security is just the beginning of this new trend. Thanks for coming in and sharing your insights and congratulations on a great start up, and good luck to you and you co-founder. Thanks for sharing. >> Thank you, great to have this conversation. I'm here in theCUBE studios in Palo Alto, I'm John Furrier for CUBE Conversation with hot start up Data Visor Yinglian Xie CEO and co-founder. I'm John Furrier, thanks for watching. (bright music)
SUMMARY :
I'm John Furrier, the co-founder of SiliconANGLE media, So I'm excited to chat with you because you've got So our mission is to really leverage for the world. and at that time we were partnering with Build another tool. that can have the ability to automatically discover So that's the current situation, So that has been, the amount of data we collect and then apply software algorithms to them. So unsupervised means we don't need to require And by the way, people want to know about this machine as the attackers evolve and be very adaptive. but the compute is the value. that keep the academia side of the world algorithm, I love the conversation, and we should certainly do Like us today, we have a lot of infrastructure capability, and the service to the customers. and I've been interviewing folks in the industry about it, that combines the data element, combines the algorithm of the algorithms to be successful. that optimize for the detection of these unknown type So you had to be really nimble and agile at the application. in the end it needs to be, So you don't get dependent upon the cloud players? and the flexibility to expand. the Department of Defense, and we see different players there. And the different regions, and we also have the GDPR, Latency in the threats around moving packets from And the third segment, we talked about, So you guys have some great funds, and even more standardized in a sense that we and the analytical solutions can be consolidated together, At the same time we can also look at and to make all of us good users easier. and good luck to you and you co-founder. Yinglian Xie CEO and co-founder.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
2006 | DATE | 0.99+ |
Microsoft | ORGANIZATION | 0.99+ |
Amazon | ORGANIZATION | 0.99+ |
John Furrier | PERSON | 0.99+ |
Yinglian Xie | PERSON | 0.99+ |
Silicon Valley | LOCATION | 0.99+ |
Palo Alto | LOCATION | 0.99+ |
seven years | QUANTITY | 0.99+ |
Matt Purdue | PERSON | 0.99+ |
one minute | QUANTITY | 0.99+ |
second aspect | QUANTITY | 0.99+ |
Department of Defense | ORGANIZATION | 0.99+ |
Palo Alto, California | LOCATION | 0.99+ |
November 2018 | DATE | 0.99+ |
ORGANIZATION | 0.99+ | |
nvidia | ORGANIZATION | 0.99+ |
First | QUANTITY | 0.99+ |
today | DATE | 0.99+ |
ORGANIZATION | 0.99+ | |
third segment | QUANTITY | 0.99+ |
ORGANIZATION | 0.99+ | |
first | QUANTITY | 0.99+ |
CUBE | ORGANIZATION | 0.99+ |
three groups | QUANTITY | 0.99+ |
two thoughts | QUANTITY | 0.99+ |
ORGANIZATION | 0.99+ | |
Data Visor | ORGANIZATION | 0.99+ |
second | QUANTITY | 0.99+ |
Yinglian | PERSON | 0.98+ |
few years ago | DATE | 0.98+ |
both sides | QUANTITY | 0.98+ |
single cloud | QUANTITY | 0.98+ |
second vertical | QUANTITY | 0.97+ |
three | QUANTITY | 0.97+ |
Yelp | ORGANIZATION | 0.97+ |
billions of users | QUANTITY | 0.95+ |
one cloud | QUANTITY | 0.95+ |
two different divisions | QUANTITY | 0.94+ |
three verticals | QUANTITY | 0.93+ |
MSN | ORGANIZATION | 0.93+ |
NEA | ORGANIZATION | 0.92+ |
single cloud solution | QUANTITY | 0.91+ |
GDPR | TITLE | 0.91+ |
one day | QUANTITY | 0.88+ |
New Enterprise Associates | ORGANIZATION | 0.87+ |
one type | QUANTITY | 0.82+ |
single bit | QUANTITY | 0.81+ |
10 years ago | DATE | 0.8+ |
SiliconANGLE media | ORGANIZATION | 0.79+ |
Datavisor | ORGANIZATION | 0.79+ |
sequoia | ORGANIZATION | 0.77+ |
theCUBE | ORGANIZATION | 0.71+ |
first strategy | QUANTITY | 0.71+ |
couple decades | QUANTITY | 0.71+ |
gen one | QUANTITY | 0.68+ |
point | OTHER | 0.65+ |
CUBEConversation | EVENT | 0.61+ |
a minute | QUANTITY | 0.56+ |
DataVisor | ORGANIZATION | 0.55+ |
Influencer Panel | theCUBE NYC 2018
- [Announcer] Live, from New York, it's theCUBE. Covering theCUBE New York City 2018. Brought to you by SiliconANGLE Media, and its ecosystem partners. - Hello everyone, welcome back to CUBE NYC. This is a CUBE special presentation of something that we've done now for the past couple of years. IBM has sponsored an influencer panel on some of the hottest topics in the industry, and of course, there's no hotter topic right now than AI. So, we've got nine of the top influencers in the AI space, and we're in Hell's Kitchen, and it's going to get hot in here. (laughing) And these guys, we're going to cover the gamut. So, first of all, folks, thanks so much for joining us today, really, as John said earlier, we love the collaboration with you all, and we'll definitely see you on social after the fact. I'm Dave Vellante, with my cohost for this session, Peter Burris, and again, thank you to IBM for sponsoring this and organizing this. IBM has a big event down here, in conjunction with Strata, called Change the Game, Winning with AI. We run theCUBE NYC, we've been here all week. So, here's the format. I'm going to kick it off, and then we'll see where it goes. So, I'm going to introduce each of the panelists, and then ask you guys to answer a question, I'm sorry, first, tell us a little bit about yourself, briefly, and then answer one of the following questions. Two big themes that have come up this week. One has been, because this is our ninth year covering what used to be Hadoop World, which kind of morphed into big data. Question is, AI, big data, same wine, new bottle? Or is it really substantive, and driving business value? So, that's one question to ponder. The other one is, you've heard the term, the phrase, data is the new oil. Is data really the new oil? Wonder what you think about that? Okay, so, Chris Penn, let's start with you. Chris is cofounder of Trust Insight, long time CUBE alum, and friend. Thanks for coming on. Tell us a little bit about yourself, and then pick one of those questions. - Sure, we're a data science consulting firm. We're an IBM business partner. When it comes to "data is the new oil," I love that expression because it's completely accurate. Crude oil is useless, you have to extract it out of the ground, refine it, and then bring it to distribution. Data is the same way, where you have to have developers and data architects get the data out. You need data scientists and tools, like Watson Studio, to refine it, and then you need to put it into production, and that's where marketing technologists, technologists, business analytics folks, and tools like Watson Machine Learning help bring the data and make it useful. - Okay, great, thank you. Tony Flath is a tech and media consultant, focus on cloud and cyber security, welcome. - Thank you. - Tell us a little bit about yourself and your thoughts on one of those questions. - Sure thing, well, thanks so much for having us on this show, really appreciate it. My background is in cloud, cyber security, and certainly in emerging tech with artificial intelligence. Certainly touched it from a cyber security play, how you can use machine learning, machine control, for better controlling security across the gamut. But I'll touch on your question about wine, is it a new bottle, new wine? Where does this come from, from artificial intelligence? And I really see it as a whole new wine that is coming along. When you look at emerging technology, and you look at all the deep learning that's happening, it's going just beyond being able to machine learn and know what's happening, it's making some meaning to that data. And things are being done with that data, from robotics, from automation, from all kinds of different things, where we're at a point in society where data, our technology is getting beyond us. Prior to this, it's always been command and control. You control data from a keyboard. Well, this is passing us. So, my passion and perspective on this is, the humanization of it, of IT. How do you ensure that people are in that process, right? - Excellent, and we're going to come back and talk about that. - Thanks so much. - Carla Gentry, @DataNerd? Great to see you live, as opposed to just in the ether on Twitter. Data scientist, and owner of Analytical Solution. Welcome, your thoughts? - Thank you for having us. Mine is, is data the new oil? And I'd like to rephrase that is, data equals human lives. So, with all the other artificial intelligence and everything that's going on, and all the algorithms and models that's being created, we have to think about things being biased, being fair, and understand that this data has impacts on people's lives. - Great. Steve Ardire, my paisan. - Paisan. - AI startup adviser, welcome, thanks for coming to theCUBE. - Thanks Dave. So, uh, my first career was geology, and I view AI as the new oil, but data is the new oil, but AI is the refinery. I've used that many times before. In fact, really, I've moved from just AI to augmented intelligence. So, augmented intelligence is really the way forward. This was a presentation I gave at IBM Think last spring, has almost 100,000 impressions right now, and the fundamental reason why is machines can attend to vastly more information than humans, but you still need humans in the loop, and we can talk about what they're bringing in terms of common sense reasoning, because big data does the who, what, when, and where, but not the why, and why is really the Holy Grail for causal analysis and reasoning. - Excellent, Bob Hayes, Business Over Broadway, welcome, great to see you again. - Thanks for having me. So, my background is in psychology, industrial psychology, and I'm interested in things like customer experience, data science, machine learning, so forth. And I'll answer the question around big data versus AI. And I think there's other terms we could talk about, big data, data science, machine learning, AI. And to me, it's kind of all the same. It's always been about analytics, and getting value from your data, big, small, what have you. And there's subtle differences among those terms. Machine learning is just about making a prediction, and knowing if things are classified correctly. Data science is more about understanding why things work, and understanding maybe the ethics behind it, what variables are predicting that outcome. But still, it's all the same thing, it's all about using data in a way that we can get value from that, as a society, in residences. - Excellent, thank you. Theo Lau, founder of Unconventional Ventures. What's your story? - Yeah, so, my background is driving technology innovation. So, together with my partner, what our work does is we work with organizations to try to help them leverage technology to drive systematic financial wellness. We connect founders, startup founders, with funders, we help them get money in the ecosystem. We also work with them to look at, how do we leverage emerging technology to do something good for the society. So, very much on point to what Bob was saying about. So when I look at AI, it is not new, right, it's been around for quite a while. But what's different is the amount of technological power that we have allow us to do so much more than what we were able to do before. And so, what my mantra is, great ideas can come from anywhere in the society, but it's our job to be able to leverage technology to shine a spotlight on people who can use this to do something different, to help seniors in our country to do better in their financial planning. - Okay, so, in your mind, it's not just a same wine, new bottle, it's more substantive than that. - [Theo] It's more substantive, it's a much better bottle. - Karen Lopez, senior project manager for Architect InfoAdvisors, welcome. - Thank you. So, I'm DataChick on twitter, and so that kind of tells my focus is that I'm here, I also call myself a data evangelist, and that means I'm there at organizations helping stand up for the data, because to me, that's the proxy for standing up for the people, and the places and the events that that data describes. That means I have a focus on security, data privacy and protection as well. And I'm going to kind of combine your two questions about whether data is the new wine bottle, I think is the combination. Oh, see, now I'm talking about alcohol. (laughing) But anyway, you know, all analogies are imperfect, so whether we say it's the new wine, or, you know, same wine, or whether it's oil, is that the analogy's good for both of them, but unlike oil, the amount of data's just growing like crazy, and the oil, we know at some point, I kind of doubt that we're going to hit peak data where we have not enough data, like we're going to do with oil. But that says to me that, how did we get here with big data, with machine learning and AI? And from my point of view, as someone who's been focused on data for 35 years, we have hit this perfect storm of open source technologies, cloud architectures and cloud services, data innovation, that if we didn't have those, we wouldn't be talking about large machine learning and deep learning-type things. So, because we have all these things coming together at the same time, we're now at explosions of data, which means we also have to protect them, and protect the people from doing harm with data, we need to do data for good things, and all of that. - Great, definite differences, we're not running out of data, data's like the terrible tribbles. (laughing) - Yes, but it's very cuddly, data is. - Yeah, cuddly data. Mark Lynd, founder of Relevant Track? - That's right. - I like the name. What's your story? - Well, thank you, and it actually plays into what my interest is. It's mainly around AI in enterprise operations and cyber security. You know, these teams that are in enterprise operations both, it can be sales, marketing, all the way through the organization, as well as cyber security, they're often under-sourced. And they need, what Steve pointed out, they need augmented intelligence, they need to take AI, the big data, all the information they have, and make use of that in a way where they're able to, even though they're under-sourced, make some use and some value for the organization, you know, make better use of the resources they have to grow and support the strategic goals of the organization. And oftentimes, when you get to budgeting, it doesn't really align, you know, you're short people, you're short time, but the data continues to grow, as Karen pointed out. So, when you take those together, using AI to augment, provided augmented intelligence, to help them get through that data, make real tangible decisions based on information versus just raw data, especially around cyber security, which is a big hit right now, is really a great place to be, and there's a lot of stuff going on, and a lot of exciting stuff in that area. - Great, thank you. Kevin L. Jackson, author and founder of GovCloud. GovCloud, that's big. - Yeah, GovCloud Network. Thank you very much for having me on the show. Up and working on cloud computing, initially in the federal government, with the intelligence community, as they adopted cloud computing for a lot of the nation's major missions. And what has happened is now I'm working a lot with commercial organizations and with the security of that data. And I'm going to sort of, on your questions, piggyback on Karen. There was a time when you would get a couple of bottles of wine, and they would come in, and you would savor that wine, and sip it, and it would take a few days to get through it, and you would enjoy it. The problem now is that you don't get a couple of bottles of wine into your house, you get two or three tankers of data. So, it's not that it's a new wine, you're just getting a lot of it. And the infrastructures that you need, before you could have a couple of computers, and a couple of people, now you need cloud, you need automated infrastructures, you need huge capabilities, and artificial intelligence and AI, it's what we can use as the tool on top of these huge infrastructures to drink that, you know. - Fire hose of wine. - Fire hose of wine. (laughs) - Everybody's having a good time. - Everybody's having a great time. (laughs) - Yeah, things are booming right now. Excellent, well, thank you all for those intros. Peter, I want to ask you a question. So, I heard there's some similarities and some definite differences with regard to data being the new oil. You have a perspective on this, and I wonder if you could inject it into the conversation. - Sure, so, the perspective that we take in a lot of conversations, a lot of folks here in theCUBE, what we've learned, and I'll kind of answer both questions a little bit. First off, on the question of data as the new oil, we definitely think that data is the new asset that business is going to be built on, in fact, our perspective is that there really is a difference between business and digital business, and that difference is data as an asset. And if you want to understand data transformation, you understand the degree to which businesses reinstitutionalizing work, reorganizing its people, reestablishing its mission around what you can do with data as an asset. The difference between data and oil is that oil still follows the economics of scarcity. Data is one of those things, you can copy it, you can share it, you can easily corrupt it, you can mess it up, you can do all kinds of awful things with it if you're not careful. And it's that core fundamental proposition that as an asset, when we think about cyber security, we think, in many respects, that is the approach to how we can go about privatizing data so that we can predict who's actually going to be able to appropriate returns on it. So, it's a good analogy, but as you said, it's not entirely perfect, but it's not perfect in a really fundamental way. It's not following the laws of scarcity, and that has an enormous effect. - In other words, I could put oil in my car, or I could put oil in my house, but I can't put the same oil in both. - Can't put it in both places. And now, the issue of the wine, I think it's, we think that it is, in fact, it is a new wine, and very simple abstraction, or generalization we come up with is the issue of agency. That analytics has historically not taken on agency, it hasn't acted on behalf of the brand. AI is going to act on behalf of the brand. Now, you're going to need both of them, you can't separate them. - A lot of implications there in terms of bias. - Absolutely. - In terms of privacy. You have a thought, here, Chris? - Well, the scarcity is our compute power, and our ability for us to process it. I mean, it's the same as oil, there's a ton of oil under the ground, right, we can't get to it as efficiently, or without severe environmental consequences to use it. Yeah, when you use it, it's transformed, but our scarcity is compute power, and our ability to use it intelligently. - Or even when you find it. I have data, I can apply it to six different applications, I have oil, I can apply it to one, and that's going to matter in how we think about work. - But one thing I'd like to add, sort of, you're talking about data as an asset. The issue we're having right now is we're trying to learn how to manage that asset. Artificial intelligence is a way of managing that asset, and that's important if you're going to use and leverage big data. - Yeah, but see, everybody's talking about the quantity, the quantity, it's not always the quantity. You know, we can have just oodles and oodles of data, but if it's not clean data, if it's not alphanumeric data, which is what's needed for machine learning. So, having lots of data is great, but you have to think about the signal versus the noise. So, sometimes you get so much data, you're looking at over-fitting, sometimes you get so much data, you're looking at biases within the data. So, it's not the amount of data, it's the, now that we have all of this data, making sure that we look at relevant data, to make sure we look at clean data. - One more thought, and we have a lot to cover, I want to get inside your big brain. - I was just thinking about it from a cyber security perspective, one of my customers, they were looking at the data that just comes from the perimeter, your firewalls, routers, all of that, and then not even looking internally, just the perimeter alone, and the amount of data being pulled off of those. And then trying to correlate that data so it makes some type of business sense, or they can determine if there's incidents that may happen, and take a predictive action, or threats that might be there because they haven't taken a certain action prior, it's overwhelming to them. So, having AI now, to be able to go through the logs to look at, and there's so many different types of data that come to those logs, but being able to pull that information, as well as looking at end points, and all that, and people's houses, which are an extension of the network oftentimes, it's an amazing amount of data, and they're only looking at a small portion today because they know, there's not enough resources, there's not enough trained people to do all that work. So, AI is doing a wonderful way of doing that. And some of the tools now are starting to mature and be sophisticated enough where they provide that augmented intelligence that Steve talked about earlier. - So, it's complicated. There's infrastructure, there's security, there's a lot of software, there's skills, and on and on. At IBM Think this year, Ginni Rometty talked about, there were a couple of themes, one was augmented intelligence, that was something that was clear. She also talked a lot about privacy, and you own your data, etc. One of the things that struck me was her discussion about incumbent disruptors. So, if you look at the top five companies, roughly, Facebook with fake news has dropped down a little bit, but top five companies in terms of market cap in the US. They're data companies, all right. Apple just hit a trillion, Amazon, Google, etc. How do those incumbents close the gap? Is that concept of incumbent disruptors actually something that is being put into practice? I mean, you guys work with a lot of practitioners. How are they going to close that gap with the data haves, meaning data at their core of their business, versus the data have-nots, it's not that they don't have a lot of data, but it's in silos, it's hard to get to? - Yeah, I got one more thing, so, you know, these companies, and whoever's going to be big next is, you have a digital persona, whether you want it or not. So, if you live in a farm out in the middle of Oklahoma, you still have a digital persona, people are collecting data on you, they're putting profiles of you, and the big companies know about you, and people that first interact with you, they're going to know that you have this digital persona. Personal AI, when AI from these companies could be used simply and easily, from a personal deal, to fill in those gaps, and to have a digital persona that supports your family, your growth, both personal and professional growth, and those type of things, there's a lot of applications for AI on a personal, enterprise, even small business, that have not been done yet, but the data is being collected now. So, you talk about the oil, the oil is being built right now, lots, and lots, and lots of it. It's the applications to use that, and turn that into something personally, professionally, educationally, powerful, that's what's missing. But it's coming. - Thank you, so, I'll add to that, and in answer to your question you raised. So, one example we always used in banking is, if you look at the big banks, right, and then you look at from a consumer perspective, and there's a lot of talk about Amazon being a bank. But the thing is, Amazon doesn't need to be a bank, they provide banking services, from a consumer perspective they don't really care if you're a bank or you're not a bank, but what's different between Amazon and some of the banks is that Amazon, like you say, has a lot of data, and they know how to make use of the data to offer something as relevant that consumers want. Whereas banks, they have a lot of data, but they're all silos, right. So, it's not just a matter of whether or not you have the data, it's also, can you actually access it and make something useful out of it so that you can create something that consumers want? Because otherwise, you're just a pipe. - Totally agree, like, when you look at it from a perspective of, there's a lot of terms out there, digital transformation is thrown out so much, right, and go to cloud, and you migrate to cloud, and you're going to take everything over, but really, when you look at it, and you both touched on it, it's the economics. You have to look at the data from an economics perspective, and how do you make some kind of way to take this data meaningful to your customers, that's going to work effectively for them, that they're going to drive? So, when you look at the big, big cloud providers, I think the push in things that's going to happen in the next few years is there's just going to be a bigger migration to public cloud. So then, between those, they have to differentiate themselves. Obvious is artificial intelligence, in a way that makes it easy to aggregate data from across platforms, to aggregate data from multi-cloud, effectively. To use that data in a meaningful way that's going to drive, not only better decisions for your business, and better outcomes, but drives our opportunities for customers, drives opportunities for employees and how they work. We're at a really interesting point in technology where we get to tell technology what to do. It's going beyond us, it's no longer what we're telling it to do, it's going to go beyond us. So, how we effectively manage that is going to be where we see that data flow, and those big five or big four, really take that to the next level. - Now, one of the things that Ginni Rometty said was, I forget the exact step, but it was like, 80% of the data, is not searchable. Kind of implying that it's sitting somewhere behind a firewall, presumably on somebody's premises. So, it was kind of interesting. You're talking about, certainly, a lot of momentum for public cloud, but at the same time, a lot of data is going to stay where it is. - Yeah, we're assuming that a lot of this data is just sitting there, available and ready, and we look at the desperate, or disparate kind of database situation, where you have 29 databases, and two of them have unique quantifiers that tie together, and the rest of them don't. So, there's nothing that you can do with that data. So, artificial intelligence is just that, it's artificial intelligence, so, they know, that's machine learning, that's natural language, that's classification, there's a lot of different parts of that that are moving, but we also have to have IT, good data infrastructure, master data management, compliance, there's so many moving parts to this, that it's not just about the data anymore. - I want to ask Steve to chime in here, go ahead. - Yeah, so, we also have to change the mentality that it's not just enterprise data. There's data on the web, the biggest thing is Internet of Things, the amount of sensor data will make the current data look like chump change. So, data is moving faster, okay. And this is where the sophistication of machine learning needs to kick in, going from just mostly supervised-learning today, to unsupervised learning. And in order to really get into, as I said, big data, and credible AI does the who, what, where, when, and how, but not the why. And this is really the Holy Grail to crack, and it's actually under a new moniker, it's called explainable AI, because it moves beyond just correlation into root cause analysis. Once we have that, then you have the means to be able to tap into augmented intelligence, where humans are working with the machines. - Karen, please. - Yeah, so, one of the things, like what Carla was saying, and what a lot of us had said, I like to think of the advent of ML technologies and AI are going to help me as a data architect to love my data better, right? So, that includes protecting it, but also, when you say that 80% of the data is unsearchable, it's not just an access problem, it's that no one knows what it was, what the sovereignty was, what the metadata was, what the quality was, or why there's huge anomalies in it. So, my favorite story about this is, in the 1980s, about, I forget the exact number, but like, 8 million children disappeared out of the US in April, at April 15th. And that was when the IRS enacted a rule that, in order to have a dependent, a deduction for a dependent on your tax returns, they had to have a valid social security number, and people who had accidentally miscounted their children and over-claimed them, (laughter) over the years them, stopped doing that. Well, some days it does feel like you have eight children running around. (laughter) - Agreed. - When, when that rule came about, literally, and they're not all children, because they're dependents, but literally millions of children disappeared off the face of the earth in April, but if you were doing analytics, or AI and ML, and you don't know that this anomaly happened, I can imagine in a hundred years, someone is saying some catastrophic event happened in April, 1983. (laughter) And what caused that, was it healthcare? Was it a meteor? Was it the clown attacking them? - That's where I was going. - Right. So, those are really important things that I want to use AI and ML to help me, not only document and capture that stuff, but to provide that information to the people, the data scientists and the analysts that are using the data. - Great story, thank you. Bob, you got a thought? You got the mic, go, jump in here. - Well, yeah, I do have a thought, actually. I was talking about, what Karen was talking about. I think it's really important that, not only that we understand AI, and machine learning, and data science, but that the regular folks and companies understand that, at the basic level. Because those are the people who will ask the questions, or who know what questions to ask of the data. And if they don't have the tools, and the knowledge of how to get access to that data, or even how to pose a question, then that data is going to be less valuable, I think, to companies. And the more that everybody knows about data, even people in congress. Remember when Zuckerberg talked about? (laughter) - That was scary. - How do you make money? It's like, we all know this. But, we need to educate the masses on just basic data analytics. - We could have an hour-long panel on that. - Yeah, absolutely. - Peter, you and I were talking about, we had a couple of questions, sort of, how far can we take artificial intelligence? How far should we? You know, so that brings in to the conversation of ethics, and bias, why don't you pick it up? - Yeah, so, one of the crucial things that we all are implying is that, at some point in time, AI is going to become a feature of the operations of our homes, our businesses. And as these technologies get more powerful, and they diffuse, and know about how to use them, diffuses more broadly, and you put more options into the hands of more people, the question slowly starts to turn from can we do it, to should we do it? And, one of the issues that I introduce is that I think the difference between big data and AI, specifically, is this notion of agency. The AI will act on behalf of, perhaps you, or it will act on behalf of your business. And that conversation is not being had, today. It's being had in arguments between Elon Musk and Mark Zuckerberg, which pretty quickly get pretty boring. (laughing) At the end of the day, the real question is, should this machine, whether in concert with others, or not, be acting on behalf of me, on behalf of my business, or, and when I say on behalf of me, I'm also talking about privacy. Because Facebook is acting on behalf of me, it's not just what's going on in my home. So, the question of, can it be done? A lot of things can be done, and an increasing number of things will be able to be done. We got to start having a conversation about should it be done? - So, humans exhibit tribal behavior, they exhibit bias. Their machine's going to pick that up, go ahead, please. - Yeah, one thing that sort of tag onto agency of artificial intelligence. Every industry, every business is now about identifying information and data sources, and their appropriate sinks, and learning how to draw value out of connecting the sources with the sinks. Artificial intelligence enables you to identify those sources and sinks, and when it gets agency, it will be able to make decisions on your behalf about what data is good, what data means, and who it should be. - What actions are good. - Well, what actions are good. - And what data was used to make those actions. - Absolutely. - And was that the right data, and is there bias of data? And all the way down, all the turtles down. - So, all this, the data pedigree will be driven by the agency of artificial intelligence, and this is a big issue. - It's really fundamental to understand and educate people on, there are four fundamental types of bias, so there's, in machine learning, there's intentional bias, "Hey, we're going to make "the algorithm generate a certain outcome "regardless of what the data says." There's the source of the data itself, historical data that's trained on the models built on flawed data, the model will behave in a flawed way. There's target source, which is, for example, we know that if you pull data from a certain social network, that network itself has an inherent bias. No matter how representative you try to make the data, it's still going to have flaws in it. Or, if you pull healthcare data about, for example, African-Americans from the US healthcare system, because of societal biases, that data will always be flawed. And then there's tool bias, there's limitations to what the tools can do, and so we will intentionally exclude some kinds of data, or not use it because we don't know how to, our tools are not able to, and if we don't teach people what those biases are, they won't know to look for them, and I know. - Yeah, it's like, one of the things that we were talking about before, I mean, artificial intelligence is not going to just create itself, it's lines of code, it's input, and it spits out output. So, if it learns from these learning sets, we don't want AI to become another buzzword. We don't want everybody to be an "AR guru" that has no idea what AI is. It takes months, and months, and months for these machines to learn. These learning sets are so very important, because that input is how this machine, think of it as your child, and that's basically the way artificial intelligence is learning, like your child. You're feeding it these learning sets, and then eventually it will make its own decisions. So, we know from some of us having children that you teach them the best that you can, but then later on, when they're doing their own thing, they're really, it's like a little myna bird, they've heard everything that you've said. (laughing) Not only the things that you said to them directly, but the things that you said indirectly. - Well, there are some very good AI researchers that might disagree with that metaphor, exactly. (laughing) But, having said that, what I think is very interesting about this conversation is that this notion of bias, one of the things that fascinates me about where AI goes, are we going to find a situation where tribalism more deeply infects business? Because we know that human beings do not seek out the best information, they seek out information that reinforces their beliefs. And that happens in business today. My line of business versus your line of business, engineering versus sales, that happens today, but it happens at a planning level, and when we start talking about AI, we have to put the appropriate dampers, understand the biases, so that we don't end up with deep tribalism inside of business. Because AI could have the deleterious effect that it actually starts ripping apart organizations. - Well, input is data, and then the output is, could be a lot of things. - Could be a lot of things. - And that's where I said data equals human lives. So that we look at the case in New York where the penal system was using this artificial intelligence to make choices on people that were released from prison, and they saw that that was a miserable failure, because that people that release actually re-offended, some committed murder and other things. So, I mean, it's, it's more than what anybody really thinks. It's not just, oh, well, we'll just train the machines, and a couple of weeks later they're good, we never have to touch them again. These things have to be continuously tweaked. So, just because you built an algorithm or a model doesn't mean you're done. You got to go back later, and continue to tweak these models. - Mark, you got the mic. - Yeah, no, I think one thing we've talked a lot about the data that's collected, but what about the data that's not collected? Incomplete profiles, incomplete datasets, that's a form of bias, and sometimes that's the worst. Because they'll fill that in, right, and then you can get some bias, but there's also a real issue for that around cyber security. Logs are not always complete, things are not always done, and when things are doing that, people make assumptions based on what they've collected, not what they didn't collect. So, when they're looking at this, and they're using the AI on it, that's only on the data collected, not on that that wasn't collected. So, if something is down for a little while, and no data's collected off that, the assumption is, well, it was down, or it was impacted, or there was a breach, or whatever, it could be any of those. So, you got to, there's still this human need, there's still the need for humans to look at the data and realize that there is the bias in there, there is, we're just looking at what data was collected, and you're going to have to make your own thoughts around that, and assumptions on how to actually use that data before you go make those decisions that can impact lots of people, at a human level, enterprise's profitability, things like that. And too often, people think of AI, when it comes out of there, that's the word. Well, it's not the word. - Can I ask a question about this? - Please. - Does that mean that we shouldn't act? - It does not. - Okay. - So, where's the fine line? - Yeah, I think. - Going back to this notion of can we do it, or should we do it? Should we act? - Yeah, I think you should do it, but you should use it for what it is. It's augmenting, it's helping you, assisting you to make a valued or good decision. And hopefully it's a better decision than you would've made without it. - I think it's great, I think also, your answer's right too, that you have to iterate faster, and faster, and faster, and discover sources of information, or sources of data that you're not currently using, and, that's why this thing starts getting really important. - I think you touch on a really good point about, should you or shouldn't you? You look at Google, and you look at the data that they've been using, and some of that out there, from a digital twin perspective, is not being approved, or not authorized, and even once they've made changes, it's still floating around out there. Where do you know where it is? So, there's this dilemma of, how do you have a digital twin that you want to have, and is going to work for you, and is going to do things for you to make your life easier, to do these things, mundane tasks, whatever? But how do you also control it to do things you don't want it to do? - Ad-based business models are inherently evil. (laughing) - Well, there's incentives to appropriate our data, and so, are things like blockchain potentially going to give users the ability to control their data? We'll see. - No, I, I'm sorry, but that's actually a really important point. The idea of consensus algorithms, whether it's blockchain or not, blockchain includes games, and something along those lines, whether it's Byzantine fault tolerance, or whether it's Paxos, consensus-based algorithms are going to be really, really important. Parts of this conversation, because the data's going to be more distributed, and you're going to have more elements participating in it. And so, something that allows, especially in the machine-to-machine world, which is a lot of what we're talking about right here, you may not have blockchain, because there's no need for a sense of incentive, which is what blockchain can help provide. - And there's no middleman. - And, well, all right, but there's really, the thing that makes blockchain so powerful is it liberates new classes of applications. But for a lot of the stuff that we're talking about, you can use a very powerful consensus algorithm without having a game side, and do some really amazing things at scale. - So, looking at blockchain, that's a great thing to bring up, right. I think what's inherently wrong with the way we do things today, and the whole overall design of technology, whether it be on-prem, or off-prem, is both the lock and key is behind the same wall. Whether that wall is in a cloud, or behind a firewall. So, really, when there is an audit, or when there is a forensics, it always comes down to a sysadmin, or something else, and the system administrator will have the finger pointed at them, because it all resides, you can edit it, you can augment it, or you can do things with it that you can't really determine. Now, take, as an example, blockchain, where you've got really the source of truth. Now you can take and have the lock in one place, and the key in another place. So that's certainly going to be interesting to see how that unfolds. - So, one of the things, it's good that, we've hit a lot of buzzwords, right now, right? (laughing) AI, and ML, block. - Bingo. - We got the blockchain bingo, yeah, yeah. So, one of the things is, you also brought up, I mean, ethics and everything, and one of the things that I've noticed over the last year or so is that, as I attend briefings or demos, everyone is now claiming that their product is AI or ML-enabled, or blockchain-enabled. And when you try to get answers to the questions, what you really find out is that some things are being pushed as, because they have if-then statements somewhere in their code, and therefore that's artificial intelligence or machine learning. - [Peter] At least it's not "go-to." (laughing) - Yeah, you're that experienced as well. (laughing) So, I mean, this is part of the thing you try to do as a practitioner, as an analyst, as an influencer, is trying to, you know, the hype of it all. And recently, I attended one where they said they use blockchain, and I couldn't figure it out, and it turns out they use GUIDs to identify things, and that's not blockchain, it's an identifier. (laughing) So, one of the ethics things that I think we, as an enterprise community, have to deal with, is the over-promising of AI, and ML, and deep learning, and recognition. It's not, I don't really consider it visual recognition services if they just look for red pixels. I mean, that's not quite the same thing. Yet, this is also making things much harder for your average CIO, or worse, CFO, to understand whether they're getting any value from these technologies. - Old bottle. - Old bottle, right. - And I wonder if the data companies, like that you talked about, or the top five, I'm more concerned about their nearly, or actual $1 trillion valuations having an impact on their ability of other companies to disrupt or enter into the field more so than their data technologies. Again, we're coming to another perfect storm of the companies that have data as their asset, even though it's still not on their financial statements, which is another indicator whether it's really an asset, is that, do we need to think about the terms of AI, about whose hands it's in, and who's, like, once one large trillion-dollar company decides that you are not a profitable company, how many other companies are going to buy that data and make that decision about you? - Well, and for the first time in business history, I think, this is true, we're seeing, because of digital, because it's data, you're seeing tech companies traverse industries, get into, whether it's content, or music, or publishing, or groceries, and that's powerful, and that's awful scary. - If you're a manger, one of the things your ownership is asking you to do is to reduce asset specificities, so that their capital could be applied to more productive uses. Data reduces asset specificities. It brings into question the whole notion of vertical industry. You're absolutely right. But you know, one quick question I got for you, playing off of this is, again, it goes back to this notion of can we do it, and should we do it? I find it interesting, if you look at those top five, all data companies, but all of them are very different business models, or they can classify the two different business models. Apple is transactional, Microsoft is transactional, Google is ad-based, Facebook is ad-based, before the fake news stuff. Amazon's kind of playing it both sides. - Yeah, they're kind of all on a collision course though, aren't they? - But, well, that's what's going to be interesting. I think, at some point in time, the "can we do it, should we do it" question is, brands are going to be identified by whether or not they have gone through that process of thinking about, should we do it, and say no. Apple is clearly, for example, incorporating that into their brand. - Well, Silicon Valley, broadly defined, if I include Seattle, and maybe Armlock, not so much IBM. But they've got a dual disruption agenda, they've always disrupted horizontal tech. Now they're disrupting vertical industries. - I was actually just going to pick up on what she was talking about, we were talking about buzzword, right. So, one we haven't heard yet is voice. Voice is another big buzzword right now, when you couple that with IoT and AI, here you go, bingo, do I got three points? (laughing) Voice recognition, voice technology, so all of the smart speakers, if you think about that in the world, there are 7,000 languages being spoken, but yet if you look at Google Home, you look at Siri, you look at any of the devices, I would challenge you, it would have a lot of problem understanding my accent, and even when my British accent creeps out, or it would have trouble understanding seniors, because the way they talk, it's very different than a typical 25-year-old person living in Silicon Valley, right. So, how do we solve that, especially going forward? We're seeing voice technology is going to be so more prominent in our homes, we're going to have it in the cars, we have it in the kitchen, it does everything, it listens to everything that we are talking about, not talking about, and records it. And to your point, is it going to start making decisions on our behalf, but then my question is, how much does it actually understand us? - So, I just want one short story. Siri can't translate a word that I ask it to translate into French, because my phone's set to Canadian English, and that's not supported. So I live in a bilingual French English country, and it can't translate. - But what this is really bringing up is if you look at society, and culture, what's legal, what's ethical, changes across the years. What was right 200 years ago is not right now, and what was right 50 years ago is not right now. - It changes across countries. - It changes across countries, it changes across regions. So, what does this mean when our AI has agency? How do we make ethical AI if we don't even know how to manage the change of what's right and what's wrong in human society? - One of the most important questions we have to worry about, right? - Absolutely. - But it also says one more thing, just before we go on. It also says that the issue of economies of scale, in the cloud. - Yes. - Are going to be strongly impacted, not just by how big you can build your data centers, but some of those regulatory issues that are going to influence strongly what constitutes good experience, good law, good acting on my behalf, agency. - And one thing that's underappreciated in the marketplace right now is the impact of data sovereignty, if you get back to data, countries are now recognizing the importance of managing that data, and they're implementing data sovereignty rules. Everyone talks about California issuing a new law that's aligned with GDPR, and you know what that meant. There are 30 other states in the United States alone that are modifying their laws to address this issue. - Steve. - So, um, so, we got a number of years, no matter what Ray Kurzweil says, until we get to artificial general intelligence. - The singularity's not so near? (laughing) - You know that he's changed the date over the last 10 years. - I did know it. - Quite a bit. And I don't even prognosticate where it's going to be. But really, where we're at right now, I keep coming back to, is that's why augmented intelligence is really going to be the new rage, humans working with machines. One of the hot topics, and the reason I chose to speak about it is, is the future of work. I don't care if you're a millennial, mid-career, or a baby boomer, people are paranoid. As machines get smarter, if your job is routine cognitive, yes, you have a higher propensity to be automated. So, this really shifts a number of things. A, you have to be a lifelong learner, you've got to learn new skillsets. And the dynamics are changing fast. Now, this is also a great equalizer for emerging startups, and even in SMBs. As the AI improves, they can become more nimble. So back to your point regarding colossal trillion dollar, wait a second, there's going to be quite a sea change going on right now, and regarding demographics, in 2020, millennials take over as the majority of the workforce, by 2025 it's 75%. - Great news. (laughing) - As a baby boomer, I try my damnedest to stay relevant. - Yeah, surround yourself with millennials is the takeaway there. - Or retire. (laughs) - Not yet. - One thing I think, this goes back to what Karen was saying, if you want a basic standard to put around the stuff, look at the old ISO 38500 framework. Business strategy, technology strategy. You have risk, compliance, change management, operations, and most importantly, the balance sheet in the financials. AI and what Tony was saying, digital transformation, if it's of meaning, it belongs on a balance sheet, and should factor into how you value your company. All the cyber security, and all of the compliance, and all of the regulation, is all stuff, this framework exists, so look it up, and every time you start some kind of new machine learning project, or data sense project, say, have we checked the box on each of these standards that's within this machine? And if you haven't, maybe slow down and do your homework. - To see a day when data is going to be valued on the balance sheet. - It is. - It's already valued as part of the current, but it's good will. - Certainly market value, as we were just talking about. - Well, we're talking about all of the companies that have opted in, right. There's tens of thousands of small businesses just in this region alone that are opt-out. They're small family businesses, or businesses that really aren't even technology-aware. But data's being collected about them, it's being on Yelp, they're being rated, they're being reviewed, the success to their business is out of their hands. And I think what's really going to be interesting is, you look at the big data, you look at AI, you look at things like that, blockchain may even be a potential for some of that, because of mutability, but it's when all of those businesses, when the technology becomes a cost, it's cost-prohibitive now, for a lot of them, or they just don't want to do it, and they're proudly opt-out. In fact, we talked about that last night at dinner. But when they opt-in, the company that can do that, and can reach out to them in a way that is economically feasible, and bring them back in, where they control their data, where they control their information, and they do it in such a way where it helps them build their business, and it may be a generational business that's been passed on. Those kind of things are going to make a big impact, not only on the cloud, but the data being stored in the cloud, the AI, the applications that you talked about earlier, we talked about that. And that's where this bias, and some of these other things are going to have a tremendous impact if they're not dealt with now, at least ethically. - Well, I feel like we just got started, we're out of time. Time for a couple more comments, and then officially we have to wrap up. - Yeah, I had one thing to say, I mean, really, Henry Ford, and the creation of the automobile, back in the early 1900s, changed everything, because now we're no longer stuck in the country, we can get away from our parents, we can date without grandma and grandpa setting on the porch with us. (laughing) We can take long trips, so now we're looked at, we've sprawled out, we're not all living in the country anymore, and it changed America. So, AI has that same capabilities, it will automate mundane routine tasks that nobody wanted to do anyway. So, a lot of that will change things, but it's not going to be any different than the way things changed in the early 1900s. - It's like you were saying, constant reinvention. - I think that's a great point, let me make one observation on that. Every period of significant industrial change was preceded by the formation, a period of formation of new assets that nobody knew what to do with. Whether it was, what do we do, you know, industrial manufacturing, it was row houses with long shafts tied to an engine that was coal-fired, and drove a bunch of looms. Same thing, railroads, large factories for Henry Ford, before he figured out how to do an information-based notion of mass production. This is the period of asset formation for the next generation of social structures. - Those ship-makers are going to be all over these cars, I mean, you're going to have augmented reality right there, on your windshield. - Karen, bring it home. Give us the drop-the-mic moment. (laughing) - No pressure. - Your AV guys are not happy with that. So, I think the, it all comes down to, it's a people problem, a challenge, let's say that. The whole AI ML thing, people, it's a legal compliance thing. Enterprises are going to struggle with trying to meet five billion different types of compliance rules around data and its uses, about enforcement, because ROI is going to make risk of incarceration as well as return on investment, and we'll have to manage both of those. I think businesses are struggling with a lot of this complexity, and you just opened a whole bunch of questions that we didn't really have solid, "Oh, you can fix it by doing this." So, it's important that we think of this new world of data focus, data-driven, everything like that, is that the entire IT and business community needs to realize that focusing on data means we have to change how we do things and how we think about it, but we also have some of the same old challenges there. - Well, I have a feeling we're going to be talking about this for quite some time. What a great way to wrap up CUBE NYC here, our third day of activities down here at 37 Pillars, or Mercantile 37. Thank you all so much for joining us today. - Thank you. - Really, wonderful insights, really appreciate it, now, all this content is going to be available on theCUBE.net. We are exposing our video cloud, and our video search engine, so you'll be able to search our entire corpus of data. I can't wait to start searching and clipping up this session. Again, thank you so much, and thank you for watching. We'll see you next time.
SUMMARY :
- Well, and for the first
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Chris | PERSON | 0.99+ |
Steve | PERSON | 0.99+ |
Mark Lynd | PERSON | 0.99+ |
Karen | PERSON | 0.99+ |
Karen Lopez | PERSON | 0.99+ |
John | PERSON | 0.99+ |
Steve Ardire | PERSON | 0.99+ |
Amazon | ORGANIZATION | 0.99+ |
Bob | PERSON | 0.99+ |
Peter Burris | PERSON | 0.99+ |
Dave Vellante | PERSON | 0.99+ |
Chris Penn | PERSON | 0.99+ |
ORGANIZATION | 0.99+ | |
Carla Gentry | PERSON | 0.99+ |
Dave | PERSON | 0.99+ |
Theo Lau | PERSON | 0.99+ |
Carla | PERSON | 0.99+ |
Kevin L. Jackson | PERSON | 0.99+ |
Microsoft | ORGANIZATION | 0.99+ |
IBM | ORGANIZATION | 0.99+ |
Peter | PERSON | 0.99+ |
Tony Flath | PERSON | 0.99+ |
Tony | PERSON | 0.99+ |
April, 1983 | DATE | 0.99+ |
Apple | ORGANIZATION | 0.99+ |
Silicon Valley | LOCATION | 0.99+ |
Ray Kurzweil | PERSON | 0.99+ |
Zuckerberg | PERSON | 0.99+ |
New York | LOCATION | 0.99+ |
ORGANIZATION | 0.99+ | |
2020 | DATE | 0.99+ |
two | QUANTITY | 0.99+ |
75% | QUANTITY | 0.99+ |
Ginni Rometty | PERSON | 0.99+ |
Bob Hayes | PERSON | 0.99+ |
80% | QUANTITY | 0.99+ |
GovCloud | ORGANIZATION | 0.99+ |
35 years | QUANTITY | 0.99+ |
2025 | DATE | 0.99+ |
Oklahoma | LOCATION | 0.99+ |
Mark Zuckerberg | PERSON | 0.99+ |
US | LOCATION | 0.99+ |
two questions | QUANTITY | 0.99+ |
United States | LOCATION | 0.99+ |
April | DATE | 0.99+ |
SiliconANGLE Media | ORGANIZATION | 0.99+ |
29 databases | QUANTITY | 0.99+ |
Mark | PERSON | 0.99+ |
7,000 languages | QUANTITY | 0.99+ |
five billion | QUANTITY | 0.99+ |
Elon Musk | PERSON | 0.99+ |
1980s | DATE | 0.99+ |
Unconventional Ventures | ORGANIZATION | 0.99+ |
IRS | ORGANIZATION | 0.99+ |
Siri | TITLE | 0.99+ |
eight children | QUANTITY | 0.99+ |
both | QUANTITY | 0.99+ |
one | QUANTITY | 0.99+ |
Armlock | ORGANIZATION | 0.99+ |
French | OTHER | 0.99+ |
Trust Insight | ORGANIZATION | 0.99+ |
ninth year | QUANTITY | 0.99+ |
congress | ORGANIZATION | 0.99+ |
first time | QUANTITY | 0.99+ |
Paisan | PERSON | 0.99+ |
Brian Goldfarb, Splunk | CUBEConversation, July 2018
[Music] [Applause] welcome back everybody traffic here with the cube we're in our Palo Alto studios having a cube conversation the madness of the fall conference season is just over the horizon but hasn't it yet so we're excited we get some time to bring people into the studio and we're excited to have a mini time cube alone but he's never been to the studio before it's Franco farm the CMOS Blanc Brian great to see you great to be here this is amazing I could say how you like the day love it it's awesome it's nice you don't have to set up the lights every time like we do it at all the various shows so what's going on it's Blanc give us give us an update just had the quarterly or the quarterly announcement came out a month or so ago I wasn't into that before you came in another rock and roll revenue growth you guys just seemed to be hitting it time and time and time again on fire things are going great it's Blanc we just you know huge rounds of customer success lots of new products and technology I think it's been a big focus for us how do we continue to drive the innovation engine for security and for IT and really transform how you know as the leader in Big Data how we help our customers right super fun and from the marketing side you know we're driving an enormous amount of transformation I think you see this happening for CMOS everywhere their businesses are changing you know I fundamentally believe that the marketing department is the market department going through the most transformation right now Ramos or under the most pressure to change and so there's so much going on and how we're thinking about digital first how we're thinking about being data-driven Splunk on Splunk in many ways how we're using our own technology by our business and community which I know you guys are super passionate about here right who ended no a community but your kind of reputation when you came in is you're a data guy you like to measure the data you like to you know see how things are working not like you're your dad's old marketing department where you just kind of throw it up and write 50 percent of that budget is wasted we're just not sure which 50 percent yeah that was a great excuse for a long time you know I we talk about kind of hashtag math camp is one of the things we talk about a lot how do we think about leveraging data in everything that we do how do we get data-driven insights how do we have data-driven instrumentation and ultimately how are we using that to drive the marketing department I think what we're seeing so many places is first the accountability required and marketing is changing right you can no longer say if a 50-percent works I don't know what half its what's working right now for our customers and I you know we see the need to leverage data and digitization across businesses being a key part of that but we also can't lose sight in many ways of the need for community and the emotional connection that brands have with customers and I think one of the things no see the t-shirt that's right energy like one of the things we're doing really uniquely beyond being amazing at delivering big data solutions for our customers is creating that community in that connection building that emotion and doing that in a way where we can connect the dots from you know the relationship that we're building customer success and ultimately you know super happy and satisfied right customers and we've seen that we've been going to sponge-like compact who is my first cube gig in 2012 oh my god back at the Aria knows that the cosmos is the Cosmo so you guys have you know a super vibrant community really passionate and engaged and I don't know if it's by smart planning or circumstance or you know a little bit of both but you know kind of your play in the security market as the security market has just exploded yeah and using machine data which oh by the way has something to do with IOT and IOT so you know you guys are really well positioned sitting on all that machine generator you think about the roots around IT first right how do we help IT professionals find out what's going wrong with their systems and fix them as fast as possible they can really focus on customer outcomes taking those same patterns to security which you rightly acknowledge on fire super important board level issues and now we think about businesses going through digital evolution but they're iteratively trying to add more and more digital components you see it in the marketing department right we have better access to data so we can become more digital and as we see our customers evolve the patterns that were successful in IT and security now work in other parts of the business a great example this is a customer sample Yelp wait in Bay Area I don't know if for you if it's not on Yelp and I'm not looking at a review I can't eat there because it's too much risk but the they they were working through how did they improve the quality of the experiences customers have a food delivery it's not a mighty thing this so it's not security but it's how do you take their data and begin to investigate the root causes of issues right how do you then monitor and detect changes in those patterns and how do you automate and analyze the resolution with the end goal of very clearly having bet warmer food for customers right so it's been an amazing experience for them and if amazing outcomes and all of that is as more and more data explodes across the business you see Splunk adding value in every department so I'd love to get your take something we talk a lot about on the cube and you've been in the business for a long time before spunk as well and that's you know before data was really a liability it was expensive to gather it was expensive to store you had to buy a bunch of boxes and stick it in a data center and usually bought like 75% more than you needed in case you had a bump so it was really kind of a liability now obviously as you said data is a huge asset some would say the oil etc it's an asset but it's not measured on the balance sheet it's still not measuring on the balance sheet today so when you see some crazy valuations for a lot of companies say at Facebook or Google it's really a reflection of a multiple of the value of their data not necessarily just a multiple of the value their revenue or their earnings so as you work with your customers and as you measure kind of ROI on return of an investment say the Yelp investment it's a very different measure of ROI if the date if the investment on the data side is to drive better outcomes it's to drive more revenue is to drive maybe new product development innovation and yet again it's not really measured as an asset so how does that kind of play into how people decide to do projects how they measure the success of projects when it's it's not the cost center of it and that's the transformation that's happening right right digital is happening everywhere which really means data is happening everywhere and it's not just the structured data that we're used to it's all the unstructured data though data that people were unaware necessarily had enormous amounts of value certainly not balance sheet value but any value right right I think the world has realized in every department that that data has value and so those decisions on where to have projects if you will stems from that understanding and then the best way to evaluate it is what our customers doing right we're working with dahmer automotive company and their challenges were how do they secure you know their automotive systems their their plant systems and they had out there in the old world that was disconnected it was offline and as more and more of that becomes digital it's way easier to sort of take advantage of software like Splunk and apply it to those use cases and start to realize the value and the value at the end of the day comes from I'm solving a set of problems I'm more secure I'm happier customers I'm delivering better process I have faster time to resolution with my systems recovery and in marketing if you think about it from the CMO lens which could be you know it's really important we can start to tune you know our investments and the campaigns that we're running and the messages that we're using for the audience and it's particularly important in b2b marketing where you have a lot of data I put its longer sales cycles and I don't know you know I believe it's the CMO in many ways and the marketing department works for sales but it's our responsibility to drive the demand to help our business right but at the same time it's critical that we don't lose sight of that creates having that community that is so important to the loyalty that happens over time with brick right and that's another just such an interesting point right is back in the day you know the brand's controlled the messaging the brands controlled the information the brand's controlled the content that's no longer the case anymore by the time somebody inquires to you or participates in a campaign or shows a better spunk event or or goes to the website they've probably done some homework they've probably talked to their peers they've probably done some investigation on online and I know and I go online to investigate stuff I'm looking at the other people talking about the products that I'm interested not necessarily the company's product so it's a really different challenge from a CMO perspective to engage enable and help those people be your advocates while at the same time you don't really have this quite as control the message as you used to have back well hey that's actually I think a great thing right most customers are doing more due diligence on their own and I think there's there's research you can see research from others that say something to the effect of 60 or 70 percent of the decision-making process is occurring before they even engage the brand right and so once you recognize that how you tie all these things together becomes super important so I'll go back to community I don't want to over harp on it but that's the only way that you can effectively manage the unknown unknowns in that first 70% how do you get your customer advocates to tell their stories the value they're getting how do you make sure that the content that you think is relevant to the industry is out there you're contributing to it how do you in your just think about what you guys are doing right how do you distribute the value chain of content creation to more valuable individuals that then can tie back to organizations and how do you tie it the stories that we tell right right so I want to I want to test another hypothesis bite because again you're smart guys and we talk about a lot here which is really kind of classic old-school have a big number with some small conversion rate and that's your yield yep versus having a relatively small but targeted number with a much higher conversion rate because these are actually the people that care versus more of a kind of broadcasting yeah strategy are you seeing some of that are you trying to execute I think that's critical in the future of all marketing right the broad reach stuff is expensive it's really hard to measure the impact and yeah if you can do 10 million here and 50 basis points you'll get to some outcome but the world is pivoting to vary outcome driven right how many transactions that I Drive what's the value of those transactions or more importantly how successful were my customers that we care at Splunk deeply about getting the software adopting the software getting value from the software and so that has nothing to do with big broad you know hit a hundred million people right it's hit the right ten thousand people right pull them through a customer journey that starts with their research phase ultimately puts them through the adoption phase an incredibly successful way and that Tunes everything you're in best your philosophy what you reward because they think in the the older school model there was this belief that more is better right just do more what you're a successful company so what are you gonna do just do more more and more and more and more and more and you get these linear growth patterns on more and eventually that stops working because something else breaks and you realize that more wasn't actually doing anything it just felt good in the moment it was just more it was just more and it kept people busy and it was great it was great in those sense and so that's why measurement that's why being able to take your data and get value from your data and listen to your data is so critical in every department and marketing more than anyone else now has that data so you can be targeted I mean if I can tell you if I only touched five people and those five people became incredibly successful customers that's an amazing marketing campaign right with huge success yeah versus I ran a commercial during the Super Bowl and I touched you know 240 million people but no one bought any software you might feel good about that right but it isn't necessary driving the outcomes and the results and then b2b that's so critical yeah and obviously we're huge believers of that and also on the community side as well because you know we want to get peers you know your buyers peers talking about their experience with the product is very very different than reading your marketing brochure or those types of things so it's such a critical component I mean just with the Yelp example that's a pure concept that applies exactly the same to enterprise software community like community is critically but digital is the trend that's driving all the change right that gives you access to data which forces accountability into new parts of the organization that never really had it before no more excuses and now you have this incredibly new community driven model which never used to be important but actually to me is the lifeblood of the long-term investment that marketers are making right right the other thing that you guys have done a good job kind of growing with the times if you will and that's customers want choice and they want buying choice right so you guys have obviously adopted cloud you have more subscription type of opportunity so what if you could speak to you know from a marketer point of view you have to kind of repackage things you've got to look for funny arbitrage opportunity I kind of screwed things up in the market your channel partner conflict you have to kind of manage all these things but but the reality is people want to buy the way they want to buy and you have to give them the options that they expect to be there and I think that's really the big change is the expectation is there that you have those different types no one's successful in isolation any more any belief that one vendor and one product is the solution to all ills is policy and so you know there's two views there one is what are you doing from a technology innovation perspective and that's for us very clearly focused on making sure Splunk and all the software you already have work better together the sum of the parts should be greater right right and then from a marketing perspective it's recognizing you know how you can go to market how you can sell with all the partner in the ecosystem right this isn't a competitive conversation it's how do we make customers successful and so Splunk and salesforce is better because I can look at my Salesforce data I can use Splunk I can drive my organization that's what we're doing inside the house and we see customers starting to do it right Splunk in Hadoop it's not about the Hadoop ecosystem per se being separate those that that data Lake coupled with our software is a better solution and so it's Punk with all these different technologies together being more effective is critical right and it's exactly what you said customers have what they have they've made the investments that they've made they have great reasons for all those things and I want to augment their success with ourself right right it's such an exciting time to be to be in marketing especially in the movie space so give the last word Brian for we cut out here Spong kampf 2019 is good what are you just knock off 18 18 is coming up so what can we expect how many people what what should people be making sure they get registered and get them glad it's not 2019 yet yes I have like 15 months and so we're not starting the planning on that we are calm 18 it's our amazing user conference you are there in 2012 we're gonna have almost 10,000 people there it's in Orlando Florida October 1st to October 4th it's it's really it's an amazing experience it really focused on celebrating our amazing user community now demonstrating all the way innovations and then bringing them together to share share ideas which i think is really for me as someone who's only been a spunk for almost two years so exciting every one of our customers is using our software at Splunk in innovative ways and what we're seeing more and more is it's expanding outside of just IT insecurity and so as our customers talk to each other share ideas share use cases we see the lightbulb moments the aha moments if you will going off and that part is incredible right well we'll be there again so yeah we're looking forward to it all right Brian well thanks for taking a few minutes out of your day on a Friday to it to stop by thanks for having me it's awesome a pleasure he's brian i'm jeff you're watching the cube we're in palo alto studios thanks for watching see you next time [Music] you
**Summary and Sentiment Analysis are not been shown because of improper transcript**
ENTITIES
Entity | Category | Confidence |
---|---|---|
2012 | DATE | 0.99+ |
10 million | QUANTITY | 0.99+ |
July 2018 | DATE | 0.99+ |
50 percent | QUANTITY | 0.99+ |
60 | QUANTITY | 0.99+ |
five people | QUANTITY | 0.99+ |
50 percent | QUANTITY | 0.99+ |
ORGANIZATION | 0.99+ | |
70 percent | QUANTITY | 0.99+ |
2019 | DATE | 0.99+ |
Super Bowl | EVENT | 0.99+ |
five people | QUANTITY | 0.99+ |
Yelp | ORGANIZATION | 0.99+ |
ORGANIZATION | 0.99+ | |
15 months | QUANTITY | 0.99+ |
October 4th | DATE | 0.99+ |
October 1st | DATE | 0.99+ |
Brian | PERSON | 0.99+ |
Brian Goldfarb | PERSON | 0.99+ |
Palo Alto | LOCATION | 0.99+ |
50-percent | QUANTITY | 0.99+ |
240 million people | QUANTITY | 0.98+ |
two views | QUANTITY | 0.98+ |
ten thousand people | QUANTITY | 0.98+ |
one product | QUANTITY | 0.98+ |
Orlando Florida | LOCATION | 0.97+ |
Bay Area | LOCATION | 0.97+ |
Aria | ORGANIZATION | 0.96+ |
Splunk | ORGANIZATION | 0.95+ |
today | DATE | 0.95+ |
brian | PERSON | 0.94+ |
first | QUANTITY | 0.93+ |
50 basis points | QUANTITY | 0.92+ |
both | QUANTITY | 0.92+ |
one vendor | QUANTITY | 0.92+ |
one | QUANTITY | 0.91+ |
almost two years | QUANTITY | 0.9+ |
Friday | DATE | 0.9+ |
Hadoop | TITLE | 0.89+ |
jeff | PERSON | 0.88+ |
bunch of boxes | QUANTITY | 0.87+ |
salesforce | ORGANIZATION | 0.86+ |
Ramos | PERSON | 0.84+ |
a hundred million people | QUANTITY | 0.83+ |
IOT | TITLE | 0.83+ |
75% more | QUANTITY | 0.82+ |
almost 10,000 people | QUANTITY | 0.78+ |
first cube | QUANTITY | 0.74+ |
a month or so | DATE | 0.73+ |
one of the things | QUANTITY | 0.72+ |
70% | QUANTITY | 0.7+ |
farm | ORGANIZATION | 0.68+ |
Blanc | PERSON | 0.65+ |
lot of companies | QUANTITY | 0.64+ |
every one | QUANTITY | 0.64+ |
palo alto | ORGANIZATION | 0.59+ |
Splunk | TITLE | 0.57+ |
18 | OTHER | 0.56+ |
dahmer | ORGANIZATION | 0.56+ |
Salesforce | ORGANIZATION | 0.54+ |
Cosmo | LOCATION | 0.52+ |
CMOS | ORGANIZATION | 0.52+ |
fall conference | EVENT | 0.5+ |
minutes | QUANTITY | 0.5+ |
places | QUANTITY | 0.49+ |
Karthik Rau & Arijit Mukherji, SignalFx | AWS Summit SF 2018
>> Announcer: Live from the Moscone Center. It's theCUBE! Covering AWS Summit San Francisco 2018. Brought to you by Amazon Web Services. (upbeat techno music) >> Hey, welcome back, everyone. We're live here in San Francisco. This is theCUBE's exclusive coverage of AWS Amazon Web Services Summit 2018 with my co-host Stu Miniman. We have two great guests. Hot startup from SingleFx, the CEO, Karthik Rau, and the CTO, Arijit Mukherji. Welcome to theCUBE. Good to see you again. >> Karthik: Yeah, great to see you again. Thanks for having us. >> So, we've been following you guys. You've been out five years. Two years in stealth, three years ago you launched on theCUBE. >> Karthik: Right here on theCUBE. >> We see you at AWS and VMware. Cloud's changed a lot. So, let's get an update. Karthik, take a minute to explain where you guys are at now company-wise, employees, traction momentum, product. Where are you guys at now? >> Karthik: Yeah, absolutely. So, SignalFx, first of all, let me tell you what we do. SignalFx is a realtime streaming operational intelligence solution. Basically, what that means is we collect monitoring data, operational data across the entire cloud environment, from the infrastructure all the way up to the applications. And we apply realtime analytics on that data to help people be a lot more proactive in their monitoring of these distributed environments. We launched the company in 2015. We come ... I'll let Arijit talk about our origins. We came out of Facebook. And we had a lot of experience building this to Facebook. In the past three years, we've been building up our company aggressively. We've now got hundreds of customers including several large Fortune 500 accounts, large web scale accounts like Acquia and HubSpot and Yelp and KAYAK. And we're over 100 employees now, about 120 employees. And yeah, doing great. >> So, Werner Vogels, the CTO, laid out on stage plus a great Matt Wood conversation about machine learning but the real thing that Werner laid out was the old way, the web server, multi-tier architecture stack kind of thing going on there to a more cloud DevOps horizontally scalable where sets of servers that could be spawned in parallel creates a new kind of operating model but also creates challenges around what to instrument. You know, as we would joke, someone left the lights on, implying EC2s been running. And all these kinds of things are going on. And you mentioned some of the Facebook kind of challenges. People were building their own scale. What have you guys learned and how does that apply today's modern infrastructure? What are some of the threshold challenges that companies are facing when they say, one, already there or I want to get there? How do you guys look at the main issues? >> Karthik: Do you want to take that? >> Yeah, so monitoring modern environments and infrastructure is actually quite a challenge. There's obviously a few things going around. One, as you mentioned, is the variety, the sheer variety of things. No longer just the three-tier architecture I have cloud services. I have containers. I have lambdas. I have my own applications. I have the cloud infrastructure itself that all needs to be monitored. And things are also becoming far more numerous. So, there's just many more of everything, right? And so, making sense of that space is becoming a big challenge. And our company was founded on the idea that monitoring is becoming an analytics problem. So, it's no longer about looking at individual servers or applications instances. It's more about making sense holistically over what's going on and being able to combine different types of data from different systems together to provide you with that high level view and that's the kind of functionality that we at SignalFx have been trying to provide. >> What are some of the data flows volumes look like. Cause I've heard multiple people talk about either Facebook or in open compute environments where there's just so much data coming in from the instrumentation that no human could actually get their arms around it. And you need to supplement it with machine learning and intelligence. I mean, is that something that you're seeing? What are some of the -- >> Yes, so actually what we see is different prospects or customers will be in different stages of a spectrum where maybe they were in a stage one where they're sort of using traditional architectures and then moving to these more modern systems. And as they get more modernized themselves, their use cases or the ways they wanted to do monitoring also gets more advanced. And so, we see the whole spectrum of it, as you mentioned. And so, understanding analytically how what we're is doing is great. But then you also want to take the human out of things as much as possible, right? >> Yeah. >> And make things more automated. And you want to look at the data and how things are behaving to learn from existing patterns to find outlines. So, that's really a very interesting challenge. And what I look at what we can do as a company going forward, like all the technological stuff that we can invest in, it's quite interesting. >> Yeah, Karthik, take us inside your customers. How does this modern monitoring, how does it change their business? How does it impact things like feedback loops and DevOps and everything that customers are having to deal in this kind of ever changing environment? >> Yeah, well I'll give you an example. There's a Fortune 500 company. They do product launches. And this is one of our customers and their product launches drive so much traffic that they do 80% of their business in the first two minutes of a product launch. And this is not at all uncommon in today's economy. And they're leveraging a lot of modern technologies, container architectures, serverless function architectures to spin up a bunch of capacity during these launches. And they were effectively flying blind most of the time. Because most of the traditional systems management monitoring solutions are not designed, A, to handle that volume. But, B, to handle the instant discovery requirements of if you're going to do 80% of your business in the first two minutes. So, the challenge is you're always playing defense. You're reacting to issues. And you're mostly flying blind. By leveraging SignalFx, they're getting realtime visibility, realtime discovery of these components as they're coming up. We're the only solution that can do that. So, literally within seconds of spinning up all of these containers, they're getting live streams into their dashboards, and live analytics, and live alerts. And what that's enabled them to do is be a lot more aggressive and effectively doing a lot more of these launches. So, that's driving their business and it's helping them drive their digital strategy forward. >> And microservices is really enabling you guys to be more relevant. Because truly the signal from the noise is where all these services reporting to? >> Karthik: Yeah. >> You talk about container madness. >> Karthik: There are two fundamental problems. So, one there's an architecture shift. And that's driving massive amounts of volume. You have physical machines that will live for three years in a data center. Divide it up into VMs, 10, 20 VMs per server. That'll maybe live for a few months. To now every process running in it's own container that might live for a few minutes. So, you have a massive exponential explosion in the number of components. But that's not the only problem. I was part of an architectural shift at VMware for a number of years. We weren't just affecting an architecture change. What's happening now is there's a cultural change and a process change that's happening as well. Because with containers, your development team can push changes directly out into a production environment. And what you're finding is you're going from sequential product development to parallel product development and a massive exponential increase in the number of code pushes. The only way you can operationalize that is you have to have realtime visibility in everything that's happening. Otherwise, the left arm doesn't know what the right arm is doing. >> John: And you need prescriptive and predictive analytics. >> Exactly. And you need predictive analytics to identify there's something unusual here. It's not a problem yet. But this is highly unusual and maybe it's your canary release. We need to do a code push. So, you want to roll it back. So, having that level of predictiveness becomes absolutely critical. >> Yeah, you mentioned realtime. We used to argue what really is realtime. And it was usually well in time to react to what the customer needs. What does realtime mean to your customers? Architecturally, is there something you do different to kind of understand what that means? >> Arijit: Yeah, so we actually fundamentally took a very different approach when we build a product. Where, typically, monitoring our metrics, monitoring was done with what we call a store and create or a batch-like architecture where you store all the data points that are coming in, then you create from it to any other use cases. While what we build at SignalFx is a fully end-to-end streaming architecture which is realtime. And what we mean by realtime is like two to three seconds between a data point coming through us and it's firing an alert or showing up in your chart. So, that's the kind of realtime. And it requires us to do lots of innovations up and down the stack. And we've built a lot of IP. We've got now patterns. And more are coming because the approach we took was quite novel. Different from-- >> John: You guys got a great management team. And looking at what you guys have done. I've been impressed with you guys. I want to just ask, Karthik, you mentioned about all these parallel processes that are going on. Totally agree. The process change, operationalizing an all new cultural way to create software manage the data. I mean, it really is the perfect storm for innovation. But also, it could literally screw people up. So, I got to ask you, who are you targeting for your customer? Who is the person that you talk to? Assuming it's kind of DevOps, so it's more like a cloud architect. Who do you target? Who do you sell to? Who's the buyer? Who uses your service? >> Karthik: Well, we see ... Every enterprise we see following a very similar journey. So, the first stage is, typically, you're just getting familiar with cloud. And you're probably just lifting and shifting enterprise workloads into the cloud. Probably experimenting with big data on the cloud. You're not yet doing microservices or containers or DevOps. And for them, we're still selling largely to classic IT. There just trying to get better visibility into their digital environment, you know, they're cloud environment. But then, what ends up happening is they very quickly get to what we call basically chaos. It's stage two. And it has a lot of parallels to shadow IT. What happened with SAS, where you have hundreds of different SAS tools is happening all over again with cloud but you've got hundreds or thousands of different operational tools. Different ways of doing monitoring, logging, security. And every team is doing it's own thing. And so, that's a big problem for enterprises who are trying to build best practices across their broader team. In that place, we're typically selling to departments because they don't have a centralize strategy yet. But what we find is the organizations at maturity have figured out that it's important to have certain centralized core services. And that doesn't mean they're forced on the end users. But they provide best practices around monitoring, logging, and such. And just make it easy for them to use those solutions. So, that's almost a new IT organization. It's platform engineering -- >> John: Is that a cloud architect? >> Platform engineering team, infrastructure engineering team, and they are effectively building best practices around the new stack not the traditional stack. >> So, you are or aren't targeting department level? Are you are? >> We sell to departments. But we also sell to the teams that are standardizing across the entire organization. >> So, cloud architects, for instance? >> Depends on the stage of the cloud journey. >> Or company. >> And the company, exactly. >> From an architectural standpoint, you talked that there's virtualization, there's containers, now serverless. How do you even figure out what to monitor in serverless? How fast is that changing? And how is that impacting your road map? >> So, serverless brings a very interesting challenge because they are very, very ephemeral. Like they're ephemeral in some sense. So, we realize there are two things. One is serverless, there's a reason why things are moving faster. It's because you want to be able to move faster. But then you also need to be able to monitor faster. It's no good monitoring serverless at five minutes later, for example. So, one of the things we invested in was how to get metrics, etc. and telemetry from these serverless environments in a very fast fashion. And that's something that we've done. The second thing we are doing that really works for this environment is afterall it's not about how many times a serverless function ran, it's about the value that it's providing the application that's running on it. And by focusing on a platform that let's you send these application metrics in great detail and then be able to monitor and analyze them, I think really amplifies the value in some sense. So, those are the two ... >> John: And talk about the ecosystems. One of the things I want to ask you guys because we've been seeing a collision between a lot of the different clouds. Clients want multicloud. Well, obviously, we're here at Amazon. They believe they should be the only cloud. But I think most customers would look at either legacy systems with some instrumentation and operational data to edge of the network, for instance. I mean, look at the edge of the network. That's just an extension of the data center depending on how you look at it. So, how do you guys view that kind of direction where customer says, "Hey, you know, I got a cloud architect. We're on Amazon. Of course, we have some old Microsoft stuff. So, we've got Azure going up there. We're kicking the tires on Google. And I got this whole IoT Edge project. SignalFx, instrument that for me. (laughs) Is that what you do? Or how do you deal with that? How would you deal with that kind of conversation? >> Well, I think most enterprises, the larger companies we see looking at multiple clouds. And they have different workloads running in different clouds, depending on the needs and what they're looking to do. So, the nice thing about a solution like SignalFx is we span all of these different architectures. And what we find is that most of the larger companies want to separate their business process solutions from their runtime architectures. Because they want to have a solution like SignalFx that it doesn't matter who you're using. If you choose to have your analytics intensive workloads in Google Cloud and your eCommerce workloads in Amazon, but you only want one system that will page someone in the middle of the night if there's a problem, then you have SignalFx to do that. And then you have your choice of runtime environments depending on what your developers need or what the business demands. We provide a lot of that glue across the different environments. >> Do you see that as the preferred architecture with most customers? Cause that makes a lot of sense. I mean, whether you're doing other data services, it kind of makes sense to separate out. Is that consistent? >> To have different applications >> Yeah. >> In different clouds? It depends. I mean, I think we see some people who are more comfortable running on a single cloud vendor and they make the decision based on what a portfolio of platforms and service features that are available. And they really like those, and they say it's easy to just go with one. But more often, we find people wanting to at least have some percentage running in a different cloud vendor. >> John: All right, final question. What's the secret sauce for the company? Tell us about the secret sauce. >> Arijit: I think-- >> We got the patents. I heard patents. You don't have to show all this exactly. But what is the secret DNA of the tech? What's the magic? >> I think it's our very unique architecture. It's entirely different from what you have. It's streaming and it focuses on scale, on timeliness, as well as on analytics capability. I think that unique combination is very special for us. And that, in a way, sort of allows us to address very, very different use cases, including this hybrid environments and what not, in a very effective way. So, it's a very, very powerful platform that can be used for many use cases. >> All right, so that was John's final question. Karthik, I've got one last one for you. What's it like being a CEO of a software company in the cloud era today compared to what it's been earlier in our career? >> Well, it's moving very, very quickly, right? I mean, technology always move very quickly. But I think compared to when I was at VMware in the mid 2000s, it just feels like every 18 months there's a new technology wave. You know, when we started our company five years ago, that was the first year that AWS eclipsed a billion dollars in sales and Dagra hadn't even launched. It launched a month after we started the company. And then serverless came. And now function architecture is all there. So, there's just so much change happening, and it's happening so quickly, it forces vendors like us to really be on the cutting edge and forward looking and making sure that you're keeping an eye out for what's coming cause the markets are moving way faster, I think, then they were 15 years ago. >> John: Well, Karthik, thanks so much. We appreciate you guys coming on, SignalFx. I'll give you the final word on the interview. Take a minute to share something with the audience that they might not know about SignalFx that they should know about. >> Well, I think what people may not realize is how realtime we can actually get. I think most people are used to doing all their monitoring and observation, and they think of realtime in the order of minutes, or if you can get stuff every 30 seconds. We really are the only realtime solution. That's why we say real realtime. We're on the order of seconds. You can build really, really sophisticated analytics and get visibility like you can't anywhere else. So, it's real, realtime. >> And that's soon to be table stakes. TheCUBE is realtime. We're live right here, on theCUBE here, in San Francisco at Amazon Web Services, AWS Summit 2018. We've been covering all the Amazon re:Invents since it started, of course. I'm John Furrier with Stu Miniman. Back with more live coverage after this short break. (upbeat techno music) (gentle instrumental music)
SUMMARY :
Brought to you by Amazon Web Services. Good to see you again. Karthik: Yeah, great to see you again. So, we've been following you guys. explain where you guys are at now on that data to help people And you mentioned some of the and that's the kind of functionality And you need to supplement it But then you also want to And you want to look at and DevOps and everything that customers Because most of the really enabling you guys You talk about But that's not the only problem. John: And you need prescriptive And you need predictive analytics to react to what the customer needs. So, that's the kind of realtime. Who is the person that you talk to? So, the first stage is, typically, the traditional stack. across the entire organization. of the cloud journey. And how is that impacting your road map? So, one of the things we invested in One of the things I want to ask you guys And then you have your choice it kind of makes sense to separate out. And they really like those, for the company? We got the patents. from what you have. in the cloud era today But I think compared to We appreciate you guys We're on the order of seconds. And that's soon to be table stakes.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
Karthik | PERSON | 0.99+ |
John | PERSON | 0.99+ |
2015 | DATE | 0.99+ |
Karthik Rau | PERSON | 0.99+ |
Arijit | PERSON | 0.99+ |
Amazon Web Services | ORGANIZATION | 0.99+ |
Arijit Mukherji | PERSON | 0.99+ |
Amazon | ORGANIZATION | 0.99+ |
Microsoft | ORGANIZATION | 0.99+ |
80% | QUANTITY | 0.99+ |
Stu Miniman | PERSON | 0.99+ |
Matt Wood | PERSON | 0.99+ |
10 | QUANTITY | 0.99+ |
John Furrier | PERSON | 0.99+ |
hundreds | QUANTITY | 0.99+ |
San Francisco | LOCATION | 0.99+ |
five years | QUANTITY | 0.99+ |
Acquia | ORGANIZATION | 0.99+ |
AWS | ORGANIZATION | 0.99+ |
two things | QUANTITY | 0.99+ |
Werner Vogels | PERSON | 0.99+ |
HubSpot | ORGANIZATION | 0.99+ |
two | QUANTITY | 0.99+ |
ORGANIZATION | 0.99+ | |
three years | QUANTITY | 0.99+ |
One | QUANTITY | 0.99+ |
Yelp | ORGANIZATION | 0.99+ |
one | QUANTITY | 0.99+ |
ORGANIZATION | 0.99+ | |
SignalFx | ORGANIZATION | 0.99+ |
first two minutes | QUANTITY | 0.99+ |
Werner | PERSON | 0.99+ |
second thing | QUANTITY | 0.99+ |
five years ago | DATE | 0.99+ |
three seconds | QUANTITY | 0.99+ |
three years ago | DATE | 0.99+ |
KAYAK | ORGANIZATION | 0.99+ |
Moscone Center | LOCATION | 0.98+ |
over 100 employees | QUANTITY | 0.98+ |
about 120 employees | QUANTITY | 0.98+ |
two fundamental problems | QUANTITY | 0.98+ |
mid 2000s | DATE | 0.98+ |
Two years | QUANTITY | 0.98+ |
15 years ago | DATE | 0.98+ |
three-tier | QUANTITY | 0.98+ |
first stage | QUANTITY | 0.97+ |
20 VMs | QUANTITY | 0.97+ |
VMware | ORGANIZATION | 0.97+ |
AWS Summit 2018 | EVENT | 0.96+ |
SingleFx | ORGANIZATION | 0.95+ |
thousands | QUANTITY | 0.94+ |
SAS | ORGANIZATION | 0.94+ |
today | DATE | 0.93+ |
Dagra | ORGANIZATION | 0.93+ |
first year | QUANTITY | 0.93+ |
Azure | TITLE | 0.92+ |
SignalFx | TITLE | 0.91+ |
five minutes later | DATE | 0.9+ |
Amazon Web Services Summit 2018 | EVENT | 0.9+ |
stage two | QUANTITY | 0.89+ |
one system | QUANTITY | 0.89+ |
Satyen Sangani, Alation | Big Data SV 2018
>> Announcer: Live from San Jose, it's theCUBE. Presenting Big Data Silicon Valley, brought to you by SiliconANGLE Media and its ecosystem partners. (upbeat music) >> Welcome back to theCUBE, I'm Lisa Martin with John Furrier. We are covering our second day of our event Big Data SV. We've had some great conversations, John, yesterday, today as well. Really looking at Big Data, digital transformation, Big Data, plus data science, lots of opportunity. We're excited to welcome back to theCUBE an alumni, Satyen Sangani, the co-founder and CEO of Alation. Welcome back! >> Thank you, it's wonderful to be here again. >> So you guys finish up your fiscal year end of December 2017, where in the first quarter of 2018. You guys had some really strong results, really strong momentum. >> Yeah. >> Tell us what's going on at Alation, how are you pulling this momentum through 2018. >> Well, I think we have had an enterprise focused business historically, because we solve a very complicated problem for very big enterprises, and so, in the last quarter we added customers like American Express, PepsiCo, Roche. And with huge expansions from our existing customers, some of whom, over the course of a year, I think went 12 X from an initial base. And so, we found some just incredible momentum in Q4 and for us that was a phenomenal cap to a great year. >> What about the platform you guys are doing? Can you just take a minute to explain what Alation does again just to refresh where you are on the product side? You mentioned some new accounts, some new use cases. >> Yeah. >> What's the update? Take a minute, talk about the update. >> Absolutely, so, you certainly know, John, but Alation's a data catalog and a data catalog essentially, you can think of it as Yelp or Amazon for data and information side of the enterprise. So if you think about how many different databases there are, how many different reports there are, how many different BI tools there are, how many different APIs there are, how many different algorithms there are, it's pretty dizzying for the average analyst. It's pretty dizzying for the average CIO. It's pretty dizzying for the average chief data officer. And particularly, inside of Fortune 500s where you have hundreds of thousands of databases. You have a situation where people just have too much signal or too much noise, not enough signal. And so what we do is we provide this Yelp for that information. You can come to Alation as a catalog. You can do a search on revenue 2017. You'll get all of the reports, all of the dashboards, all of the tables, all of the people that you might need to be able to find. And that gives you a single place of reference, so you can understand what you've got and what can answer your questions. >> What's interesting is, first of all, I love data. We're data driven, we're geeks on data. But when I start talking to folks that are outside the geek community or nerd community, you say data and they go, "Oh," because they cringe and they say, "Facebook." They see that data issues there. GDPR, data nightmare, where's the store, you got to manage it. And then, people are actually using data, so they're realizing how hard (laughs) it is. >> Yeah >> How much data do we have? So it's kind of like a tropic disillusionment, if you will. Now they got to get their hands on it. They've got to put it to work. >> Yeah. >> And they know that So, it's now becoming really hard (laughs) in their mind. This is business people. >> Yeah. >> They have data everywhere. How do you guys talk to that customer? Because, if you don't have quality data, if you don't have data you can trust, if you don't have the right people, it's hard to get it going. >> Yeah. >> How do you guys solve that problem and how do you talk to customers? >> So we talk a lot about data literacy. There is a lot of data in this world and that data is just emblematic of all of the stuff that's going on in this world. There's lots of systems, there's lots of complexity and the data, basically, just is about that complexity. Whether it's weblogs, or sensors, or the like. And so, you can either run away from that data, and say, "Look, I'm going to not, "I'm going to bury my head in the sand. "I'm going to be a business. "I'm just going to forget about that data stuff." And that's certainly a way to go. >> John: Yeah. >> It's a way to go away. >> Not a good outlook. >> I was going to say, is that a way of going out of business? >> Or, you can basically train, it's a human resources problem fundamentally. You've got to train your people to understand how to use data, to become data literate. And that's what our software is all about. That's what we're all about as a company. And so, we have a pretty high bar for what we think we do as a business and we're this far into that. Which is, we think we're training people to use data better. How do you learn to think scientifically? How do you go use data to make better decisions? How do you build a data driven culture? Those are the sorts of problems that I'm excited to work on. >> Alright, now take me through how you guys play out in an engagement with the customer. So okay, that's cool, you guys can come in, we're getting data literate, we understand we need to use data. Where are you guys winning? Where are you guys seeing some visibility, both in terms of the traction of the usage of the product, the use cases? Where is it kind of coming together for you guys? >> Yeah, so we literally, we have a mantra. I think any early stage company basically wins because they can focus on doing a couple of things really well. And for us, we basically do three things. We allow people to find data. We allow people to understand the data that they find. And we allow them to trust the data that they see. And so if I have a question, the first place I start is, typically, Google. I'll go there and I'll try to find whatever it is that I'm looking for. Maybe I'm looking for a Mediterranean restaurant on 1st Street in San Jose. If I'm going to go do that, I'm going to do that search and I'm going to find the thing that I'm looking for, and then I'm going to figure out, out of the possible options, which one do I want to go to. And then I'll figure out whether or not the one that has seven ratings is the one that I trust more than the one that has two. Well, data is no different. You're going to have to find the data sets. And inside of companies, there could be 20 different reports and there could be 20 different people who have information, and so you're going to trust those people through having context and understanding. >> So, trust, people, collaboration. You mentioned some big brands that you guys added towards the end of calendar 2017. How do you facilitate these conversations with maybe the chief data officer. As we know, in large enterprises, there's still a lot of ownership over data silos. >> Satyen: Yep. >> What is that conversation like, as you say on your website, "The first data catalog designed for collaboration"? How do you help these organizations as large as Coca-Cola understand where all the data are and enable the human resources to extract values, and find it, understand it, and trust it? >> Yeah, so we have a very simple hypothesis, which is, look, people fundamentally have questions. They're fundamentally curious. So, what you need to do as a chief data officer, as a chief information officer, is really figure out how to unlock that curiosity. Start with the most popular data sets. Start with the most popular systems. Start with the business people who have the most curiosity and the most demand for information. And oh, by the way, we can measure that. Which is the magical thing that we do. So we can come in and say, "Look, "we look at the logs inside of your systems to know "which people are using which data sets, "which sources are most popular, which areas are hot." Just like a social network might do. And so, just like you can say, "Okay, these are the trending restaurants." We can say, "These are the trending data sets." And that curiosity allows people to know, what data should I document first? What data should I make available first? What data do I improve the data quality over first? What data do I govern first? And so, in a world where you've got tons of signal, tons of systems, it's totally dizzying to figure out where you should start. But what we do is, we go these chief data officers and say, "Look, we can give you a tool and a catalyst so "that you know where to go, "what questions to answer, who to serve first." And you can use that to expand to other groups in the company. >> And this is interesting, a lot of people you mentioned social networks, use data to optimize for something, and in the case of Facebook, they they use my data to target ads for me. You're using data to actually say, "This is how people are using the data." So you're using data for data. (laughs) >> That's right. >> So you're saying-- >> Satyen: We're measuring how you can use data. >> And that's interesting because, I hear a lot of stories like, we bought a tool, we never used it. >> Yep. >> Or people didn't like the UI, just kind of falls on the side. You're looking at it and saying, "Let's get it out there and let's see who's using the data." And then, are you doubling down? What happens? Do I get a little star, do I get a reputation point, am I being flagged to HR as a power user? How are you guys treating that gamification in this way? It's interesting, I mean, what happens? Do I become like-- >> Yeah, so it's funny because, when you think about search, how do you figure out that something's good? So what Google did is, they came along and they've said, "We've got PageRank." What we're going to do is we're going to say, "The pages that are the best pages are the ones "that people link to most often." Well, we can do the same thing for data. The data sources that are the most useful ones are the people that are used most often. Now on top of that, you can say, "We're going to have experts put ratings," which we do. And you can say people can contribute knowledge and reviews of how this data set can be used. And people can contribute queries and reports on top of those data sets. And all of that gives you this really rich graph, this rich social graph, so that now when I look at something it doesn't look like Greek. It looks like, "Oh, well I know Lisa used this data set, "and then John used it "and so at least it must answer some questions "that are really intelligent about the media business "or about the software business. "And so that can be really useful for me "if I have no clue as to what I'm looking at." >> So the problem that you-- >> It's on how you demystify it through the social connections. >> So the problem that you solve, if what I hear you correctly, is that you make it easy to get the data. So there's some ease of use piece of it, >> Yep. >> cataloging. And then as you get people using it, this is where you take the data literacy and go into operationalizing data. >> Satyen: That's right. >> So this seems to be the challenge. So, if I'm a customer and I have a problem, the profile of your target customer or who your customers are, people who need to expand and operationalize data, how would you talk about it? >> Yeah, so it's really interesting. We talk about, one of our customers called us, sort of, the social network for nerds inside of an enterprise. And I think for me that's a compliment. (John laughing) But what I took from that, and when I explained the business of Alation, we start with those individuals who are data literate. The data scientists, the data engineers, the data stewards, the chief data officer. But those people have the knowledge and the context to then explain data to other people inside of that same institution. So in the same way that Facebook started with Harvard, and then went to the rest of the Ivies, and then went to the rest of the top 20 schools, and then ultimately to mom, and dad, and grandma, and grandpa. We're doing the exact same thing with data. We start with the folks that are data literate, we expand from there to a broader audience of people that don't necessarily have data in their titles, but have curiosity and questions. >> I like that on the curiosity side. You spent some time up at Strata Data. I'm curious, what are some of the things you're hearing from customers, maybe partners? Everyone used to talk about Hadoop, it was this big thing. And then there was a creation of data lakes, and swampiness, and all these things that are sort of becoming more complex in an organization. And with the rise of myriad data sources, the velocity, the volume, how do you help an enterprise understand and be able to catalog data from so many different sources? Is it that same principle that you just talked about in terms of, let's start with the lowest hanging fruit, start making the impact there and then grow it as we can? Or is an enterprise needs to be competitive and move really, really quickly? I guess, what's the process? >> How do you start? >> Right. >> What do people do? >> Yes! >> So it's interesting, what we find is multiple ways of starting with multiple different types of customers. And so, we have some customers that say, "Look, we've got a big, we've got Teradata, "and we've got some Hadoop, "and we've got some stuff on Amazon, "and we want to connect it all." And those customers do get started, and they start with hundreds of users, in some case, they start with thousands of users day one, and they just go Big Bang. And interestingly enough, we can get those customers enabled in matters of weeks or months to go do that. We have other customers that say, "Look, we're going to start with a team of 10 people "and we're going to see how it grows from there." And, we can accommodate either model or either approach. From our prospective, you just have to have the resources and the investment corresponding to what you're trying to do. If you're going to say, "Look, we're going to have, two dollars of budget, and we're not going to have the human resources, and the stewardship resources behind it." It's going to be hard to do the Big Bang. But if you're going to put the appropriate resources up behind it, you can do a lot of good. >> So, you can really facilitate the whole go big or go home approach, as as well as the let's start small think fast approach. >> That's right, and we always, actually ironically, recommend the latter. >> Let's start small, think fast, yeah. >> Because everybody's got a bigger appetite than they do the ability to execute. And what's great about the tool, and what I tell our customers and our employees all day long is, there's only metric I track. So year over year, for our business, we basically grow in accounts by net of churn by 55%. Year over year, and that's actually up from the prior year. And so from my perspective-- >> And what does that mean? >> So what that means is, the same customer gave us 55 cents more on the dollar than they did the prior year. Now that's best in class for most software businesses that I've heard. But what matters to me is not so much that growth rate in and of itself. What it means to me is this, that nobody's come along and says, "I've mastered my data. "I understand all of the information side of my company. "Every person knows everything there is to know." That's never been said. So if we're solving a problem where customers are saying, "Look, we get, and we can find, and understand, "and trust data, and we can do that better last year "than we did this year, and we can do it even more "with more people," we're going to be successful. >> What I like about what you're doing is, you're bringing an element of operationalizing data for literacy and for usage. But you're really bringing this notion of a humanizing element to it. Where you see it in security, you see it in emerging ecosystems. Where there's a community of data people who know how hard it is and was, and it seems to be getting easier. But the tsunami of new data coming in, IOT data, whatever, and new regulators like GDPR. These are all more surface area problems. But there's a community coming together. How have you guys seen your product create community? Have you seen any data on that, 'cause it sounds like, as people get networked together, the natural outcome of that is possibly usage you attract. But is there a community vibe that you're seeing? Is there an internal collaboration where they sit, they're having meet ups, they're having lunches. There's a social aspect in a human aspect. >> No, it's humanal, no, it's amazing. So in really subtle but really, really powerful ways. So one thing that we do for every single data source or every single report that we document, we just put who are the top users of this particular thing. So really subtly, day one, you're like, "I want to go find a report. "I don't even know "where to go inside of this really mysterious system". Postulation, you're able to say, "Well, I don't know where to go, but at least I can go call up John or Lisa," and say, "Hey, what is it that we know about this particular thing?" And I didn't have to know them. I just had to know that they had this report and they had this intelligence. So by just discovering people in who they are, you pick up on what people can know. >> So people of the new Google results, so you mentioned Google PageRank, which is web pages and relevance. You're taking a much more people approach to relevance. >> Satyen: That's right. >> To the data itself. >> That's right, and that builds community in very, very clear ways, because people have curiosity. Other people are in the mechanism why in which they satisfy that curiosity. And so that community builds automatically. >> They pay it forward, they know who to ask help for. >> That's right. >> Interesting. >> That's right. >> Last question, Satyen. The tag line, first data catalog designed for collaboration, is there a customer that comes to mind to you as really one that articulates that point exactly? Where Alation has come in and really kicked open the door, in terms of facilitating collaboration. >> Oh, absolutely. I was literally, this morning talking to one of our customers, Munich Reinsurance, largest reinsurance customer or company in the world. Their chief data officer said, "Look, three years ago, "we started with 10 people working on data. "Today, we've got hundreds. "Our aspiration is to get to thousands." We have three things that we do. One is, we actually discover insights. It's actually the smallest part of what we do. The second thing that we do is, we enable people to use data. And the third thing that we do is, drive a data driven culture. And for us, it's all about scaling knowledge, to centers in China, to centers in North America, to centers in Australia. And they've been doing that at scale. And they go to each of their people and they say, "Are you a data black belt, are you a data novice?" It's kind of like skiing. Are you blue diamond or a black diamond. >> Always ski in pairs (laughs) >> That's right. >> And they do ski in pairs. And what they end up ultimately doing is saying, "Look, we're going to train all of our workforce to become better, so that in three, 10 years, we're recognized as one of the most innovative insurance companies in the world." Three years ago, that was not the case. >> Process improvement at a whole other level. My final question for you is, for the folks watching or the folks that are going to watch this video, that could be a potential customer of yours, what are they feeling? If I'm the customer, what smoke signals am I seeing that say, I need to call Alation? What are some of the things that you've found that would tell a potential customer that they should be talkin' to you guys? >> Look, I think that they've got to throw out the old playbook. And this was a point that was made by some folks at a conference that I was at earlier this week. But they basically were saying, "Look, the DLNA's PlayBook was all about providing the right answer." Forget about that. Just allow people to ask the right questions. And if you let people's curiosity guide them, people are industrious, and ambitious, and innovative enough to go figure out what they need to go do. But if you see this as a world of control, where I'm going to just figure out what people should know and tell them what they're going to go know. that's going to be a pretty, a poor career to go choose because data's all about, sort of, freedom and innovation and understanding. And we're trying to push that along. >> Satyen, thanks so much for stopping by >> Thank you. >> and sharing how you guys are helping organizations, enterprises unlock data curiosity. We appreciate your time. >> I appreciate the time too. >> Thank you. >> And thanks John! >> And thank you. >> Thanks for co-hosting with me. For John Furrier, I'm Lisa Martin, you're watching theCUBE live from our second day of coverage of our event Big Data SV. Stick around, we'll be right back with our next guest after a short break. (upbeat music)
SUMMARY :
brought to you by SiliconANGLE Media Satyen Sangani, the co-founder and CEO of Alation. So you guys finish up your fiscal year how are you pulling this momentum through 2018. in the last quarter we added customers like What about the platform you guys are doing? Take a minute, talk about the update. And that gives you a single place of reference, you got to manage it. So it's kind of like a tropic disillusionment, if you will. And they know that How do you guys talk to that customer? And so, you can either run away from that data, Those are the sorts of problems that I'm excited to work on. Where is it kind of coming together for you guys? and I'm going to find the thing that I'm looking for, that you guys added towards the end of calendar 2017. And oh, by the way, we can measure that. a lot of people you mentioned social networks, I hear a lot of stories like, we bought a tool, And then, are you doubling down? And all of that gives you this really rich graph, It's on how you demystify it So the problem that you solve, And then as you get people using it, and operationalize data, how would you talk about it? and the context to then explain data the volume, how do you help an enterprise understand have the resources and the investment corresponding to So, you can really facilitate the whole recommend the latter. than they do the ability to execute. What it means to me is this, that nobody's come along the natural outcome of that is possibly usage you attract. And I didn't have to know them. So people of the new Google results, And so that community builds automatically. is there a customer that comes to mind to And the third thing that we do is, And what they end up ultimately doing is saying, that they should be talkin' to you guys? And if you let people's curiosity guide them, and sharing how you guys are helping organizations, Thanks for co-hosting with me.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
PepsiCo | ORGANIZATION | 0.99+ |
Lisa Martin | PERSON | 0.99+ |
Satyen Sangani | PERSON | 0.99+ |
John | PERSON | 0.99+ |
American Express | ORGANIZATION | 0.99+ |
Alation | ORGANIZATION | 0.99+ |
Roche | ORGANIZATION | 0.99+ |
Satyen | PERSON | 0.99+ |
thousands | QUANTITY | 0.99+ |
Lisa | PERSON | 0.99+ |
55 cents | QUANTITY | 0.99+ |
Australia | LOCATION | 0.99+ |
Amazon | ORGANIZATION | 0.99+ |
Coca-Cola | ORGANIZATION | 0.99+ |
2018 | DATE | 0.99+ |
10 people | QUANTITY | 0.99+ |
three | QUANTITY | 0.99+ |
John Furrier | PERSON | 0.99+ |
hundreds | QUANTITY | 0.99+ |
Yelp | ORGANIZATION | 0.99+ |
San Jose | LOCATION | 0.99+ |
China | LOCATION | 0.99+ |
Harvard | ORGANIZATION | 0.99+ |
ORGANIZATION | 0.99+ | |
two | QUANTITY | 0.99+ |
Today | DATE | 0.99+ |
2017 | DATE | 0.99+ |
55% | QUANTITY | 0.99+ |
second day | QUANTITY | 0.99+ |
North America | LOCATION | 0.99+ |
ORGANIZATION | 0.99+ | |
today | DATE | 0.99+ |
two dollars | QUANTITY | 0.99+ |
20 different people | QUANTITY | 0.99+ |
yesterday | DATE | 0.99+ |
SiliconANGLE Media | ORGANIZATION | 0.99+ |
last year | DATE | 0.99+ |
three years ago | DATE | 0.99+ |
first | QUANTITY | 0.99+ |
second thing | QUANTITY | 0.99+ |
One | QUANTITY | 0.99+ |
one | QUANTITY | 0.99+ |
first quarter of 2018 | DATE | 0.99+ |
20 different reports | QUANTITY | 0.99+ |
three things | QUANTITY | 0.98+ |
theCUBE | ORGANIZATION | 0.98+ |
last quarter | DATE | 0.98+ |
DLNA | ORGANIZATION | 0.98+ |
third thing | QUANTITY | 0.98+ |
Three years ago | DATE | 0.98+ |
each | QUANTITY | 0.98+ |
single | QUANTITY | 0.98+ |
both | QUANTITY | 0.98+ |
1st Street | LOCATION | 0.98+ |
Big Bang | EVENT | 0.98+ |
this year | DATE | 0.98+ |
Strata Data | ORGANIZATION | 0.97+ |
12 X | QUANTITY | 0.97+ |
GDPR | TITLE | 0.97+ |
seven ratings | QUANTITY | 0.96+ |
Alation | PERSON | 0.95+ |
this morning | DATE | 0.95+ |
Big Data SV 2018 | EVENT | 0.94+ |
first data | QUANTITY | 0.94+ |
Teradata | ORGANIZATION | 0.93+ |
10 years | QUANTITY | 0.93+ |
Making Sense Of Cloud Complexity
(upbeat music) >> This is theCUBE from Silicon ANGLE Media. I'm Paul Gillin. The cloud is all the rage these days, but as companies move to the cloud, and some of them seeking simplicity, what they find is they actually get complexity. Because they want to balance their resources, they want to hedge their bets, they don't want to get locked in, so they end up doing business with multiple cloud providers, and often with an on premise cloud as well. That creates cost complexity, and that's what Cloud Health Technologies is addressing. My guest is Tom Axbey, he's the new CEO of Cloud Health Technologies, a Boston based company, recently raised $46 million, they have software that helps companies understand their cloud costs and of course, to reduce them as well. So, Tom, just a couple weeks on the job, welcome to theCUBE. >> Right, thank you Paul, nice to be here. >> I'm sure you could tell better what Cloud Health does, than I can, so why don't you give your description. >> Actually, I mean you just did a very good set up for me. I mean Cloud Health is the de facto standard, cloud service management software. And as you quite rightly pointed out, One of the complexities now, is have a multi-cloud or hybrid cloud environment. So people aren't making a single vendor bet. That of course, increases, as you mentioned, the complexity and the costs controls, the governance, security, even more, and that's what we do. We manage all that complexity and give our customers a single pane of glass to help manage and optimize their cloud experience. >> When do customers typically come to you? Are they in a crisis, or are they coming to you earlier in the process, to avoid that crisis? >> You know, it's all over the map. It depends on their cloud maturity. So, customers, we've got, who are early customers, who were literally born in the cloud. So you think of services such as AirBnB and Pinterest, and Yelp!, you know, those services are cloud based right from the get go. What they've done is experienced tremendous growth, on global basis by offering these services, managing huge data sets, in the public cloud. But, they also had the expertise, because they were going through that right from the beginning. As soon as that scale becomes unmanageable, as it does, and that complexity becomes greater in a multi-cloud environment, they bring us in. It's just that their technical acumen was a little bit more advanced than say someone in the enterprise, who's been managing data centers and they want to migrate to the cloud. But they find that their expertise is in the data center world, and their expectations are, I want the same governance and management that I had in my data center, as I move to the cloud. So you're really embarking on the beginning of their cloud journey. Then sort of the third set of our customers are MSPs. So these are actually cloud service providers, who are basically offering their customers, and they're the trusted source for their customers, all the aggregated services that are available for them, and their experience. Mainly small-medium businesses and mid-market businesses will go through the MSPs, but they're customers for us too. >> Talk about complexity, what are some of the unique characteristics of the cloud environment that create complexity that perhaps customers don't always anticipate? >> Well the first thing is, is the pace of innovation in the cloud is at light speed. You've got these cloud vendors, Amazon, Microsoft, Google, and now you got IBM, you got Oracle, and many other ones, Alibaba, and AsiaPac, they're all increasing their service offerings at a rapid pace of innovation. Just keeping up to speed with the domain expertise is very very complex. Then, when you migrate to the cloud, you're migrating services, critical business services, and just like any other environment, computing environment, whether it's distributed computing or client server, you got to manage those complexities, so your business services and applications can run smoothly. As you know from certainly your experience, there's an inordinate amount of moving parts, and even more so in the cloud. Now, you multiply that by a multi-cloud or a cloud, or a hybrid cloud experience, and certainly, being able to aggregate that data, becomes a business critical task. >> We hear a lot about multi-cloud and customers trying to hedge their bets, is that a major force in the industry right now? Do you see companies actively trying to diversify the number of providers that they work with? >> We do, yeah, absolutely, and obviously, the larger the company, and the larger their cloud spend, the more likely they are to do that. So their not reliant on one cloud provider, and also they're experiencing different paces of innovation from the cloud providers, who are jockeying for that innovation right now. We're really focused on as well is the hybrid cloud. It could be a multi-cloud environment, but it also could be their private data center they're managing, or both. So yeah, we do see a huge trend in that. >> When customers come to you for the first time, and you do an initial analysis, what are typically some of the areas where you find the greatest inefficiencies, the greatest opportunities to save costs? >> Sure, I think it depends again on where they are in their cloud journey. They may be moving to the cloud, or thinking about it, and they want is some kind of visibility because they're so used to having tight controls, visibility, and budgets within their data center, because that environment is so mature to them, and the cloud is like the wild west to them. They're going to get these monthly bills, or they got to commit to certain workloads, or resources, without really understanding what their usage patterns are going to be. So we may come in and help with the migration, capacity planning, and certainly their forecasting abilities. The more mature they are, they want to start allocating costs, maybe by department, or by geographic regions, so they're getting more and more sophisticated in terms of their cost breakdown and their usage patterns and when those usage patterns happen. But also, as they control their costs, one of the ways they can do that is to buy future visibility, if you will, into those resources or compute power from the cloud providers. Being able to figure that out from a histotical and perspective billing standpoint, can be incredibly valuable to the customers. >> So what kinds of data do you provide for them? >> Well we provide essentially a window of aggregated roll-up of any particular service that they could have. So it could be their financial data in terms of their usage information, which resources or compute loads are working, also as they've deployed stovepipe data vendors for performance management or configuration management, security management, all of that comes into play as well, so we can roll up that aggregated data source. So they got a single pane of glass into sort of their entire environment. That could be at the VP level, who's running a multi-cloud environment, it could be at the financial level, where they're looking for cost controls, or could be the DevOps level where they're looking for anomalies or performance issues, or bottlenecks, or capacity planning, so at every level, we're trying to provide visibility into sort of the function and task that our customers have. >> Of course cloud vendors aren't interested in having their customers be multi-cloud, they want them to be single cloud, how cooperative do you find the vendors are in working with you to enable your customers to hedge their bets? >> I mean I think that they're very helpful, I mean number one, we've got deep relationships with all the cloud providers because we've been doing this a long time. Also, what we're doing is, we're hastening and accelerating our customers movement to the cloud by offering them the same visibility and governance and tools that they had in their data, or private data center world. So they actually embrace it, and they know it's going to be a multi-cloud environment, especially for the larger customers, and so, absolutely, we're helping that. >> Are customers beginning to look to broker their experiences, their costs, to move workloads sort of flexibly between different cloud providers, based, perhaps on even short term savings? >> They can do, yeah, absolutely. But again, short term savings are a trade off between long term savings, in terms of how much capacity you're buying, how much visibility you've got into your usage patterns as well. Certainly, that's the world that we're getting into these days, I mean, Amazon does per second billing now. When you think about all that data, it's absolutely, the complexity of it is absolutely mind boggling. >> The cloud world as Forester pointed out in a recent report, is consolidating into basically three big players, and then sort of everybody else. Do you think that's a good trend as far as customers are concerned? >> I think we've seen it over and over again, you see the dominant providers come forth and start taking over a marketplace, but there's always going to be room for other vendors. Now IBM and Oracle certainly are not just going to lay down. People like VMware are getting into the cloud business as well. They're the dominate ones right now, absolutely. I think what's good for the business is the trend itself of people moving all these workloads to the cloud and having more control over it, so that it'd actually be transparent as to who the cloud provider is. >> You certainly had the opportunity to take executive positions in a number of companies, what was it about this opportunity that appealed to you? >> Well, that's a very good question, I'd been at Rave for quite some time, especially in the high tech world, and we had a very successful run there, and we were acquired by a private equity firm. I was looking around and perhaps making a move, and I'd been fascinated by the cloud, and what it was doing, and how transformative it was to business. It was very akin to experiences I've had in my career, selling infrastructure software. I was at IBM, Tivoli for example, I was at MicroMUSE, and they were basically undergoing exactly the same transformation, in client server and distributed computing days. I was also aware of the investors and a couple of board members of Cloud Health, and I recall their very first investment, and it was explained to me by one their investors, this is Tivoli for the cloud. And of course, that resonated with me. I thought, that's brilliant, that's so simple, 'cause you've got exactly the same complexities, and then I tracked the company, had the opportunity to meet the founders, and I saw how they had executed against their vision, I saw the caliber of the team there. So, when an opportunity came up because the CEO and co-founder Dan Phillips was moving into the Chairman role, as my partner now, I jumped at it. >> You say Tivoli for the cloud, is an interesting analogy, of course the difference with Tivoli and cloud, is that Tivoli is on premise. You control the infrastructure, you have access to all the interfaces you need, not necessarily the case with the cloud. What are some of the difficulties that you encounter with getting customers the information that they need from their cloud providers? >> Well certainly the cloud, like I said, the pace of innovation is huge. So you've really got to be up to speed with the latest offerings, and if you look at all those APIs and how they could be changing, new services that they could be coming out with, literally on week by week basis, you've got to keep track of all of those. Then you've got to have a flexible architecture so you can actually easily integrate with those data sources and also understand the necessary workflows to present all that data in a consumable way. So it really is a very fast pace of innovation right now, and I think that's why the analogy of Tivoli for the cloud was a good one because you are aggregating all that data, you're given critical insight into, certainly back then, their network and infrastructure, business services, so the analogy holds true, but I think you're right, the pace of innovation is much quicker. >> Now, talk about how you justify your cost, what kind of deliverables do you promise customers in exchange for what you charge them? >> Fortunately, the deliverables are born out of history. We've got incredible ROIs. As you know, the monthly spend as it increases, as people's cloud experience grows, those costs can spiral quickly. I think that when people talk about the cost, we always talk about the value. What value are you looking for? How are you going to optimize your environment? So the savings we can save just on their billing or utilization, and then there's the governance, and then people want to do departmental charge backs or geo charge backs, and we can help them with that cost allocation. So we tend to talk about value more than cost. >> Where do customers leave money on the table though? Where do you find some of the greatest disconnects between what they could be spending and what they really are spending? >> It all comes down to consumption. If you, just like if you're deciding which mobile phone bill you want to get based on what your projected consumption is going to be, you know, they want to lock you into the biggest one, they're going to show you lots of different values for signing you up for a three year contract. It's the same for a cloud provider. The more you're willing to prepare, the more you can lock in your costs, and of course, as you do that, the risk is, you don't fulfill all of those costs and realize those savings. On the other hand, you maybe growing so exponentially quickly, that you're actually paying more than you would be, than if you just basically consumed a different pricing model. >> In general though, do you find that customers, if they manage their cloud costs wisely, do they, in the final analysis, save money by moving to the cloud versus an on premises architecture? >> Without a doubt. The time to deploy services is so quick. The time to integrate different facets of your business services is so quick. When you think about unlimited throughput, and speed, and storage, on a global basis for your services, it's unprecedented. >> Does your service cover software as a service as well? We do, I mean, we're a SAS company ourselves. So, as you know, many SAS companies are now providing services into the cloud. We could be collecting data from those services too. >> What's the future hold then for Cloud Health? Where do you want to take this company? >> I think that in beginning, I said we're the de facto standard for cloud service management. It's hard to claim you're really the de facto standard. Especially when we're a private company. I think what we want to do is continue to provide value, continue to innovate, continue to have that domain expertise, and when you look across the whole governance spectrum, about all these different systems, all these cloud providers, all these different data sources, it's absolutely immense. I think that always having that single pane of glass so that people can really get the visibility they need to optimize their services, we're going to be a very large company just doing that. >> I understand you have some ambitious growth plans this year in terms of the number of employees and also moving your headquarters. >> We do, I mean, I've only been on board for what, two and a half weeks, and there's already been 10 people hired since I've been there, so that's the pace of hiring right now. I think we'll end the year at about 240 employees, so probably hired about 80 employees, and then we are moving early next year, we're moving Fort Point to Downtown Crossing. So we got to accommodate them all. >> For those of you who are not familiar with Boston, Downtown Crossing is the center of town, and Four Point is the hot new area where GE is building it's new headquarters. In terms of how your business category develops, do you see this as a continuing to be a major independent category, type of services you provide, or do you think cloud vendors will ultimately acquire companies like yours and offer these services on their own? >> I think both is going to happen. I think cloud vendors will acquire companies who do stovepipe, perhaps functionality, for a certain area, but no cloud vendor's going to be able to offer the cross multi-cloud or hybrid cloud experience that we do. I think you're going to see both, but absolutely, the ability to manage multi and hybrid cloud environments is the key. >> It's something I always ask our Boston based guests, what are the advantages of being based in Boston? >> Well the advantage is absolutely huge, especially in this day and age. Boston has got an immense talent pool coming out every single year from universities, and that talent pool now wants to stay in Boston as opposed to move to other places. Because the city has gone through rejuvenation, it's a vibrant city, it's an invested in city, you mentioned GE, there's other companies moving here, it's a great time to be here, you've got many success points in the high tech arena such as HubSpot and Wayfair, and LogMeIn, publicly traded companies offering great opportunities, so I think the pace of innovation here is happening at a tremendous clip, so Boston's a great place to be. >> Glad to hear it, welcome to town. Congratulations on your growth, and much success to you. >> Tom: Great, well thank you very much for having me. >> Cloud complexity, simplified. I'm Pual Gillin, this is theCUBE. (upbeat music)
SUMMARY :
and of course, to reduce them as well. than I can, so why don't you give your description. I mean Cloud Health is the de facto standard, and Yelp!, you know, those services are cloud based and even more so in the cloud. the more likely they are to do that. and the cloud is like the wild west to them. or could be the DevOps level where they're looking especially for the larger customers, Certainly, that's the world that we're getting Do you think that's a good trend Now IBM and Oracle certainly are not just going to lay down. and I'd been fascinated by the cloud, What are some of the difficulties that you encounter so the analogy holds true, but I think you're right, So the savings we can save just on their billing the more you can lock in your costs, When you think about unlimited throughput, and speed, So, as you know, many SAS companies and when you look across the whole governance spectrum, I understand you have some ambitious growth plans so that's the pace of hiring right now. and Four Point is the hot new area and hybrid cloud environments is the key. in the high tech arena such as HubSpot and Wayfair, Glad to hear it, welcome to town. I'm Pual Gillin, this is theCUBE.
SENTIMENT ANALYSIS :
ENTITIES
Entity | Category | Confidence |
---|---|---|
IBM | ORGANIZATION | 0.99+ |
Oracle | ORGANIZATION | 0.99+ |
Alibaba | ORGANIZATION | 0.99+ |
Amazon | ORGANIZATION | 0.99+ |
Tom | PERSON | 0.99+ |
Microsoft | ORGANIZATION | 0.99+ |
Dan Phillips | PERSON | 0.99+ |
AsiaPac | ORGANIZATION | 0.99+ |
ORGANIZATION | 0.99+ | |
Tom Axbey | PERSON | 0.99+ |
Paul | PERSON | 0.99+ |
Paul Gillin | PERSON | 0.99+ |
Boston | LOCATION | 0.99+ |
Pual Gillin | PERSON | 0.99+ |
Tivoli | ORGANIZATION | 0.99+ |
10 people | QUANTITY | 0.99+ |
Cloud Health Technologies | ORGANIZATION | 0.99+ |
HubSpot | ORGANIZATION | 0.99+ |
Wayfair | ORGANIZATION | 0.99+ |
$46 million | QUANTITY | 0.99+ |
three year | QUANTITY | 0.99+ |
Downtown Crossing | LOCATION | 0.99+ |
Cloud Health | ORGANIZATION | 0.99+ |
both | QUANTITY | 0.99+ |
GE | ORGANIZATION | 0.99+ |
third set | QUANTITY | 0.99+ |
SAS | ORGANIZATION | 0.99+ |
MicroMUSE | ORGANIZATION | 0.99+ |
LogMeIn | ORGANIZATION | 0.99+ |
Silicon ANGLE Media | ORGANIZATION | 0.99+ |
two and a half weeks | QUANTITY | 0.98+ |
this year | DATE | 0.98+ |
first time | QUANTITY | 0.98+ |
Fort Point | LOCATION | 0.98+ |
AirBnB | ORGANIZATION | 0.98+ |
early next year | DATE | 0.98+ |
ORGANIZATION | 0.98+ | |
Yelp | ORGANIZATION | 0.97+ |
three big players | QUANTITY | 0.97+ |
about 80 employees | QUANTITY | 0.97+ |
about 240 employees | QUANTITY | 0.97+ |
one | QUANTITY | 0.96+ |
Cloud Health | TITLE | 0.96+ |
first investment | QUANTITY | 0.95+ |
Rave | ORGANIZATION | 0.95+ |
first thing | QUANTITY | 0.95+ |
Four Point | LOCATION | 0.93+ |
single vendor | QUANTITY | 0.91+ |
single pane | QUANTITY | 0.91+ |
second | QUANTITY | 0.9+ |
one cloud | QUANTITY | 0.85+ |
VMware | ORGANIZATION | 0.82+ |
single cloud | QUANTITY | 0.8+ |
Forester | ORGANIZATION | 0.76+ |
single year | QUANTITY | 0.69+ |
theCUBE | ORGANIZATION | 0.6+ |
couple | QUANTITY | 0.57+ |