top | item 40506089

(no title)

rowborg | 1 year ago

Coda Hale's "work is work" is my favorite analysis of this topic, because of its focus on axiomatic mathematical upper bounds on productivity and how you can avoid hitting them:

https://codahale.com//work-is-work/

The solution, as mentioned by other comments already, is for leaders to ruthlessly focus on keeping work efforts as independent as possible:

> When presented with a set of problems which grow superlinearly intractable as N increases, our best bet is to keep N small. If the organization’s intent is to increase value delivery by hiring more people, work efforts must be as independent as possible. Leaders should develop practices and processes to ensure that the work efforts which their strategies consider parallel are actually parallel. Shared resources should be continuously managed for contention, and where possible, the resources a group needs should be colocated with that group (e.g., if the work involves a lot of design, staff a designer to that group). Combined arms doctrine isn’t just for soldiers.

discuss

order

hinkley|1 year ago

But you will end up with different divisions trying to solve the same problems in ways that either confound each other or the customer.

Nobody wants to deal with a company that behaves like eight rats in a trenchcoat.

yodon|1 year ago

>you will end up with different divisions trying to solve the same problems in ways that either confound each other or the customer.

I'm pretty sure you just described most of the 100 largest consumer products companies, and a good fraction of the Fortune 500.

[0]https://consumergoods.com/top-100-consumer-goods-companies-2...

maltalex|1 year ago

> But you will end up with different divisions trying to solve the same problems in ways that either confound each other or the customer.

That's the tradeoff.

You either allow teams to work independently and lose some efficiency through work duplication. Or, you centralize the work and you lose efficiency through centralized bottlenecks.

For small to medium orgs the centralized approach works better. But as the org grows, the bottlenecks become worse and you're forced to switch to the independent approach which is more scalable.

rowborg|1 year ago

A couple things:

* The guidance is to allow teams to do work independently in parallel, not give them no direction or strategy of what to work on. Without small discreet teams that can operate without a bunch of external blocking approvals or manual processes, you simply will not get work done as the org scales because your productivity will quadratically approach zero.

* He addresses the cost of coherence (both its creation and its absence) in the post, which is worth reading in full. He also talks about how to structure a product portfolio in order to avoid the “confounding competing solutions” scenario.

In short, you’re not wrong, but the downside you outline is tractable—centralization of decision making is not.

debatem1|1 year ago

Eh, personally I prefer eight rats in a trenchcoat to the kind of sclerotic bureaucracy that seems to dominate most midsized companies. I might be confused about why the rats are doing different things, but at least they're doing things.

aeternum|1 year ago

Nor is such a company productive when looked at from the outside.

Google might be a good example of this. Each team likely seems productive internally because they come up with new products quickly but customers wonder why the company is producing 4 different chat apps, 3 video services, and nothing seems to work together.

iceburgcrm|1 year ago

That becomes a branding issue. Many large companies own many smaller brands that are kept independent. You see this a lot in food also with mobile where each smaller brand can focus a smaller group. This gives customers choice but keeps profits with the entity.

weikju|1 year ago

Interesting how copy-pasting that link leads to the article while cliking it leads to Wikipedia.. reminds me of jwz's site.

rowborg|1 year ago

Oh dear, he got me.

  <script type="98f4b28488f8bdfd1252d4f9-text/javascript">
    try {
      if (document.referrer) {
        const ref = new URL(document.referrer);
        if (ref.host === 'news.ycombinator.com') {
          window.location.href = 'https://en.wikipedia.org/wiki/Freddy_the_Pig';
        }
      }

      // If you're reading this, you've entirely missed the fucking point. Go touch some grass.
      if (Math.random() > 0.9) {
        window.location.href = 'https://en.wikipedia.org/wiki/Special:Random';
      }
    } catch (e) { }
  </script>

harimau777|1 year ago

That seems like it would be an alienating environment to work in. I'm much happier working in a collaborative environment instead of one where everyone is just working independently on their own thing.

rowborg|1 year ago

Factoring work into independent modules that are owned by teams does not preclude active and vigorous collaboration. It just means you don't need a giant list of approvals or manual actions from people all over the company in order to ship something or make a decision.