php editor Strawberry encountered a common error when exploring the use of golang to develop kubernetes operators: "The object has been modified". This error usually occurs when multiple goroutines modify the same object at the same time, resulting in data inconsistency or race conditions. In this article, we will explore the causes and solutions of this error to help developers better understand and deal with similar problems.
Problem content
The "object has been modified" error appears on the k8s operator
import "sigs.k8s.io/controller-runtime"
There is a lot of discussion about this error. The main answer is "This problem occurs because I have an old version of the object when I try to update." But I also have some questions. In my operator, for some scenarios, I need to update a pod's annotation 2 times during a single "coordinate" call. Of course I often get the "object has been modified" error.
Question: I want to know where 'r.Get()' and 'r.Update()' get/update objects? From local cache, or API server?
1: I think 'r.Get()' is getting the object from 'cache' and 'r.Update()' is updating the object to cache, right? If so, why am I getting this error? If the pod object changes due to reasons other than the operator, will I never be able to update my pod object during the current "reconciliation"? (Since the cached object is local, it is already out of sync with the API server.) Why "retry" sometimes to get the latest object?
import "sigs.k8s.io/controller-runtime" var pod corev1.Pod if err := r.Get(ctx, req.NamespacedName, &pod); err != nil { if !apierrors.IsNotFound(err) { log.Error(err, "unable to get pod") return ctrl.Result{}, err } } if err := r.Update(ctx, &pod); err != nil { log.Error(err, "unable to update chaosctl status") return ctrl.Result{}, err }
2: If 'r.Get()' is to get the object from the API server, and 'r.Update()' also updates the API server. Why do I need to retry updating the object?
Workaround
When you use r.Get() and r.Update() in a Kubernetes controller, the interaction with the API server involves the local cache and the API server itself.
r.Get()
:
The r.Get() function retrieves the object from the local cache if it exists; otherwise, it gets it from the API server. If the object exists in the local cache, it is returned immediately. If not, request the API server to obtain the object, and store the obtained object in the local cache for subsequent use. r.Update():
r.Update()
The function updates objects in the local cache and API server.
Update operations to the API server may fail with a "conflict" error if the object has been modified in the local cache since it was originally retrieved. This occurs when the version of an object in the cache does not match the version on the API server, indicating that someone else modified the object in the meantime.
Strategies can be adopted to deal with it -
-
Optimistic Concurrency Control (OCC):
- Update to match previous version. -
retry
-
retryErr := retry.RetryOnConflict(retry.DefaultRetry, func() error { return r.Update(ctx, pod) }) if retryErr != nil { return retryErr }
The above is the detailed content of golang error 'object has been modified' on k8s operator. For more information, please follow other related articles on the PHP Chinese website!

我有一个golang代码,它使用chromedp连接到用户的本地chrome这是我的代码:packagemainimport("context""fmt""log""os""time""github.com/chromedp/chromedp""github.com/gin-gonic/gin")funcmain(){api:=gin.default()api.get("api

在我的ubuntu22.10digitalocean服务器上,我正在尝试使用golang和fiber以及html模板引擎。到目前为止很喜欢它。一切正常,包括mysql连接和发送电子邮件。除了一件事。我不断收到错误渲染:模板索引不存在。文件系统:├──/gogo├──main├──main.go├──go.mod├──go.sum├──/views└──index.html└──/public

我在调用以下函数时遇到错误“ORA-00911:无效字符”。如果我使用带有硬编码值的SQL查询(截至目前,它已在下面的代码片段中注释掉),那么我可以在邮递员中以JSON响应获取数据库记录,没有任何问题。所以,看起来我的论点做错了。仅供参考,我正在使用“github.com/sijms/go-ora/v2”包连接到oracledb。另外,“DashboardRecordsRequest”结构位于数据模型包中,但我已将其粘贴到下面的代码片段中以供参考。请注意,当我进行POC时,我们将使用存

Mac电脑是许多开发者钟爱的工作平台,而Golang作为一种高效的编程语言,也受到了越来越多人的喜爱。本文将详细介绍如何在Mac电脑上配置和安装Golang的开发环境,同时提供具体的代码示例,帮助读者快速入门和使用Golang进行开发。步骤一:下载Golang安装包首先,我们需要从Golang官方网站(https://golang.org/dl/)下载适用于

从零开始学习Golang开发:详细步骤解析,需要具体代码示例随着互联网的快速发展,编程语言也在不断地涌现出来。其中一种备受瞩目的语言就是Go语言,简称Golang。Golang是由Google开发的一种静态类型、编译型的高性能编程语言,它的设计目标是提供一种简单、高效、可靠的开发语言。对于初学者来说,从零开始学习Golang开发可能会感到困惑和畏惧。本文将按

我在mongo中有这个文档{"_id":{"$oid":"649d3d688a1f30bf82e77342"},"test_value":{"$numberlong":"10"}}我想用这个golang代码将“test_value”减一jsonInput:=[]map[string]interface{}{{"$match":map[string]interface{}{

在该领域的一位开发人员几个月前离开后,我一直在尝试解决并发问题,但我找不到解决此问题的适当方法。对于上下文,我们将客户数据加载到如下结构中:[键]->{值}[客户特定哈希]->{数据点/文件切片}示例-格式确实很糟糕,抱歉:[a60d849ad97bfb833e1096941]->{{StartDate:'01-02-2022',EndDate:'28-02-2022',DataFrames:[1598,921578,12981,21749,1925

我想从golang中的/proc/meminfo中提取memtotal、memfree、memavailable、swaptotal和swapfree的值。到目前为止,我得到的最接近的是使用fmt.sscanf(),它将一次给出我想要的值,但我也得到了许多带有零的输出行。这是我正在使用的代码:packagemainimport("bufio""fmt""os")funcmain(){f,e:=os.open("/proc


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
