Mongodb data warehouse
The N17 platform uses the MongoDB data warehouse to store ultra-large-scale data faster. MongoDB data warehouse is a database based on distributed file storage, written in C++ language, designed to provide scalable high-performance data storage solutions for WEB applications.
MongoDB data warehouse belongs to NoSQL (non-relational database). NoSQL is used for the storage of very large-scale data. (e.g. Google or Facebook collect trillions of bits of data for their users every day). These types of data stores do not require a fixed schema and can scale out without redundant operations.
MongoDB stores data as a document, and the data structure consists of key-value (key=>value) pairs. MongoDB documents are similar to JSON objects. Field values can contain other documents, arrays and arrays of documents.
Last updated