惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
博客园 - 司徒正美
Last Week in AI
Last Week in AI
博客园 - 聂微东
Jina AI
Jina AI
月光博客
月光博客
爱范儿
爱范儿
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
T
Tailwind CSS Blog
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
有赞技术团队
有赞技术团队
罗磊的独立博客
小众软件
小众软件
雷峰网
雷峰网
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog

OneUptime Blog

How to Monitor Azure App Services (PaaS) with OpenTelemetry Grafana Stack vs OneUptime: DIY Observability or Unified Platform? Your AI Workloads Are About to Blow Up Your Observability Bill The Great Observability Consolidation Is Here How to Write Custom Ceph Manager Modules How to Write a ceph.conf Configuration File How to Use Rook-Ceph with OpenShift How to Use Rook-Ceph with Longhorn for Comparison How to Configure Volume Snapshot Class for RBD in Rook How to Configure VolumeReplicationClass Scheduling Intervals in Rook How to Set Up Volume Replication with Rook-Ceph How to Create Volume Group Snapshots with Rook CSI How to Visualize Ceph Network Performance in Grafana How to Enable Virtual Host-Style Bucket Access in Rook How to View Runtime Configuration via Admin Socket How to View Quota Settings and Update Stats in Ceph RGW How to View PG Scaling Recommendations with autoscale-status How to View PG Distribution via Admin Socket How to View Performance Metrics in the Ceph Dashboard How to View OSD Performance Counters in Ceph How to View Connection Status via Admin Socket How to View Ceph Cluster Summary Dashboard via CLI How to Version Control Rook-Ceph Configuration How to Version Control Ceph Infrastructure with Terraform How to Verify Kubernetes Node Requirements for Rook-Ceph Deployment How to Verify Health Before and After Rook Upgrades How to Verify Data Integrity with Deep Scrubbing How to Verify Complete Rook-Ceph Cleanup How to Verify Backup Integrity from Ceph Snapshots How to Use Rook-Ceph with Velero for Kubernetes Backup
How to Write Custom Object Classes for Ceph
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

RADOS object classes are server-side plugins that run directly on Ceph OSD processes. They enable compute-near-data patterns where logic executes alongside the stored data, reducing network traffic for operations like filtering, transformation, and aggregation.

What Are Object Classes?

Object classes are shared libraries loaded by OSD daemons. When a client calls a class method:

  1. The OSD loads the class library (if not cached)
  2. The method executes with direct access to the object's data
  3. Results are returned to the client

This avoids reading entire objects over the network when only a partial result is needed.

Building a Custom Object Class

C++ Class Source

// myclass.cc
#include "objclass/objclass.h"

CLS_VER(1, 0)
CLS_NAME(myclass)

cls_handle_t h_class;
cls_method_handle_t h_echo;
cls_method_handle_t h_word_count;

// Echo method: returns the object content as-is
static int echo(cls_method_context_t hctx, ceph::buffer::list *in, ceph::buffer::list *out) {
    ceph::buffer::list obj_data;
    int ret = cls_cxx_read(hctx, 0, 0, &obj_data);
    if (ret < 0) return ret;
    *out = obj_data;
    return 0;
}

// Word count method: counts whitespace-separated tokens
static int word_count(cls_method_context_t hctx, ceph::buffer::list *in, ceph::buffer::list *out) {
    ceph::buffer::list obj_data;
    int ret = cls_cxx_read(hctx, 0, 0, &obj_data);
    if (ret < 0) return ret;

    std::string content = obj_data.to_str();
    int count = 0;
    bool in_word = false;
    for (char c : content) {
        if (std::isspace(c)) {
            in_word = false;
        } else if (!in_word) {
            in_word = true;
            count++;
        }
    }

    ceph::encode(count, *out);
    return 0;
}

void __cls_init() {
    CLS_LOG(1, "Loading myclass");
    cls_register("myclass", &h_class);
    cls_register_cxx_method(h_class, "echo", CLS_METHOD_RD, echo, &h_echo);
    cls_register_cxx_method(h_class, "word_count", CLS_METHOD_RD, word_count, &h_word_count);
}

CMakeLists.txt

add_library(cls_myclass SHARED myclass.cc)
target_link_libraries(cls_myclass cls)
install(TARGETS cls_myclass DESTINATION ${CMAKE_INSTALL_LIBDIR}/rados-classes)

Deploying the Class

Copy the compiled shared library to all OSD nodes:

sudo cp libcls_myclass.so /usr/lib/rados-classes/
sudo systemctl restart ceph-osd@*

Calling the Class from Python

import rados

with rados.Rados(conffile="/etc/ceph/ceph.conf") as cluster:
    with cluster.open_ioctx("mypool") as ioctx:
        # Write test data
        ioctx.write_full("testobj", b"the quick brown fox jumps over the lazy dog")

        # Call the word_count class method
        ret, result = ioctx.execute("testobj", "myclass", "word_count", b"")
        import struct
        count = struct.unpack("<i", result)[0]
        print(f"Word count: {count}")  # 9

Calling the Class from C

rados_exec(io, "testobj", "myclass", "word_count", "", 0, buf, sizeof(buf));

Summary

Custom RADOS object classes run server-side on OSD processes, enabling compute-near-data operations that avoid full object transfers over the network. Classes are C++ shared libraries that register methods via cls_register_cxx_method, are deployed by copying to /usr/lib/rados-classes/ on OSD nodes, and are invoked from client code using ioctx.execute() (Python) or rados_exec() (C).