Continuous integration and continuous delivery (CI/CD) is integral to a DevOps approach to software development. But what is CI/CD and why is it key?
For business leaders to effectively strategize with IT teams about their development approaches, this article explores the challenges that CI/CD addresses, tools that support it, and the benefits your organization can expect.
To lay the foundation, let’s consider what DevOps means. The aim of DevOps is to create a software build and deployment process that moves from left to right — from development to operations — with as few handoffs as possible and frequent, fast feedback loops. In practice, this means that application source code moves continuously forward. If a bug is identified or something needs to be fixed, instead of moving backwards, the problem is identified and fixed at the point that it is introduced (continuous testing). Fast feedback loops make this possible. Fast automated testing validates if the code works as it should before moving to the next stage.
To decrease handoffs, small teams work on small functionalities of the software as opposed to an entire feature. They also own the entire process: from request to commit to QA and deployment — from Dev to Ops. (For more background, this article provides a useful introduction to DevOps.)
The idea is to push small pieces of code out quickly. This makes it easier to diagnose, fix, and remediate issues. This workflow is enabled by continuous integration (CI) and extended to production by continuous deployment (CD) — the CI/CD pipeline.
Let’s take a deeper look at CI and CD.
To achieve a mature DevOps organization, CI must be mastered. In fact, many companies only do CI and leave out the CD part.
CI means integrating code, whether it’s a new feature or an update, that has been developed by a programmer into the codebase. This presents several challenges. All changes must be tracked so that, if an error occurs, you can revert to a previous state and mitigate any service disruption. Conflicts must also be managed when multiple developers are working in parallel. Finally, errors must be catched before they are added to the codebase.
To address these issues, developers can use the following tools:
As code moves through the DevOps process it is constantly being tweaked based on the results of automated testing. These changes are captured in a version control system that keeps track of all changes and other assets in a database, including source code, the software system environment, software development documents, and file changes.
Sidenote: There is some debate about whether sensitive information, such as keys, access tokens, and passwords should be stored in version control. Many believe everything should be stored here while others consider it bad practice and argue that sensitive information should be stored elsewhere. There is no right or wrong answer. Version control will always be a single source of truth that contains all updates and changes to code and reflects the intended state of the system, as well as all prior states. By ensuring all artifacts are stored in version control, developers can reproduce all components of the deployed software system — something that is key to enabling immutable infrastructures (more on that later).
When multiple developers work on the same project, things can get messy quickly. To reduce the risk of introducing errors or destabilizing the version control master, each developer works on different parts of the system in parallel via branches on their local computers.
However, the code that each developer works on in branches still needs to be integrated into the codebase — a continuously evolving environment. The longer a developer works on code without committing it, the more difficult it becomes. One way around this is to increase frequency or, even better, make it continuous.
The graphic visualizes different branches. The master branch is shown in blue and all other colors are individual developers working on their own branch which are eventually merged into the master branch.
Different branches of the Kublr Docs page: The master branch is shown in blue and all other colors are individual developers working on their own branch which are eventually merged into the master branch. Developers work on their own machine and merge their changes several times a day or by the end of the day.
Continuous integration isn’t without its issues. Even if a developer commits code on a daily basis, conflicts can occur. Other team members may have worked on and committed their own changes, that others didn’t account for. In fact, integration problems often require rework, including manually merging conflicting changes. Mind you, it’s much easier to identify and fix conflicts in a day’s worth of work than a week or month’s worth of coding. Integration problems will occur, but CI significantly reduces them.
Quality assurance (QA) ensures that errors are caught and code is in a deployable state before code is introduced into the codebase. Before DevOps, QA was typically handled by a separate team once development was complete. These tests were often only performed a few times a year and developers learned about mistakes months after a code change was introduced — making diagnosis very difficult. Automated testing addresses this.
Automated tests are triggered each time code is added to version control. A deployment pipeline tool automatically builds and tests the code to ensure it works as intended and does so once integrated into the codebase. Even with testing, code can still fail once introduced into production environments where the environment and other dependencies can impact code performance. These dependencies are not part of the app, but are required to run it. They include databases, data/object storage, and services for the app to call over an API. This is why dev and test environments must mimic the production environment and code must be tested with all dependencies.
Individual steps when code is committed to version control
To recap, there are three test stages when deploying code, each adding additional complexity:
When code is committed to version control on a daily basis, it can be tested automatically and any build, test, or integration errors will be flagged immediately so they can be fixed there and then. This way, code is always in a deployable and shippable state — known as a green build. With automation tools, developers can increase test and integration frequency from occasional to continuous and identify problems while there are fewer constraints, ultimately leading to quality software.
Deploying code into production, even when continuously integrated, can be a time-intensive, error-prone, manual process. This can limit adoption of CI and lead to significant differences between code to be deployed and code running in production. This is where CD comes into play.
CD extends CI to ensure code runs smoothly in production before it is deployed to users. Canary and blue-green deployments are the most common approach to CD.
With a blue-green deployment, a new component or application version is deployed alongside the current one. The new or “green” version is deployed to production and tested while the “blue” version is still live. If no issues present, then users are switched to the new “green” version of the application.
Canary deployments are similar and start with two versions of the application: the current one and the updated versions. In this scenario, IT will route a small share of user requests to the new version. Meanwhile, code and user behavior are closely monitored. If error rates or user complaints don’t escalate, the share of requests routed to the new version is slowly increased, perhaps from 1% to 10%, 50% to 100%. Once all the new requests are routed to the new version the old one is deleted.
With CI/CD explained, let’s take a look at environments and infrastructure since CI/CD calls for a novel approach.
Tools like automated testing enable developers to perform QA themselves. To do this they depend on production-like environments during development and testing. In the past, developers would have to ask the Ops team to manually set these up — a process that could take weeks or months. These manually deployed environments were also often misconfigured or so different from production that even when code was vigorously tested before deployment, problems could still occur in production.
Therefore, a key part of CI/CD is providing developers with on-demand production-like environments where they can run their own workstations. This is important because developers can only mimic how code will behave in production, if they test and deploy it under the same conditions.
When we talked about version control, we discussed the need to codify environments with all application artifacts present. This is important because when environment specifics are defined and codified in version control it becomes much easier to replicate environments when capacity is increased (known as horizontal scaling) and can be done at the touch of a button or automated through Kubernetes.
The elasticity of cloud computing has made scaling a critical feature allowing companies to increase compute capacity during peak hours. Netflix, for instance, ensures buffer- free content streaming during busy hours by replicating its streaming components — codified in version control — to match demand. Once streaming capacity returns to normal these “replicas” are destroyed.
To enable this, whenever an infrastructure or application update is deployed it must be automatically replicated elsewhere and added to version control. This ensures that whenever a new environment is created it will match the environments throughout the software build pipeline. So, if Netflix updated its streaming services but omitted capturing that change in version control, it would replicate the faulty or outdated components during peak demand. This could lead to issues or even service disruption.
It’s bad practice to manually alter environments that have been codified in version control which could lead to errors. Instead, changes are added to version control then the environment and code are recreated from scratch. This is known as immutable infrastructure and it’s where the cattle versus pets analogy comes from. Before DevOps, infrastructure was treated like pets — if there is an issue, you’d do anything to ensure it survives. Today, infrastructure is treated like cattle. If there’s an issue or it’s not working properly, you kill it and create a new environment. It sounds like a callous analogy but it is very important and significantly reduces the risk of issues sneaking into the infrastructure.
In traditional waterfall application development, software releases are driven by “go live” or launch dates — often set by other departments, such as marketing. In this model, new features are deployed into production the day before the release date. It’s a risky business, especially if an entire feature is released at once. This is why tying deployment to the release sets IT up for failure.
A better approach is to decouple application deployment from release. In fact, the two terms are often used interchangeably but they are different. Deployment means installing a software version to an environment, including production. It needn’t involve a “release” — meaning a new feature is made available to users.
This is why CI/CD is important. Frequent production deployments throughout the feature development process reduces risk and is driven by IT. Whereas decisions about exposing new functionalities to users is a business, not an IT decision. If deployment times are long, this will dictate when new features can be released. But imagine if IT could deploy on-demand and expose new functionality to customers and users — this would be a decision driven by the business.
To catch errors as they occur and minimize rework, CI calls for application code to be integrated into the codebase in a continuous way. Continuous delivery extends CI to validate that code is in a deployable state. If it is, it automatically releases it into production.
Achieving this CI/CD pipeline requires a mature DevOps organization — one that has mastered CI before attempting CD.
Implemented well, CI/CD can increase IT productivity and continuously improve your system or application while minimizing risk in deployment. It also enables greater innovation as new application features and updates are deployed quicker, bringing enhanced and more frequent value to customers. This improved productivity also drives greater employee satisfaction.
The competitive advantages of CI/CD are clear. Those who don’t embrace these and other DevOps methodologies will face digital Darwinism.
As usual, a big thanks to Oleg Chunikhin who, with each article, teaches me a little more about cloud native.
From AI-powered chatbots providing personalized recommendations based on a driver's preferences to route optimization and maintenance predictions, the potential for enhancing the customer automotive experience is immense.
Read moreThe future of retail holds many interesting experiments. As we look for better and more environmentally friendly consumption and logistics, AI predictive capabilities, anomaly detection, and better customer support may lead us to rethink how we consume, help distribute goods better, aid food supply safety, and promote things like a shared economy.
Read moreAgriculture is one of the oldest practices created by people and one of the essential industries on the planet. From the first agricultural revolution from around 10,000 BC to today, it’s been both transforming our lives and adapting to them in so many ways that it’s certain that the current AI boom will not pass through without changing it once more.
Read moreArtificial Intelligence (AI) is today's magical buzzword. From chatbots and virtual assistants to predictive analytics and machine learning, AI technology is transforming industries and revolutionizing businesses' operations.
Read moreWe're unpacking the complex interplay between eco-friendliness and the bottom line in the cloud computing sphere. Is it possible to be green, cost-effective, and efficient all at once?
Read moreThis article discusses the benefits startups can get from IT consultants. These include expert knowledge on new technologies, cost-effective solutions, risk management, and personalized advice. They assist in choosing and implementing technology, increasing efficiency, providing training, researching market trends, developing custom software, and fostering valuable partnerships. Collaborating with IT consultants can expedite startup growth and competitiveness.
Read moreA controversy has arisen around the ownership and value of AI works and the role of designers in the AI-embracing tech industry. This article explores the debate surrounding AI and generative AI in design and art, as they are both affected, and how it concerns designers in the tech world.
Read moreInnovative feedback loops become game-changer in Tech industry, emphasizing the importance of continuous communication with key stakeholders to ensure projects remain aligned with organizational goals, building trust and enhancing overall user experience
Read moreThis piece explores our innovative approach to transforming traditional corporate presentations by integrating AI technology and the iconic Barbie theme. Using Midjourney, we created personalized, engaging avatars of our team, adding a touch of humor and nostalgia, and turning standard meetings into enriching experiences. Discover how this blend of creativity and technology not only enhanced engagement but also strengthened interpersonal connections within our organization, setting a precedent for future communication strategies.
Read moreAI and cloud computing together have reshaped the digital landscape in recent years. Alone, each is transformative; together, they can revolutionize industries, driving the next tech evolution. Let's explore how to optimize this integration.
Read moreExplore the intricacies of AI deployment: Why does the performance of the AI models sometimes worsen after it's been out in public?
Read moreChoosing your digital transformation partner is crucial for the business's long-term success. In our many years of experience, EastBanc Technologies has built a list of factors to consider when choosing a digital transformation consulting company.
Read moreAI's vast potential brings challenges and opportunities that will redefine the industry's future; let's dive into how predictive analytics can help and look at several standout examples from diverse sectors that can provide insights for IT and beyond.
Read moreThe rise of low-code development platforms has revolutionized the software development process.; Llet's look at how they did do it and what they provide.
Read moreArtificial intelligence (AI) has the potential to revolutionize various industries and aspects of our lives. However, along with its promises, AI also presents several challenges that need to be addressed for responsible and fair development and use. This article discusses some of the top challenges for AI, including bias in data and algorithms, explainability and transparency, ethical concerns, integration with society, security and safety, and regulatory framework.
Read moreIncreasingly complex AI and ML models require more data to be trained effectively - what are the ways of tackling the increasing power needs?
Read moreThe demand for faster and more efficient software delivery has led to the emergence of DevSecOps, a combination of DevOps and security practices. In this article series, EastBanc Technologies explores some of the top trends in DevOps, starting with DevSecOps.
Read moreIt's no secret that the business landscape is changing. In order to stay ahead of the competition, it's necessary to undergo a digital transformation. In this blog, we'll outline the steps you need to take in order to make sure your business is prepared for the future.
Read moreGet ready to witness the power of artificial intelligence as it transforms the military, retail and personalized medicine industries! From revolutionizing defense strategies to streamlining the shopping experience to providing customized healthcare solutions, AI is changing the game in ways we never thought possible.
Read moreIn the context of EastBanc Technologies' dev approach, MVP stands for Minimal Viable Product. An effective method of quickly establishing a framework for a digital solution, the MVP streamlines the process of a product’s initial deployment. We take a look at the fundamentals of the MVP and how to construct one.
Read moreSolar energy is a promising – and green – alternative to fossil fuels. As long as the sun is shining. Check out how AI helps solar energy providers optimize output, manage supply & demand and reduce the price of electricity using predictive analytics and machine learning. This is AI at work, making gigantic strides for worldwide adoption of this renewable energy source.
Read moreWind energy has the potential to cover much of the world's insatiable thirst for electricity in a sustainable way. Unfortunately, the wind doesn't always blow -- and not always with the same intensity. Using AI and machine learning models, energy producers and scientists are finding new ways to maximize the output and efficiency of wind energy.
Read moreThe potential for Artificial Intelligence (AI) in the green energy industry is rapidly gaining momentum. Renewable energy sources such as solar power are complex and unreliable due to constantly changing weather conditions, but AI can help remove obstacles and unleash the true power of solar.
Read moreApple’s introduction of passkeys with the latest versions of its MacOS and IOS operating systems means is a major step forward for online identity management, but passkeys will not hand us complete control over our own online identities. For that to happen, we need to look at Self-Sovereign Identity (SSI).
Read moreCryptocurrencies are notoriously volatile. Indeed, the rapid rises and vertigo-inducing plunges can make even the most stout-hearted crypto investors tremble. But with time, Bitcoin, et al may settle into a more temperate pattern and become a stable - or even a centerpiece - of our financial systems.
Read moreArtificial intelligence will continue to disrupt many industries, and the best way to maximize the impact of the technology is to start teaching it early. Weaving AI learning into high school curricula will create a strong link between technologies and curious students, fostering future employees well trained in the digital world. -- benefiting business and driving innovation.
Read moreA dive into the implementation of the blockchain in finances, smart contracts and NFTs.
Read moreBlockchain is a word that is now heard everywhere, but not everyone has a clear understanding and knows what is there under the hood. In our second part of the blockchain guide let's dive deeper into the technology and concepts behind it.
Read moreTeaching computer science to teenagers is a no-brainer in today's digital world. Here's why weaving artificial intelligence and machine learning into the high school curriculum can increase the growth of innovative technologies like never before.
Read moreWhile traditional computers continue to evolve and pump out more raw power, they are no match for the quantum computer, which can tackle calculations that the most powerful conventional machines would need decades to process – in a split second.
Read moreHackTJ 2002 is in the books, bringing together more than 400 bright young minds eager to tackle real-world problems with creative technology solutions. As a Gold Sponsor for the event, EastBanc Technologies created three challenges for the young innovators, and we are delighted to announce this year's top contestants -- and their winning hacks.
Read moreThis is EastBanc Technologies 3rd year sponsoring HackTJ, and our participation includes designing three challenges for teams to hack. The challenges will explore how to alleviate some of the world’s most pressing issues impacting our personal and professional lives.
Read moreOne “new” technology that has stuck is Blockchain. To understand what Blockchain is, you only need to know three things. What is a block? What is a chain? What is a ledger?
Read moreModern technology brings the world closer together, but millions of people continue to be left behind. The "digital divide" is multifaceted and impacts society in a variety of ways. These are some of the technologies that are helping bridge the gap.
Read moreArtificial intelligence (AI) can be found almost everywhere in modern life. Learn key lessons and best practices that help companies avoid common AI pitfalls and achieve ROI from their AI systems.
Read moreOpen Data fuels today's digital economy, enables communication and innovation, boosts business and generally makes our lives easier. But how do we protect privacy if everything is open? Zero-knowledge proof could be the answer.
Read moreBlockchain capabilities, including fully-automated data storage and transparency, make it an essential technology for cybersecurity. In this article, we look at some of its use cases.
Read moreDevOps built-in flexibility allows development teams to work at a level that suits their resources and skills without being held back by departmental barriers.
Read moreArtificial Intelligence (AI) – the capability of a machine or piece of software to display human-like intelligence – permeates our daily lives, often in ways we do not notice.
Read moreData-driven software touches our lives every day. Sometimes, it is in ways you see, such as when you check your Twitter feed, pay for your bus ticket or order your latte using your phone.
Read moreEastBanc Technologies is recognized on CIOReview’s list: “Most Promising Microsoft Azure Solution Providers.”
Read moreIn this article, we’re going to dig a bit deeper into AI-implementation. We will take our airline use case a step further, and we will describe a specific example of how EastBanc Technologies solved a particularly challenging problem through AI and machine learning.
Read moreIf your organization provides a product or service -- which applies to just about any business on the planet -- you, too, can benefit from Artificial Intelligence (AI). While implementing AI may sound daunting, it doesn't have to be complex or expensive. This article covers the basics of AI and looks at some easy-to-explore use cases.
Read moreDigital transformation is about opportunity and survival. Businesses that transform digitally gain a significant competitive advantage.
Read morePart 2: Best practices for modernizing your company’s IT infrastructure to ensure innovation success.
Read moreBest practices for modernizing your company’s IT infrastructure to ensure innovation success.
Read moreLearn how machine learning engineers and data scientists collaborate and roll out models faster and with ease using Azure Machine Learning.
Read moreWhat is DevOps, what are DevOps practices, and how do you implement DevOps? Your FAQs answered.
Read moreRefactor, rewrite, or leave as is? Learn when and how to bring your legacy systems up to speed with modern application development practices.
Read moreLearn how technology can better meet your business needs with this foundational understanding of how software and system architectures work.
Read moreReady to embrace AI? Explore why cloud computing is the best infrastructure for your AI model, not on-premises.
Read moreSoftware is a strategic differentiator that can catalyze digital transformation. Organizations are investing in technology, such as modern cloud services, to drive efficiencies and increase the customer experience. To make this a reality, it’s essential that business leaders have a basic understanding of business software and applications work and the opportunities they bring.
Read moreHow an intelligence-driven customer technical support approach can transform your support from a reactive operation to a streamlined, efficient, and proactive operation.
Read moreKubernetes is a popular container orchestration system, but how did it come to be and why, and what role does it play in digital transformation?
Read moreThis article is the third in a series that aims to demystify data science , machine learning, deep learning, and artificial intelligence (AI) – while exploring how they are interconnected.
Read more2020 has seen profound change in the way we live and work with COVID-19 accelerating the pace of digital transformation. Yet, business leaders are often confused about how to implement one of the key enablers of...
Read moreArtificial intelligence (AI), together with its brethren buzzwords data science, machine learning, and deep learning have been around for some time now and are no longer future concepts. Yet misconceptions persist about the true meaning of these terms.
Read moreWhen SUSE, the world’s largest independent open source company, announced its acquisition of Rancher Labs in early July 2020, the industry took notice. Clearly, the Kubernetes management industry is very much alive.
Read moreWe live in a technology-driven world. Even non-technology companies are seeing their business models increasingly shaped by technology. Led by disrupters such as Amazon and Netflix, those enterprises who recognized opportunities early have found ways to extend the analog experience into a digital one. Even creating new revenue streams that they could never have predicted.
Read moreDigital transformation is about delivering core competencies in a digital, automated, and user-centric manner. Driven by data and powered by tech (e.g. cloud, cloud native stack, AI, machine learning, and deep learning), it increases business agility, competitiveness, and enhances customer value.
Read moreLet’s start by understanding where DataOps falls in the line-up of current IT methodologies. DataOps is the next level up from ETL (extract, transform, and load) and MDM (master data management systems) in terms of organizing data and processes. It can also be thought of as a methodology that combines DevOps and Agile within the field of data science.
Read moreThe hotel industry hasn’t changed much in the past decades. While they have introduced some level of digitization such as websites and apps, they haven’t fully embraced digital transformation. Indeed, if things are working fine, why change? Because the next unforeseen disruptor may be right around the corner.
Read moreThe term “DataOps” has picked up momentum and is quickly becoming the new buzz word. But we want it to be more than just a buzz word for your company, after reading this article you will have the knowledge to leverage the best of DataOps for your organization.
Read moreUnstructured text is found in many, if not all business functions, and can become a source of valuable insight. Product reviews will guide your customers’ preferences, customer support chats can identify
Read moreDisclaimer: We have not spoken to a WeWork executive and have no further background information. This is merely a thought experiment to exemplify what digital transformation is about.
Read moreIn part one of this series, we defined data science and explored the role of a data scientist — including data preparation, modeling, visualization, and discovery. We also introduced the role of a machine learning engineer who closely collaborates with the data scientist.
Read moreBig data continues to grow exponentially creating a critical need for solutions that can make sense and extract valuable information from it. For example, the Internet is full of a wide variety of constantly growing text sources— blog posts, forum posts, chats, message boards, item and services reviews, etc.
Read moreKubernetes, the de facto container orchestrator, is great and should be part of any DevOps toolkit. But, just as any other open source technology, it’s not a full-fletched ready-to-use platform.
Read moreWith the increasing popularity of machine learning (ML), it’s becoming more difficult for data scientists to find the appropriate tools for a specific task and decide on a robust approach. Should they stick to the basics and code everything from scratch or use one of the many pre-built tools that keep popping up on the market?
Read moreBlue-green deployments and canary releases mitigate application deployment risk by enabling IT to revert back to the previous version should an issue occur during the release. Switching back and forth between versions
Read moreFor those who were still debating whether they should hop on the digital transformation bandwagon, the COVID-19 crisis was a wakeup call, maybe even a slap in the face.
Read moreThe entire business world is talking about digital transformation. IT leaders, on the other hand, talk about DevOps, cloud native, Kuberentes and containers.
Read moreIf your organization leverages technology as a differentiator, a DevOps approach to application and service delivery is inevitable. The benefits are just too great.
Read moreDigital transformation is one of today’s biggest buzzwords. Everyone is talking about it; everyone wants it. We all know the role technology is playing in enabling businesses to innovate at an unprecedented pace.
Read moreThe data on big data indicates that up to 60% of analytics projects fail or are abandoned, costing companies an average of $12.5 million. That’s not the result we seek from data lakes. Instead, companies are increasingly finding themselves mired in data swamps that are overfilled and too muddy to offer any useful visibility. Or are they?
Read moreWe collect data at a mind-boggling pace. In fact, as companies, we’re hoarding it. But what good is data if it can’t speak to us? Fortunately, data complexity can be broken down through design and visualization – the charts, graphs and plots that show trends, outliers and opportunities.
Read moreAs a company and as a team, our lives at EastBanc Technologies have always been about tackling the biggest problems for the biggest organizations.
Read moreArtificial intelligence (AI) surrounds us. It unlocks our phones, creates our shopping list, navigates our commute, and cleans spam from our email. It’s making customers’ lives easier and more convenient.
Read moreNearly every week there’s something new in our industry. The pace of technology is unprecedented, the role of IT is booming, and innovation is part of our DNA.
Read moreTechnology is accelerating at such a rate that it permeates all industries. In fact, software is the only industry that cuts horizontally across all verticals.
Read moreInnovation is a critical part of business. While prioritizing production in general makes sense, the best approaches make innovation a component of the whole production process.
Read moreWe recently sat down with a large pharmaceutical company to discuss their data analytics projects. What we heard wasn’t a surprise. Three of the four large analytics efforts they undertook last year had failed.
Read moreAMS Group is a cohesive group of established companies that provide technology and security equipment to aerospace, defense, and security markets.
Read moreA European market leader in online survey and feedback software acquired complementary companies in different Wester European countries, each of which had its own survey platform.
Read moreEveryone loves their own data. Collecting it. Analyzing it. Drawing conclusions from it. But often, when you allow departments or business units within your organization to gather their own data, that data isn’t shared.
Read moreGartner predicts that through 2017 60% of big data projects will fail to go beyond piloting and experimentation and ultimately will be abandoned.
Read moreOrganizations generally understand the power behind analytics, but how do you make it work culturally and technically? We take a look at the barriers to data analytics success and suggest new approaches that buck the system, with dramatic results.
Read moreAnd how to make your next data analytics project succeed?
Read moreContainer use is exploding right now. Developers love them and enterprises are embracing them at an unprecedented rate.
Read moreIf you’re making the move to containers, you’ll need a container management platform. And, if you’re reading this article, chances are you’re considering the benefits of Kubernetes.
Read moreWouldn’t it be nice to reach artificial intelligence (AI) nirvana? To have a system that provides real-time, context-aware decisions.
Read moreToday’s IT environment is moving and evolving at an unprecedented pace. So, all of a sudden, your 5-year old software infrastructure can look more like it’s 50. To get your software current – and stay there – requires flexibility. Moving to containers does just that. There’s been lots of talk about containers over the past few years – so why aren’t you on the bandwagon yet?
Read moreUnder pressure to deliver applications faster and ensure 24/7 runtime, organizations are increasingly turning to DevOps methodologies to deliver applications quicker and in an automated fashion. But what tools should you have in your DevOps toolkit?
Read moreAmazon Web Services (AWS), Azure, and Google Cloud Platform (GCP) are the public cloud market leaders, but how do you determine which of them best supports your enterprise's specific needs? For most enterprises, and for the foreseeable future, it’s going to be a multiple answer question.
Read moreAs the dominant movie rental service in the 90s and early 2000s, Blockbuster was the market leader, seemingly indefatigable. Until the great disruptor, Netflix, hit the scene.
Read moreBig Data. Everyone’s paying for it, collecting it, and talking about it, but what are companies actually doing with it?
Read moreThe API management market is a hot one. As more organizations make investments in mobile, IoT, and big data, APIs are a core of their digital strategy.
Read moreBig data is everywhere. Organizations are being advised to hoard it and do everything they can to derive actionable insights. This article will argue that this approach puts the cart before the horse.
Read moreLet’s face it. Organizations struggle with their legacy applications. Even when they still solve some of the business’ problems, they reach a point where they can no longer keep up with market and industry demands.
Read moreLet’s flash back to 2000. You’ve survived Y2K and you’re building systems for CRM, inventory, logistics, or data. They’re all state-of-the-art, and get the job done, even if they don’t talk to each other.
Read moreIt’s a mobile app world, and we just live in it. But for those working on the “next big thing,” there’s a conundrum – everyone knows we should be building apps in HTML, but not every device out there runs it as smoothly as it should.
Read moreIn technology, everyone likes to talk about “future-proofing.” But even for the most cutting-edge tech, time always catches up.
Read moreThe future is here. No, we don’t have flying cars or robot butlers – yet – but it’s definitely a digital world.
Read moreWe’re excited to announce Microsoft Azure support for the Kubernetes auto scaling module, an open source system for automating deployment, scaling, and management of containerized applications.
Read moreYou can’t mention enterprise technologies today without getting into a discussion about the cloud. “Are you in the cloud yet?” Why jumping headlong into cloud computing may not be the necessary move for your business.
Read moreIn the mad rush to move to the cloud, some organizations put the proverbial cart in front of the horse. They’re just looking for the best hosting, the preferred provider, or whatever the rest of the industry is using.
Read more2016 saw momentum in many areas – DevOps, cloud technologies, and big data- at the thrust of innovation. So, what tech predictions will define 2017?
Read moreEvery month, week, or day, it seems there’s buzz about yet another solution or service that will revolutionize your industry – or more simply, make your life easier.
Read moreApps. Sensors. They’re everywhere. Your phone, your car, your TV, even your refrigerator
Read moreIn an increasingly commoditized market, learn how to cut through the noise and forge a cloud strategy that meets your needs
Read moreFleet management is a challenging business. This is particularly true of snow removal services where the dynamics on the ground can change fast and the pressures to perform put fleet supervisors to the test – in the toughest of conditions.
Read moreLong before the first flakes fall from the sky many municipalities begin to prepare for the cold, icy, and snowy conditions that inevitably lie ahead.
Read moreFun fact: in 2014, cloud services were already a $45 billion business worldwide, and are expected to grow to $95 billion by 2017. Will you be part of that equation?
Read moreSimple is good. Simple is clean. And whether I’m cooking or planning a trip, simple is always better, right? So why do so many companies make user experience (UX) so complex?
Read moreFuture-ready predictive analysis infrastructures hold the key to gaining insights from data today, and into tomorrow.
Read moreImmersive and exciting, Virtual Reality is already part of our lives, whether it’s a plot device in a new sci-fi thriller or the best way to enjoy the latest video games or thrill rides.
Read moreNow that smartphones are the most widely used tool for navigating important life activities (nearly two thirds of Americans own one[1]), there’s pretty much an app for everything these days.
Read moreIf you’re tasked with choosing an API management system, Charles Dickens summed it up best: “It was the best of times, it was the worst of times.”
Read moreDevOps: the panacea for all that’s wrong with enterprise IT. Where siloed teams who keep information close to their chest are replaced by agile, transparent relationships between developers and operations and fast and stable workflows that improve IT efficiency significantly and very visibly.
Read moreAs a technology company focused on complex project integrations that unify legacy systems as well as modular solutions that ensure lasting scalability, we work on a multitude of projects that involve custom software development; packaged, open source, and SaaS software integration; infrastructure setup; and production operations and maintenance.
Read moreIn an earlier blog we talked about why you need to integrate API management into your business strategy
Read moreIn a previous release of “What the Tech?” we discussed why you should integrate API management into your business strategy.
Read moreSmart cars, smart homes, smart devices. The Internet of Things (IoT) is already transforming how we live. But very soon, the IoT will swiftly extend into the enterprise.
Read moreWhy you Need to Integrate API Management into your Business Strategy
Read moreThe promise of big data is, well, big! With terabytes of intelligence at their disposal, organizations can make faster, more accurate decisions, monitor trends, and even predict the future.
Read moreBusinesses accumulate data, create content, or possess unique business logic—each of which represents an untapped business opportunity. But how can organizations realize that opportunity?
Read moreThe Internet of Things (IoT) is much more than a consumer trend, it’s rapidly changing the way enterprises are using data to improve business decision-making.
Read moreContent consumption is changing rapidly. With multiple channels and media formats, reaching target audiences is getting harder than ever.
Read moreThe way in which we consume content is changing rapidly and a few trends have emerged recently that we think will have a meaningful impact on media organizations this year and in years to come.
Read moreBuilding a mobile app isn’t as simple as it used to be. With multiple devices to cater to, development teams must ask themselves a few questions:
Read more