Navigation

    ML
    • Register
    • Login
    • Search
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Tags
    3. nosql
    Log in to post

    • Intro to NoSQL from MangoCon 2019
      MangoCon • youtube scott alan miller database nosql mangocon 2019 nosql database • • scottalanmiller  

      3
      3
      Votes
      3
      Posts
      132
      Views

      @scottalanmiller I like your 53 mins intros, but that said you cover and reach all the important parts. I wonder what will be deep dive session how long will that video be.
    • SOLVED PATH Error with TimeScaleDB-Tune on Fedora 30
      IT Discussion • linux fedora database rdbms nosql fedora 30 postgresql timescaledb postgresql 11 • • scottalanmiller  

      15
      0
      Votes
      15
      Posts
      528
      Views

      @dafyre said in PATH Error with TimeScaleDB-Tune on Fedora 30: then why are you even using it? Capacity Planning, for example.
    • NoSQL for IT at MangoCon 2019 Topic
      MangoCon • scott alan miller mangocon database mongodb nosql mangocon 2019 redis scylladb dgraph dba cassandra • • scottalanmiller  

      1
      3
      Votes
      1
      Posts
      187
      Views

      No one has replied

    • J

      Free Veeam for DGraph Linux Restore
      IT Discussion • linux centos backup veeam database disaster recovery nosql dgraph clustered database veeam linux agent • • Jimmy9008  

      76
      2
      Votes
      76
      Posts
      720
      Views

      So, circling back. How is the backup project going?
    • MongoDB Major Change to Licensing
      Developer Discussion • open source database licensing mongodb nosql • • scottalanmiller  

      78
      1
      Votes
      78
      Posts
      1603
      Views

      @StorageNinja said in MongoDB Major Change to Licensing: @scottalanmiller said in MongoDB Major Change to Licensing: if you are a SaaS vendor looking at building software that uses MongoDB somewhere, you'd better get a lawyer looking over this license and how it applies to you. This is becoming a bigger issue as the biggest SaaS vendors hide behind this clause more and more with incredibly proprietary forks. They offer very little to no actual core development or contribution and it goes against the previous method of GPL code getting funding. It annoys me, as the legal headaches of contributing internal only use code back will block some companies from using OSS, but I see it both ways. The startups who are doing a lot of the core housekeeping of NOSQL platforms are learning they can't find a business model. This is getting messier and messier. Partially because there are just too any vendors involved. What's amazing, though, is that a move like this took a customer who was very into MongoDB and using it in projects and was literally working with MongoDB's own hosted product and now looking to avoid it like the plague. So at least in this one case, they are likely losing hosted product from this. And gaining nothing. I imagine a lot of customers going through this same process.
    • MongoDB Storage Engine Error Detected MMapV1 and wiredTiger
      IT Discussion • database mongodb nosql mongodb 3 mmapv1 wiredtiger • • scottalanmiller  

      3
      0
      Votes
      3
      Posts
      1499
      Views

      @jaredbusch said in MongoDB Storage Engine Error Detected MMapV1 and wiredTiger: @scottalanmiller okay, they totally fucked this up. Yeah, this is some weird stuff.
    • C

      Backup and Restore ElasticSearch Indices
      IT Discussion • nosql elasticsearch graylog2 • • chaitanya.joshi  

      5
      2
      Votes
      5
      Posts
      480
      Views

      https://github.com/ElasticHQ/elasticsearch-HQ So I don't believe it handles snapshots yet, but it still looks like a pretty useful tool that I have been meaning to try out for people who don't want to manage through the API.
    • Remove Duplicate Entries from MongDB Collection
      IT Discussion • mongodb nosql aggregate • • scottalanmiller  

      3
      1
      Votes
      3
      Posts
      376
      Views

      @scottalanmiller said in Remove Duplicate Entries from MongDB Collection: You can add an index as well, to avoid having duplicates occur in the future: db.myCollection.createIndex({"my_field_to_be_unique":1},{unique:true}) Good idea.
    • Find Duplicate Value Entries in MongoDB Collection
      IT Discussion • javascript mongodb nosql aggregate • • scottalanmiller  

      2
      3
      Votes
      2
      Posts
      2812
      Views

      For more detail, showing the UIDs of each of the duplicates in question, try this little extension: db.myCollection.aggregate([ {$group: { _id: "$field_to_search", "dups": { "$push": "$_id" }, count: { $sum: 1}}}, {$match: { count: { $gt: 1 }}}])
    • MongoDB Most Wanted Database by Developers
      News • mongodb nosql databases • • mlnews  

      1
      2
      Votes
      1
      Posts
      348
      Views

      No one has replied

    • MongoDB Drops ACID
      News • mongodb nosql databases mongodb 4.0 acid • • mlnews  

      2
      1
      Votes
      2
      Posts
      308
      Views

      Gotta love that MongoDB
    • Linux Foundation Saves RethinkDB After Company Goes Under
      News • open source database nosql linux foundation rethinkdb • • StrongBad  

      1
      3
      Votes
      1
      Posts
      650
      Views

      No one has replied

    • Couchbase on NoSQL and Open Source
      News • open source database nosql opensource.com couchbase • • mlnews  

      1
      0
      Votes
      1
      Posts
      654
      Views

      No one has replied

    • RockMongo: A GUI for MongoDB
      News • open source database mongodb nosql rockmongo • • mlnews  

      1
      4
      Votes
      1
      Posts
      827
      Views

      No one has replied

    • Installing an ElasticSearch 2 Cluster on CentOS 7
      IT Discussion • scale scale hc3 how to logging elk nosql elasticsearch graylog graylog2 clustering elasticsearch 2 • • scottalanmiller  

      1
      6
      Votes
      1
      Posts
      1697
      Views

      No one has replied

    • Why Does Everyone Still Focus on Relational Databases?
      IT Discussion • database rdbms nosql databases • • scottalanmiller  

      51
      2
      Votes
      51
      Posts
      5292
      Views

      @scottalanmiller said in Why Does Everyone Still Focus on Relational Databases?: I just built out a NoSQL ElasticSearch three node cluster in the lab. Whoo! The perfect DB setup for storing a hit counter for the number of times I've watched Tombstone!
    • Installing MongoDB 3.2 on CentOS 7
      IT Discussion • linux centos scale scale hc3 centos 7 ntg lab rhel 7 mongodb linux server nosql mongodb 3.2 mongodb 3 • • scottalanmiller  

      7
      5
      Votes
      7
      Posts
      4111
      Views

      @scottalanmiller said in Installing MongoDB 3.2 on CentOS 7: Just tested and deployed to CentOS 7.2 on Linode. This failed me, so I went to the mongo docs and the baseurl contains the variable $releasever. using that results in redhat//mongodb in the file, which is why I assume you hard coded that bit. Escaping the $ fixes it. cat > /etc/yum.repos.d/mongodb-org-3.2.repo <<EOF [mongodb-org-3.2] name=MongoDB Repository baseurl=https://repo.mongodb.org/yum/redhat/\$releasever/mongodb-org/3.2/x86_64/ gpgcheck=1 enabled=1 gpgkey=https://www.mongodb.org/static/pgp/server-3.2.asc EOF
    • How To Set Up a Redis Slave
      IT Discussion • how to nosql redis • • scottalanmiller  

      1
      2
      Votes
      1
      Posts
      824
      Views

      No one has replied

    • What is NoSQL
      IT Discussion • nosql thoughtworks • • scottalanmiller  

      1
      3
      Votes
      1
      Posts
      739
      Views

      No one has replied

    • Couchbase Introduces ForestDB
      News • database nosql couchbase forestdb • • Reid Cooper  

      1
      1
      Votes
      1
      Posts
      931
      Views

      No one has replied

    • MongoDB vs. Redis
      IT Discussion • database mongodb nosql databases redis • • scottalanmiller  

      25
      1
      Votes
      25
      Posts
      1808
      Views

      @dyasny said in MongoDB vs. Redis: @jmoore said in MongoDB vs. Redis: ... I don't see how just using some flashy marketing terms would actually get good talent. my point exactly! Not really what companies using recruiters like that want. It's mostly a myth that people want to hire great talent. Most places want to hire cool sounding, middling talent.