Close Menu

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    Warner Bros. Discovery is “rebuilding its video game pipeline” after a “significant” 2025

    Resident Evil Requiem Japanese players fight “immersion-breaking” censorship

    Netflix boss says Paramount acquisition of Warner Bros will result in “cuts in excess of $16 billion” within “18 months or so”

    Facebook X (Twitter) Instagram
    • Artificial Intelligence
    • Business Technology
    • Cryptocurrency
    • Gadgets
    • Gaming
    • Health
    • Software and Apps
    • Technology
    Facebook X (Twitter) Instagram Pinterest Vimeo
    Tech AI Verse
    • Home
    • Artificial Intelligence

      What the polls say about how Americans are using AI

      February 27, 2026

      Tensions between the Pentagon and AI giant Anthropic reach a boiling point

      February 21, 2026

      Read the extended transcript: President Donald Trump interviewed by ‘NBC Nightly News’ anchor Tom Llamas

      February 6, 2026

      Stocks and bitcoin sink as investors dump software company shares

      February 4, 2026

      AI, crypto and Trump super PACs stash millions to spend on the midterms

      February 2, 2026
    • Business

      Weighing up the enterprise risks of neocloud providers

      March 3, 2026

      A stolen Gemini API key turned a $180 bill into $82,000 in two days

      March 3, 2026

      These ultra-budget laptops “include” 1.2TB storage, but most of it is OneDrive trial space

      March 1, 2026

      FCC approves the merger of cable giants Cox and Charter

      February 28, 2026

      Finding value with AI and Industry 5.0 transformation

      February 28, 2026
    • Crypto

      Strait of Hormuz Shutdown Shakes Asian Energy Markets

      March 3, 2026

      Wall Street’s Inflation Alarm From Iran — What It Means for Crypto

      March 3, 2026

      Ethereum Price Prediction: What To Expect From ETH In March 2026

      March 3, 2026

      Was Bitcoin Hijacked? How Institutional Interests Shaped Its Narrative Since 2015

      March 3, 2026

      XRP Whales Now Hold 83.7% of All Supply – What’s Next For Price?

      March 3, 2026
    • Technology

      Buckle Up for Bumpier Skies

      March 3, 2026

      Daily Driving GrapheneOS

      March 3, 2026

      OpenAI will amend Defense Department deal to prevent mass surveillance in the US

      March 3, 2026

      Intent-Based Commits

      March 3, 2026

      Elevated Errors in Claude.ai

      March 3, 2026
    • Others
      • Gadgets
      • Gaming
      • Health
      • Software and Apps
    Check BMI
    Tech AI Verse
    You are at:Home»Technology»Pure CTO drills down on key-value, no DFMs on FA//ST, and fast object
    Technology

    Pure CTO drills down on key-value, no DFMs on FA//ST, and fast object

    TechAiVerseBy TechAiVerseJune 30, 2025No Comments8 Mins Read2 Views
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr Email Reddit
    Pure CTO drills down on key-value, no DFMs on FA//ST, and fast object
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp Email

    Pure CTO drills down on key-value, no DFMs on FA//ST, and fast object

    By

    • Antony Adshead,
      Storage Editor

    Published: 26 Jun 2025

    In this podcast, recorded at last week’s Pure//Accelerate 2025 event, we talk to Pure Storage’s chief technology officer (CTO), Rob Lee, to get a drill-down on use of key-value stores in the company’s Purity flash storage operating system, why it doesn’t use its much-trumpeted DirectFlash Modules in the newly announced FlashArray//ST, and what makes its fast object storage so fast.

    Can you explain how a key-value store is used in Pure’s storage products? 

    The reason we use a key-value store, and I’ll get into the benefits, is a lot of the same reasons that when you’re organising large amounts of information, you use a relational database. 

    You organise your information in a very orderly way into tables. You can build indexes. You can look things up very efficiently. You tend to do that instead of just storing piles and piles of data unorganised and making it very hard to look up. 

    Now, the genesis of using key-value stores in our products and software goes back to day one of the company.

    One of the things we did very differently than everybody else in the market was we designed and rethought storage software, inclusive of file systems and how we map logical blocks to physical locations. We rethought how you build those for how flash works at the most native level. One of the key considerations with flash is, unlike magnetic hard disks, you don’t overwrite the contents in place.



    To change the contents, you have to write a new copy and you have to garbage collect the old thing. And when you’re doing this, you want to avoid rewriting the same piece of flash over and over again to burn out the media.

    Well, it turns out that by organising our metadata – which is effectively that mapping, if you will, of file names, file system to physical location, in a key-value store, from the research community, there are lots of great techniques to minimise that write amplification – the number of times that we have to rewrite that metadata structure and maintain it over time. 

    So that was the key – no pun intended – insight driving us to organise our metadata in key-value stores. 

    The second piece though – and again, borrowing from the database world and why you see so many key-value stores used at cloud scale – is they make it really, really easy to partition and distribute and create concurrency and parallelism.

    And so when you look at FlashBlade and why FlashBlade is uniquely good at metadata performance – I talked a bit about this on stage [at Pure//Accelerate 2025] with FlashBlade EXA – is because we store all that metadata in a key-value store that allows us to very, very linearly and with very high concurrency, scale out performance in a way you simply can’t do with other data structures. 

    To draw a very simple comparison, historically, most storage systems have organised their data in a tree-like structure. Well, if you think about how you look something up in a tree, you start at the top, you go left, you go right, you go left, you have to follow it step by step by step. 

    [It’s] very hard to parallelise that, right? With a key-value store, you can take advantage of the media, the flash, parallel access, you can take advantage of our distributed technology, and you can look stuff up with very high speed, with very high concurrency.

    Does the key-value store come into operation only at the metadata level, and is the file system intact elsewhere, running in parallel with that? 

    What’s really nice about how we’ve built our software is we use one approach to managing the file system metadata, the user metadata, as well as our more physical metadata, if you will. All of the mappings between … as you know, we do data reduction, right? Well, when you do data reduction and you find deduplication, you have to keep a mapping that says, “Oh, I don’t have this block physically stored here, there’s a separate copy over there.” 

    Well, that’s a mapping; we put that in the key-value store. So, by using the same approach to managing all our metadata, well, A, it’s less software to write, B, we can make that really, really robust and really, really performant, but then C, all of the parts of our system, whether it’s the file system, whether it’s our physical media management, get the benefits of the properties I just discussed.

    Pure makes a big deal about the use of its DirectFlash Modules (DFMs) and the capacity they can achieve, and yet the newly announced FlashArray//ST doesn’t use them. What does it use and why? 

    So it’s a great question, and look, I’ll start with the philosophy we have behind our hardware. I think it was Steve Jobs who said, if you want to build really good software, you’re going to build hardware to support that, and that’s really kind of our philosophy. If you look at DirectFlash, what makes DFMs work is the software that enables them.

    We try to put very little into the DFM hardware. It’s to enable the software. 

    Now, the reason why we are not using DFMs in FAST today or the data path of FlashBlade EXA is, with any design, you design for a range of the design space, performance, efficiency, cost, etc, and our DFMs are very much designed for a very wide range of the enterprise needs in terms of efficiency, capacity, etc.

    With FAST and with FlashBlade EXA, we’re aiming at the ultra, ultra high end, top end of performance, and we simply haven’t designed our drives for that top tier of ultra performance. There’s a broader ecosystem of hardware vendors that do have more specialised products for those parts of the design space, and so where it makes sense to tap into that component market, we’re going to go do that. 

    What specifically do DFMs not have that you have in the hardware that you’re using there? 

    Well, again, there’s no specific component that you’re going to go point to. It’s how have I optimised the design of the DFM and how it’s used, versus trading off latency, power, space, capacity, etc, and we just haven’t optimised those for microsecond latencies because, again, they’re just not that part of the design space. 

    Another of the things that Pure executives often refer to is the ability to provide very high-performance object storage. I’ve never really heard an explanation why that is possible. Is it just a case of chucking resources at it, or is there something else there? 

    Absolutely, and we actually hit it in the first part of the podcast. A lot of it has to do with how we organise our metadata in a key-value store, and that drives a ton of performance for us. 

    If we walk this back and we look at the legacy approaches to object storage, object storage in the enterprise has grown up in the era of cheap and deep. Folks have tried to implement the object protocols typically on top of a file system, on top of an underlying block device.

    You have layers and layers and layers of inefficiency. So, number one is we implement an object natively. There are not layers and layers of performance-sucking inefficiency. And then number two is, if you look at performance in two pieces, one is the metadata, the administrative work, and then the data piece. Meaning, I want to look something up, I’ve got a name, I’ve got to figure out where it is, and once I figure out where it is, then I have the data piece of actually loading and transferring the data.

    It turns out with modern object workloads, the administrative piece, the metadata, ends up being a very large portion of the overall performance demands. And again, that’s where our native approach, not layering it on top of the file system and having a highly distributed, highly parallel key-value store, allows us to deliver that performance. And then certainly we have a really fast data path. That’s since day one.

    Read more on AI and storage


    • Pure aims at AI beyond the enterprise with FlashBlade//Exa

      By: Antony Adshead


    • Has Pure got the first of its ‘HDD is doomed’ ducks in a row?

      By: Yann Serra


    • Pure Storage, Micron expand QLC NAND partnership

      By: Adam Armstrong


    • Pure CEO: AI needs write speed and storage in place

      By: Antony Adshead

    Share. Facebook Twitter Pinterest LinkedIn Reddit WhatsApp Telegram Email
    Previous ArticleDave the Diver’s In the Jungle DLC may not arrive until 2026, but Godzilla is back
    Next Article UK IT infrastructure processes images looking back 20 billion light years
    TechAiVerse
    • Website

    Jonathan is a tech enthusiast and the mind behind Tech AI Verse. With a passion for artificial intelligence, consumer tech, and emerging innovations, he deliver clear, insightful content to keep readers informed. From cutting-edge gadgets to AI advancements and cryptocurrency trends, Jonathan breaks down complex topics to make technology accessible to all.

    Related Posts

    Buckle Up for Bumpier Skies

    March 3, 2026

    Daily Driving GrapheneOS

    March 3, 2026

    OpenAI will amend Defense Department deal to prevent mass surveillance in the US

    March 3, 2026
    Leave A Reply Cancel Reply

    Top Posts

    Ping, You’ve Got Whale: AI detection system alerts ships of whales in their path

    April 22, 2025702 Views

    Lumo vs. Duck AI: Which AI is Better for Your Privacy?

    July 31, 2025285 Views

    6.7 Cummins Lifter Failure: What Years Are Affected (And Possible Fixes)

    April 14, 2025164 Views

    6 Best MagSafe Phone Grips (2025), Tested and Reviewed

    April 6, 2025124 Views
    Don't Miss
    Gaming March 3, 2026

    Warner Bros. Discovery is “rebuilding its video game pipeline” after a “significant” 2025

    Warner Bros. Discovery is “rebuilding its video game pipeline” after a “significant” 2025 The company…

    Resident Evil Requiem Japanese players fight “immersion-breaking” censorship

    Netflix boss says Paramount acquisition of Warner Bros will result in “cuts in excess of $16 billion” within “18 months or so”

    Metacritic pulls Resident Evil Requiem review after reports it was generated by AI and attributed to a writer that doesn’t exist

    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    About Us
    About Us

    Welcome to Tech AI Verse, your go-to destination for everything technology! We bring you the latest news, trends, and insights from the ever-evolving world of tech. Our coverage spans across global technology industry updates, artificial intelligence advancements, machine learning ethics, and automation innovations. Stay connected with us as we explore the limitless possibilities of technology!

    Facebook X (Twitter) Pinterest YouTube WhatsApp
    Our Picks

    Warner Bros. Discovery is “rebuilding its video game pipeline” after a “significant” 2025

    March 3, 20262 Views

    Resident Evil Requiem Japanese players fight “immersion-breaking” censorship

    March 3, 20262 Views

    Netflix boss says Paramount acquisition of Warner Bros will result in “cuts in excess of $16 billion” within “18 months or so”

    March 3, 20262 Views
    Most Popular

    7 Best Kids Bikes (2025): Mountain, Balance, Pedal, Coaster

    March 13, 20250 Views

    VTOMAN FlashSpeed 1500: Plenty Of Power For All Your Gear

    March 13, 20250 Views

    Best TV Antenna of 2025

    March 13, 20250 Views
    © 2026 TechAiVerse. Designed by Divya Tech.
    • Home
    • About Us
    • Contact Us
    • Privacy Policy
    • Terms & Conditions

    Type above and press Enter to search. Press Esc to cancel.