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

推荐订阅源

爱范儿
爱范儿
MyScale Blog
MyScale Blog
Recent Announcements
Recent Announcements
N
Netflix TechBlog - Medium
GbyAI
GbyAI
Vercel News
Vercel News
The GitHub Blog
The GitHub Blog
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
Martin Fowler
Martin Fowler
腾讯CDC
大猫的无限游戏
大猫的无限游戏
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
J
Java Code Geeks
WordPress大学
WordPress大学
P
Proofpoint News Feed
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
有赞技术团队
有赞技术团队
人人都是产品经理
人人都是产品经理
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog

TrueNAS – Open Enterprise Storage

What We Heard at NAB 2026 | TrueNAS - Open Enterprise Storage TrueNAS V160 Launched: High Performance, No All-Flash Tax TrueNAS 26 Is Here: What's New in This Major Release TrueNAS Connect: Enterprise Features on Your Own Hardware TrueNAS Immutability: Multi-Layered Data Protection & Ransomware Defense TrueNAS CEO Note to Community: We Are All TrueNAS TrueNAS 25.10.2 Goldeye: 100+ Fixes & What's New TrueNAS Names Brett Davis CEO for Enterprise Growth TrueNAS Plans for 2026: TrueNAS 26 & OpenZFS 2.4 Roadmap TrueNAS Connect Plus Now Available for All Community Users TrueNAS R60: High-Speed NVMe Storage for AI Workloads Introducing TrueNAS WebShare: Secure Web-Based File Sharing TrueNAS 25.10.1: Goldeye Matures, Performs, and Connects TrueNAS & Veeam v13: Turnkey Cyber‑Resilient Backups Customer Advantages of the TrueNAS Open Core Model TrueNAS Named Data Storage Company of the Year 2025 TrueNAS 25.10: Smarter, Streamlined Updates & Tools TrueNAS F-Series Shines at IBC with Two “Best of Show” Awards TrueNAS 25.10 “Goldeye”: NVMe‑oF, Unified, Simplified Storage Introducing TrueNAS Connect: Secure Monitoring & Alerts The ESG Advantage of Open Enterprise Architecture: Why TrueNAS Is the Sustainable Choice | TrueNAS - Open TrueNAS 25.10-RC1: New Features, Fixes & OpenZFS 2.3.4 Seamless Setup: Exploring TrueNAS Web-Driven Installation | TrueNAS - Open Enterprise Storage TrueNAS 25.10 “Goldeye” BETA is Available TrueNAS 25.10 “Goldeye” Highlights TrueNAS 25.04.2: Fangtooth restores Virtualization iXsystems Rebrands as TrueNAS to Reflect Market Momentum in Enterprise Storage | TrueNAS - Open Enterprise June 1 - Apps Migration Deadline for TrueNAS 24.04 and 23.10 TrueNAS 25.04.1: Fangtooth Unification Gains Momentum TrueNAS 24.10.2.2 Prepares for IP Addressing of Apps
Why We Use ZFS - TrueNAS
iX Team · 2015-07-09 · via TrueNAS – Open Enterprise Storage

One of the key pieces of technology underlying TrueNAS and FreeNAS is the ZFS filesystem.  In 2001, developers at Sun Microsystems began work on ZFS and officially released it as part of OpenSolaris in 2005.  Three years later, a port of ZFS was released as part of FreeBSD 7. When we took the helm of the FreeNAS project in 2009, we realized it would be a fundamental part of the OS.  So what makes ZFS so great?
ZFS_Icon

Data Integrity

The main reason TrueNAS and FreeNAS use ZFS is to ensure data integrity.  One of the main ways ZFS protects your data is by putting volume management on the filesystem level.  This makes Copy-on-Write (CoW) technology possible. Normally when a block of data is modified, it will change its current location on the disk before the new write is completed.  If your system crashes or loses power in the process, that data will be lost.

With CoW, ZFS does not change the location of the data until the write is completed and verified, keeping your data safe in case your system has any problems.

To verify that data, ZFS utilizes checksum metadata to ensure that the data remains the same from write to write.  Individual blocks of data exist in a ‘tree’ of data where each ‘parent’ block adds up the checksum data of its ‘children’, meaning that every new write is tested, eliminating bitrot.  This eliminates what is known as the RAID write hole which allows for silent data corruption in standard RAID levels.

In addition to CoW, ZFS offers additional RAID protections over standard levels.  The first RAID configuration is RAID-Z3, which allows for up to 3 disk failures in a data volume.  Standard RAID only allows for 2 disk failures per volume.  In addition, ZFS offers the ability to set up a multi-disk mirror (nRAID).  Typically, your mirrors are composed of a single disk and its copy.  With a multi-disk mirror, you can have multiple copies.  It has a high cost in disk space, but it can add levels of data integrity not found in typical RAID and is great for read speeds.

Highly Scalable

ZFS is a 128 bit file that can handle enormous data pools of up to 1.84 × 10^19 times more data than 64-bit systems.  This means that the data limitations of ZFS surpass other operating systems, making it scalable and relevant for the foreseeable future.  ZFS also eliminates unnecessary limitations to file size along with the number of filesystems and directories, which can make system design difficult.

Intelligent Features

As mentioned previously, ZFS puts volume management on the filesystem level.  This means that you don’t need an additional storage controller to set up and manage your RAID without losing performance.  It also means you won’t need to manage your disks from another interface, simplifying administration.

FreeNAS and TrueNAS make setting up volumes a snap from its graphical Web Interface, keeping all your storage controls in one place.

ZFS’s transactional processing model also allows for ZFS to send writes to individual physical disks, rather than just the RAID volume.  Because of this, ZFS can stripe writes across RAID volumes and place synchronous writes together in a physical disk location, speeding up write performance.  The transactional model also means that there are no long waits for file system checking.  In the case you need to sync mirrors with only a bit of information, you don’t have to wait for it to sync any of the empty disk space, which can take a good deal of time.

ZFS incorporates algorithms to make sure your Most Recently Used (MRU) and Most Frequently Used (MSU) data are stored in your fastest system storage media.  Spinning disks are notoriously slow and all flash solutions drive up your dollar per gigabyte cost significantly.  By utilizing these algorithms in combination with flash-based ZFS Intent Log write cache and L2ARC read cache devices, you can speed up your performance by orders of magnitude at minimal cost.

hybrid-storage-1.png

Built-In Snapshots and Replication

Another reason we use ZFS is for the intelligently designed Snapshot, Clone, and Replication features.  ZFS allows for snapshots to be taken on a singular or periodic basis and allows you to backup individual datasets as often as needed.  Snapshots allow for a simple rollback to prior states in case of file deletion or system instability.  ZFS Snapshots save disk pointers for data that would be discarded and only update based on what has changed since the last snapshot.

This translates into speedy clone and replication tasks and saves substantial time over traditional replication technology since ZFS replicates what has changed.  And because of the way ZFS manages snapshots and replication, you can have varying levels of compression between source and target servers.

Open Source

At iXsystems Open Source is in our veins.

We support and develop multiple open source projects as a company and implement it in our internal infrastructure.  Because TrueNAS is based on FreeNAS, an Open Source project, it’s important that the file system it uses is Open as well.  OpenZFS also enjoys a good deal of feature development and collaboration, is included in multiple products, and is a robust and mature filesystem.  Features are also incorporated on a modular basis known as feature flags.  This means that when there’s an update to something like Samba, it is added like a package rather than some sort of firmware.

Conclusion

ZFS is a mature, flexible file system that will be scalable well into the future.  It is based on Open technology with many individuals and commercial products contributing to  development and testing.  It has many intelligently designed features that improve the performance and ease of use of TrueNAS and FreeNAS.  Its volume management also comes with data integrity features not found in most file systems, ensuring that you have a safe place to store your data. To learn more about TrueNAS visit https://www.ixsystems.com/TrueNAS, call 1.855.GREP.4.IX or email sales@ixsystems.com.