Open Menu
AllLocalCommunitiesAbout
lotide
AllLocalCommunitiesAbout
Login

Linux Foundation says yes to NoSQL via DocumentDB

⁨56⁩ ⁨likes⁩

Submitted ⁨⁨13⁩ ⁨hours⁩ ago⁩ by ⁨IsaamoonKHGDT_6143@lemmy.zip⁩ to ⁨technology@lemmy.world⁩

https://www.theregister.com/2025/08/25/linux_foundation_says_yes_to/

source

Comments

Sort:hotnewtop
  • m33@lemmy.zip ⁨6⁩ ⁨hours⁩ ago

    TL;DR « Microsoft began developing DocumentDB in 2024 as a set of PostgreSQL extensions »

    I can’t help but think : what could go wrong ? 🙄

    source
  • Daerun@lemmy.world ⁨13⁩ ⁨hours⁩ ago

    OK, I’ll need some explanation because I don’t fully understand what is being explained in the article.

    source
    • addie@feddit.uk ⁨12⁩ ⁨hours⁩ ago

      The ‘traditional’ way of storing a database is on a mainframe or supercomputer, where all the information is stored in tables with the information all uniquely stored, frequently containing id references to other tables. For instance, an ‘orders’ table would have a customer id in it, and the ‘customer’ table would have their name and address. The programming language for databases like that is SQL - PostGres and Oracle are examples. That model gives you a lot of advantages - the data is always consistent, changes are either made completely or not at all - but every query has to go through one machine, so performance can suck, and you waste a lot of time ‘joining’ tables together for certain kinds of query.

      If you’re storing eg. a blog with comments on it, that model doesn’t make sense. Each page has a varied selection of comments, comment will have a username and maybe their icon, which will rarely change, but will need to be evaluated by the database every time. It would make more sense to output the pre-rendered page as a JSON blob, and you could have a hundred machines with a few pages each to share the load. Updating people’s icons and adding new comments would need to be done by telling each machine to make a certain update if they’ve a copy of that page; you’d ‘eventually’ be consistent, but if you don’t care about that then you get a very scalable robust solution quite cheaply. Examples of such ‘NoSQL’ databases are MongoDB, Hadoop and DocumentDB.

      Linux foundation have looked at DocumentDB’s license and said ‘yes, free enough for us’, so they’ll adopt it.

      source
      • doeknius_gloek@discuss.tchncs.de ⁨12⁩ ⁨hours⁩ ago

        tl;dr: MongoDB is Web Scale.

        source
        • -> View More Comments
    • Botzo@lemmy.world ⁨12⁩ ⁨hours⁩ ago

      Mongo DB popularized the “document DB” model which is just storing JSON in a database and offering a way to interact with it roughly like you would data in a traditional relational DB.

      7ish years ago, they got fed up with the major cloud providers offering their free software as a service and changed their license to one that is more restrictive.

      Of course this is sort of the inevitable outcome: a cloud provider builds a competing product and then “open sources” it in a way that will allow them to grab mind share and eventually erode the company that dared to demand compensation for a “free” product.

      Microsoft added a middle finger by announcing it just before mongo released quarterly financials too.

      source
    • unexposedhazard@discuss.tchncs.de ⁨12⁩ ⁨hours⁩ ago

      Microsoft made some database software called DocumentDB (which utilizes a kind of database called NoSQL) that the Linux Foundation is now accepting into their list of projects they support. This was done because, unlike others like MongoDB, this one called DocumentDB was released under a license that people can use without certain restrictions that MongoDB put inside their license.

      The core issue is that big tech companies regularly take software developed by open source devs and then use it for their big money machines without giving anything back to the original developers. MongoDB was fed up with this and started using a license that forces companies to publicize the code of the projects they use MongoDB for. Big Tech doesnt like that, because they really like money and not sharing how they make that money.

      “Today, the market has spoken,” Farkas wrote on Tuesday. “The Linux Foundation has announced the adoption of the DocumentDB project to create an open standard with MongoDB compatibility, the exact thing we were sued for earlier this year.”

      So now they have a software suite that people can use to replace their MongoDB systems.

      source
      • MCasq_qsaCJ_234@lemmy.zip ⁨12⁩ ⁨hours⁩ ago

        But MongoDB had an AGPL license. Why did they decide to change to a more restrictive one?

        source
        • -> View More Comments
    • h54@programming.dev ⁨12⁩ ⁨hours⁩ ago

      DocumentDB is a NoSQL-ish database implementation built on PostgreSQL that has been accepted by the Linux Foundation. It was created by Microsoft (under MIT license) in response to MongoDB’s more restrictive licensing.

      Time will tell what adoption is like or if Mongo will change it’s licensing to be more permissive.

      source
      • MCasq_qsaCJ_234@lemmy.zip ⁨12⁩ ⁨hours⁩ ago

        If MongoDB changes its license back to AGPL it will be another comedy like Redis

        source
        • -> View More Comments