Skip to content

Priority by Age or Risk

A prioritization rule — instantiates Intermediate-State Throughput Control

Orders which in-process items are converted next by their age or their risk, so the oldest or most dangerous intermediates don't linger while newer, safer ones jump ahead.

When the intermediate pool holds items that are not interchangeable, the order in which they clear matters. Priority by Age or Risk sets the service order for the pool: among items waiting to convert, it serves the oldest first — to bound residence time — or the highest-risk first — to clear hazard fastest — rather than in arrival order or at random. Its defining move is that it changes which item converts next, not how fast conversion happens (Conversion Capacity Boost) or whether an item is removed (Stale Item Sweep); the items it deprioritizes still stay in the pool. Age and risk are the two orderings because they target the two ways lingering hurts — aged items breach turnaround, risky items carry compounding exposure.

Example

An insurer's intermediate state is its "open, under-adjudication" claims — thousands in flight between filing and settlement. Worked first-in-first-out, a routine claim and a suspected-fraud claim get equal footing, and a claim on a regulatory clock can age past its statutory turnaround while easy ones clear ahead of it. Priority by Age or Risk reorders the worklist: the age arm floats claims nearing their turnaround deadline to the top so none breach; the risk arm floats high-value and fraud-flagged claims up so exposure is resolved fast. An adjuster's next claim is chosen by a blended score — days-to-deadline and a risk rating that the rule maintains as a live hazard register — not by filing order. Aged claims stop breaching and risky ones stop compounding, without adding a single adjuster.

How it works

Its distinguishing move is to compute a per-item priority from age and/or risk and serve highest-first, leaving the pool otherwise intact.

  • Score each waiting item. Its age (or time-to-deadline) and its risk rating; the risk ratings are maintained as a register the rule sorts on.
  • Rank and serve. Convert the top-scored item next, blending age and risk by policy weight, or alternating the two arms.
  • Bound the tails. Apply aging so low-risk items gain priority the longer they wait, preventing any class from being starved forever.

Tuning parameters

  • Age vs. risk weighting — how the two arms combine; risk-heavy clears exposure fast but ages routine items, age-heavy protects turnaround but may let a hazard sit.
  • Aging rate — how fast a waiting low-priority item climbs the queue; the anti-starvation dial.
  • Risk scoring model — what feeds the hazard rating and how conservatively it is set; this drives which items the risk arm floats up.
  • Preemption — whether a newly-arrived critical item jumps one already in progress, or only the next selection.
  • Hard deadlines — items past a threshold (a regulatory clock, a safety age) forced to the top regardless of score.

When it helps, and when it misleads

It helps when items in the pool are genuinely not interchangeable — when some are aging toward a deadline or carrying rising risk — so that plain FIFO or random service leaves the wrong ones waiting. It attacks worst-case residence and worst-case exposure directly, which the aggregate flow levers cannot.

Its sharpest failure mode is starvation: a pure risk-priority rule can leave low-risk items perpetually deferred as higher-risk ones keep arriving — which is precisely why age is the second arm, since raising an item's priority as it waits (aging) is the classic starvation fix.[n1] Other traps: gameable risk scores that get inflated to jump the queue, and priority churn that thrashes the converters. The classic misuse is invoking "risk priority" to permanently justify never servicing a whole class of items. The discipline that guards against it is to always pair risk with aging (or a hard age cap) and to audit whether any class is being systematically starved.

How it implements the components

  • conversion_priority_rule — it is this rule: the ordering by which waiting intermediates are selected for conversion.
  • intermediate_hazard_register — the risk arm scores and maintains each item's hazard rating, holding the register the rule sorts on.

It does not measure the ages it sorts on — those come from the tags of Intermediate State Tagging and the Residence-Time Dashboard — nor remove over-aged items from the pool, which is the Stale Item Sweep; priority reorders, it does not evict.

  • Instantiates: Intermediate-State Throughput Control — Priority by Age or Risk is the selectivity-of-service lever within the archetype's control surface.
  • Consumes: Intermediate State Tagging supplies the per-item age and metadata the rule sorts on.
  • Sibling mechanisms: Stale Item Sweep · Intermediate State Tagging · Residence-Time Dashboard · Conversion Capacity Boost · Formation Throttle · Batch Size Tuning · Holding Condition Control · Stage Handoff Check · Side-Path Suppression · Quench or Stabilization Step · WIP Limit by Intermediate State

Editorial Notes

Form Classification

Form family: Control, Automation & Runtime

Rationale: Priority by Age or Risk operates as a live operational control that automatically routes, enforces, adapts, or responds during execution because it orders which in-process items are converted next by their age or their risk, so the oldest or most dangerous intermediates don't linger while newer, safer ones jump ahead.

Independent corroboration: The frozen evidence defines Priority by Age or Risk as 'Orders which in-process items are converted next by their age or their risk, so the oldest or most dangerous intermediates don't linger while newer, safer ones jump ahead', so its operative form is Control, Automation & Runtime.

Review outcome: Independent reviewer agreement; high confidence.

Origin Attribution

Primary origin: Operations Research

Origin pattern: Cross-disciplinary synthesis

Present-day reach: Multi-domain

Rationale: Sequencing work by waiting age or risk is a canonical queue-discipline and scheduling policy.

Related originating lineages:

  • Logistics & Supply Chain Management — The logistics_supply_chain tradition materially shaped Priority by Age or Risk through its own practice of staging, movement, sourcing, inventory, and endpoint fulfillment.
  • Medicine & Healthcare — The medicine_healthcare tradition materially shaped Priority by Age or Risk through its own practice of clinical practice, patient safety, and health-system intervention.

Review resolution: Both blind reviewers agree that operations research is the primary origin. Explicit reconciliation resolves reported ambiguity, alternate origin disagreement, origin mode disagreement, encyclopedia synthesis disagreement. Formative alternate lineages are retained as logistics_supply_chain, medicine_healthcare; later breadth of use is recorded separately as domain_reach=multi_domain, while origin_mode=cross_disciplinary_synthesis describes the relationship among origin lineages.

Attribution caveat: The exact encyclopedia label appears to synthesize established practices; the primary domain identifies the strongest formative lineage, while the alternates record material ingredients rather than downstream uses.

Encyclopedia synthesis: The exact catalogued form synthesizes established practice rather than reproducing a single standard historical label.

Review outcome: Reconciled after independent review; medium confidence.

Notes

[n1] In scheduling, starvation is the condition in which an item is perpetually denied service because higher-priority items keep preempting it; the standard remedy is aging — gradually raising a waiting item's priority so it is eventually served. Pairing an age arm with a risk arm builds that remedy in.