<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Mongodb on Enterprise Data Architect | Principal Data Strategist |  MySQL Subject Matter Expert |  Author | Speaker</title>
    <link>https://ronaldbradford.com/tags/mongodb/</link>
    <description>Recent content in Mongodb on Enterprise Data Architect | Principal Data Strategist |  MySQL Subject Matter Expert |  Author | Speaker</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <lastBuildDate>Fri, 27 Sep 2013 21:20:42 +0000</lastBuildDate>
    <atom:link href="https://ronaldbradford.com/tags/mongodb/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>A friday MongoDB funny</title>
      <link>https://ronaldbradford.com/blog/a-friday-mongodb-funny-2013-09-27/</link>
      <pubDate>Fri, 27 Sep 2013 21:20:42 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/a-friday-mongodb-funny-2013-09-27/</guid>
      <description>I had to laugh (just a bit) at this on the exhibitor floor at Oracle Open World 2013. There was a large MongoDB presence at the Slot 301 . There are a few reasons.</description>
    </item>
    <item>
      <title>Basic scalability principles to avert downtime</title>
      <link>https://ronaldbradford.com/blog/basic-scalability-principles-to-avert-downtime-2011-04-23/</link>
      <pubDate>Sat, 23 Apr 2011 18:39:56 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/basic-scalability-principles-to-avert-downtime-2011-04-23/</guid>
      <description>In the press in the last two days has been the reported outage of Amazon Web Services Elastic Compute Cloud (EC2) in just one North Virginia data center. This has affected many large website includes FourSquare , Hootsuite , Reddit and Quora .</description>
    </item>
    <item>
      <title>Part 2 – Simple lessons in improving scalability</title>
      <link>https://ronaldbradford.com/blog/part-2-simple-lessons-in-improving-scalability-2011-02-24/</link>
      <pubDate>Thu, 24 Feb 2011 04:23:12 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/part-2-simple-lessons-in-improving-scalability-2011-02-24/</guid>
      <description>Given the popular response from my first lesson in improving scalability where I detailed simple ways to eliminate unnecessary SQL, let me share another common bottleneck with MySQL scalability that can be instantly overcome.</description>
    </item>
    <item>
      <title>MongoDB Experience: Server logging</title>
      <link>https://ronaldbradford.com/blog/mongodb-experience-server-logging-2010-06-11/</link>
      <pubDate>Fri, 11 Jun 2010 18:31:52 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/mongodb-experience-server-logging-2010-06-11/</guid>
      <description>By default the mongod process sends all output to stdout. You can also specify the daemon to log to file which is necessary for any production implementation. For example:&#xA;$ mongod --logpath=`pwd`/mongo.</description>
    </item>
    <item>
      <title>MongoDB Experience: Key/Value Store</title>
      <link>https://ronaldbradford.com/blog/mongodb-experience-keyvalue-store-2010-06-11/</link>
      <pubDate>Fri, 11 Jun 2010 17:14:37 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/mongodb-experience-keyvalue-store-2010-06-11/</guid>
      <description>MongoDB is categorized as a schema-less, schema-free or a document orientated data store. Another category of NoSQL product is the key/value store. It had not dawned on me until a discussion with some of the 10gen employees that MongoDB is also a key/value store, this is just a subset of features.</description>
    </item>
    <item>
      <title>MongoDB Experience: Stats Example App</title>
      <link>https://ronaldbradford.com/blog/mongodb-experience-stats-example-app-2010-06-10/</link>
      <pubDate>Thu, 10 Jun 2010 17:30:04 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/mongodb-experience-stats-example-app-2010-06-10/</guid>
      <description>The best way to learn any new product is to a) read the manual, and b) start using the product.&#xA;I created a simple sample application so I could understand the various functions including adding data, searching as well as management functions etc.</description>
    </item>
    <item>
      <title>MongoDB Experience: Replication 101</title>
      <link>https://ronaldbradford.com/blog/mongodb-experience-replication-101-2010-06-10/</link>
      <pubDate>Thu, 10 Jun 2010 15:06:50 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/mongodb-experience-replication-101-2010-06-10/</guid>
      <description>After successfully installing and testing mongoDB it’s very easy to create a replication environment.&#xA;$ mkdir -p data/{master,slave} $ mongod --dbpath=`pwd`/data/master --master --port 28011 &gt; master.log 2&gt;&amp;#038;1 &amp;#038; # Always check your log file $ cat master.</description>
    </item>
    <item>
      <title>MongoDB Experience: Gotcha with collection names</title>
      <link>https://ronaldbradford.com/blog/mongodb-experience-gotcha-with-collection-names-2010-06-09/</link>
      <pubDate>Wed, 09 Jun 2010 16:36:49 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/mongodb-experience-gotcha-with-collection-names-2010-06-09/</guid>
      <description>In my earlier tests I bulk loaded data with the following command.&#xA;mongoimport -d olympics -c olympic_event -type tsv --headerline -f name,id,sport,demonstration_competitions,olympic_games_contested,competitions,contested_as_demonstration_event --drop olympic_event.tsv connected to: 127.0.0.1 dropping: olympics.olympic_event imported 775 objects As you can see I imported 775 objects, however when I went to review them via the mongo interactive shell I found no data.</description>
    </item>
    <item>
      <title>MongoDB Experience: What&#39;s running in the DB</title>
      <link>https://ronaldbradford.com/blog/mongodb-experience-whats-running-in-the-db-2010-06-09/</link>
      <pubDate>Wed, 09 Jun 2010 16:07:24 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/mongodb-experience-whats-running-in-the-db-2010-06-09/</guid>
      <description>You can very easily find out the running threads in the database (e.g. like a MySQL SHOW PROCESSLIST) with db.currentOp .&#xA;&gt; db.currentOp(); { &#34;inprog&#34; : [ ] } No much happening, however under some load you can see</description>
    </item>
    <item>
      <title>MongoDB Experience: Bulk Loading Data</title>
      <link>https://ronaldbradford.com/blog/mongodb-experience-bulk-loading-data-2010-06-09/</link>
      <pubDate>Wed, 09 Jun 2010 15:49:21 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/mongodb-experience-bulk-loading-data-2010-06-09/</guid>
      <description>mongoDB has a mongoimport command. The docs only shows the usage but not any examples. here are my first examples.&#xA;data1.csv&#xA;1 2 3 4 5 6 7 8 9 0 You need to specify your database (-d) and collection (-c) for importing.</description>
    </item>
    <item>
      <title>MongoDB Experience: Online Resources</title>
      <link>https://ronaldbradford.com/blog/mongodb-experience-online-resources-2010-06-09/</link>
      <pubDate>Wed, 09 Jun 2010 14:55:09 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/mongodb-experience-online-resources-2010-06-09/</guid>
      <description>Following the initial Quickstart docs you will find a lot of online documentation. The following are good places to start.&#xA;Tutorial The Interactive Shell Manual Admin Zone Starting and Stopping Monitoring and Diagnostics Backups There is also a Getting Started however I found this a duplication of the Quickstart.</description>
    </item>
    <item>
      <title>MongoDB Experience: Getting Started</title>
      <link>https://ronaldbradford.com/blog/mongodb-experience-getting-started-2010-06-09/</link>
      <pubDate>Wed, 09 Jun 2010 13:47:17 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/mongodb-experience-getting-started-2010-06-09/</guid>
      <description>Getting started with MongoDB is relatively straight forward, following the instructions from the Quickstart guide has you operational in a few minutes.&#xA;I like projects that provide a latest version link for software.</description>
    </item>
    <item>
      <title>MongoDB Experience: History</title>
      <link>https://ronaldbradford.com/blog/mongodb-experience-history-2010-06-09/</link>
      <pubDate>Wed, 09 Jun 2010 13:21:04 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/mongodb-experience-history-2010-06-09/</guid>
      <description>My first exposure to MongoDB was in July 2008 when I was a panelist on “A Panel on Cloud Computing” at the Entrepreneurs Round Table in New York. The panel included a representative from 10gen the company behind the open source database product and at the time Mongo was described as a full stack solution with the database being only one future component.</description>
    </item>
    <item>
      <title>NoSQL options</title>
      <link>https://ronaldbradford.com/blog/nosql-options-2009-10-06/</link>
      <pubDate>Tue, 06 Oct 2009 15:53:40 +0000</pubDate>
      <guid>https://ronaldbradford.com/blog/nosql-options-2009-10-06/</guid>
      <description>The NoSQL event in New York had a number of presentations on non relational technologies including of Hadoop , MongoDB and CouchDB .&#xA;Coming historically from a relational background of 20 years with Ingres , Oracle and MySQL I have been moving my focus towards non relational data store.</description>
    </item>
  </channel>
</rss>
