grpc at lyft grpc at lyft
play

gRPC at Lyft gRPC at Lyft gRPC Meetup - SF gRPC Meetup - SF Chris - PowerPoint PPT Presentation

gRPC at Lyft gRPC at Lyft gRPC Meetup - SF gRPC Meetup - SF Chris Roche Chris Roche Lyft, Software Engineer - Core Libraries Lyft, Software Engineer - Core Libraries Howdy! Howdy! Core Libraries @ Lyft Core Libraries @ Lyft Previously


  1. gRPC at Lyft gRPC at Lyft gRPC Meetup - SF gRPC Meetup - SF Chris Roche Chris Roche Lyft, Software Engineer - Core Libraries Lyft, Software Engineer - Core Libraries

  2. Howdy! Howdy! Core Libraries @ Lyft Core Libraries @ Lyft Previously Core Platform & DevOps @ VSCO Previously Core Platform & DevOps @ VSCO

  3. Background Background

  4. Infrastructure @ Lyft Infrastructure @ Lyft PHP Monolith (ongoing decomposition) PHP Monolith (ongoing decomposition) Go "Tier-Zero" core services Go "Tier-Zero" core services Python (Micro)services Python (Micro)services Envoy network fabric Envoy network fabric

  5. What problems are we trying to solve? What problems are we trying to solve? More services = more communication More services = more communication Many errors in our Python services are type related Many errors in our Python services are type related Documenting APIs are hard to maintain Documenting APIs are hard to maintain No single source of truth for the shape of our data No single source of truth for the shape of our data

  6. Solution: gRPC and Protocol Buffers! Solution: gRPC and Protocol Buffers! Standardize the API definitions and I/O Standardize the API definitions and I/O Enforce types at the service boundaries Enforce types at the service boundaries IDLs become our single source of truth IDLs become our single source of truth

  7. Tier-Zero Core Services Tier-Zero Core Services

  8. Tier-Zero Core Services Tier-Zero Core Services Primary apps of the business Primary apps of the business Go: type-safety & performance Go: type-safety & performance proto3-based ODM for MongoDB & DynamoDB proto3-based ODM for MongoDB & DynamoDB gRPC interface gRPC interface Interceptors used to augment RPC endpoints Interceptors used to augment RPC endpoints

  9. gRPC Unary Interceptor gRPC Unary Interceptor func RequestID( func RequestID( ctx context.Context, ctx context.Context, req interface{}, req interface{}, info *grpc.UnaryServerInfo, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (interface{}, error) { handler grpc.UnaryHandler) (interface{}, error) { if meta, ok := metadata.FromContext(ctx); ok { if meta, ok := metadata.FromContext(ctx); ok { if hdrs, ok := meta[RequestIDHeader]; ok && len(hdrs) > 0 { if hdrs, ok := meta[RequestIDHeader]; ok && len(hdrs) > 0 { ctx = context.WithValue(ctx, RequestIDHeader, hdrs[0]) ctx = context.WithValue(ctx, RequestIDHeader, hdrs[0]) } } } } return handler(ctx, req) return handler(ctx, req) } } Logging, metrics, request-scoped info Logging, metrics, request-scoped info RPC/Service independent RPC/Service independent Only one per server, though, so... Only one per server, though, so...

  10. Chaining Interceptors Chaining Interceptors func Chain(wrappers ...grpc.UnaryServerInterceptor) grpc.UnaryServerInterceptor { func Chain(wrappers ...grpc.UnaryServerInterceptor) grpc.UnaryServerInterceptor { return func( return func( ctx context.Context, ctx context.Context, req interface{}, req interface{}, info *grpc.UnaryServerInfo, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (interface{}, error) { handler grpc.UnaryHandler) (interface{}, error) { for i := len(wrappers) - 1; i >= 0; i-- { for i := len(wrappers) - 1; i >= 0; i-- { handler = wrapHandler(wrappers[i], info, handler) handler = wrapHandler(wrappers[i], info, handler) } } return handler(ctx, req) return handler(ctx, req) } } } } func wrapHandler( func wrapHandler( wrapper grpc.UnaryServerInterceptor, wrapper grpc.UnaryServerInterceptor, info *grpc.UnaryServerInfo, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) grpc.UnaryHandler { handler grpc.UnaryHandler) grpc.UnaryHandler { return func(ctx context.Context, req interface{}) (interface{}, error) { return func(ctx context.Context, req interface{}) (interface{}, error) { return wrapper(ctx, req, info, handler) return wrapper(ctx, req, info, handler) } } } }

  11. Chaining Interceptors Chaining Interceptors grpc.NewServer( grpc.NewServer( grpc.UnaryInterceptor( grpc.UnaryInterceptor( Chain( Chain( RequestID, RequestID, Metrics, Metrics, // etc..., // etc..., ), ), ), ), // other server options... // other server options... ) ) Provided with the Lyft "StdLib" Provided with the Lyft "StdLib" Core Libraries solves this so that every service doesn't Core Libraries solves this so that every service doesn't

  12. Future: protoc-gen-go plugin Future: protoc-gen-go plugin Extra type-safety (Request/Response messages) Extra type-safety (Request/Response messages) Service/RPC level customizability Service/RPC level customizability Fork required, though � Fork required, though 😖

  13. Python Services Python Services

  14. Python Services Python Services Fronted by Gunicorn + Gevent Fronted by Gunicorn + Gevent Flask-based HTTP servers Flask-based HTTP servers gRPC clients of tier-zero services gRPC clients of tier-zero services Want to also be gRPC servers Want to also be gRPC servers Just one issue... Just one issue...

  15. Gevent + gRPC = Gevent + gRPC =

  16. Envoy Envoy

  17. Envoy Envoy L7 edge & service proxy L7 edge & service proxy Modern C++11 codebase Modern C++11 codebase HTTP/2 & gRPC fluent gRPC fluent HTTP/2 & Extensible (L3/4/7) filter architecture Extensible (L3/4/7) filter architecture

  18. Goal Goal "The network should be transparent to applications. When network and application problems do "The network should be transparent to applications. When network and application problems do occur it should be easy to determine the source of the problem." occur it should be easy to determine the source of the problem."

  19. Design Design Out of process architecture Out of process architecture Transparent to applications Transparent to applications Hot restart Hot restart

  20. Features Features Service discovery Service discovery Load balancing Load balancing Health checks Health checks Mesh routing Mesh routing Protocol agnostic Protocol agnostic Robust stats Robust stats Oh, ...and Open Source! Open Source! Oh, ...and

  21. Topology Topology

  22. So what about gRPC? So what about gRPC?

  23. Code Generation via protoc Code Generation via protoc proto2 extensions proto2 extensions Custom message and field options Custom message and field options Generated Python client/server (Flask) Generated Python client/server (Flask) protoc plugin leveraging protoc-gen-go utilities protoc plugin leveraging protoc-gen-go utilities

  24. Proto Extensions + Options Proto Extensions + Options service HelloWorld { service HelloWorld { option (http_server_options).isHttpServer = true; option (http_server_options).isHttpServer = true; rpc GetHttpHello (SayHelloRequest) returns (SayHelloResponse) { rpc GetHttpHello (SayHelloRequest) returns (SayHelloResponse) { option (http_options).path = "/api/gethello"; option (http_options).path = "/api/gethello"; option (http_options).method = "get"; option (http_options).method = "get"; option (http_options).impl = "test_http.handle_hello_world_get"; option (http_options).impl = "test_http.handle_hello_world_get"; } } } }

  25. Generated Server Generated Server @blueprint.route('/api/gethello', methods=['GET']) @blueprint.route('/api/gethello', methods=['GET']) def get_hello(): def get_hello(): if request.headers.get('Content-Type') == 'application/proto': if request.headers.get('Content-Type') == 'application/proto': try: try: input = SayHelloRequest() input = SayHelloRequest() input.ParseFromString(request.data) input.ParseFromString(request.data) # Call the actual implementation method # Call the actual implementation method resp = handle_hello_world_get(input) resp = handle_hello_world_get(input) return resp.SerializeToString() return resp.SerializeToString() except Exception as e: except Exception as e: logger.warning( logger.warning( 'Exception calling handle_hello_world_get on get_hello: {}'.format(repr(e)) 'Exception calling handle_hello_world_get on get_hello: {}'.format(repr(e)) ) ) raise e raise e else: else: # Non proto application code goes here # Non proto application code goes here return handle_hello_world_get(request) return handle_hello_world_get(request)

  26. Generated Client Generated Client def get_hello(self, input): def get_hello(self, input): try: try: assert isinstance(input, SayHelloRequest) assert isinstance(input, SayHelloRequest) headers = { headers = { 'Content-Type': 'application/proto' 'Content-Type': 'application/proto' } } response = self.get( response = self.get( '/api/gethello', '/api/gethello', data=input.SerializeToString(), data=input.SerializeToString(), headers=headers, headers=headers, raw_request=True, raw_request=True, raw_response=True) raw_response=True) op = SayHelloResponse() op = SayHelloResponse() op.ParseFromString(response.content) op.ParseFromString(response.content) return op return op except Exception as e: except Exception as e: logger.warning( logger.warning( 'Exception calling get_hello : {}'.format(repr(e)) 'Exception calling get_hello : {}'.format(repr(e)) ) ) raise e raise e

  27. Envoy filter to upgrade/downgrade gRPC Envoy filter to upgrade/downgrade gRPC

  28. gRPC + Envoy + gEvent = gRPC + Envoy + gEvent =

  29. Organization & Process Organization & Process

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend