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

推荐订阅源

MongoDB | Blog
MongoDB | Blog
V
V2EX
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
有赞技术团队
有赞技术团队
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
罗磊的独立博客
月光博客
月光博客
爱范儿
爱范儿
D
Docker
U
Unit 42
P
Proofpoint News Feed
I
InfoQ
腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
L
LangChain Blog
V
Visual Studio Blog
IT之家
IT之家
Vercel News
Vercel News
G
Google Developers Blog
M
MIT News - Artificial intelligence
美团技术团队
The GitHub Blog
The GitHub Blog
阮一峰的网络日志
阮一峰的网络日志
MyScale Blog
MyScale 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 Object Classes for Ceph 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 Ceph RGW for Data Lake Storage
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

Why Ceph RGW for Data Lake Storage?

Data lakes require scalable, cost-effective object storage with S3-compatible APIs. Ceph RGW provides:

  • S3 and Swift compatible API
  • Horizontal scalability to petabytes
  • Multi-tenancy via bucket policies
  • On-premises data sovereignty
  • Integration with major analytics frameworks

Setting Up a Data Lake Bucket

# Configure the AWS CLI to point to Ceph RGW
aws configure set default.endpoint_url https://rgw.example.com
export AWS_ACCESS_KEY_ID=<access-key>
export AWS_SECRET_ACCESS_KEY=<secret-key>

# Create a data lake bucket
aws s3 mb s3://datalake --endpoint-url https://rgw.example.com

# Create a structured folder hierarchy
aws s3api put-object --bucket datalake --key raw/ --endpoint-url https://rgw.example.com
aws s3api put-object --bucket datalake --key processed/ --endpoint-url https://rgw.example.com
aws s3api put-object --bucket datalake --key curated/ --endpoint-url https://rgw.example.com

Configuring Bucket Versioning

Enable versioning to maintain history of data changes:

aws s3api put-bucket-versioning \
  --bucket datalake \
  --versioning-configuration Status=Enabled \
  --endpoint-url https://rgw.example.com

Setting a Lifecycle Policy for Data Tiers

Move data from raw to archive after 90 days:

{
  "Rules": [{
    "ID": "archive-raw-data",
    "Filter": { "Prefix": "raw/" },
    "Status": "Enabled",
    "Transitions": [{
      "Days": 90,
      "StorageClass": "GLACIER"
    }]
  }]
}
aws s3api put-bucket-lifecycle-configuration \
  --bucket datalake \
  --lifecycle-configuration file://lifecycle.json \
  --endpoint-url https://rgw.example.com

Integrating with Apache Spark

Configure Spark to read from Ceph RGW:

from pyspark.sql import SparkSession

spark = SparkSession.builder \
    .appName("DataLake") \
    .config("spark.hadoop.fs.s3a.endpoint", "https://rgw.example.com") \
    .config("spark.hadoop.fs.s3a.access.key", "my-access-key") \
    .config("spark.hadoop.fs.s3a.secret.key", "my-secret-key") \
    .config("spark.hadoop.fs.s3a.path.style.access", "true") \
    .config("spark.hadoop.fs.s3a.impl", "org.apache.hadoop.fs.s3a.S3AFileSystem") \
    .getOrCreate()

# Read Parquet from data lake
df = spark.read.parquet("s3a://datalake/processed/events/")
df.show()

Integrating with Trino (Presto)

Configure Trino catalog for Ceph S3:

connector.name=hive
hive.metastore.uri=thrift://hive-metastore:9083
hive.s3.endpoint=https://rgw.example.com
hive.s3.aws-access-key=my-access-key
hive.s3.aws-secret-key=my-secret-key
hive.s3.path-style-access=true
hive.s3.ssl.enabled=true

Query data lake tables:

SELECT date_trunc('hour', event_time) AS hour,
       count(*) AS events
FROM datalake.processed.events
WHERE event_date = CURRENT_DATE
GROUP BY 1
ORDER BY 1;

Enabling Multipart Upload for Large Files

Large data files (>100MB) should use multipart uploads. Configure the chunk size first, then upload:

# Set multipart chunk size to 64MB
aws configure set default.s3.multipart_chunksize 64MB

# Upload large file (multipart upload is used automatically)
aws s3 cp large-dataset.parquet s3://datalake/raw/datasets/ \
  --endpoint-url https://rgw.example.com

Summary

Ceph RGW provides a scalable, self-hosted S3-compatible backend for data lake architectures. Configure structured bucket hierarchies with raw, processed, and curated zones, enable versioning for data lineage, and set lifecycle policies to automate data tiering. Integrate with Spark using the S3A connector and Trino using the Hive catalog, both of which support path-style access required by Ceph RGW.