Image Title

Search Results for Otis:

Anais Dotis Georgiou, InfluxData | Evolving InfluxDB into the Smart Data Platform


 

>>Okay, we're back. I'm Dave Valante with The Cube and you're watching Evolving Influx DB into the smart data platform made possible by influx data. Anna East Otis Georgio is here. She's a developer advocate for influx data and we're gonna dig into the rationale and value contribution behind several open source technologies that Influx DB is leveraging to increase the granularity of time series analysis analysis and bring the world of data into realtime analytics. Anna is welcome to the program. Thanks for coming on. >>Hi, thank you so much. It's a pleasure to be here. >>Oh, you're very welcome. Okay, so IO X is being touted as this next gen open source core for Influx db. And my understanding is that it leverages in memory, of course for speed. It's a kilo store, so it gives you compression efficiency, it's gonna give you faster query speeds, it gonna use store files and object storages. So you got very cost effective approach. Are these the salient points on the platform? I know there are probably dozens of other features, but what are the high level value points that people should understand? >>Sure, that's a great question. So some of the main requirements that IOCs is trying to achieve and some of the most impressive ones to me, the first one is that it aims to have no limits on cardinality and also allow you to write any kind of event data that you want, whether that's lift tag or a field. It also wants to deliver the best in class performance on analytics queries. In addition to our already well served metrics queries, we also wanna have operator control over memory usage. So you should be able to define how much memory is used for buffering caching and query processing. Some other really important parts is the ability to have bulk data export and import, super useful. Also, broader ecosystem compatibility where possible we aim to use and embrace emerging standards in the data analytics ecosystem and have compatibility with things like sql, Python, and maybe even pandas in the future. >>Okay, so a lot there. Now we talked to Brian about how you're using Rust and and which is not a new programming language and of course we had some drama around Russ during the pandemic with the Mozilla layoffs, but the formation of the Russ Foundation really addressed any of those concerns. You got big guns like Amazon and Google and Microsoft throwing their collective weights behind it. It's really, adoption is really starting to get steep on the S-curve. So lots of platforms, lots of adoption with rust, but why rust as an alternative to say c plus plus for example? >>Sure, that's a great question. So Rust was chosen because of his exceptional performance and rebi reliability. So while rust is synt tactically similar to c c plus plus and it has similar performance, it also compiles to a native code like c plus plus. But unlike c plus plus, it also has much better memory safety. So memory safety is protection against bugs or security vulnerabilities that lead to excessive memory usage or memory leaks. And rust achieves this memory safety due to its like innovative type system. Additionally, it doesn't allow for dangling pointers and dangling pointers are the main classes of errors that lead to exploitable security vulnerabilities in languages like c plus plus. So Russ like helps meet that requirement of having no limits on card for example, because it's, we're also using the Russ implementation of Apache Arrow and this control over memory and also Russ, Russ Russ's packaging system called crates IO offers everything that you need out of the box to have features like AY and a weight to fixed race conditions to protect against buffering overflows and to ensure thread safe ay caching structures as well. So essentially it's just like has all the control, all the fine grain control, you need to take advantage of memory and all your resources as well as possible so that you can handle those really, really high ity use cases. >>Yeah, and the more I learned about the the new engine and the, and the platform IOCs et cetera, you know, you, you see things like, you know, the old days not even to even today you do a lot of garbage collection in these, in these systems and there's an inverse, you know, impact relative to performance. So it looks like you're really, you know, the community is modernizing the platform, but I wanna talk about Apache Arrow for a moment. It's designed to address the constraints that are associated with analyzing large data sets. We, we know that, but please explain why, what, what is Arrow and and what does it bring to Influx db? >>Sure, yeah. So Arrow is a, a framework for defining in memory calmer data and so much of the efficiency and performance of IOCs comes from taking advantage of calmer data structures. And I will, if you don't mind, take a moment to kind of illustrate why calmer data structures are so valuable. Let's pretend that we are gathering field data about the temperature in our room and also maybe the temperature of our stove. And in our table we have those two temperature values as well as maybe a measurement value, timestamp value, maybe some other tag values that describe what room and what house, et cetera we're getting this data from. And so you can picture this table where we have like two rows with the two temperature values for both our room and the stove. Well usually our room temperature is regulated so those values don't change very often. >>So when you have calm oriented st calm oriented storage, essentially you take each row, each column and group it together. And so if that's the case and you're just taking temperature values from the room and a lot of those temperature values are the same, then you'll, you might be able to imagine how equal values will then neighbor each other and when they neighbor each other in the storage format. This provides a really perfect opportunity for cheap compression. And then this cheap compression enables high cardinality use cases. It also enables for faster scan rates. So if you wanna define like the min and max value of the temperature in the room across a thousand different points, you only have to get those a thousand different points in order to answer that question and you have those immediately available to you. But let's contrast this with a row oriented storage solution instead so that we can understand better the benefits of calmer oriented storage. >>So if you had a row oriented storage, you'd first have to look at every field like the temperature in, in the room and the temperature of the stove. You'd have to go across every tag value that maybe describes where the room is located or what model the stove is. And every timestamp you'd then have to pluck out that one temperature value that you want at that one times stamp and do that for every single row. So you're scanning across a ton more data and that's why row oriented doesn't provide the same efficiency as calmer and Apache Arrow is in memory calmer data, calmer data fit framework. So that's where a lot of the advantages come >>From. Okay. So you've basically described like a traditional database, a row approach, but I've seen like a lot of traditional databases say, okay, now we've got, we can handle colo format versus what you're talking about is really, you know, kind of native it, is it not as effective as the, is the form not as effective because it's largely a, a bolt on? Can you, can you like elucidate on that front? >>Yeah, it's, it's not as effective because you have more expensive compression and because you can't scan across the values as quickly. And so those are, that's pretty much the main reasons why, why RO row oriented storage isn't as efficient as calm, calmer oriented storage. >>Yeah. Got it. So let's talk about Arrow data fusion. What is data fusion? I know it's written in rust, but what does it bring to to the table here? >>Sure. So it's an extensible query execution framework and it uses Arrow as its in memory format. So the way that it helps influx DB IOx is that okay, it's great if you can write unlimited amount of cardinality into influx cbis, but if you don't have a query engine that can successfully query that data, then I don't know how much value it is for you. So data fusion helps enable the, the query process and transformation of that data. It also has a PANDAS API so that you could take advantage of PDA's data frames as well and all of the machine learning tools associated with pandas. >>Okay. You're also leveraging par K in the platform course. We heard a lot about Par K in the middle of the last decade cuz as a storage format to improve on Hadoop column stores. What are you doing with Par K and why is it important? >>Sure. So Par K is the calm oriented durable file format. So it's important because it'll enable bulk import and bulk export. It has compatibility with Python and pandas so it supports a broader ecosystem. Parque files also take very little disc disc space and they're faster to scan because again they're column oriented in particular, I think PAR K files are like 16 times cheaper than CSV files, just as kind of a point of reference. And so that's essentially a lot of the, the benefits of par k. >>Got it. Very popular. So and these, what exactly is influx data focusing on as a committer to these projects? What is your focus? What's the value that you're bringing to the community? >>Sure. So Influx DB first has contributed a lot of different, different things to the Apache ecosystem. For example, they contribute an implementation of Apache Arrow and go and that will support clearing with flux. Also, there has been a quite a few contributions to data fusion for things like memory optimization and supportive additional SQL features like support for timestamp, arithmetic and support for exist clauses and support for memory control. So yeah, Influx has contributed a a lot to the Apache ecosystem and continues to do so. And I think kind of the idea here is that if you can improve these upstream projects and then the long term strategy here is that the more you contribute and build those up, then the more you will perpetuate that cycle of improvement and the more we will invest in our own project as well. So it's just that kind of symbiotic relationship and appreciation of the open source community. >>Yeah. Got it. You got that virtuous cycle going, the people call it the flywheel. Give us your last thoughts and kind of summarize, you know, where what, what the big takeaways are from your perspective. >>So I think the big takeaway is that influx data is doing a lot of really exciting things with Influx DB IOCs and I really encourage if you are interested in learning more about the technologies that Influx is leveraging to produce IOCs, the challenges associated with it and all of the hard work questions and I just wanna learn more, then I would encourage you to go to the monthly tech talks and community office hours and they are on every second Wednesday of the month at 8:30 AM Pacific time. There's also a community forums and a community Slack channel. Look for the influx D DB underscore IAC channel specifically to learn more about how to join those office hours and those monthly tech tech talks as well as ask any questions they have about IOCs, what to expect and what you'd like to learn more about. I as a developer advocate, I wanna answer your questions. So if there's a particular technology or stack that you wanna dive deeper into and want more explanation about how influx TB leverages it to build IOCs, I will be really excited to produce content on that topic for you. >>Yeah, that's awesome. You guys have a really rich community, collaborate with your peers, solve problems, and you guys super responsive, so really appreciate that. All right, thank you so much and East for explaining all this open source stuff to the audience and why it's important to the future of data. >>Thank you. I really appreciate it. >>All right, you're very welcome. Okay, stay right there and in a moment I'll be back with Tim Yokum. He's the director of engineering for Influx Data and we're gonna talk about how you update a SaaS engine while the plane is flying at 30,000 feet. You don't wanna miss this.

Published Date : Nov 8 2022

SUMMARY :

to increase the granularity of time series analysis analysis and bring the world of data Hi, thank you so much. So you got very cost effective approach. it aims to have no limits on cardinality and also allow you to write any kind of event data that So lots of platforms, lots of adoption with rust, but why rust as an all the fine grain control, you need to take advantage of even to even today you do a lot of garbage collection in these, in these systems and And so you can picture this table where we have like two rows with the two temperature values for order to answer that question and you have those immediately available to you. to pluck out that one temperature value that you want at that one times stamp and do that for every about is really, you know, kind of native it, is it not as effective as the, Yeah, it's, it's not as effective because you have more expensive compression and because So let's talk about Arrow data fusion. It also has a PANDAS API so that you could take advantage of What are you doing with So it's important What's the value that you're bringing to the community? here is that the more you contribute and build those up, then the kind of summarize, you know, where what, what the big takeaways are from your perspective. So if there's a particular technology or stack that you wanna dive deeper into and want and you guys super responsive, so really appreciate that. I really appreciate it. Influx Data and we're gonna talk about how you update a SaaS engine while

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
Tim YokumPERSON

0.99+

Jeff FrickPERSON

0.99+

BrianPERSON

0.99+

AnnaPERSON

0.99+

James BellengerPERSON

0.99+

MicrosoftORGANIZATION

0.99+

Dave ValantePERSON

0.99+

JamesPERSON

0.99+

AmazonORGANIZATION

0.99+

three monthsQUANTITY

0.99+

16 timesQUANTITY

0.99+

GoogleORGANIZATION

0.99+

PythonTITLE

0.99+

mobile.twitter.comOTHER

0.99+

Influx DataORGANIZATION

0.99+

iOSTITLE

0.99+

TwitterORGANIZATION

0.99+

30,000 feetQUANTITY

0.99+

Russ FoundationORGANIZATION

0.99+

ScalaTITLE

0.99+

Twitter LiteTITLE

0.99+

two rowsQUANTITY

0.99+

200 megabyteQUANTITY

0.99+

NodeTITLE

0.99+

Three months agoDATE

0.99+

one applicationQUANTITY

0.99+

both placesQUANTITY

0.99+

each rowQUANTITY

0.99+

Par KTITLE

0.99+

Anais Dotis GeorgiouPERSON

0.99+

one languageQUANTITY

0.98+

first oneQUANTITY

0.98+

15 engineersQUANTITY

0.98+

Anna East Otis GeorgioPERSON

0.98+

bothQUANTITY

0.98+

one secondQUANTITY

0.98+

25 engineersQUANTITY

0.98+

About 800 peopleQUANTITY

0.98+

sqlTITLE

0.98+

Node Summit 2017EVENT

0.98+

two temperature valuesQUANTITY

0.98+

one timesQUANTITY

0.98+

c plus plusTITLE

0.97+

RustTITLE

0.96+

SQLTITLE

0.96+

todayDATE

0.96+

InfluxORGANIZATION

0.95+

under 600 kilobytesQUANTITY

0.95+

firstQUANTITY

0.95+

c plus plusTITLE

0.95+

ApacheORGANIZATION

0.95+

par KTITLE

0.94+

ReactTITLE

0.94+

RussORGANIZATION

0.94+

About three months agoDATE

0.93+

8:30 AM Pacific timeDATE

0.93+

twitter.comOTHER

0.93+

last decadeDATE

0.93+

NodeORGANIZATION

0.92+

HadoopTITLE

0.9+

InfluxDataORGANIZATION

0.89+

c c plus plusTITLE

0.89+

CubeORGANIZATION

0.89+

each columnQUANTITY

0.88+

InfluxDBTITLE

0.86+

Influx DBTITLE

0.86+

MozillaORGANIZATION

0.86+

DB IOxTITLE

0.85+

Steve Robinson, IBM - #IBMInterConnect 2016 - #theCUBE


 

>> Las Vegas. Extensive signal from the noise. It's the Q covering interconnect 2016. Brought to you by IBM. Now your host, John Hurry and Dave Ilan. >> Okay, Welcome back, everyone. We are here live in Las Vegas for exclusive coverage of IBM interconnect 2016. This is Silicon Angles. The Q. That's our flagship program. We go out to the events and extract the signal from the noise. I'm John Ferrier with my Coast Day Volante. Our next guest, Steve Robinson News. The GM of client technical engagement before that, in the cloud doing all the blue mix now has the army of technical soldiers out there doing all the action because it's so much robust. So much demand for horizontally scale. The sluices with vertically targeted, prepackaged application development. That's horrible. First you name it big data. Welcome back. Good to see you, John. Thanks. Good to be with you again. Always, like great to have you on because you got a great perspective. You understand the executive viewpoint. A 20 mile stare in the industry. But also you got the in the nuts and bolts in under the hood. >> That's right. A >> lot of action happening under the hood. So let's get that right away. Blue, Mrs Hot Night. Now it's about the developers. What's going on under the hood right now that customers are caring about? >> I always love the Cube. You guys were like one of the first guys talking to us two years ago when we just launched a blue makes on stage. We walked off, got in front of cameras here, and it was great. Over the past year, it's been it's been outstanding. We we're writing about 20,000 folks toe blue mix right now on public, we came out with dedicated and then what people had really been warning was local blue mix as well. So we finally have full hybrid chain that goes from behind the firewall to a single client dedicated cloud all the way up to the public as well. So we've been building that out with service is as well, so have over 106 service is on top of it. You'll see things like Watson, which is unique, our Dash CB analytics, which is unique Internet of things coming in as well. So it's been a great year old building it out and getting more clients on top of it, >> it's like really trying to change the airplane engine in 30,000 feet. Or, in your case, you guys were taken off and from the runway. How has that been? It's been growing pains, of course. Unlearning What? What's going on? What have you learned? Give us the update on >> changing the engine while the plane is flying, and we've used that analogy quite a bit in the labs and way have to show relevance in this market. You know, this market is probably the fastest face technical market I think I've ever been in, and it's moving at such a rapid pace. We had to ship a lot of technology out last year is well, we have every new middleware group in IBM. Putting service is on top of blue mix, so let's get it out there. Let's get it out fast. Now, of course, this year we're gonna harden it up a little bit as well. So more architectures, more points of view. Better look on how this stuff works together hardening up our container strategy, pulling it all the way back to the virtual machine. So both continue to expand it out but let's make it enterprise grade at the same time. >> And also, some differentiation with Watts has been a big play around Catnip. Yeah, really is different because right now with the quote, um, market the way it is court monetization is on number one's mind. Start from startups to enterprises. If you're in business, you want you're top line if you're starting to get monetization. So there's a little bit of IBM in here for people to take in. Well, >> you know, if you look at Watson, you know, when we first started with it, you know, it was this very large big chunk of software that she had to buy. And and we work with Mike Rodents Team toe. Can we chop it up into a set of service is Let's really make this a set of AP eyes, and we started noticing, you know, you saw in Main stage the other day out from Otis. You know, this was a pure startup. He's started picking up the social semantics. Let's pick up the you know, some of the works to text etcetera, conversions, and all of a sudden they're starting to add it in. They said they would have never had access to this technology before way Have that a P I said. Not growing up to 28 we announced a couple cool things this morning. We even showed how would improve your dating life. Probably need some of that with my wife is well to translate between the sexes there, but what people are doing with it now, it's kind of like blowing people. His mind is far beyond what the initial exception waas. >> So your team of your niche is when they get right. It's a large team. It's, but it's a new initiative. New Justice unit, New role for you Talk about that >> way. Kinda had >> a couple pockets of this, but way clearly found that getting clients to the cloud is both a technology challenge as well as a cultural challenge as well. So he brought together some technical experts to kind of help through that entire life chain help up front. You know, many clients are trying to figure out what their overall cloud strategy is, where they truly today and where do they want to get to be? And how can we help him with a road map? That kind of helps them through the transition. Many accounts are very comfortable with the only wanting to be private and only glimpsing forward Thio Public Cloud Helping us bridge across that as well. Then we have the lab service's teams and these air the rial ninjas, the Navy seals. They go as low as you can go and what they're helping. A good way. Yeah, that's good. That's good. That's why they're helping with this very specific technical issue. Technical deployments. A lot of our dedicated local environment. These guys, they're they're really helping it wire in a cz Well, and then we have the garages, you know, we're up Thio. Five of those were going. We announced four new Blockchain garages as well. And this is where firms air coming in to kind of explore do the innovative type project as well. So I think all the way from the initial inception through rolling it out into production, having that team to be able to support him across the >> board. And so this capability existed in IBM previously, But it existed in a sort of bespoke fashion that coordinated >> couple pockets here and there. We always have supports. We had various pockets a lap service's. But we won't really wanna have the capability of seeing that client all the way through their journey, bringing it all under me. We now can easily pass the baton, Handoff says. We need to have that consistent skill there with the clients all the way through their >> journey and is the What's the life cycle of these service is? Is it Is it both pre sales in and post there? Just posted >> many times we'll get involved like our cloud advisers would get involved. Presale. They'll say a specific workload wants to go to the cloud. What are the steps we need to take to make that happen? A CZ well, with our Laps Service's teams, you know, we kind of have, you know, anywhere from a 4 to 6 week engagement. Thio do a specific technology. Let's get it in place. Let's get it wired in et cetera, and then in the garage is you know, we could just take a very novel idea and get it up to, ah, minimal viable product in about a six week period. So again, we're not doing dance lessons for life but strategically placing key skills in with accounts toe. Help him get over that next hump of their journey. >> Steve, when you look at the spectrum from from public all the way down to private and everything in between are you, I wonder if you could describe the level of capability that you are able to achieve with the best practice on Prem with regard to cloud ability. It's service is all the wonderful attributes of child that we've come to know and love. Are you able to, you know, somewhat replicate that roughly replicate that largely replicate, exactly. Replicate that. Where are we today? >> Yeah, I think >> it's a great question. I think. You know, I think most of the clients that we're dealing with have been dealing with some virtualized infrastructure, probably more VMC as they as they've been kind of progressing. That story. One of the things we did it IBM is Could we bring a true cloud infrastructure back behind the firewall? Could we bring an open stack? We bring a cloud foundry base past all the way back through because the goal, of course, is if we could have the same infrastructure private, dedicated and public as they continue to grow and got more comfortable with the public cloud that could start taking work clothes that they had built in one location and start to migrate it out with you. That that local cloud the Maur used for EJ cases. So taking that system of record and building a p i's and allowing to do extensions to that allowing you access into data records that you have today dealing with a lot of extension type cases, you know the core application still needs to be federally regulated. It needs to be under compliance domain. It's gotta be under audit. But maybe I wantto connect it in with a Fitbit or connected in with with a lot Soon are connected in with the Internet of things sensor. I gotta go public cloud for that as well. So locally we can bring that same infrastructure in and then they could doom or service. Is that extended out in the hybrid scenario >> code basis? Because this has come up. Oracle claims this is their big claim to fame. That code base is the same on premise hybrid public. Is that an issue with that? Is that just their marketing, or does it matter what's IBM take on this? >> But we've done ah lot of work with the open standard communities to let's get to a true reference implementation. So on open Stack, we've been doing a lot of work with them, and this is one of the reasons we picked up the Blue box acquisition. Could we really provide a standard open stack locally and also replicate that dedicated and, of course, have it match a reference architecture in public as well? We've also done the same thing with clout. Foundry worked with Sam Ram G to be one of the first vendors, have a certified cloud. Foundry instance is the same local dedicated in public. I think that's kind of the Holy Grail. If you could get the same infrastructural base across all, three, magic can happen. >> But management's important and integration piece becomes the new complexity. I mean, I would say it sounds easy, but it's really hard. Okay, developing in the clouds. Easy, easier ways always used to be right, right well, but not for large enterprises. The integration becomes that new kind of like criteria, right? That separates kind of the junior from the senior type players. I mean do you see the same thing and what we believe >> we do? I think there's usually two issues. We start to see that this model looks great. Let's have the same code base across all three environments. What things? We noticed that a lot of folks, when you get into Private Cloud, had tried to roll their own. You know, open Stack is an open source Project clout. Foundry is an open source project. Let's pull it down and let's see units roll it out and manage it ourselves. These air a little bit you they're very dynamic environments, and they're also a bit punishing if you don't stay current with them, both of them update on a very regular basis. And we found a lot of firms once they applied tenor well, folks to it, they just could not keep up with the right pace of change. So when the technologies we invented was a notion called relay on, this allowed us to actually to use the public cloud is our master copy and then we could provide updates to get down to the dedicated environment and down to the local. This takes the headache completely away from the firm's on trying to keep that local version current. It's not manage service, but it's kind of a new way that we can provide manage patches down to that environment. >> So one of the problems we hear in our community is and presume IBM has some visibility on this. I'm thinking about last year, John, we're at the IBM Z announcement in January, rose 1,000,000 company talked a lot about bringing transaction analytic capabilities together. But one of the problems that our community has practitioners in our community course the data for analytics. A lot of it's in the cloud and a lot of transaction data sitting, you know, on the mainframe, something. How do they bring those two together? Do I remove the data into the data center? Do I do I move pieces in how you see >> we're seeing a lot of that. A lot of it was. Bring the technology down to where the data is, and and now you know the three amount of integration you can do with public data sources, private data sources, et cetera. We're seeing a lot more of the compute want to go out to the cloud as well. You know, we've done some things like around the dash, CB Service's et cetera, where I can start to extract some of that transactional data, but maybe only need a few pieces to really make the data set. That is important to me as I move it out, so I can actually, you know, extract that record. I can actually mask it into being something brand new, and then I could minute we mix it with public data tohave. It do brand new things as well, so I think you're gonna see a lot of dynamic capability across that with or cloud computing technologies coming back behind the firewall and then more ability to release that data be intermixed with public data as well. >> What's the number one thing that you're seeing from customers that you guys were executing on? There's always the low hanging fruit for the easy winds from bringing a team of street team, if you will out. Technical service is out to clients where they really putting that gather, not their five year plans, but their one year. Of course, there's a lot of that agile going on right now. New technologies. You can't isolate one thing and break everything. Za new model. What a customer is caring about, right? What's that? What's the common thing? I think >> over there in 2015 I think the discussion changed and went from Are we going to go to the cloud or we're going to the cloud now? How are we going to do it? And the nice thing about I think a lot of enterprise architecture groups kind of took a step back to say, What do we truly have to do? What is a common platform? What is an integration layer? How do we take some of our old applications and decomposed those into a set of AP eyes? How can we then mix that with public AP eyes? So probably taking one or two projects to be proof points so they could say, this thing really has the magic associated with it. We can really build stuff fast. If we do it the right way, it's gonna be in a catalyst to have the I t. Organization now take the tough steps in what's gonna be the commonality? What common service is are we going to use and how do we start breaking up >> around things you know, we have our own data science and our backcourt operation and one of the things that we always looked at with bloom. It's way start our Amazon. But now, with blue mix, you have a couple things kind of coming together in real time. You said it's getting hard, but those hardened areas are important identity. For instance, where's the data is an instruction and structure. I want a little mongo year or something over there, but with blue mix and compose, I oh, really has a nice fit. I want to explain to the folks we talked before he came on about this new dynamic of composed Io and some of the things that are gluing around blue mix. Could you share this >> William Davis King right? And I think people look to the Cloud Data Service is air. Probably it's the most critical, the most visible, and the one we have to harden up the most is well, even though IBM has been well known for D. B two and we've been a >> wire composed right >> that we did Cognos first, and then we followed up with composed by you because recent waded about, we did compose. I know about eight months ago what we liked about it was all of your favorite flavors, you know? So your your progress, your mongo, you're you're ready. But really having it behave like Like what you would want an enterprise database to do. You can back it up. You can have multiple versions of it. We can replicate itself >> is a perfect cloud need of civic >> class. It has all the cloud properties to it and all the enterprise. Great capabilities with it. Yeah, we've got that now in public, and then you're gonna start seeing dedicated, and you want >> to go bare metal, Just go to soft layer. It's not required right on these things where this will work in the cloud, and then you get the bare metal object you want pushed up the bare metal. No problem. Well, I think >> you know it. Almost hybrid is not gonna get a new definition around it. So it's all gonna be around control and automation, more automation. You need to go all the way up to a cloud foundry where it's managing all the health, checking and keeping your apple. I've etcetera. If you want to go all the way down to bare metal so you can tune it audited et cetera. You can do that as well. I think I've got one of the broader spectrum, is there? >> I'm impressed with the composer. I got to say, Go ahead, get hotel Excited by what? I get excited by just about every way. Just love the whole Dev Ops has been just a game changer in extras. Code has been around for a while, but it's actually going totally mainstream. That's right. The benefits are just off the charts. With Mobile, we have the mobile first guys on. Earlier in the Swift, we had 10 made 12 year old kid. I mean, it's just really amazing. Now that the APS themselves aren't the discussion, it's the under the hood. That's right, so you can have an app look and feel like it's targeted for a vertical, say, retail or whatever. But the actions under the hood yeah, yeah, more than ever. Now >> it's, you know it's funny this year, you know, Dick Tino to the Devil Obsession yesterday and you're the amount of proof points we had around it last year. We were scrambling a little bit and this year it's just we always had to thin out. That's how many guys were having great success with this stuff is coming into its own. >> It totally is. And you guys are give you guys Props were running as fast as you can and you're working hard. And it's not just talk. Yeah, it's It's it's legit. I'm gonna ask you a question. What's the big learnings from last year? This year? What's happened? What do you look back and say? Wow, we really learned a lot or something that might have been Magda ified for you in this journey this past year. >> A lot of it goes back to, you know, this changing culture at IBM, you know, the amount of code we put out in two years was just just unbelievable. But I think also the IBM becoming a true cloud company. Some of that we did with our own shop some, but we did through injecting it with acquisitions. You know, like to compose Io the cloud and team, the blue box guys, et cetera. I think we got the chops now to play it play pro ball way worked very hard, Teoh. How many folks, Can we attract the blue mix? We're getting up to 20,000 week. Right now. We're starting. Get some great recognition and the successes are rolling in as well. So a lot of hard work and a lot of busted knuckles. A lot of guys are tired. Definitely, definitely straight in the game now. >> Ready for the crow bait? Taking the pro GameCube madness starts on cute madness. There were, you know, keep matched all the brackets of the Cube alumni and vote on it turns into a hack a phone because everyone stuffed the ballots. Let's talk about pro ball for next year, a CZ. You guys continue? Sure. The theme here obviously is developer. I mean, the show could be dedicated 100%. The blooming LeBlanc up there kind of going fast at the end of this booth on the clock anymore. Time >> right. Like the Star Wars trailer we had >> going up, he needed more time. So it's good props you got for this year. What's going on the road map this year? What if some of the critical goals that you guys see on your group and then just in general for the thing a >> lot of the activities were gonna be doing again is hardening the stack. I've got a brand new team now called a Solution Architecture, where we're looking at it from top to bottom, taking customer scenarios and really testing it out. How do you do? Back up. How do you do? Disaster recovery? How do you do? Multi geography, You know, things like PC I compliance. The rial enterprise problems are now coming to the class global and their global. And with security and compliance, they're changing in a very dynamic fashion. We have to show how you can do those in the cloud. You'd be amazed on how many conversations we have with Si SOS every single week. Is the cloud secure? How do we do enterprise? Great workloads. IBM is bringing that story to the cloud as well. That's the story of >> a potato that content >> Curation is unbelievable, right? That's the hardest part. And it's not that we have it fixed either. But you were doing more of aggregating it together so that we can really pull it all together. I call it the diamond Mine versus the jewelry store. You know, we always have really did you got yet? The great answers out there somewhere. But if you don't start to pull it together into a single place So one of things we did this year was launched the blue mixed garage methodology where we took all of our best practices. We took text test cases, even sample code, and brought it into a single methodology site where people start to go out, pull it down, use it, etcetera. Previously, we had it scattered all over the place, and we're gonna be doing more things like that. Bring in the assets to the programmers, things that we've tried, things we've tested being more open about it, putting in a single location. >> Well, we certainly would like to help promote that. Any kind of those kind of customer reference architectures. Happy to pump on silicon angle with the bond outlook for the vibe. I'm sorry. Five for the show things year. What's the vibe this year? You know, I think I've >> been very impressed with it, and I think, you know, I've been stepping up its game If you go down to the blue. Mixed garages are motives. A motorcycle on stage, you know, kind of getting a little more hip and happening as well. But I think the clients here and this is always about the customer stories and some of the things that we're hearing from the three guys start ups that are doing GPS logistical management 22 to the big accounts, and the big banks that you really see have embraced the cloud and doing great stories on it as well. I think people come to this show so they see what their peers were doing. And they definitely walk away with a sense that the cloud Israel it's happening and 2016. It is really going to driving it home. That has to be part of everybody. Strategy motorcycles I had put on the Harley Man. We'll take it for a spin guarantee. Come on down >> and give my wife. When I got married, it was terms of conditions. That's right. That's right. Last, Watson that Yeah, Thanks, Steve. Thanks. Taking the time and great to see you again. Congratulations. What? They get technical engagement team that you have all the work that you did that blue mix noted certainly by the cube. Congratulations and continued success with Loomis congratulating >> you guys. Well, always a pleasure. >> Okay. Cube Madness, March 15th Cube Gems go to Twitter. And speaking of jewelry, we have Cube gems hashtag Cube gems. That's the highlights of the videos up there. Real time. And, of course, we're gonna get that TV for all. All the action videos are up there right now. I'll be right back with more coverage after this short break here in Las Vegas.

Published Date : Feb 23 2016

SUMMARY :

Brought to you by IBM. Good to be with you again. That's right. Now it's about the developers. I always love the Cube. What have you learned? pulling it all the way back to the virtual machine. So there's a little bit of IBM in here for people to take really make this a set of AP eyes, and we started noticing, you know, you saw in Main stage the other day out from Otis. New Justice unit, New role for you Talk way. cz Well, and then we have the garages, you know, we're up Thio. that coordinated We now can easily pass the baton, Handoff says. What are the steps we need to take to make that happen? level of capability that you are able to achieve with the best practice One of the things we did it IBM is Could we bring a true cloud That code base is the same on premise hybrid public. We've also done the same thing with clout. I mean do you see the same thing and what we believe And we found a lot of firms once they applied tenor well, folks to it, they just could not keep up with the right So one of the problems we hear in our community is and presume IBM has some visibility That is important to me as I move it out, so I can actually, you know, extract that record. for the easy winds from bringing a team of street team, if you will out. How can we then mix that with public AP eyes? But now, with blue mix, you have a couple things Probably it's the most critical, the most visible, and the one we have to harden up the most that we did Cognos first, and then we followed up with composed by you because recent waded about, It has all the cloud properties to it and all the enterprise. and then you get the bare metal object you want pushed up the bare metal. You need to go all the way up to a cloud foundry where it's managing all the Earlier in the Swift, we had 10 made 12 year old kid. it's, you know it's funny this year, you know, Dick Tino to the Devil Obsession yesterday and you're the amount And you guys are give you guys Props were running as fast as you can and you're working hard. Some of that we did with our own shop some, but we did through injecting it with acquisitions. I mean, the show could be dedicated What if some of the critical goals that you guys see on your group and then just in general for the thing a We have to show how you can do those in the cloud. Bring in the assets to the programmers, things that we've tried, things we've tested being more open about it, Happy to pump on silicon angle with the bond outlook for the vibe. been very impressed with it, and I think, you know, I've been stepping up its game If you go down to the blue. Taking the time and great to see you again. you guys. That's the highlights of the videos up there.

SENTIMENT ANALYSIS :

ENTITIES

EntityCategoryConfidence
IBMORGANIZATION

0.99+

StevePERSON

0.99+

JohnPERSON

0.99+

Dave IlanPERSON

0.99+

oneQUANTITY

0.99+

John FerrierPERSON

0.99+

2015DATE

0.99+

AmazonORGANIZATION

0.99+

John HurryPERSON

0.99+

Star WarsTITLE

0.99+

JanuaryDATE

0.99+

Steve RobinsonPERSON

0.99+

Sam Ram GPERSON

0.99+

Las VegasLOCATION

0.99+

OracleORGANIZATION

0.99+

10QUANTITY

0.99+

30,000 feetQUANTITY

0.99+

HandoffPERSON

0.99+

4QUANTITY

0.99+

2016DATE

0.99+

FiveQUANTITY

0.99+

last yearDATE

0.99+

100%QUANTITY

0.99+

five yearQUANTITY

0.99+

March 15thDATE

0.99+

LoomisPERSON

0.99+

This yearDATE

0.99+

one yearQUANTITY

0.99+

William Davis KingPERSON

0.99+

two issuesQUANTITY

0.99+

todayDATE

0.99+

three guysQUANTITY

0.99+

bothQUANTITY

0.99+

this yearDATE

0.99+

Dick TinoPERSON

0.99+

twoQUANTITY

0.99+

next yearDATE

0.99+

appleORGANIZATION

0.99+

ThioORGANIZATION

0.99+

two yearsQUANTITY

0.98+

two years agoDATE

0.98+

two projectsQUANTITY

0.98+

singleQUANTITY

0.98+

FirstQUANTITY

0.98+

20 mileQUANTITY

0.98+

1,000,000QUANTITY

0.97+

6 weekQUANTITY

0.97+

WatsonPERSON

0.97+

OtisPERSON

0.97+

OneQUANTITY

0.96+

first guysQUANTITY

0.96+

one locationQUANTITY

0.96+

threeQUANTITY

0.96+

yesterdayDATE

0.96+

first vendorsQUANTITY

0.96+

firstQUANTITY

0.95+

Dev OpsTITLE

0.95+

about 20,000 folksQUANTITY

0.94+

over 106 serviceQUANTITY

0.94+

12 year oldQUANTITY

0.94+

fourQUANTITY

0.93+

MagdaPERSON

0.93+