a micro service approach for cloud native network services
play

A Micro-service Approach for Cloud-Native Network Services - PDF document

A Micro-service Approach for Cloud-Native Network Services Sebastiano Miano, Fulvio Risso Dept. of Control and Computer Engineering Politecnico di Torino, Italy CCS CONCEPTS applications are notoriously slow and ineffjcient given their


  1. A Micro-service Approach for Cloud-Native Network Services Sebastiano Miano, Fulvio Risso Dept. of Control and Computer Engineering Politecnico di Torino, Italy CCS CONCEPTS applications are notoriously slow and ineffjcient given their generality, which impairs the possibility to specialize the · Networks → Network architectures ; Cloud com- software network function depending on workloads or the puting ; Programmable networks ; Network management . type of application that is running on top of it. Secondly, ACM Reference Format: software network functions that live in the kernel have also Sebastiano Miano, Fulvio Risso. 2020. A Micro-service Approach proven hard to evolve due the complexity of the code and for Cloud-Native Network Services. In Proceedings of Symposium on the diffjculties in maintaining, up-streaming or modifying SDN Research 2020 (SOSR ’20). ACM, New York, NY, USA, 3 pages. the kernel code (or the respective kernel modules). In this demo, we show Polycube , an overarching coher- 1 INTRODUCTION ent software architecture that solves the previous mentioned Recently, there has been a visible shift in the paradigms used problems by applying the micro-service paradigm to the to develop and deploy (previously monolithic) server appli- world of in-kernel network functions, enabling the creation cations in favor of micro-services. Cloud-native technologies of effjcient, modular and dynamically reconfjgurable net- are used to develop applications built with services pack- working components, available with vanilla Linux. Each aged in containers, deployed as micro-services and managed Polycube service can be dynamically plugged into the frame- on elastic infrastructure through agile DevOps processes work and confjgured through a set of REST APIs that are used and continuous delivery workfmows. This new paradigm has to perform the typical CRUD (create-read-update-delete) op- brought a visible change in the type and requirements of net- erations on the service itself. The corresponding demo video work functionalities deployed across the data center given is available at https://youtu.be/gW2uByayYxY . the new type of workloads and applications running on the servers. Cloud-native platforms, like Kubernetes, relies on 2 ARCHITECTURE difgerent network providers (a.k.a., network plugins) to im- plement the underlying data plane functionalities and trans- Each Polycube service is composed of a control plane , which is parently steer packets between the micro-services. executed in userspace and is in charge of the service confjgu- Current alternatives to build such software network func- ration and other non-dataplane tasks (e.g., routing protocols), tions rely mostly on kernel bypass approaches, implementing and a data plane , which is executed in the kernel context all the network functionality in user-space in a łbusy wait- and triggered every time a new packet is received in the ingž loop. Although these approaches bring unquestionable given part of the Linux networking stack where the program performance improvements, they may not be suitable for this is attached to. The data plane exploits the recently added kind of paradigm given their intrinsic characteristics. In fact, eBPF [ 1 ] subsystem of the Linux kernel to enable custom they (i) require the exclusive allocation of resources (i.e., CPU user-defjned programs to be executed in the kernel and at- cores) to achieve very good performance; this is perfectly tached to difgerent points of the TCP/IP stack (e.g., XDP [ 2 ]), fjne when we have a single dedicated machine for the net- guaranteeing the safety (i.e., eBPF programs cannot crash working purposes but it becomes overwhelming when this the kernel) trough an in-kernel verifjer and allowing to inject cost has to be payed for every server in the cluster, since they those programs in the kernel at runtime, without having to permanently steal precious CPU cycles to other application install additional kernel modules or restarting the machine. tasks. Moreover, they (ii) require to re-implement the entire A Polycube service chain involves of a set of network network stack in userspace, hence losing all the well-tested function instances that are connected to each other through confjguration, deployment and management tools developed virtual ports, which are in turn peered with a Linux network- over the years within the operating system. ing device or another NF instance. In the standard model, As consequence, most of existing cloud-native network eBPF programs do not have the concept of port from which providers today still rely on functionalities and tools embed- traffjc is received or sent out. Polycube enables this abstrac- ded into the operating system network stack. The drawbacks tion by adding a set of additional eBPF components, which of this approach are also evident; fjrst of all, kernel network are hidden to the developers.

  2. SOSR ’20, March 03, 2020, San Jose, CA S. Miano, et al. REST API Node 1 192.168.2.0/24 192.168.1.3/24 192.168.1.X/24 Node 2 Pod1 PodN Reload (new Data Path code) pcn-firewall Service Proxy Control Plane App1 App1 pcn-fw 192.168.1.0/24 Kernel abstraction layer pcn-lb pcn-lb VxLAN polycubed overlay 192.168.1.1 network pcn-bridge Linux User space networking Reload stack Kernel space pcn-router (Routing + Natting) 192.168.3.0/24 pcn-nat Node 3 eBPF VM eBPF VM eth0 Physical node IP 130.192.225.143/24 pcn-firewall data plane (1) pcn-firewall data plane (2) Parsing Parsing Ip.src Ip.dst Ip.src Datacenter network ( L3 ) ... ... (src, dst) Lookup Lookup (src) Lookup (1) Figure 2: Architecture of the Polycube K8s CNI plugin (2) Packet matching on the destination IP. At this point, the component Figure 1: Re-confjgurable pipeline of the Polycube matching on the destination IP becomes useless, together pcn-firewall service. with the parsing module that does not need to extract also that fjeld from the packet. The control plane of the fjrewall NF We will show how Polycube services can be chained to- then removes and substitutes the above-mentioned program gether providing a highly customized path in the kernel that and reloads a new version of the data path (2); Polycube will is optimized for the specifjc application context (e.g., a Ku- take care of safely perform this reloading, thus avoiding any bernetes CNI plugin), while still being able to communicate service disruption. and interact with the rest of the TCP/IP stack, hence avoid- This capability to dynamically compose and replace those ing to re-implement or throw away existing functionalities micro-blocks within the NF allows the creation, at runtime, embedded within the operating system. of an optimal version of the original NF data plane, which is customized depending on the application needs. 3 DEMONSTRATION 3.1 Agile Service Development 3.2 Kubernetes CNI Plugin Internally, the data plane architecture of every Polycube ser- In the second part of the demo, we demonstrate the capability vice can be composed of difgerent micro-functional blocks, of Polycube to enable the creation of complex applications which are instantiated as a set of difgerent eBPF programs created by chaining difgerent network functions together, connected together through tail calls 1 . This set of difgerent which were already available as standalone components. A micro components, handled by a unique control plane, is novel K8s-specifjc control plane integrates the above com- particularly useful because it allows the developer to handle ponents to provide exactly the network service required by each feature separately, enabling the creation of loosely cou- this orchestrator, namely pod-to-pod 2 and pod-to-service pled services with difgerent functionalities such as packet communication, providing also support for special K8s ser- parsing, classifjcation or fjeld modifjcation. vices (namely, ClusterIP and NodePort), and security policies. Figure 1 illustrates the internal structure of the simplifjed Figure 2 shows the resulting architecture, which is composed version of the Polycube pcn-firewall service, which is able of difgerent independent Polycube services that are chained to fjlter packets depending on the source and destination IP. together to support the main operations required by K8s net- The fjrst version (1) of the data plane, which is instantiated work plugin interface. Our implementation, albeit prototypal, by the corresponding control plane component when the required a very limited amount of work and supports all the service is created, is composed of several micro-blocks; a required communication patterns through a simple concate- parser module that extracts the fjelds from the packets and nation of existing Polycube NFs, which can be dynamically two additional blocks that check if the source and destination deployed, modifjed or removed depending on the applica- IP of the packets need to be fjltered. At runtime, the service tion needs and can easily interact with the rest of the TCP/IP administrator may change the type of rules deployed in the stack to exploit existing functionalities (e.g., tunneling). fjrewall service, for instance by eliminating all the rules 1 Tail calls are an eBPF mechanism that allows to perform a łlong jumpž 2 A K8s pod is a group of containers that are deployed on the same host. from one eBPF program to another.

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