Kubernetes v1.34 introduces a new Pod Replacement Policy for Jobs, giving engineers deterministic control over how failed Pods are rescheduled. This improves reliability, performance, and data-locality for batch workloads at scale.Kubernetes v1.34 introduces a new Pod Replacement Policy for Jobs, giving engineers deterministic control over how failed Pods are rescheduled. This improves reliability, performance, and data-locality for batch workloads at scale.

Kubernetes Adds Predictable Pod Replacement for Jobs in v1.34 Release

2025/12/08 04:10
5 min read
For feedback or concerns regarding this content, please contact us at crypto.news@mexc.com

Kubernetes has become the go-to platform for running not just long-lived services, but also batch workloads like data processing, ETL pipelines, machine learning training, CI/CD pipelines, and scientific simulations. These workloads typically rely on the Job API, which ensures that a specified number of Pods run to completion.

Until now, Kubernetes has had limited flexibility when a Job’s Pod failed or was evicted. Pod replacement behavior was often unpredictable: would the replacement Pod get scheduled on the same node? a nearby node? or anywhere in the cluster?

With Kubernetes v1.34, a new feature lands: Pod Replacement Policy for Jobs, driven by KEP-3015. This allows users to explicitly control how replacement Pods are scheduled, improving reliability, performance, and efficiency of batch workloads.

Why Pod Replacement Matters

When a Pod belonging to a Job fails (e.g., due to node drain, eviction, OOM, or hardware issue), Kubernetes creates a replacement Pod. However:

  • The replacement may land anywhere in the cluster.
  • If the Pod had local data (e.g., cached dataset, scratch disk, node-local SSD), the replacement Pod may not find it.
  • If the Pod had NUMA or GPU locality, the replacement might end up with suboptimal hardware.
  • In multi-zone clusters, scheduling a replacement Pod across zones could increase latency and cross-zone costs.

For workloads that depend on node affinity or cached state, this can be a real problem.

Current behavior:

By default, Kubernetes’ controller replaces pods as soon as they start terminating, which can lead to multiple pods running for the same task at the same time, especially in indexed Jobs. This can result in issues with workloads that require exactly one Pod per task, such as certain machine learning frameworks.

Starting replacement pods before old pods are terminated fully can cause other problems like extra cluster resources being used for running replacement pods.

Feature: Pod Replacement Policy feature

This feature, Kubernetes jobs will have two pod replacement policies to choose from:

  • TerminatingOrFailed (default): will create a replacement Pod as soon as the old one starts terminating.

  • Failed: waits until the old Pod is fully terminated and reaches the Failed state before creating a new one pod

    Using policy: Failed ensures that only one Pod runs for a task at a time

:::info Quick Demo: We will try to demo Pod Replacement Policy for Jobs feature for both scenarios

:::

SCENARIO 1: default behavior TerminatingOrFailed: demo steps.

\

  1. setup local kubernetes cluster (with minkube)

brew install minikube # start local cluster minikube start --kubernetes-version=v1.34.0

![fig: start kubernetes minikube server](https://miro.medium.com/v2/resize:fit:1400/1\*NnzqlUegwVbO8gWy8eZBNA.png)

# verify cluster is running kubectl get nodes # verify kubernetes version: v1.34.0

![fig: check kubernetes nodes & version](https://miro.medium.com/v2/resize:fit:770/1\*HaNAGHJ1gYfez8SO8mJk3w.png)

\

  1. define k8s job config with podReplacementPolicy: TerminatingOrFailed, apply job & monitor pods

# worker-job.yaml apiVersion: batch/v1 kind: Job meta name: worker-job spec: completions: 2 parallelism: 1 podReplacementPolicy: TerminatingOrFailed template: spec: restartPolicy: Never containers: - name: worker image: busybox command: ["sh", "-c", "echo Running; sleep 30"]

\

kubectl apply -f worker-job.yaml

# monitor pods are running kubectl get pods -l job-name=worker-job

\

\ \

  1. delete job pod manually and observe behavior

# delete pods associated with job:worker-job kubectl delete pod -l job-name=worker-job

\

scenario 2 : Delayed Replacement with Failed Policy: demo steps

  1. define k8s job config with podReplacementPolicy: Failed, apply job & monitor pods

# worker-job-failed.yaml apiVersion: batch/v1 kind: Job meta name: worker-job-failed spec: completions: 2 parallelism: 1 podReplacementPolicy: Failed template: spec: restartPolicy: Never containers: - name: worker image: busybox command: ["sh", "-c", "echo Running; sleep 1000"]

\

# monitor pods are running kubectl get pods -l job-name=worker-job-failed

\

\

  1. delete job pod manually and observe behavior

# delete pods associated with job:worker-job-failed kubectl delete pod -l job-name=worker-job-failed

behavior: replacement pod:worker-job-failed-q98qx is created only after the old pod:worker-job-failed-sg42q fully terminates, there is no overlap between old and new pod.

Benefits

  1. Improved Reliability: Jobs are now self-healing. A single pod failure no longer risks halting an entire workload. This makes Kubernetes jobs more trustworthy for critical processes.
  2. Reduced Operational Burden: Previously, operators often had to monitor jobs manually or write custom controllers/scripts to handle pod replacement. With this built-in capability, operational overhead is significantly reduced.
  3. Efficient Resource Utilization: Failed pods that linger without progress waste CPU and memory. Automatic replacement ensures resources are recycled effectively.

Better User Experience: For developers, running jobs becomes less error-prone. Teams can focus on business logic instead of constantly monitoring for pod failures.

Best Practices

  1. Tune restart policies: Use Never or OnFailure appropriately depending on workload characteristics.
  2. Monitor metrics: Use Prometheus/Grafana to track pod replacement events.
  3. Set resource requests/limits: Prevent unnecessary failures by properly sizing pods.
  4. Validate thresholds: Ensure replacement policies are configured to avoid endless restart loops.
  5. Test in staging: Before deploying to production, simulate pod failures in a staging cluster to observe replacement behavior.

Use Cases

  1. Machine Learning Workloads: Training models can take hours or days, and pod failures are inevitable. Automatic replacement ensures training jobs continue without manual restarts, making ML pipelines more resilient.
  2. Data Pipelines: ETL jobs or distributed data processing tasks often involve multiple pods running in parallel. Replacing failed pods ensures the pipeline completes successfully without operator intervention.

Takeaways

Pod replacement policy gives control over Pod creation timing to avoid overlaps, optimizes cluster resources by preventing temporary extra pods,and offers flexibility to choose the right policy for your job workloads based on your requirements and resource constraints

Reference(s)

  • https://kubernetes.io/blog/2025/08/27/kubernetes-v1-34-release/ \n

\ \ \ \

Disclaimer: The articles reposted on this site are sourced from public platforms and are provided for informational purposes only. They do not necessarily reflect the views of MEXC. All rights remain with the original authors. If you believe any content infringes on third-party rights, please contact crypto.news@mexc.com for removal. MEXC makes no guarantees regarding the accuracy, completeness, or timeliness of the content and is not responsible for any actions taken based on the information provided. The content does not constitute financial, legal, or other professional advice, nor should it be considered a recommendation or endorsement by MEXC.

You May Also Like

Why It Could Outperform Pepe Coin And Tron With Over $7m Already Raised

Why It Could Outperform Pepe Coin And Tron With Over $7m Already Raised

The post Why It Could Outperform Pepe Coin And Tron With Over $7m Already Raised appeared on BitcoinEthereumNews.com. Crypto News 17 September 2025 | 20:26 While meme tokens like Pepe Coin and established networks such as Tron attract headlines, many investors are now searching for projects that combine innovation, revenue-sharing and real-world utility. BlockchainFX ($BFX), currently in presale at $0.024 ahead of an expected $0.05 launch, is quickly becoming one of the best cryptos to buy today. With $7m already secured and a unique model spanning multiple asset classes, it is positioning itself as a decentralised super app and a contender to surpass older altcoins. Early Presale Pricing Creates A Rare Entry Point BlockchainFX’s presale pricing structure has been designed to reward early participants. At $0.024, buyers secure a lower entry price than later rounds, locking in a cost basis more than 50% below the projected $0.05 launch price. As sales continue to climb beyond $7m, each new stage automatically increases the token price. This built-in mechanism creates a clear advantage for early investors and explains why the project is increasingly cited in “best presales to buy now” discussions across the crypto space. High-Yield Staking Model Shares Platform Revenue Beyond its presale appeal, BlockchainFX is creating a high-yield staking model that gives holders a direct share of platform revenue. Every time a trade occurs on its platform, 70% of trading fees flow back into the $BFX ecosystem: 50% of collected fees are automatically distributed to stakers in both BFX and USDT. 20% is allocated to daily buybacks of $BFX, adding demand and price support. Half of the bought-back tokens are permanently burned, steadily reducing supply. Rewards are based on the size of each member’s BFX holdings and capped at $25,000 USDT per day to ensure sustainability. This structure transforms token ownership from a speculative bet into an income-generating position, a rare feature among today’s altcoins. A Multi-Asset Platform…
Share
BitcoinEthereumNews2025/09/18 03:35
Rubrik (RBRK) Stock Hits 52-Week Low as CFO Sells $5.9M in Stock

Rubrik (RBRK) Stock Hits 52-Week Low as CFO Sells $5.9M in Stock

TLDR Rubrik (RBRK) hit a new 52-week low of $46.00, last trading at $48.34 CFO Kiran Kumar Choudary sold 122,613 Class A shares for $5.9M on March 24 Q4 revenue
Share
Coincentral2026/03/27 21:18
Only an simpleton would turn up the heat — and Trump is doing exactly that

Only an simpleton would turn up the heat — and Trump is doing exactly that

As the price of oil explodes, Trump is doing everything he can to kill cheap energy alternatives. The administration just announced that the U.S. is paying one
Share
Alternet2026/03/27 21:05