Untitled Document

|

|

|

|

|

@DevOps Summit |

|

|

@DevOps Summit |

|

|

|

|

|

|

@WebRTC Summit
|

|

|

|

|

|

@DevOps Summit |
|
Untitled Document

@DevOps Summit |

|

|

|

|

@ThingsExpo |

|

|

@DevOps Summit |

@ThingsExpo |

|

@DevOps Summit |

|

|

|

|

|

|

|

|

@DevOps Summit |

|

|

|

|

|

|

@DevOps Summit |

|

|

|

|

|

|

|

|

|
|
Untitled Document

Cloud Expo [email protected] |

Cloud Expo | DevOps Summit
|

@ThingsExpo |

|

|

|

|

@DevOps Summit
|
 @ThingsExpo
|

|
 @ThingsExpo
|
Untitled Document

|

|

|

|

|

|

|

|

|

|

|

@DevOps Summit |

|

|

|

|

@DevOps Summit |

|

|

|

|

|
.jpg)
|

|

|

|

|

|

@DevOps Summit |

@DevOps Summit |

|

|

|

@ThingsExpo |

|

@DevOps Summit |

|
Untitled Document
 |
|
   WebRTC Summit
   DevOps Summit
  
  
|
 |
Untitled Document
 |
|

 DevOps Summit

  

 WebRTC Summit

  

 
|
 |
Untitled Document
 |
|
 
DevOps Summit
 
 
Cloud Expo | DevOps Summit
 
@ThingsExpo

 
DevOps Summit

     
 
DevOps Summit
 
|
 |
Untitled Document
 |
|
 DevOps Summit


 @ThingsExpo



 DevOps Summit

 
 Cloud Expo | @ThingsExpo
 @ThingsExpo
 @ThingsExpo

 DevOps Summit
 DevOps Summit
 @ThingsExpo

 DevOps Summit
 
 DevOps Summit
 DevOps Summit
  
 DevOps Summit
 DevOps Summit



 @ThingsExpo

|
 |
|
From the Blogosphere Top @Docker Metrics | @DevOpsSummit #DevOps #APM #Monitoring
Each container runs a single process, has its own environment, utilizes virtual networks or has many methods of managing storage
Oct. 1, 2016 03:00 PM
Container Monitoring: Top Docker Metrics to Watch By Stefan Thies
Monitoring of Docker environments is challenging. Why? Because each container typically runs a single process, has its own environment, utilizes virtual networks, or has various methods of managing storage. Traditional monitoring solutions take metrics from each server and applications they run. These servers and applications running on them are typically very static, with very long uptimes. Docker deployments are different: a set of containers may run many applications, all sharing the resources of one or more underlying hosts. It's not uncommon for Docker servers to run thousands of short-term containers (e.g., for batch jobs) while a set of permanent services runs in parallel. Traditional monitoring tools not used to such dynamic environments are not suited for such deployments. On the other hand, some modern monitoring solutions (e.g. SPM from Sematext) were built with such dynamic systems in mind and even have out of the box reporting for docker monitoring. Moreover, container resource sharing calls for stricter enforcement of resource usage limits, an additional issue you must watch carefully. To make appropriate adjustments for resource quotas you need good visibility into any limits containers have reached or errors they have caused. We recommend using alerts according to defined limits; this way you can adjust limits or resource usage even before errors start happening.
Docker Containers != VMs or Servers. Forget your grandpa's old monitoring. Use monitoring designed for Docker.

Note: All images in this post are from Sematext's SPM Performance Monitoring tool and its Docker monitoring integration.
Watch Resources of Your Docker Hosts
Host CPU Understanding the CPU utilization of hosts and containers helps one optimize the resource usage of Docker hosts. The container CPU usage can be throttled in order to avoid a single busy container slowing down other containers by taking away all available CPU resources. Throttling the CPU time is a good way to ensure a minimum of processing power for essential services - it's like the good old nice levels in Unix/Linux.
When the resource usage is optimized, a high CPU utilization might actually be expected and even desired, and alerts might make sense only for when CPU utilisation drops (service outages) or increases for a longer period over some max limit (e.g. 85%).
An overutilized Docker host is a sign of trouble. An underutilized host is a sign you are wasting money.
Host Memory The total memory used in each Docker host is important to know for the current operations and for capacity planning. Dynamic cluster managers like Docker Swarm use the total memory available on the host and the requested memory for containers to decide on which host a new container should ideally be launched. Deployments might fail if a cluster manager is unable to find a host with sufficient resources for the container. That's why it is important to know the host memory usage and the memory limits of containers. Adjusting the capacity of new cluster nodes according to the footprint of Docker applications could help optimize the resource usage.
No, Linux didn't eat your RAM. But when buffered || cached memory goes to 0 it's time to expand the cluster
Host Disk Space Docker images and containers consume additional disk space. For example, an application image might include a Linux operating system and might have a size of 150-700 MB depending on the size of the base image and installed tools in the container. Persistent Docker volumes consume disk space on the host as well. In our experience watching the disk space and using cleanup tools is essential for continuous operations of Docker hosts.
Good kids clean up their rooms. Good Docker ops clean up their disks by removing unused containers & images.
 Disk space usage on Docker hosts
Because disk space is very critical it makes sense to define alerts for disk space utilization to serve as early warnings and provide enough time to clean up disks or add additional volumes. For example, SPM automatically sets alert rules for disk space usage for you, so you don't have to remember to do it.
A good practice is to run tasks to clean up the disk by removing unused containers and images frequently.
Total Number of Running Containers The current and historical number of containers is an interesting metric for many reasons. For example, it is very handy during deployments and updates to check that everything is running like before.
When cluster managers like Docker Swarm, Mesos, Kubernetes, CoreOS/Fleet automatically schedule containers to run on different hosts using different scheduling policies, the number of containers running on each host can help one verify the activated scheduling policies. A stacked bar chart displaying the number of containers on each host and the total number of containers provides a quick visualization of how the cluster manager distributed the containers across the available hosts.

Container counts per Docker host over time
Use anomaly detection, not threshold-based alerts to catch sudden container migrations that mean trouble.
This metric can have different "patterns" depending on the use case. For example, batch jobs running in containers vs. long running services commonly result in different container count patterns. A batch job typically starts a container on demand, or starts it periodically, and the container with that job terminates after a relatively short time. In such a scenario one might see a big variation in the number of containers running resulting in a "spiky" container count metric. On the other hand, long running services such as web servers or databases typically run until they get re-deployed during software updates. Although scaling mechanisms might increase or decrease the number of containers depending on load, traffic, and other factors, the container count metric will typically be relatively steady because in such cases containers are often added and removed more gradually. Because of that, there is no general pattern we could use for a default Docker alert rule on the number of running containers.
Nevertheless, alerts based on anomaly detection, which detect sudden changes in the number of the containers in total (or for specific hosts) in a short time window, can be very handy for most of the use cases. The simple threshold-based alerts make sense only when the maximum or minimum number of running containers is known, and in dynamic environments that scale up and down based on external factors, this is often not the case.
Container Metrics Container metrics are basically the same metrics available for every Linux process, but include limits set via cgroups by Docker, such as limits for CPU or memory usage. Please note that sophisticated monitoring solutions like SPM for Docker are able to aggregate Container Metrics on different levels like Docker Hosts/Cluster Nodes, Image Name or ID and Container Name or ID. Having the ability to do that makes it easy to track resources usage by hosts, application types (image names) or specific containers. In the following examples we might use aggregations on various levels.
Use modern Docker monitoring solutions to slice & dice by host, node, image or container. You'll need that.
Container CPU - Throttled CPU Time One of the most basic bits of information is information about how much CPU is being consumed by all containers, images, or by specific containers. A great advantage of using Docker is the capability to limit CPU utilisation by containers. Of course, you can't tune and optimize something if you don't measure it, so monitoring such limits is the prerequisite. Observing the total time that a container's CPU usage was throttled provides the information one needs to adjust the setting for CPU shares in Docker. Please note that CPU time is throttled only when the host CPU usage is maxed out. As long as the host has spare CPU cycles available for Docker it will not throttle containers' CPU usage. Therefore, the throttled CPU is typically zero and a spike of this metric is a typically a good indication of one or more containers needing more CPU power than the host can provide.

Container CPU usage and throttled CPU time
The following screenshot shows containers with 5% CPU quota using the command "docker run -cpu-quota=5000 nginx", we see clearly how the throttled CPU grows until it reaches around 5%, enforced by the Docker engine.

Container CPU usage and throttled CPU time with CPU quota of 5%
Container Memory - Fail Counters It is a good practice to set memory limits for containers. Doing that helps avoid a memory-hungry container taking all available memory and starving all other containers on the same server. Runtime constraints on resources can be defined in the Docker run command. For example, "-m 300M" sets the memory limit for the container to 300 MB. Docker exposes a metric called container memory fail counters. This counter is increased each time memory allocation fails - that is, each time the pre-set memory limit is hit. Thus, spikes in this metric indicate one or more containers needing more memory than was allocated. If the process in the container terminates because of this error, we might also see out of memory events from Docker.
Docker Memory Fail Counters tell you when containers need more memory. Alerts are your friends.
A spike in memory fail counters is a critical event and putting alerts on the memory fail counter is very helpful to detect wrong settings for the memory limits or to discover containers that try to consume more memory than expected.

Container Memory Usage Different applications have different memory footprints. Knowing the memory footprint of the application containers is important for having a stable environment. Container memory limits ensure that applications perform well, without using too much memory, which could affect other containers on the same host. The best practice is to tune memory setting in a few iterations:
- Monitor memory usage of the application container
- Set memory limits according to the observations
- Continue monitoring of memory, memory fail counters, and Out-Of-Memory events. If OOM events happen, the container memory limits may need to be increased, or debugging is required to find the reason for the high memory consumptions.

Container memory usage
Container Swap Like the memory of any other process, a container's memory could be swapped to disk. For applications like Elasticsearch or Solr one often finds instructions to deactivate swap on the Linux host - but if you run such applications on Docker it might be sufficient just to set "-memory-swap=-1" in the Docker run command!
Don't like to see your container swapping? Use -memory-swap=-1 in the Docker run command and be done with it!

Container swap, memory pages, and swap rate
Container Disk I/O In Docker multiple applications use the same resources concurrently. Thus, watching the disk I/O helps one define limits for specific applications and give higher throughput to critical applications like data stores or web servers, while throttling disk I/O for batch operations. For example, the command docker run -it -device-write-bps /dev/sda:1mb mybatchjob would limit the container disk writes to a maximum of 1 MB/s.

Container I/O throughput
To limit a Docker container from eating all your disk IO use e.g. -device-write-bps /dev/sda:1mb
Container Network Metrics Networking for containers can be very challenging. By default all containers share a network, or containers might be linked together to share a separated network on the same host. However, when it comes to networking between containers running on different hosts an overlay network is required, or containers could share the host network. Having many options for network configurations means there are many possible causes of network errors.
Moreover, not only errors or dropped packets are important to watch out for. Today, most of the applications are deeply dependent on network communication. Throughput of virtual networks could be a bottleneck especially for containers like load balancers. In addition, the network traffic might be a good indicator how much applications are used by clients and sometimes you might see high spikes, which could indicate denial of service attacks, load tests, or a failure in client apps. So watch the network traffic - it is a useful metric in many cases.

Network traffic and transmission rates
Summary There you have it - the top Docker metrics to watch. Staying focused on these top metrics and corresponding analysis will help you stay on the road while driving towards successful Docker deployments on many platforms such as Docker Swarm, Docker Cloud, Docker Datacenter or any other platform supporting Docker containers. If you'd like to learn even more about Docker Monitoring and Logging stay tuned on sematext.com/blog or follow @sematext.
About Sematext BlogSematext is a globally distributed organization that builds innovative Cloud and On Premises solutions for performance monitoring, alerting and anomaly detection (SPM), log management and analytics (Logsene), and search analytics (SSA). We also provide Search and Big Data consulting services and offer 24/7 production support for Solr and Elasticsearch.
Reader Feedback: Page 1 of 1
Presentation Slides By Elizabeth White  More and more companies are looking to microservices as an architectural pattern for breaking apart applications into more manageable pieces so that agile teams can deliver new features quicker and more effectively.
What this pattern has done more than anything to date is spark organizational transformations, setting the foundation for future application development. In practice, however, there are a number of considerations to make that go beyond simply “build, ship, and run,” which changes ho... Oct. 1, 2016 08:30 PM EDT Reads: 2,950 | By Elizabeth White  Kubernetes is a new and revolutionary open-sourced system for managing containers across multiple hosts in a cluster. Ansible is a simple IT automation tool for just about any requirement for reproducible environments.
In his session at @DevOpsSummit at 18th Cloud Expo, Patrick Galbraith, a principal engineer at HPE, discussed how to build a fully functional Kubernetes cluster on a number of virtual machines or bare-metal hosts. Also included will be a brief demonstration of running a Galera M... Oct. 1, 2016 07:45 PM EDT Reads: 3,255 | By Liz McMillan  In his keynote at 18th Cloud Expo, Andrew Keys, Co-Founder of ConsenSys Enterprise, provided an overview of the evolution of the Internet and the Database and the future of their combination – the Blockchain.
Andrew Keys is Co-Founder of ConsenSys Enterprise. He comes to ConsenSys Enterprise with capital markets, technology and entrepreneurial experience. Previously, he worked for UBS investment bank in equities analysis. Later, he was responsible for the creation and distribution of life sett... Oct. 1, 2016 04:00 PM EDT Reads: 3,788 | By Pat Romanski  For basic one-to-one voice or video calling solutions, WebRTC has proven to be a very powerful technology. Although WebRTC’s core functionality is to provide secure, real-time p2p media streaming, leveraging native platform features and server-side components brings up new communication capabilities for web and native mobile applications, allowing for advanced multi-user use cases such as video broadcasting, conferencing, and media recording. Oct. 1, 2016 10:00 AM EDT Reads: 3,342 | By Liz McMillan  Much of the value of DevOps comes from a (renewed) focus on measurement, sharing, and continuous feedback loops. In increasingly complex DevOps workflows and environments, and especially in larger, regulated, or more crystallized organizations, these core concepts become even more critical.
In his session at @DevOpsSummit at 18th Cloud Expo, Andi Mann, Chief Technology Advocate at Splunk, showed how, by focusing on 'metrics that matter,' you can provide objective, transparent, and meaningful f... Oct. 1, 2016 09:00 AM EDT Reads: 2,976 | By Liz McMillan  So, you bought into the current machine learning craze and went on to collect millions/billions of records from this promising new data source. Now, what do you do with them? Too often, the abundance of data quickly turns into an abundance of problems. How do you extract that "magic essence" from your data without falling into the common pitfalls?
In her session at @ThingsExpo, Natalia Ponomareva, Software Engineer at Google, provided tips on how to be successful in large scale machine learning... Oct. 1, 2016 08:30 AM EDT Reads: 2,538 | By Pat Romanski  Cognitive Computing is becoming the foundation for a new generation of solutions that have the potential to transform business. Unlike traditional approaches to building solutions, a cognitive computing approach allows the data to help determine the way applications are designed. This contrasts with conventional software development that begins with defining logic based on the current way a business operates.
In her session at 18th Cloud Expo, Judith S. Hurwitz, President and CEO of Hurwitz & ... Oct. 1, 2016 08:30 AM EDT Reads: 3,505 | By Liz McMillan  A strange thing is happening along the way to the Internet of Things, namely far too many devices to work with and manage. It has become clear that we'll need much higher efficiency user experiences that can allow us to more easily and scalably work with the thousands of devices that will soon be in each of our lives.
Enter the conversational interface revolution, combining bots we can literally talk with, gesture to, and even direct with our thoughts, with embedded artificial intelligence, wh... Sep. 30, 2016 09:00 PM EDT Reads: 4,098 | By Elizabeth White  Let’s face it, embracing new storage technologies, capabilities and upgrading to new hardware often adds complexity and increases costs. In his session at 18th Cloud Expo, Seth Oxenhorn, Vice President of Business Development & Alliances at FalconStor, discussed how a truly heterogeneous software-defined storage approach can add value to legacy platforms and heterogeneous environments. The result reduces complexity, significantly lowers cost, and provides IT organizations with improved efficienc... Sep. 30, 2016 10:45 AM EDT Reads: 3,683 | By Liz McMillan  Personalization has long been the holy grail of marketing. Simply stated, communicate the most relevant offer to the right person and you will increase sales. To achieve this, you must understand the individual. Consequently, digital marketers developed many ways to gather and leverage customer information to deliver targeted experiences.
In his session at @ThingsExpo, Lou Casal, Founder and Principal Consultant at Practicala, discussed how the Internet of Things (IoT) has accelerated our abil... Sep. 30, 2016 08:00 AM EDT Reads: 2,879 | By Elizabeth White  Identity is in everything and customers are looking to their providers to ensure the security of their identities, transactions and data. With the increased reliance on cloud-based services, service providers must build security and trust into their offerings, adding value to customers and improving the user experience. Making identity, security and privacy easy for customers provides a unique advantage over the competition. Sep. 29, 2016 06:15 PM EDT Reads: 3,802 | By Elizabeth White  Using new techniques of information modeling, indexing, and processing, new cloud-based systems can support cloud-based workloads previously not possible for high-throughput insurance, banking, and case-based applications.
In his session at 18th Cloud Expo, John Newton, CTO, Founder and Chairman of Alfresco, described how to scale cloud-based content management repositories to store, manage, and retrieve billions of documents and related information with fast and linear scalability.
He addres... Sep. 29, 2016 05:30 AM EDT Reads: 3,046 | By Pat Romanski  Extreme Computing is the ability to leverage highly performant infrastructure and software to accelerate Big Data, machine learning, HPC, and Enterprise applications. High IOPS Storage, low-latency networks, in-memory databases, GPUs and other parallel accelerators are being used to achieve faster results and help businesses make better decisions.
In his session at 18th Cloud Expo, Michael O'Neill, Strategic Business Development at NVIDIA, focused on some of the unique ways extreme computing is... Aug. 31, 2016 04:45 AM EDT Reads: 3,028 | By Liz McMillan  The emerging Internet of Everything creates tremendous new opportunities for customer engagement and business model innovation. However, enterprises must overcome a number of critical challenges to bring these new solutions to market.
In his session at @ThingsExpo, Michael Martin, CTO/CIO at nfrastructure, outlined these key challenges and recommended approaches for overcoming them to achieve speed and agility in the design, development and implementation of Internet of Everything solutions wi... Aug. 31, 2016 02:15 AM EDT Reads: 3,077 | By Elizabeth White  With over 720 million Internet users and 40–50% CAGR, the Chinese Cloud Computing market has been booming. When talking about cloud computing, what are the Chinese users of cloud thinking about? What is the most powerful force that can push them to make the buying decision? How to tap into them?
In his session at 18th Cloud Expo, Yu Hao, CEO and co-founder of SpeedyCloud, answered these questions and discussed the results of SpeedyCloud’s survey. Aug. 30, 2016 01:15 AM EDT Reads: 3,109 | By Pat Romanski  In today's uber-connected, consumer-centric, cloud-enabled, insights-driven, multi-device, global world, the focus of solutions has shifted from the product that is sold to the person who is buying the product or service. Enterprises have rebranded their business around the consumers of their products. The buyer is the person and the focus is not on the offering. The person is connected through multiple devices, wearables, at home, on the road, and in multiple locations, sometimes simultaneously... Aug. 24, 2016 09:45 AM EDT Reads: 2,974 | By Liz McMillan  The IETF draft standard for M2M certificates is a security solution specifically designed for the demanding needs of IoT/M2M applications. In his session at @ThingsExpo, Brian Romansky, VP of Strategic Technology at TrustPoint Innovation, explained how M2M certificates can efficiently enable confidentiality, integrity, and authenticity on highly constrained devices. Aug. 22, 2016 06:45 AM EDT Reads: 2,857 | By Pat Romanski  Manufacturers are embracing the Industrial Internet the same way consumers are leveraging Fitbits – to improve overall health and wellness. Both can provide consistent measurement, visibility, and suggest performance improvements customized to help reach goals. Fitbit users can view real-time data and make adjustments to increase their activity.
In his session at @ThingsExpo, Mark Bernardo Professional Services Leader, Americas, at GE Digital, discussed how leveraging the Industrial Internet a... Aug. 21, 2016 03:00 PM EDT Reads: 3,218 | By Pat Romanski  The IoT is changing the way enterprises conduct business.
In his session at @ThingsExpo, Eric Hoffman, Vice President at EastBanc Technologies, discussed how businesses can gain an edge over competitors by empowering consumers to take control through IoT. He cited examples such as a Washington, D.C.-based sports club that leveraged IoT and the cloud to develop a comprehensive booking system. He also highlighted how IoT can revitalize and restore outdated business models, making them profitable ... Aug. 14, 2016 06:15 AM EDT Reads: 3,485 | By Pat Romanski  IoT is rapidly changing the way enterprises are using data to improve business decision-making. In order to derive business value, organizations must unlock insights from the data gathered and then act on these.
In their session at @ThingsExpo, Eric Hoffman, Vice President at EastBanc Technologies, and Peter Shashkin, Head of Development Department at EastBanc Technologies, discussed how one organization leveraged IoT, cloud technology and data analysis to improve customer experiences and effi... Aug. 13, 2016 07:00 PM EDT Reads: 3,727 | By Pat Romanski  Keeping pace with advancements in software delivery processes and tooling is taxing even for the most proficient organizations. Point tools, platforms, open source and the increasing adoption of private and public cloud services requires strong engineering rigor – all in the face of developer demands to use the tools of choice. As Agile has settled in as a mainstream practice, now DevOps has emerged as the next wave to improve software delivery speed and output. To make DevOps work, organization... Aug. 13, 2016 02:15 AM EDT Reads: 4,288 | By Elizabeth White  Adding public cloud resources to an existing application can be a daunting process. The tools that you currently use to manage the software and hardware outside the cloud aren’t always the best tools to efficiently grow into the cloud. All of the major configuration management tools have cloud orchestration plugins that can be leveraged, but there are also cloud-native tools that can dramatically improve the efficiency of managing your application lifecycle.
In his session at 18th Cloud Expo, ... Aug. 11, 2016 05:30 PM EDT Reads: 3,022 | By Elizabeth White  You think you know what’s in your data. But do you? Most organizations are now aware of the business intelligence represented by their data. Data science stands to take this to a level you never thought of – literally. The techniques of data science, when used with the capabilities of Big Data technologies, can make connections you had not yet imagined, helping you discover new insights and ask new questions of your data.
In his session at @ThingsExpo, Sarbjit Sarkaria, data science team lead ... Aug. 9, 2016 07:30 PM EDT Reads: 2,963 | By Liz McMillan  There will be new vendors providing applications, middleware, and connected devices to support the thriving IoT ecosystem. This essentially means that electronic device manufacturers will also be in the software business. Many will be new to building embedded software or robust software. This creates an increased importance on software quality, particularly within the Industrial Internet of Things where business-critical applications are becoming dependent on products controlled by software. Qua... Aug. 9, 2016 10:45 AM EDT Reads: 3,100 | By Elizabeth White  With the proliferation of both SQL and NoSQL databases, organizations can now target specific fit-for-purpose database tools for their different application needs regarding scalability, ease of use, ACID support, etc. Platform as a Service offerings make this even easier now, enabling developers to roll out their own database infrastructure in minutes with minimal management overhead. However, this same amount of flexibility also comes with the challenges of picking the right tool, on the right ... Aug. 9, 2016 08:15 AM EDT Reads: 3,236 | By Elizabeth White  Machine Learning helps make complex systems more efficient. By applying advanced Machine Learning techniques such as Cognitive Fingerprinting, wind project operators can utilize these tools to learn from collected data, detect regular patterns, and optimize their own operations.
In his session at 18th Cloud Expo, Stuart Gillen, Director of Business Development at SparkCognition, discussed how research has demonstrated the value of Machine Learning in delivering next generation analytics to imp... Aug. 9, 2016 06:15 AM EDT Reads: 4,320 | By Elizabeth White  "When you think about the data center today, there's constant evolution, The evolution of the data center and the needs of the consumer of technology change, and they change constantly," stated Matt Kalmenson, VP of Sales, Service and Cloud Providers at Veeam Software, in this SYS-CON.tv interview at 18th Cloud Expo, held June 7-9, 2016, at the Javits Center in New York City, NY. Aug. 8, 2016 06:15 PM EDT Reads: 2,967 | By Elizabeth White  "We host and fully manage cloud data services, whether we store, the data, move the data, or run analytics on the data," stated Kamal Shannak, Senior Development Manager, Cloud Data Services, IBM, in this SYS-CON.tv interview at 18th Cloud Expo, held June 7-9, 2016, at the Javits Center in New York City, NY. Aug. 8, 2016 07:30 AM EDT Reads: 2,870 | By Pat Romanski  The Internet of Things will challenge the status quo of how IT and development organizations operate. Or will it? Certainly the fog layer of IoT requires special insights about data ontology, security and transactional integrity. But the developmental challenges are the same: People, Process and Platform.
In his session at @ThingsExpo, Craig Sproule, CEO of Metavine, demonstrated how to move beyond today's coding paradigm and shared the must-have mindsets for removing complexity from the develo... Aug. 8, 2016 05:15 AM EDT Reads: 3,331 | By Pat Romanski  Predictive analytics tools monitor, report, and troubleshoot in order to make proactive decisions about the health, performance, and utilization of storage. Most enterprises combine cloud and on-premise storage, resulting in blended environments of physical, virtual, cloud, and other platforms, which justifies more sophisticated storage analytics.
In his session at 18th Cloud Expo, Peter McCallum, Vice President of Datacenter Solutions at FalconStor, discussed using predictive analytics to mon... Aug. 7, 2016 04:45 AM EDT Reads: 3,647 |
@CloudExpo Stories By Pat Romanski  WebRTC adoption has generated a wave of creative uses of communications and collaboration through websites, sales apps, customer care and business applications. As WebRTC has become more mainstream it has evolved to use cases beyond the original peer-to-peer case, which has led to a repeating requirement for interoperability with existing infrastructures.
In his session at @ThingsExpo, Graham Holt, Executive Vice President of Daitan Group, will cover implementation examples that have enabled ea... Oct. 2, 2016 05:00 AM EDT Reads: 1,670 | By Liz McMillan  SYS-CON Events announced today that ReadyTalk, a leading provider of online conferencing and webinar services, has been named Vendor Presentation Sponsor at the 19th International Cloud Expo, which will take place on November 1–3, 2016, at the Santa Clara Convention Center in Santa Clara, CA.
ReadyTalk delivers audio and web conferencing services that inspire collaboration and enable the Future of Work for today’s increasingly digital and mobile workforce. By combining intuitive, innovative tec... Oct. 2, 2016 04:15 AM EDT Reads: 3,156 | By Ed Featherston  We’ve been doing it for years, decades for some. How many websites have you created accounts on? Your bank, your credit card companies, social media sites, hotels and travel sites, online shopping sites, and that’s just the start. We do it often without even thinking about it, quickly entering our personal information, our data, in a plethora of systems. Sometimes we’re not even aware of the information we are providing. It could be very personal information (think of the security questions you ... Oct. 2, 2016 04:15 AM EDT Reads: 4,978 | By Pat Romanski  SYS-CON Events announced today that Tintri Inc., a leading producer of VM-aware storage (VAS) for virtualization and cloud environments, will exhibit at the 19th International Cloud Expo, which will take place on November 1–3, 2016, at the Santa Clara Convention Center in Santa Clara, CA.
Tintri VM-aware storage is the simplest for virtualized applications and cloud. Organizations including GE, Toyota, United Healthcare, NASA and 6 of the Fortune 15 have said “No to LUNs.” With Tintri they mana... Oct. 2, 2016 03:45 AM EDT Reads: 3,083 | By Elizabeth White  Complete Internet of Things (IoT) embedded device security is not just about the device but involves the entire product’s identity, data and control integrity, and services traversing the cloud. A device can no longer be looked at as an island; it is a part of a system. In fact, given the cross-domain interactions enabled by IoT it could be a part of many systems. Also, depending on where the device is deployed, for example, in the office building versus a factory floor or oil field, security ha... Oct. 2, 2016 03:15 AM EDT Reads: 923 | By Yeshim Deniz  Why do your mobile transformations need to happen today? Mobile is the strategy that enterprise transformation centers on to drive customer engagement. In his general session at @ThingsExpo, Roger Woods, Director, Mobile Product & Strategy – Adobe Marketing Cloud, covered key IoT and mobile trends that are forcing mobile transformation, key components of a solid mobile strategy and explored how brands are effectively driving mobile change throughout the enterprise. Oct. 2, 2016 03:15 AM EDT Reads: 607 | By Liz McMillan  There is growing need for data-driven applications and the need for digital platforms to build these apps.
In his session at 19th Cloud Expo, Muddu Sudhakar, VP and GM of Security & IoT at Splunk, will cover different PaaS solutions and Big Data platforms that are available to build applications.
In addition, AI and machine learning are creating new requirements that developers need in the building of next-gen apps. The next-generation digital platforms have some of the past platform needs a... Oct. 2, 2016 03:00 AM EDT Reads: 2,012 | By Elizabeth White  Fifty billion connected devices and still no winning protocols standards. HTTP, WebSockets, MQTT, and CoAP seem to be leading in the IoT protocol race at the moment but many more protocols are getting introduced on a regular basis. Each protocol has its pros and cons depending on the nature of the communications. Does there really need to be only one protocol to rule them all? Of course not.
In his session at @ThingsExpo, Chris Matthieu, co-founder and CTO of Octoblu, walk you through how Oct... Oct. 2, 2016 02:30 AM EDT Reads: 2,501 | By Elizabeth White  As ridesharing competitors and enhanced services increase, notable changes are occurring in the transportation model. Despite the cost-effective means and flexibility of ridesharing, both drivers and users will need to be aware of the connected environment and how it will impact the ridesharing experience. In his session at @ThingsExpo, Timothy Evavold, Executive Director Automotive at Covisint, will discuss key challenges and solutions to powering a ride sharing and/or multimodal model in the a... Oct. 2, 2016 02:30 AM EDT Reads: 787 | By Liz McMillan  In his general session at 18th Cloud Expo, Lee Atchison, Principal Cloud Architect and Advocate at New Relic, discussed cloud as a ‘better data center’ and how it adds new capacity (faster) and improves application availability (redundancy). The cloud is a ‘Dynamic Tool for Dynamic Apps’ and resource allocation is an integral part of your application architecture, so use only the resources you need and allocate /de-allocate resources on the fly. Oct. 2, 2016 02:30 AM EDT Reads: 3,153 | By Elizabeth White  SYS-CON Events announced today the Kubernetes and Google Container Engine Workshop, being held November 3, 2016, in conjunction with @DevOpsSummit at 19th Cloud Expo at the Santa Clara Convention Center in Santa Clara, CA.
This workshop led by Sebastian Scheele introduces participants to Kubernetes and Google Container Engine (GKE). Through a combination of instructor-led presentations, demonstrations, and hands-on labs, students learn the key concepts and practices for deploying and maintainin... Oct. 2, 2016 02:00 AM EDT Reads: 2,892 | By Elizabeth White  The Jevons Paradox suggests that when technological advances increase efficiency of a resource, it results in an overall increase in consumption. Writing on the increased use of coal as a result of technological improvements, 19th-century economist William Stanley Jevons found that these improvements led to the development of new ways to utilize coal.
In his session at 19th Cloud Expo, Mark Thiele, Chief Strategy Officer for Apcera, will compare the Jevons Paradox to modern-day enterprise IT, e... Oct. 2, 2016 01:30 AM EDT Reads: 2,500 | By Liz McMillan  IoT offers a value of almost $4 trillion to the manufacturing industry through platforms that can improve margins, optimize operations & drive high performance work teams. By using IoT technologies as a foundation, manufacturing customers are integrating worker safety with manufacturing systems, driving deep collaboration and utilizing analytics to exponentially increased per-unit margins.
However, as Benoit Lheureux, the VP for Research at Gartner points out, “IoT project implementers often ... Oct. 2, 2016 01:15 AM EDT Reads: 3,731 | By Liz McMillan  All clouds are not equal. To succeed in a DevOps context, organizations should plan to develop/deploy apps across a choice of on-premise and public clouds simultaneously depending on the business needs. This is where the concept of the Lean Cloud comes in - resting on the idea that you often need to relocate your app modules over their life cycles for both innovation and operational efficiency in the cloud.
In his session at @DevOpsSummit at19th Cloud Expo, Valentin (Val) Bercovici, CTO of So... Oct. 2, 2016 01:00 AM EDT Reads: 1,634 | By Liz McMillan  If you had a chance to enter on the ground level of the largest e-commerce market in the world – would you? China is the world’s most populated country with the second largest economy and the world’s fastest growing market. It is estimated that by 2018 the Chinese market will be reaching over $30 billion in gaming revenue alone.
Admittedly for a foreign company, doing business in China can be challenging. Often changing laws, administrative regulations and the often inscrutable Chinese Interne... Oct. 2, 2016 12:30 AM EDT Reads: 707 | By Liz McMillan  Technology vendors and analysts are eager to paint a rosy picture of how wonderful IoT is and why your deployment will be great with the use of their products and services. While it is easy to showcase successful IoT solutions, identifying IoT systems that missed the mark or failed can often provide more in the way of key lessons learned.
In his session at @ThingsExpo, Peter Vanderminden, Principal Industry Analyst for IoT & Digital Supply Chain to Flatiron Strategies, will focus on how IoT de... Oct. 2, 2016 12:00 AM EDT Reads: 1,350 | By Liz McMillan  The Internet of Things can drive efficiency for airlines and airports.
In their session at @ThingsExpo, Shyam Varan Nath, Principal Architect with GE, and Sudip Majumder, senior director of development at Oracle, will discuss the technical details of the connected airline baggage and related social media solutions. These IoT applications will enhance travelers' journey experience and drive efficiency for the airlines and the airports.
The session will include a working demo and a technical d... Oct. 2, 2016 12:00 AM EDT Reads: 1,890 | By Liz McMillan  SYS-CON Events announced today that Pulzze Systems will exhibit at the 19th International Cloud Expo, which will take place on November 1–3, 2016, at the Santa Clara Convention Center in Santa Clara, CA.
Pulzze Systems, Inc. provides infrastructure products for the Internet of Things to enable any connected device and system to carry out matched operations without programming.
For more information, visit http://www.pulzzesystems.com. Oct. 1, 2016 11:45 PM EDT Reads: 1,945 | By Liz McMillan  SYS-CON Events announced today that Roundee / LinearHub will exhibit at the WebRTC Summit at @ThingsExpo, which will take place on November 1–3, 2016, at the Santa Clara Convention Center in Santa Clara, CA.
LinearHub provides Roundee Service, a smart platform for enterprise video conferencing with enhanced features such as automatic recording and transcription service.
Slack users can integrate Roundee to their team via Slack’s App Directory, and '/roundee' command lets your video conference ... Oct. 1, 2016 11:30 PM EDT Reads: 1,566 | By Yeshim Deniz  SYS-CON Events announced today that Sheng Liang to Keynote at SYS-CON's 19th Cloud Expo, which will take place on November 1-3, 2016 at the Santa Clara Convention Center in Santa Clara, California. Oct. 1, 2016 10:00 PM EDT Reads: 515 |
|
 |
|
Save $505
on your “Golden Pass”!
before September 30, 2016!
Call 201.802.3020
|
 |
|
 |
 |
|
Submit
submit your speaking proposal for the upcoming Cloud Expo in
Santa Clara, CA!
[November 1-3, 2016]
|
 |
|
 |
 |
|
Please Call
201.802.3021
events (at) sys-con.com
|
 |
Sponsorship opportunities are now open for Cloud Expo 2016 Silicon Valley, Nov. 1-3, 2016, at the Santa Clara Convention Center in Santa Clara, CA, and for Cloud Expo 2017 New York, June 6-8, 2017, at the Javits Center in New York City, New York.. For sponsorship, exhibit opportunities and show prospectus, please contact Carmen Gonzalez, carmen (at) sys-con.com. |
|
 |
 |
|

RICHARDS
Venafi |

SINGH
IBM |

NIELSON
Redis Labs |

FRIEDMAN
Edge |

THIELE
Apcera |

MONTE- CILLO
IBM |

SPROULE
Metavine |

REUVENI
Jet |

CHITTURI
Sungard |

CEPPI
Canonical |

HAFF
Red Hat |

CHAMBLISS
ReadyTalk |

BLACK
SQLstream |

KOCHER
Grey Heron |

VISWA- NATHAN
Cognizant |

LARSSON
Qosmos |

COHEN
Institute |

SCHEELE
Loodse |

FEATHER- STON
Collaborative Consulting |

SEHGAL
Tintri |

SRINIVAS
IBM |

AHUJA
Impiger |

SUDH- AKAR
Splunk |

TISH- GART
Cloudera |

KENDRICK
Isomorphic |

KUCKEIN
DDN |

RAVE
Teridion |

CHOU
Microsoft |

SHARIF
Aporeto |

JAME- NSKY
Embotics |

JENKINS
IBM |

DOYLE
eCube |

THOM- CHICK
Symantec |

BRENTON
CollabNet |

BERCO- VICI
SolidFire |

BABIN
Kaltura |

MORAN
BMC |

CASEY
CFN |

ZHENG
CDS |

DEMEO
Alfresco |

STIGTER
TIBCO |
 |
 |
|

DE MENO
Commvault |

ERWAY
Appneta |

OXENHORN
FalconStor |

HINCH- CLIFFE
7Summits |

DOYLE
eCube |

CHAVES
Pythian |

BLOOMBERG
Intellyx |

BUGAYENKO
Teamed.io
|

LAWSON
NewSci |

HAFF
RedHat |

HOLT
IBM
|

Jewell
Codenvy
|

MORGENTHAL
CSC |

ARMSTRONG
AppNeta |

DWYER
Iron.io |

MATSUMURA
Gradle |

WARFIELD
Coho |

GRECO
Kaazing |

PRESLEY
Pythian |

LOVELL-TROY
Pythian |

ATCHISON
New Relic |

BHUSVANE- SHWARI
Microsoft |

GUCCIONE
Keeper |

FLOREA
Tintri |

KERBY
BMC |

RAO
Asurion |

BRENTON
CollabNet |

SRINIVASAN
Symantec |

GALBRAITH
HPE |

NEWTON
Alfresco |

ROGERS
Anexia |

MORRISH
Interoute |

TIFFANY
SoftLayer |

OSTROVER- KHYI
Mobidev |

LEWIS
Formation Data |

KENDRICK
Isomorphic |

REEVES
Datical |

WALLER- STORFER
Dynatrace |

CIOT
Progress |

MOR
Cloudyn |

LEFORT
BMC |

ANDERSON
BMC |

BRODY
Webair |

NIELSEN
Redis Labs |

SEHGAL
Tintri |

MANN
Splunk |

YOO
Fuze |

COTY
Alert Logic |

LANDA
Kintone |

CHOQUETTE
RackN |

MARTIN
Security |

HURWITZ
Hurwitz & Assc. |
 |
 |
|

KOWALL
AppDynamics |

VAN TUIN
Red Hat |

DEMMER
Jut |

COHEN
Netflix |

MUCHANDI
Red Hat Inc |

BORELLO
Sysdig |

GILPIN
Conjur |

KANADE
Harbinger Systems |

GORBACHEV
Systems Services Inc. |

SUSSMAN
Coalfire |

KHAN
Solgeniakhela |

CHOKSI
Harbinger Systems |

DE MENO
CommVault |

BLOOMBERG
Intellyx |

BUGWADIA
Nirmata |

COTY
Alert Logic |

FLETCHER
Alert Logic |

CAUTHRON
NIMBOXX |

LYNN
AgilData |

WAGNER
Cloudyn |

ANAND
Appocito |

WEISS
Pythian |

BRODY
Webair |

JACKSON
Softlayer |

DAVIDSON
Juniper |

HOFFMAN
Pivotal |

VERVAET
HGST |

Murthy
CloudRaxak |

FRANCISCO
Evolute |

LETCHIN
Nexenta |

SIMON
JFrog |

BONIFAZI
Solgenia |

WEISS
ProfitBricks |

HOLT
IBM |

HANNON
SoftLayer |

GALLO
SoftLayer |

SAYEGH
Codero |

BIMMU
Clouber |

SRINIVAS
IBM |

CHAVAN
IBM |

HEDGES
Clouddata |

AHUJA
Cloud |

MEINER
Oracle |

SWARTZ
Ericsson |
 |
 |
|

DE SOUZA
Cisco |

POTTER
SafeLogic |

ROBINSON
CompTIA
|

WARUSA -WITHANA
WSO2 Inc |

MEINER
Oracle |

CHOU
Microsoft
|

HARRISON
Tufin
|

BRUNOZZI VMware
|

KIM
MapR
|

KANE Dyn
|

SICULAR
Basho
|

TURNER
Cloudian
|

KUMAR
Liaison
|

ADAMIAK
Liaison
|

KHAN
Solgenia
|

BONIFAZI
Solgenia
|

SUSSMAN
Coalfire
|

ISAACSON
RMS
|

LYNN
CodeFutures
|

HEABERLIN
Windstream
|

RAMA MURTHY
Virtusa
|

BOSTOCK
IndependenceIT
|

DE MENO
CommVault
|

GRILLI
Adobe
|

WILLIAMS
Rancher Labs
|

CRISWELL
Alert Logic
|

COTY
Alert Logic
|

JACOBS
SingleHop
|

MARAVEI
Cisco
|

JACKSON
Softlayer
|

SINGH
IBM
|

HAZARD
Softlayer
|

GALLO
Softlayer
|

TAMASKAR
GENBAND
|

SUBRA -MANIAN
Emcien
|

LEVESQUE
Windstream
|

IVANOV
StorPool
|

BLOOMBERG
Intellyx |

BUDHANI
Soha |

HATHAWAY
IBM Watson |

TOLL
ProfitBricks |

LANDRY
Microsoft |

BEARFIELD
Blue Box |

HERITAGE
Akana |

PILUSO SIASMSP
|

HOLT IBM Cloudant
|

SHAN CTS
|

PICCININNI EMC
|

BRON- GERSMA Modulus
|

PAIGE CenturyLink
|

SABHIKHI Cognitive Scale
|

MILLS Green House Data
|

KATZEN CenturyLink
|

SLOPER CenturyLink
|

SRINIVAS EMC
|

TALREJA Cisco
|

GORBACHEV Systems Services Inc.
|

COLLISON Apcera
|

PRABHU OpenCrowd
|

LYNN CodeFutures
|

SWARTZ Ericsson
|

MOSHENKO CoreOS
|

BERMINGHAM SIOS
|

WILLIS Stateless Networks
|

MURPHY Gridstore
|

KHABE Vicom
|

NIKOLOV GetClouder
|

DIETZE Windstream
|

DALRYMPLE EnterpriseDB
|

MAZZUCCO TierPoint
|

RIVERA WHOA.com
|

HERITAGE Akana
|

SEYMOUR 6fusion
|

GIANNETTO Author
|

CARTER IBM
|

ROGERS Virtustream
|
 |
 |
|

TESAR
Microsoft |

MICKOS
HP |

BHARGAVA
Intel
|

RILEY
Riverbed |

DEVINE
IBM |

ISAACSON
CodeFutures |

LYNN
HP |

HINKLE Citrix
|

KHAN
Solgenia |

SINGH
Bigdata |

BEACH
SendGrid |

BOSTOCK
IndependenceIT |

DE SOUZA
Cisco |

PATTATHIL
Harbinger |

O'BRIEN
Aria Systems |

BONIFAZI
Solgenia |

BIANCO
Solgenia |

PROCTOR
NuoDB |

DUGGAL
EnterpriseWeb |

TEGETHOFF
Appcore |

BRUNOZZI
VMware |

HICKENS
Parasoft |

KLEBANOV
Cisco |

PETERS
Esri |

GOLDBERG
Vormetric |

CUMBER- LAND
Dimension |

ROSENDAHL
Quantum |

LOOMIS
Cloudant |

BRUNO
StackIQ |

HANNON
SoftLayer |

JACKSON
SoftLayer |

HOCH
Virtustream |

KAPADIA
Seagate |

PAQUIN
OnLive |

TSAI
Innodisk |

BARRALL
Connected Data |

SHIAH
AgilePoint |

SEGIL
Verizon |

PODURI
Citrix |

COWIE
Dyn |

RITTEN- HOUSE
Cisco |

FALLOWS
Kaazing |

THYKATTIL
TimeWarner |

LEIDUCK
SAP |

LYNN
HP |

WAGSTAFF
BSQUARE |

POLLACK
AOL |

KAMARAJU
Vormetric |

BARRY
Catbird |

MENDEN- HALL
SUPERNAP |

SHAN
KEANE |

PLESE
Verizon |

BARNUM
Voxox |

TURNER
Cloudian |

CALDERON
Advanced Systems |

AGARWAL
SOA Software |

LEE
Quantum |

OBEROI
Concurrent, Inc. |

HATEM
Verizon |

GALEY
Autodesk |

CAUTHRON
NIMBOXX |

BARSOUM
IBM |

GORDON
1Plug |

LEWIS
Verizon |

YEO
OrionVM |

NAKAGAWA
Transparent Cloud Computing |

SHIBATA
Transparent Cloud Computing |

NATH
GE |

GOKCEN
GE |

STOICA
Databricks |

TANKEL
Pivotal Software |
|
 |
 |
|
“ |
This week I had the pleasure of delivering the opening keynote at Cloud Expo New York. It was amazing to be back in the great city of New York with thousands of cloud enthusiasts eager to learn about the next step on their journey to embracing a cloud-first worldl." |
|
|
|
“ |
How does Cloud Expo do it every year? Another INCREDIBLE show - our heads are spinning - so fun and informative." |
|
@SOASoftwareInc
|
|
“ |
Thank you @ThingsExpo for such a great event. All of the people we met over the past three days makes us confident IoT has a bright future." |
|
|
|
“ |
One of the best conferences we have attended in a while. Great job, Cloud Expo team! Keep it going." |
|
@Peak_Ten
|
|
|
 |
 |
|
Senior Technologists including CIOs, CTOs & Vps of Technology, Chief Systems Engineers,
IT Directors and Managers,
Network and Storage Managers,
Enterprise Architects,
Communications and Networking Specialists,
Directors of Infrastructure.
Business Executives including CEOs, CMOs, & CIOs ,
Presidents & SVPs,
Directors of Business Development ,
Directors of IT Operations,
Product and Purchasing Managers,
IT Managers.
|
|
 |
 |
|
SYS-CON Media has a flourishing Media Partner program in which mutually beneficial promotion and benefits are arranged between our own leading Enterprise IT portals and events and those of our partners.
If you would like to participate, please provide us with details of your website/s and event/s or your organization and please include basic audience demographics as well as relevant metrics such as ave. page views per month.
To get involved, email Lissette Mercado at [email protected].
|
|
 |
@CloudExpo Blogs By Liz McMillan  In his general session at 18th Cloud Expo, Lee Atchison, Principal Cloud Architect and Advocate at New Relic, discussed cloud as a ‘better data center’ and how it adds new capacity (faster) and improves application availability (redundancy). The cloud is a ‘Dynamic Tool for Dynamic Apps’ and resource allocation is an integral part of your application architecture, so use only the resources you need and allocate /de-allocate resources on the fly. Oct. 2, 2016 02:30 AM EDT Reads: 3,153 | By Roger Strukhoff  Cloud Expo 2016 New York at the Javits Center New York was characterized by increased attendance and a new focus on operations. These were both encouraging signs for all involved in Cloud Computing and all that it touches.
As Conference Chair, I work with the Cloud Expo team to structure three keynotes, numerous general sessions, and more than 150 breakout sessions along 10 tracks. Our job is to balance the state of enterprise IT today with the trends that will be commonplace tomorrow.
Mobile Computing, Big Data and Analytics, the Internet of Things, Platforms and Microservices and Containe... Oct. 2, 2016 02:30 AM EDT Reads: 4,442 | By Elizabeth White  SYS-CON Events announced today the Kubernetes and Google Container Engine Workshop, being held November 3, 2016, in conjunction with @DevOpsSummit at 19th Cloud Expo at the Santa Clara Convention Center in Santa Clara, CA.
This workshop led by Sebastian Scheele introduces participants to Kubernetes and Google Container Engine (GKE). Through a combination of instructor-led presentations, demonstrations, and hands-on labs, students learn the key concepts and practices for deploying and maintaining applications using Kubernetes. Oct. 2, 2016 02:00 AM EDT Reads: 2,892 | By William Schmarzo  Organizations have key business processes that they are constantly trying to re-engineer. These key business processes – loan approvals, college applications, mortgage underwriting, product and component testing, credit applications, medical reviews, employee hiring, environmental testing, requests for proposals, contract bidding, etc. – go through multiple steps, usually involving multiple people with different skill sets, with a business outcome at the end (accept/reject, bid/no bid, pass/fail, retest, reapply, etc.). And while these processes typically include “analytics” that report on ho... Oct. 2, 2016 01:45 AM EDT Reads: 1,606 | By Liz McMillan  Technology vendors and analysts are eager to paint a rosy picture of how wonderful IoT is and why your deployment will be great with the use of their products and services. While it is easy to showcase successful IoT solutions, identifying IoT systems that missed the mark or failed can often provide more in the way of key lessons learned.
In his session at @ThingsExpo, Peter Vanderminden, Principal Industry Analyst for IoT & Digital Supply Chain to Flatiron Strategies, will focus on how IoT deployments can go bad, and in some cases downright ugly, when firms focus on the wrong things and fai... Oct. 2, 2016 12:00 AM EDT Reads: 1,350 | By Miska Kaipiainen  Throughout history, various leaders have risen up and tried to unify the world by conquest. Fortunately, none of their plans have succeeded. The world goes on just fine with each country ruling itself; no single ruler is necessary. That’s how it is with the container platform ecosystem, as well.
There’s no need for one all-powerful, all-encompassing container platform. Think about any other technology sector out there – there are always multiple solutions in every space. The same goes for container technology. When you create something that is super scalable, the drawback is that it’s not goi... Oct. 1, 2016 07:45 PM EDT Reads: 1,399 | By Dana Gardner  Procurement demands an integrated, end-to-end approach built on deep insights and intelligence to drive informed source-to-pay decisions.
Far beyond just automating tasks and transactions, procurement today is a strategic function that demands an integrated, end-to-end approach built on deep insights and intelligence to drive informed source-to-pay decisions and actions that enable businesses to adopt a true business ecosystem-wide digital strategy. Oct. 1, 2016 07:00 PM EDT Reads: 641 | By Ian Khan  Just over a week ago I received a long and loud sustained applause for a presentation I delivered at this year’s Cloud Expo in Santa Clara. I was extremely pleased with the turnout and had some very good conversations with many of the attendees. Over the next few days I had many more meaningful conversations and was not only happy with the results but also learned a few new things. Here is everything I learned in those three days distilled into three short points. Oct. 1, 2016 06:45 PM EDT Reads: 5,627 | By Darren Anstee  Does a Content Delivery Network (CDN) protect against Distributed Denial of Service (DDoS) attacks? It’s a good question. A CDN by its very nature will absorb DDoS attacks for the content that it serves and this could be considered protection but, as is often the case, this is only the beginning of the story.
If we consider what is actually going on here, the CDN isn’t actually ‘blocking’ the DDoS attack – it is simply reducing its impact by throwing more resources at the problem. This means that the size of the DDoS attack a CDN can deal with is inherently dependent on the size of the CDNs ... Oct. 1, 2016 06:15 PM EDT Reads: 994 | By William Schmarzo  DELL EMC’s Isilon division has been working with Major League Baseball Advanced Media (MLBAM) to create a data lake that provides a seamless process to add and maintain massive amounts of video data to serve their baseball fanatics (like me). Here is a cool 2-minute video that shows how they did it. The company operates the official web site for the league and the thirty Major League Baseball club web sites via MLB.com, which draws four million hits per day. It also provides the backend-streaming infrastructure for WWE Network, HBO NOW, NHL etc. Oct. 1, 2016 06:00 PM EDT Reads: 864 | By Olivier Huynh Van  Large enterprises today are juggling an enormous variety of network equipment. Business users are asking for specific network throughput guarantees when it comes to their critical applications, legal departments require compliance with mandated regulatory frameworks, and operations are asked to do more with shrinking budgets. All these requirements do not easily align with existing network architectures; hence, network operators are continuously faced with a slew of granular parameter change requests, trying to meet ongoing network requirement changes without having the proper tools in place. Oct. 1, 2016 06:00 PM EDT Reads: 929 | By Elizabeth White  Data is an unusual currency; it is not restricted by the same transactional limitations as money or people. In fact, the more that you leverage your data across multiple business use cases, the more valuable it becomes to the organization. And the same can be said about the organization’s analytics.
In his session at 19th Cloud Expo, Bill Schmarzo, CTO for the Big Data Practice at EMC, will introduce a methodology for capturing, enriching and sharing data (and analytics) across the organization in a “as-a-service” cloud model, and discuss the role that the data lake plays in monetizing the ... Oct. 1, 2016 05:45 PM EDT Reads: 1,876 | By Liz McMillan  Information technology is an industry that has always experienced change, and the dramatic change sweeping across the industry today could not be truthfully described as the first time we've seen such widespread change impacting customer investments. However, the rate of the change, and the potential outcomes from today's digital transformation has the distinct potential to separate the industry into two camps: Organizations that see the change coming, embrace it, and successful leverage it; and on the other side, organizations that will find themselves as roadkill on the technology highway. Oct. 1, 2016 04:30 PM EDT Reads: 1,354 | By Kevin Benedict  "You have a memory like an elephant," is truly a compliment. Researchers document all kinds of remarkable examples of the recall power of elephants, and this is credited with their ability to survive harsh environments as noted in this Scientific American article http://www.scientificamerican.com/article/elephants-never-forget/.
Our human memory also helps us learn from past experiences and mistakes, avoid recognizable hazards and keep track of our very busy lives. Our memories for the most part have served us well, but the same might not always be said about digital memory in an always conne... Oct. 1, 2016 04:15 PM EDT Reads: 1,117 | By Liz McMillan  In his keynote at 18th Cloud Expo, Andrew Keys, Co-Founder of ConsenSys Enterprise, provided an overview of the evolution of the Internet and the Database and the future of their combination – the Blockchain.
Andrew Keys is Co-Founder of ConsenSys Enterprise. He comes to ConsenSys Enterprise with capital markets, technology and entrepreneurial experience. Previously, he worked for UBS investment bank in equities analysis. Later, he was responsible for the creation and distribution of life settlement products to hedge funds and investment banks. After, he co-founded a revenue cycle management... Oct. 1, 2016 04:00 PM EDT Reads: 3,788 |
|