Book Image

Enterprise API Management

By : Luis Weir
Book Image

Enterprise API Management

By: Luis Weir

Overview of this book

APIs are the cornerstone of modern, agile enterprise systems. They enable access to enterprise services from a wide variety of devices, act as a platform for innovation, and open completely new revenue streams. Enterprise API Management shows how to define the right architecture, implement the right patterns, and define the right organization model for business-driven APIs. Drawing on his experience of developing API and microservice strategies for some of the world's largest companies, Luis Weir explains how APIs deliver value across an enterprise. The book explores the architectural decisions, implementation patterns, and management practices for successful enterprise APIs, as well as providing clear, actionable advice on choosing and executing the right API strategy in your enterprise. With a relentless focus on creating business value, Luis Weir reveals an effective method for planning, building, and running business products and services with APIs.
Table of Contents (9 chapters)

gRPC

gRPC is a modern RPC protocol that runs on top of HTTP/2. It was created by Google and open-sourced in 2015 as a Cloud Native Computing Foundation (CNCF) project.

The gRPC project is accessible through the official website:
https://grpc.io
Figure 6.15: The gRPC logo

gRPC has its origins in a proprietary protocol called Stubby, a multi-language RPC framework also developed by Google around 2001 with the aim of addressing scaling and communication challenges when building loosely coupled distributed systems.

Stubby, at its core, consisted of an RPC layer capable of handling Internet-scale volumes (up to the billions of requests per second). When open-sourced in 2015 under the name gRPC, the protocol maintained many of its original characteristics, with the difference that it now embraced emerging and complementary open standards such as HTTP/2.

As the protocol is HTTP/2...