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

推荐订阅源

V
Visual Studio Blog
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
Docker
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 聂微东
MyScale Blog
MyScale Blog
H
Help Net Security
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
M
MIT News - Artificial intelligence
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
P
Proofpoint News Feed
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
Microsoft Security Blog
Microsoft Security Blog
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏

StorageNewsletter

Vast Data Valued at $30 Billion as AI Drives a New Infrastructure Stack Wasabi Technologies Closes $250M Credit Facility to Expand Cloud Storage Innovation NAB Show 2026: TVC Soho Selects EditShare High-Performance NVMe Storage to Support Resolve Finishing Workflows KIOXIA Unveils Value-Oriented QLC-based EG7 Series SSDs for PC OEMs NinjaOne Unified Backup Surpasses Fifteen Thousand Customers Portworx by Everpure is Redefining Modern Virtualization for Customers with Proven, Enterprise-Ready Solutions Peer Software Strengthens Global Partner Program to Unify Fragmented File Environments for the AI Era NetApp Collaborates with Google Cloud to Power Data Infrastructure for Distributed Cloud Sidus Space Expands Existing Agreement with Lonestar Data Holdings, Inc. to Support Additional StarVault Orbital Data Storage Payload From SNIA: SCSI Continues to Innovate Data Storage with SBC-5 Microsoft Technology Licensing Assigned Patent Linux Kernel 7.0 is Out NAB Show 2026: ATTO Technology Ignites Next Era of Media Connectivity NAB Show 2026: Promise Technology to Showcase Integrated Storage Plug-in for Video and Image Creative Workflows NAB Show 2026: EditShare Advances Analytical AI and NVMe Performance for Modern Broadcast and Post NAB Show 2026: Elements Introduces GRID, a New Node-Based Scale-Out NAS Platform NAB Show 2026: MASV Expands Global Partner Ecosystem to Accelerate End-to-End Media Workflows NAB Show 2026: UnifyDrive to Showcase Full NAS Lineup NAB Show 2026: Strada Releases Easiest Remote Editing Platform on the Market Synology: Three Security Advisories on Resolved Vulnerabilities Mastercard International Assigned Patent NAB Show 2026: Promise Technology to Unveil AI-Optimized Storage Solutions NAB Show 2026: QNAP Releases HDP Recovery Media Creator: Building Windows DR Media in USB and ISO Formats NAB Show 2026: SNS Unveils Three New Products, Expanded Ecosystem NAB Show 2026: Symply Unveils Centara Platform, World’s First Quad-Interface LTO with Thunderbolt 5, and Spark One Portable NVMe NAB Show 2026: Other World Computing Launches OWC Express 4M2 Ultra Thunderbolt 5 Four-Slot NVMe M.2 SSD Enclosure Panmnesia to Mass-Produce PCIe 6.4-CXL 3.2 Fusion Switch CIQ Delivers the First Enterprise Linux Compliance Platform for Federal Cryptographic Validation and Post-Quantum Readiness Adata Launches Urban Tapsafe Up to 2TB USB 3.2 Gen2 External SSD Raidon Technology Introduces 4-Bay STARDOM SR4-BA32 20Gb/s USB-C RAID-5 Desktop Storage System
IT Press Tour 68: JuiceFS
Philippe Nicolas · 2026-06-16 · via StorageNewsletter

RAIDON

An interesting pure software generic file storage alternative

By Philippe Nicolas | June 16, 2026 at 2:01 pm

We had the opportunity to meet JuiceFS for the 2nd time during the recent 68th edition of The IT Press Tour held last week in Boston, MA.Joe Zhou, DevRel, JuiceFS (Juicedata), refreshed the group on file storage approach, very intersting as Amazon has added recently S#Files.

Zhou positioned object storage as the de facto backend of modern data infrastructure, citing a growing roster of diskless architectures built on S3 and equivalents, LanceDB, Snowflake, Chroma, Milvus, TiDB, Neon (acquired by Databricks), WarpStream, turbopuffer (used by Anthropic and Notion), RisingWave, and JuiceFS itself. The appeal is structural: simple but powerful primitives such as PUT, GET, and Compare-And-Swap, a flat namespace, virtually unlimited scalability, 11 nines of durability, multi-region availability, immutability, and roughly $0.02/GB/month at scale in popular regions. Yet object stores remain fundamentally limited for many workloads: no in-place updates, no real file hierarchy (only indexed prefixes), costly batch metadata operations, higher latency, no direct execution, and poor fit for structured data. These constraints explain why an entire generation of databases and file systems is now being rebuilt to expose richer APIs, POSIX in JuiceFS’ case, Postgres in Neon’s, on top of immutable object buckets.

Click to enlarge

Zhou devoted significant time to AWS S3 Files, released in April 2026, presenting it as “a decent approach” but a limited one. S3 Files mounts an S3 bucket as a POSIX-compatible NFS volume, using EFS as a high-performance cache and metadata tier in front of S3 as the source of truth, with a strict 1-to-1 mapping between files and objects. Default behavior is optimized for small files (sizeLessThan defaulting to 128 KiB), with writes landing first in EFS and offloaded to S3 after roughly 60 seconds. The trade-offs are significant: write amplification, appending a few bytes to a 2 GB video requires retrieving, merging and rewriting the entire object via S3 Append’s multi-stage GET-merge-PUT workflow, costly metadata operations (an mv /foo /bar over one million keys triggers a background rewrite of every object), batching delays, conflict resolution where S3 always wins, no multi-cloud support, and complex layered pricing across EFS storage, writes, reads, sync operations and eventual S3 costs. On Zhou’s scorecard, S3 Files delivers POSIX and file hierarchy but fails on in-place updates, batch metadata, application execution, and structured-data workloads.

Click to enlarge

JuiceFS’ answer is strict data/metadata separation combined with file chunking. The Community Edition (Apache 2.0) pairs an external metadata engine, Redis, TiKV, MySQL, PostgreSQL, FoundationDB, with any mainstream object store (S3, GCS, Azure Blob, OSS, COS, Ceph, MinIO), exposed via FUSE, Java SDK, Python SDK, CSI Driver and an S3 Gateway. Files are chunked into immutable 4 MB blocks, so appends rewrite only the last block and renames are a single metadata operation. CE now supports configurable storage-class tiering (Standard-IA, Intelligent-Tiering, Glacier IR) per directory or file. The Enterprise Edition adds a proprietary Raft-based horizontally scalable metadata engine with 3-copy redundancy, a distributed data cache shared across thousands of clients, native cross-region replication, multi-cloud mirroring (cache-only or full mirror), and a soft limit recently pushed from 100 billion to 500 billion files per volume, with one EE deployment already running at 1.47 PiB and 404 billion inodes. MiniMax, a leading Chinese AI lab whose models compete alongside Anthropic and OpenAI, runs JuiceFS in hybrid-cloud mode with GPUs in its own IDC and cache-only mirrors closer to compute, and is now evaluating full mirrors. Other named adopters include HeyGen, GMI, PixVerse, Momenta, Horizon Robotics, Xiaomi, Lovart, NAVER, Trip.com, fal, D-Robotics, Cerebrium, Fly.io and Jerry. JuiceFS EE pricing is by source-region capacity only, no per-client fees, no JuiceFS-imposed data transfer charges since traffic flows directly between client and object store.

Click to enlarge

Share this news : Twitter Facebook Linkedin email pdf

Articles_bottom

SNL Awards_2026

AIC