What is safety?

While it may seem an annoyingly philosophical question, I would challenge you to consider how critically important the feeling of safety is right now. Our emotions, and therefore our actions, are…

Smartphone

独家优惠奖金 100% 高达 1 BTC + 180 免费旋转




Software impedance explained

The impedance mismatch between data processing components

It all starts with the simplest signal-processing diagram ever:

Component A is passing the signal to component B. Let’s switch to software engineering jargon immediately: A producer is invoking a method of a consumer. Invoking a method takes a finite time. We call this response time or latency. The producer can pass an arbitrary (but limited) amount of data to each method invocation. We call this batch size. Concurrency level is another variable we can play with. The producer can control the number of concurrent invocations by limiting the window size of pending responses. Invoking the method concurrently indeed multiplies the throughput. Throughput (T) is a function of window size (W), batch size (B) and latency (t).

We aim for maximum throughput, so increase the concurrency and use higher batch sizes. If only! Response time depends on batch size and window size. To put it more formally, response time if a function of both window size and batch size.

To achieve maximum throughput we must find the highest W and B that produce the lowest t. Non-ideal W and B will induce a higher “resistance” in the component, or call it back-pressure if you will.

There is no generic expression for f(W, B) as it depends on the component’s implementation. Theory is of no help here. You have to probe the consumer with different batch and window sizes to spot the ideal values that will maximize the throughput.

Once you find the ideal batch size you must build an “impedance adapter”. Here is a suggested java implementation that accumulates the items and batches them before sending them to the next component (lots of boilerplate code omitted for brevity).

Note that invoking the consumer with smaller than maximum (ideal) batch size is still allowed. This assures no additional latency is added. If the selected batch size is optimal, assuming steady item feed, invoking the consumer will take exactly the time it takes to fill maxBatchSize items in the queue.

Likewise, the number of concurrent method invocations towards some consumer instance can be controlled using a semaphore.

The above scenario depicts “push” mode, in which the producing component controls the invocation, its timing, and the mentioned key parameters. A more modern approach of dealing with back-pressure is to put the consuming component in charge of the invocation. This puts the system designer in a slightly better position, as engineers of the consuming component don’t need to communicate batch and window size to producers. Nevertheless, a similar impedance adapter is needed.

Impedance adapters are stateful components, consisting of queues, threads, callback maps, etc., which adds complexity, but matching impedance is essential in inter-component communication.

I argue that each component should specify its impedance parameters: optimal batch size and concurrency level. That way producer components can adapt to minimize the back-pressure.

Unlike the electrical impedance, the impedance in software is not limited to two dimensions. Here I show only two parameters, but often the response time depends on other variables too.

Impedance is a very dynamic property. It may depend on the data being sent, overall workload, sometimes even on variables not controlled by the caller. If needed, the consumer’s API should be designed in a way that allows the component to publish its latest impedance parameters via API. That way the producers could dynamically adapt.

Add a comment

Related posts:

How to Learn Photoshop Online

These quick Photoshop tutorials and full-length premium courses can turn you into a master of image editing. While you’re sheltering in place during the COVID-19 crisis, why not learn that skill…

Five Questions to Ask Your Roommate Before Moving in with Them

Finding a compatible roommate is almost as difficult as finding the perfect place. Roommates are met to balance each other, and hold the same values. The best way to find a like-minded roommate is to…

20 facts about the history of Amazon

MEXICO CITY.- Amazon began online sales in the United States in 1994, began as a company that sold books, but gradually grew the business to become one of the most important retailers in the world…