Questions tagged [nosql]
A catch-all term describing database systems using various non-relational models. Such systems are usually engineered to be high-performance.
                426 questions
            
            
            
                0
            
            votes
        
        
            
                2
            
            answers
        
        
            
                24
            
            views
        
        
            
+50
        How to debug MongoDB recurring error 314 ObjectIsBusy
                    On a fresh Mongo DB 8.0 mono instance (no cluster) community edition install on Debian and through the package manager, i have a recurring error message in my logs saying this:
"c":"...
                
            
       
        
            
                1
            
            vote
        
        
            
                0
            
            answers
        
        
            
                14
            
            views
        
        
        GridDB Time-Series Retention: Built-in TTL or recommended purge/archival pattern?
                    We ingest time-series sensor data into a GridDB TimeSeries container on GridDB Cloud (Free plan). I’m trying to keep only the most recent N days (e.g., 90 days) online with minimal impact on ingest ...
                
            
       
        
            
                1
            
            vote
        
        
            
                0
            
            answers
        
        
            
                30
            
            views
        
        
            
        Do I need a secondary index on a non–row-key column for this query, and how do I create/verify it?
                    I’m testing GridDB Cloud with a 3-column Collection container:
field
type
sensor_id
STRING row key
temperature
FLOAT
recorded_at
TIMESTAMP
I insert a row and then query by a non–row-key column:
...
                
            
       
        
            
                -1
            
            votes
        
        
            
                1
            
            answer
        
        
            
                67
            
            views
        
        
            
            
            
        Best Database for Bulk Reads and Fast Key Lookups for Genomic Data [closed]
                    I'm developing a system to store and query genomic data using a relational database (PostgreSQL being my primary candidate).
The dataset is quite large around 9 billion records with over 300 columns, ...
                
            
       
        
            
                0
            
            votes
        
        
            
                0
            
            answers
        
        
            
                34
            
            views
        
        
            
        How to manage indexes not fitting into memory in Document DB?
                    The problem: from time to time i get slow (>10s) queries even though they are using based on indexed fields.
I'm using DocDB instance that has 128GB of memory. The total size of all of the indexes (...
                
            
       
        
            
                0
            
            votes
        
        
            
                1
            
            answer
        
        
            
                39
            
            views
        
        
            
            
        Unexpected Behavior with TimeWindowCompactionStrategy in ScyllaDB 6.1 Open Source
                    I’m using ScyllaDB 6.1 Open Source and have a table configured to store 30 days of data with the following compaction strategy:
compaction = {
  'class': 'TimeWindowCompactionStrategy',
  '...
                
            
       
        
            
                1
            
            vote
        
        
            
                4
            
            answers
        
        
            
                121
            
            views
        
        
            
            
        Why do NoSQL databases tend to favor availabilty instead of consistency?
                    From my current limited understanding of NoSQL databases, it seems like there are two basic elements.
First, how they store data compared to SQL databases. NoSQL databases store a blob of data, ...
                
            
       
        
            
                0
            
            votes
        
        
            
                1
            
            answer
        
        
            
                395
            
            views
        
        
            
            
            
        MongoDB starting then crashing
                    I was recently forced to remove and reinstall MongoDB on my web server, which is a VM running Ubuntu 20.04.6 LTS. Before I erased all of the previous MongoDB files, I copied the data directory /var/...
                
            
       
        
            
                1
            
            vote
        
        
            
                1
            
            answer
        
        
            
                399
            
            views
        
        
            
            
            
        How to fix mongosh v2.3.3 connection error with AWS DocumentDB v5.0.0
                    When I try to connect to documentdb cluster version 5.0.0 using mongosh version 2.3.3 it is returned the error message:
MongoServerError: Unsupported mechanism [ -301 ]
I am using the connection ...
                
            
       
        
            
                0
            
            votes
        
        
            
                0
            
            answers
        
        
            
                113
            
            views
        
        
            
            
        Seeking Fastest Hash-Based NoSQL Database: GDBM vs Kyoto Cabinet & Other Alternatives
                    Background
I'm currently researching fast, hash-based key-value NoSQL databases for my use case, which requires high performance. I was surprised by the limited availability of benchmarks, ...
                
            
       
        
            
                0
            
            votes
        
        
            
                1
            
            answer
        
        
            
                30
            
            views
        
        
            
        After RAVENDB upgrade, the server can't see my databases
                    I just upgraded my Raven DB from 6.0.1 to 6.0.105.
I did so by downloading the 105 server, unpacked and copied it over my previous instance.
I was able to create a new database, but the server can't ...
                
            
       
        
            
                0
            
            votes
        
        
            
                0
            
            answers
        
        
            
                104
            
            views
        
        
            
        Limit MongoDB Database Size/Quota
                    I'm running the latest version on Docker(Mongodb server 7.0.11), and I'd like to know: Are there any mechanisms to limit the size of a single database on MongoDB? Or perhaps a way to impose a storage ...
                
            
       
        
            
                1
            
            vote
        
        
            
                3
            
            answers
        
        
            
                397
            
            views
        
        
            
            
        Which Python 2.7.x version is compatible with both Cassandra 3.11 and 4.1?
                    I'm upgrading Cassandra from 3.11 to 4.1. One of the requirements is the latest python 2.7 updates. I want to upgrade Cassandra with no downtime, so I need to know which python 2.7 update is ...
                
            
       
        
            
                1
            
            vote
        
        
            
                1
            
            answer
        
        
            
                103
            
            views
        
        
            
        If SSTable sorted, why do we need Sparse Index?
                    As far as I know, when we create clustered index it restructures the table in B-Tree form and uses binary search when we try to find particular row. SSTable is also sorted by key. Why do we need ...
                
            
       
        
            
                -1
            
            votes
        
        
            
                2
            
            answers
        
        
            
                89
            
            views
        
        
            
            
        RDBMS vs NoSQL decision making
                    I am pretty novice when it comes to data store, and want to learn few tricks.
I want to know how to decide between RDBMS and a NoSQL store.
Lets take example of a system where data size is pretty big, ...