The Making of VES: the Cosmos Microservice for Netflix Video Encoding | by Netflix Know-how Weblog | Apr, 2024
Liwei Guo, Vinicius Carvalho, Anush Moorthy, Aditya Mavlankar, Lishan Zhu
That is the second publish in a multi-part sequence from Netflix. See right here for Half 1 which supplies an summary of our efforts in rebuilding the Netflix video processing pipeline with microservices. This weblog dives into the small print of constructing our Video Encoding Service (VES), and shares our learnings.
Cosmos is the following technology media computing platform at Netflix. Combining microservice structure with asynchronous workflows and serverless features, Cosmos goals to modernize Netflix’s media processing pipelines with improved flexibility, effectivity, and developer productiveness. Prior to now few years, the video group inside Encoding Applied sciences (ET) has been engaged on rebuilding your complete video pipeline on Cosmos.
This new pipeline consists of numerous microservices, every devoted to a single performance. One such microservice is Video Encoding Service (VES). Encoding is an integral part of the video pipeline. At a excessive degree, it takes an ingested mezzanine and encodes it right into a video stream that’s appropriate for Netflix streaming or serves some studio/manufacturing use case. Within the case of Netflix, there are a selection of necessities for this service:
- Given the wide selection of gadgets from cellphones to browsers to Good TVs, a number of codec codecs, resolutions, and high quality ranges must be supported.
- Chunked encoding is a should to satisfy the latency necessities of our enterprise wants, and use circumstances with totally different ranges of latency sensitivity must be accommodated.
- The potential of steady launch is essential for enabling quick product innovation in each streaming and studio areas.
- There’s a big quantity of encoding jobs daily. The service must be cost-efficient and take advantage of use of obtainable assets.
On this tech weblog, we are going to stroll via how we constructed VES to attain the above objectives and can share numerous classes we realized from constructing microservices. Please observe that for simplicity, we’ve got chosen to omit sure Netflix-specific particulars that aren’t integral to the first message of this weblog publish.
A Cosmos microservice consists of three layers: an API layer (Optimus) that takes in requests, a workflow layer (Plato) that orchestrates the media processing flows, and a serverless computing layer (Stratum) that processes the media. These three layers talk asynchronously via a home-grown, priority-based messaging system known as Timestone. We selected Protobuf because the payload format for its excessive effectivity and mature cross-platform help.
To assist service builders get a head begin, the Cosmos platform supplies a strong service generator. This generator options an intuitive UI. With a number of clicks, it creates a fundamental but full Cosmos service: code repositories for all 3 layers are created; all platform capabilities, together with discovery, logging, tracing, and so forth., are enabled; launch pipelines are arrange and dashboards are readily accessible. We will instantly begin including video encoding logic and deploy the service to the cloud for experimentation.
Optimus
Because the API layer, Optimus serves because the gateway into VES, that means service customers can solely work together with VES via Optimus. The outlined API interface is a powerful contract between VES and the exterior world. So long as the API is secure, customers are shielded from inner adjustments in VES. This decoupling is instrumental in enabling sooner iterations of VES internals.
As a single-purpose service, the API of VES is sort of clear. We outlined an endpoint encodeVideo that takes an EncodeRequest and returns an EncodeResponse (in an async method via Timestone messages). The EncodeRequest object comprises details about the supply video in addition to the encoding recipe. All the necessities of the encoded video (codec, decision, and so forth.) in addition to the controls for latency (chunking directives) are uncovered via the info mannequin of the encoding recipe.
//protobuf definition message EncodeRequest
VideoSource video_source = 1;//supply to be encoded
Recipe recipe = 2; //together with encoding format, decision, and so forth.
message EncodeResponse
OutputVideo output_video = 1; //encoded video
Error error = 2; //error message (non-compulsory)
message Recipe
Codec codec = 1; //together with codec format, profile, degree, and so forth.
Decision decision = 2;
ChunkingDirectives chunking_directives = 3;
...
Like some other Cosmos service, the platform routinely generates an RPC consumer based mostly on the VES API information mannequin, which customers can use to construct the request and invoke VES. As soon as an incoming request is acquired, Optimus performs validations, and (when relevant) converts the incoming information into an inner information mannequin earlier than passing it to the following layer, Plato.
Like some other Cosmos service, the platform routinely generates an RPC consumer based mostly on the VES API information mannequin, which customers can use to construct the request and invoke VES. As soon as an incoming request is acquired, Optimus performs validations, and (when relevant) converts the incoming information into an inner information mannequin earlier than passing it to the following layer, Plato.
The workflow layer, Plato, governs the media processing steps. The Cosmos platform helps two programming paradigms for Plato: ahead chaining rule engine and Directed Acyclic Graph (DAG). VES has a linear workflow, so we selected DAG for its simplicity.
In a DAG, the workflow is represented by nodes and edges. Nodes signify phases within the workflow, whereas edges signify dependencies — a stage is simply able to execute when all its dependencies have been accomplished. VES requires parallel encoding of video chunks to satisfy its latency and resilience objectives. This workflow-level parallelism is facilitated by the DAG via a MapReduce mode. Nodes could be annotated to point this relationship, and a Cut back node will solely be triggered when all its related Map nodes are prepared.
For the VES workflow, we outlined 5 Nodes and their related edges, that are visualized within the following graph:
- Splitter Node: This node divides the video into chunks based mostly on the chunking directives within the recipe.
- Encoder Node: This node encodes a video chunk. It’s a Map node.
- Assembler Node: This node stitches the encoded chunks collectively. It’s a Cut back node.
- Validator Node: This node performs the validation of the encoded video.
- Notifier Node: This node notifies the API layer as soon as your complete workflow is accomplished.
On this workflow, nodes such because the Notifier carry out very light-weight operations and could be straight executed within the Plato runtime. Nevertheless, resource-intensive operations must be delegated to the computing layer (Stratum), or one other service. Plato invokes Stratum features for duties reminiscent of encoding and assembling, the place the nodes (Encoder and Assembler) publish messages to the corresponding message queues. The Validator node calls one other Cosmos service, the Video Validation Service, to validate the assembled encoded video.
Stratum
The computing layer, Stratum, is the place media samples could be accessed. Builders of Cosmos companies create Stratum Capabilities to course of the media. They’ll convey their very own media processing instruments, that are packaged into Docker photographs of the Capabilities. These Docker photographs are then revealed to our inner Docker registry, a part of Titus. In manufacturing, Titus routinely scales cases based mostly on the depths of job queues.
VES must help encoding supply movies into quite a lot of codec codecs, together with AVC, AV1, and VP9, to call a number of. We use totally different encoder binaries (referred to easily as “encoders”) for various codec codecs. For AVC, a format that’s now 20 years outdated, the encoder is sort of secure. Alternatively, the most recent addition to Netflix streaming, AV1, is repeatedly going via energetic enhancements and experimentations, necessitating extra frequent encoder upgrades. To successfully handle this variability, we determined to create a number of Stratum Capabilities, every devoted to a selected codec format and could be launched independently. This method ensures that upgrading one encoder is not going to affect the VES service for different codec codecs, sustaining stability and efficiency throughout the board.
Inside the Stratum Perform, the Cosmos platform supplies abstractions for widespread media entry patterns. No matter file codecs, sources are uniformly introduced as regionally mounted frames. Equally, for output that must be persevered within the cloud, the platform presents the method as writing to a neighborhood file. All particulars, reminiscent of streaming of bytes and retrying on errors, are abstracted away. With the platform caring for the complexity of the infrastructure, the important code for video encoding within the Stratum Perform may very well be so simple as follows.
ffmpeg -i enter/supplypercent08d.j2k -vf ... -c:v libx264 ... output/encoding.264
Encoding is a resource-intensive course of, and the assets required are intently associated to the codec format and the encoding recipe. We carried out benchmarking to grasp the useful resource utilization sample, significantly CPU and RAM, for various encoding recipes. Based mostly on the outcomes, we leveraged the “container shaping” characteristic from the Cosmos platform.
We outlined numerous totally different “container shapes”, specifying the allocations of assets like CPU and RAM.
# an instance definition of container form
group: containerShapeExample1
assets:
numCpus: 2
memoryInMB: 4000
networkInMbp: 750
diskSizeInMB: 12000
Routing guidelines are created to assign encoding jobs to totally different shapes based mostly on the mixture of codec format and encoding decision. This helps the platform carry out “bin packing”, thereby maximizing useful resource utilization.
After we accomplished the event and testing of all three layers, VES was launched in manufacturing. Nevertheless, this didn’t mark the top of our work. Fairly the opposite, we believed and nonetheless do {that a} important a part of a service’s worth is realized via iterations: supporting new enterprise wants, enhancing efficiency, and bettering resilience. An essential piece of our imaginative and prescient was for Cosmos companies to have the power to repeatedly launch code adjustments to manufacturing in a protected method.
Specializing in a single performance, code adjustments pertaining to a single characteristic addition in VES are usually small and cohesive, making them simple to overview. Since callers can solely work together with VES via its API, inner code is actually “implementation particulars” which can be protected to alter. The specific API contract limits the check floor of VES. Moreover, the Cosmos platform supplies a pyramid-based testing framework to information builders in creating exams at totally different ranges.
After testing and code overview, adjustments are merged and are prepared for launch. The discharge pipeline is totally automated: after the merge, the pipeline checks out code, compiles, builds, runs unit/integration/end-to-end exams as prescribed, and proceeds to full deployment if no points are encountered. Usually, it takes round half-hour from code merge to characteristic touchdown (a course of that took 2–4 weeks in our earlier technology platform!). The quick launch cycle supplies sooner suggestions to builders and helps them make needed updates whereas the context remains to be contemporary.
When operating in manufacturing, the service continually emits metrics and logs. They’re collected by the platform to visualise dashboards and to drive monitoring/alerting programs. Metrics deviating an excessive amount of from the baseline will set off alerts and may result in computerized service rollback (when the “canary” characteristic is enabled).
VES was the very first microservice that our group constructed. We began with fundamental data of microservices and realized a mess of classes alongside the best way. These learnings deepened our understanding of microservices and have helped us enhance our design selections and selections.
Outline a Correct Service Scope
A precept of microservice structure is {that a} service ought to be constructed for a single performance. This sounds simple, however what precisely qualifies a “single performance”? “Encoding video” sounds good however wouldn’t “encode video into the AVC format” be an much more particular single-functionality?
Once we began constructing the VES, we took the method of making a separate encoding service for every codec format. Whereas this has benefits reminiscent of decoupled workflows, shortly we had been overwhelmed by the event overhead. Think about {that a} consumer requested us so as to add the watermarking functionality to the encoding. We wanted to make adjustments to a number of microservices. What’s worse, adjustments in all these companies are very related and primarily we’re including the identical code (and exams) time and again. Such type of repetitive work can simply put on out builders.
The service introduced on this weblog is our second iteration of VES (sure, we already went via one iteration). On this model, we consolidated encodings for various codec codecs right into a single service. They share the identical API and workflow, whereas every codec format has its personal Stratum Capabilities. To this point this appears to strike stability: the widespread API and workflow reduces code repetition, whereas separate Stratum Capabilities assure unbiased evolution of every codec format.
The adjustments we made should not irreversible. If sometime sooner or later, the encoding of 1 explicit codec format evolves into a completely totally different workflow, we’ve got the choice to spin it off into its personal microservice.
Be Pragmatic about Knowledge Modeling
To start with, we had been very strict about information mannequin separation — we had a powerful perception that sharing equates to coupling, and coupling may result in potential disasters sooner or later. To keep away from this, for every service in addition to the three layers inside a service, we outlined its personal information mannequin and constructed converters to translate between totally different information fashions.
We ended up creating a number of information fashions for features reminiscent of bit-depth and backbone throughout our system. To be honest, this does have some deserves. For instance, our encoding pipeline helps totally different bit-depths for AVC encoding (8-bit) and AV1 encoding (10-bit). By defining each AVC.BitDepth and AV1.BitDepth, constraints on the bit-depth could be constructed into the info fashions. Nevertheless, it’s debatable whether or not the advantages of this differentiation energy outweigh the downsides, particularly a number of information mannequin translations.
Ultimately, we created a library to host information fashions for widespread ideas within the video area. Examples of such ideas embody body fee, scan kind, shade house, and so forth. As you may see, they’re extraordinarily widespread and secure. This “widespread” information mannequin library is shared throughout all companies owned by the video group, avoiding pointless duplications and information conversions. Inside every service, extra information fashions are outlined for service-specific objects.
Embrace Service API Adjustments
This may occasionally sound contradictory. We’ve got been saying that an API is a powerful contract between the service and its customers, and holding an API secure shields customers from inner adjustments. That is completely true. Nevertheless, none of us had a crystal ball once we had been designing the very first model of the service API. It’s inevitable that at a sure level, this API turns into insufficient. If we maintain the assumption that “the API can not change” too dearly, builders can be compelled to search out workarounds, that are virtually definitely sub-optimal.
There are a lot of nice tech articles about gracefully evolving API. We consider we even have a novel benefit: VES is a service inner to Netflix Encoding Applied sciences (ET). Our two customers, the Streaming Workflow Orchestrator and the Studio Workflow Orchestrator, are owned by the workflow group inside ET. Our groups share the identical contexts and work in the direction of widespread objectives. If we consider updating API is in the perfect curiosity of Netflix, we meet with them to hunt alignment. As soon as a consensus to replace the API is reached, groups collaborate to make sure a clean transition.
That is the second a part of our tech weblog sequence Rebuilding Netflix Video Pipeline with Microservices. On this publish, we described the constructing strategy of the Video Encoding Service (VES) intimately in addition to our learnings. Our pipeline features a few different companies that we plan to share about as properly. Keep tuned for our future blogs on this matter of microservices!