the evolution of distributed systems on kubernetes
play

The Evolution of Distributed Systems on Kubernetes Bilgin Ibryam - PowerPoint PPT Presentation

The Evolution of Distributed Systems on Kubernetes Bilgin Ibryam Product Manager @RedHat @bibryam 1 Bilgin Ibryam Product Manager at Red Hat Former Architect/Consultant Committer at Apache Camel Author of Camel Design


  1. The Evolution of Distributed Systems on Kubernetes Bilgin Ibryam Product Manager @RedHat @bibryam 1

  2. Bilgin Ibryam ● Product Manager at Red Hat ● Former Architect/Consultant ● Committer at Apache Camel ● Author of “Camel Design Patterns” and “Kubernetes Patterns” books @bibryam ● Latest interest: cloud native data 2 @bibryam

  3. What comes after Microservices? 3

  4. Agenda ● Distributed system needs ● Monolithic architectures ● Cloud-native technologies ■ Kubernetes, Istio, Knative, Dapr ● Future architecture trends 4 @bibryam

  5. Modern distributed applications ● 100s of components and 1000s of instances ● Polyglot, independent, and automatable components ● Hybrid workloads on hybrid environments ● Open source, open standards, and interoperable ● Based on Kubernetes ecosystem 5 @bibryam

  6. What are the needs of distributed applications? 6

  7. Distributed application needs 7 @bibryam

  8. Distributed application needs Lifecycle management ● Deployment/rollback ● Placement/scheduling ● Configuration management ● Resource/failure isolation ● Auto/manual scaling ● Hybrid workloads (stateless, stateful, serverless, etc) 8 @bibryam

  9. Distributed application needs Advanced networking ● Service discovery and failover ● Dynamic traffic routing ● Retry, timeout, circuit breaking ● Security, rate limiting, encryption ● Observability and tracing 9 @bibryam

  10. Distributed application needs Resource bindings ● Connectors for APIs ● Protocol conversion ● Message transformation ● Filtering, light message routing ● Point-to-point, pub/sub interactions 10 @bibryam

  11. Distributed application needs Stateful abstractions ● Workflow management ● Temporal scheduling ● Distributed caching ● Idempotency ● Transactionality (SAGA) ● Application state 11 @bibryam

  12. Monolithic architectures 12

  13. Traditional middleware capabilities ● Stateful primitives ● Resource bindings ● Networking 13 @bibryam

  14. Traditional middleware limitations ● Lifecycle management ○ Single, shared language runtime ○ Manual deployment/rollback ○ Manual placement ○ Manual scaling ○ No resource/failure isolation 14 @bibryam

  15. Cloud-native architectures 15

  16. Microservices and Kubernetes 16 @bibryam

  17. Microservices and Kubernetes 17 @bibryam

  18. Health probes 18 @bibryam

  19. Managed start/stop 19 @bibryam

  20. Declarative deployment 20 @bibryam

  21. Demands & placement Predictable resource demand Automated placement 21 @bibryam

  22. Configuration management ● ConfigMaps used in Pods as: ○ environment variables ○ volumes ● Secrets: ○ Minimal Node spread ○ Only stored in memory in a tmpfs ○ Encrypted in the backend store (etcd) ○ Access can be restricted with RBAC 22 @bibryam

  23. Foundational kubernetes capabilities More Kubernetes Patterns ● Foundational patterns ● Structural patterns ● Configuration patterns ● Behavioural patterns (For more Kubernetes Patterns, check out the link at the end of the slides) 23 @bibryam

  24. Hybrid workloads Batch/Periodic Job Stateless Service 24 Global Singleton Stateful Service @bibryam

  25. Lifecycle capabilities ● Deployment/rollback ● Placement/scheduling ● Configuration management ● Resource/failure isolation ● Auto/manual scaling ● Hybrid workloads: stateless, stateful, batch jobs, serverless 25 @bibryam

  26. How do we extend Kubernetes? 26

  27. Out-of-process extension mechanism Lifecycle guarantees Deployment guarantees 27 @bibryam

  28. Sidecar 28 @bibryam

  29. Controller Pattern Default schema Default controllers Managed resources ● ReplicaSet ● replicaset state ● StatefulSet ● statefulset ● Pod ● Job, CronJob ● job, cronjob ● PVC... Custom controller -> Custom behaviour 29 @bibryam

  30. Operator Pattern Custom operator Custom application kind: ConfigWatcher ● Go ● AI/ML apiVersion: k8spatterns.io/v1 metadata: ● Helm ● Big Data name: webapp-config-watcher spec: ● Ansible ● Storage configMap: webapp-config podSelector: ● Java ● Streaming app: webapp ● Python ● Monitoring CustomResourceDefinition + Controller = Operator 30 @bibryam

  31. Kubernetes based platforms 31

  32. What is Service Mesh? 32 @bibryam

  33. What is Service Mesh? 33 @bibryam

  34. What is Service Mesh? 34 @bibryam

  35. What is Service Mesh? 35 @bibryam

  36. Networking capabilities API Gateway Service Mesh Enhances the reliability and the visibility of the Abstract away details and decouple consumers from implementations networking interactions Telemetry, tracing collection Controls what’s allowed in/out ● ● Service discovery, load balancing Bridging security domains ● ● Request / response transformation TLS termination/origination ● ● Request routing, traffic splitting Protocol, data format transformation ● ● Traffic shadowing API composition ● ● Rate limiting Rate limiting ● ● 36 @bibryam

  37. What is Knative? Serving Eventing Common infrastructure Common infrastructure for request-driven for consuming and interactions that can producing events "scale to zero". declaratively. Kubernetes-based platform to deploy, and manage serverless workloads. 37 @bibryam

  38. Knative Serving concepts apiVersion: serving.knative.dev/v1alpha1 Scale-to-zero & activation ● kind: Service Rapid autoscaling ● metadata: name: lotto Traffic splitting ● spec: Callable by Knative eventing replicas: 1 ● selector: Simplified deployment model ● matchLabels: app: lotto Single Port ○ template: No PersistentVolumes metadata: ○ labels: Single Container ○ app: lotto spec: containers: - image: cds19/lotto 38 @bibryam

  39. Knative Eventing concepts Sources (Kafka, CronJob, Apache Camel 200+, etc) ● Broker implementations (In-memory, Kafka, etc) ● CloudEvents data format ● Trigger with filters ● Sequence: chaining multiple steps composed of ● containers 39 @bibryam

  40. Lifecycle, networking, binding capabilities ● Knative Serving ○ Simplified deployment for stateless workloads ○ Traffic based autoscaling including Scale-to-Zero ○ Traffic splitting for custom rollout / rollback scenarios ● Knative Eventing ○ External triggers for feeding Knative Services ○ Based on CloudEvents ○ Backed by proven messaging systems ○ Declarative messaging infrastructure 40 @bibryam

  41. What is Dapr? Sidecar architecture Building blocks Developer first, standard APIs Make it easy for developers to used from any programming create microservice without language or framework. being an expert in distributed systems. A portable runtime for building distributed applications. 41 @bibryam

  42. Dapr building blocks Service Invocation Resource Bindings State Management Act as a reverse proxy with Trigger code through events Provides a key/value-based built-in service discovery, from input and output bindings state API with pluggable state tracing and error handling to external resources. stores for persistence Distributed Tracing Publish & Subscribe Actors See and measure the message Secure, scalable messaging Encapsulate code and data in calls across components and between services reusable actor objects as a networked services common microservices 42 @bibryam

  43. 43 @bibryam Dapr architecture Source: https://github.com/dapr/docs

  44. 44 @bibryam Dapr on Kubernetes Source: https://github.com/dapr/docs

  45. Full circle Service discovery Connectors Dynamic routing Eventing Resiliency Filtering Observability Serverless Bindings Deployment State abstraction Placement Pub/Sub Config mgmt Observability Scaling Centralized control plane Centralized control plane ● ● Centralized data plane Decentralized, highly-scalable data plane ● ● 45 @bibryam

  46. Future cloud native trends 46

  47. 47 @bibryam Lifecycle trends Source: https://operatorhub.io

  48. Networking trends Introduction of Service Mesh Interface specification ● Architecture consolidation of Istio with istiod ● More L7 protocols: MongoDB, DynamoDB, ZooKeeper, MySQL, Redis, Kafka(8188) ● KIP-559 can enable bridging, validation, encryption, filtering, transformation ○ HTTP Cache filter (eCache) ● HTTP tap filter (with matcher) ● WebAssembly (wasm) filters with dynamic loading (C++ -> Rust, Go, etc) ● 48 @bibryam

  49. Binding trends Camel-K Operator: Dev Environment Cloud 1. Choose a runtime - from: 2. Scaffold a project Source: https://github.com/apache/camel-k uri: "direct:route" 3. Add boilerplate Custom steps: Resource 4. Add dependencies - split: tokenize: "," 5. Create container image Camel K - to: "mock:split" 6. Create Kubernetes Operator resources for deployment kamel CLI Running Pod Fast redeploy! Live Less than 1 second! updates! 49 @bibryam

  50. 50 @bibryam State trends Source: https://github.com/cloudstateio/cloudstate

  51. What does all this mean? 51

  52. Multi-runtime microservices are here 52 @bibryam

  53. Smart sidecars and dumb pipes 53 @bibryam

  54. What comes after Microservices? 54 @bibryam

  55. Thank You @bibryam https://k8spatterns.io 55

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