Xiangbo Ma

Results 12 issues of Xiangbo Ma

如redis-内存回收和内存共享部分所描述: 因为c语言不具备自动内存回收功能,**当将redisObject对象作为数据库的键或值而不是作为参数存储时**其生命周期是非常长的,为了解决这个问题,Redis自己构建了一个内存回收机制,通过redisobject结构中的refcount实现.这个属性会随着对象的使用状态而不断变化。 1、创建一个新对象,属性初始化为1 2、对象被一个新程序使用,属性refcount加1 3、对象不再被一个程序使用,属性refcount减1 4、当对象的引用计数值变为0时,对象所占用的内存就会被释放 其中不太理解如何进行这种基于refcount的引用计数回收,对于过期的数据进行的是定期删除和惰性删除,当内存要溢出时进行的是淘汰机制(noeviction、volatile-lru等),但是文中所描述的这种引用计数的回收方式在何时进行呢?

help wanted
discuss

**Is your feature request related to a problem? Please describe.** Due to the leader-election of the controller, when there are thousands of application CRs in the hubcluster, the new application...

type/enhancement
area/controller

**Is your feature request related to a problem? Please describe.** In context definition, some runtime context information can be obtained through the context variable. It's real convenient for wirting cue...

type/enhancement
area/cue-template

**Is your feature request related to a problem? Please describe.** At present, when using trail with CR, users can only explicitly declare cluster and ns information in `trait.properties`, which is...

type/enhancement
priority/awaiting-more-evidence
area/cue-template

Signed-off-by: Xiangbo Ma  ### Description of your changes Add message for `vela addon enable pyroscope` I have: - [x] Read and followed KubeVela's [contribution process](https://github.com/kubevela/kubevela/blob/master/contribute/create-pull-request.md). - [x] [Related Docs](https://github.com/kubevela/kubevela.io) updated...

Signed-off-by: Xiangbo Ma  ### Description of your changes Fixes https://github.com/kubevela/kubevela/issues/4596 Add sharding for app controller, and legacy app cr will be processed by sharding-1. I have: - [x] Read and...

Signed-off-by: Xiangbo Ma  ### Description of your changes Fixes https://github.com/kubevela/kubevela/issues/4596 Add sharding for app controller, and legacy app cr will be processed by sharding-1. I have: - [x] Read and...

## Request description In the process of enterprise practice, there are large mount container apps needed to convert kubevela apps.Therefore, we need a feature for converting container app to kubevela...

priority/important-soon

**Is your feature request related to a problem? Please describe.** In our scenario, we define several traits to generate `Custom Resource` for completing specific tasks. - In some cases, trait-A...

type/enhancement
priority/important-soon
needs more info
area/controller
area/appmodel
area/workflow

# integrate a kubernetes policy management tool into KubeVela `Kyverno` and `gatekeeper` are the two header kubernetes policy management projects of CNCF. As for kubernetes policy management tool, we focus...

type/enhancement
needs investigation
area/controller
priority/important-longterm