Hacker News new | past | comments | ask | show | jobs | submit login
Free Online MongoDB Training by 10gen (10gen.com)
108 points by bithavoc on Sept 20, 2012 | hide | past | favorite | 28 comments



Another example of 10gen winning a highly technical market not through technical prowess but with superior marketing. I'd rather not argue whether MongoDB is better than other NoSQL solutions or RDBMS. But I do applaud their effort to get developers up and running with MongoDB quickly and easily, especially in contrast to $1000+ support/training for MySQL and Postgres.


10gen really nailed this; the meetup groups, customer support, drivers, docs and ability to get going are all awesome compared to most products, let alone the other databases competing with them.


Very cool. We're battling Mongo as we speak. Never ran into a problem where you have to run a compaction on a DB before, would love to know of a way to automate this like every other DB I've ever used. It's probably something I've glossed over and I'm sure in the first 5 min I'll be slapping my forehead.

Btw, do we get a free mongoDB sticker set to us on completion? I lost my last one.


Despite not knowing anything about your dataset and insertion/deletion patterns, you may want to consider power of two allocation. It's a new feature in 2.2 that costs some additional disk space up front (new documents potentially get 2x padding), but can save a lot of disk over the long run by eliminating many data access patterns that add to fragmentation. One (pathological) benchmark I ran saved 800x the disk space after 1,000K (edited from 100K), insertions and deletes of 1-10KB documents.

http://docs.mongodb.org/manual/reference/commands/#usePowerO...


All databases do not like to give back space they have allocated because allocating space is an expensive operation. You probably don't need to compact the db, unless you have a problem with file size (which in some scenarios I have had this issue).

There's nothing built in that I know of, but you can easily just make something that runs on a regular basis like a scheduled task or cron job that runs either compact command or repair database command.

http://docs.mongodb.org/manual/reference/command/compact/ http://docs.mongodb.org/manual/reference/command/repairDatab...


Speak for your own databases. Mine does it just fine.


I didn't say they can't do it, they just don't like to.


Again speak for your own databases. There are databases out there that plug each hole every time you delete a row AKA zero fragmentation.

Only databases that fit their working set in memory have to resort to fragmentation to get reasonable performance. If the data set fits in memory there are other strategies.


It is not only this: moving datums around in the database heap is expensive (invalidating caches, exacerbating thrashing) and touchy (index pointers, concurrency considerations).

But debloating over time is an important property, so it's probably worth it to eventually get it right.


I can hook you up with some stickers. meghan @ 10gen.com


Just registered for both the developers course and admin course. MongoDB 2.2 new features are awesome, specifically the aggregation framework and the concurrency improvements. I am looking forward to the courses, which are scheduled to start on Oct 22nd and are created in partnership with edX.


Where is edX mentioned?

Also, any idea when edX will be available as open source?


edX was mentioned during the Justin.tv/mongodb webinar some of us attended today.


Trying to view the Terms of Service leads me to an error page. http://education.10gen.com/tos


I stopped registering when that link didn't work.


Fantastic! Wish there was a brief explanation of the course format though - is it streaming? Email delivery? Can we watch at our own pace?


It's very similar to Udacity's courses which are about 12 hours each http://www.udacity.com/


It seems like you'll be able to watch at your own pace, it says "10hrs/week estimate"


One of the bigger hurdles I had to deal with at my work at a :BigComapny was getting mongo installed. But even on our older systems I had no trouble with their provided packages. Which you wouldn't think would be notable, but it is. Actually getting the software to run in arguably the most important part.


I will not create an account unless I see a curriculum or course description on this web site. I don't know what will be the difficulty level of the course etc. I don't get why they can't write one or two descriptive paragraphs.


Try clicking on the class title?


OK, good move on 10gen's part. It would be great to see course outlines as well.


Smart move, going with edX & offering certificates of completion.



This course will be different due to browser-based MongoDB shells for completing exercises like testing queries and spinning up replica sets. You can walk through a lot of the material on your on due to the 10gen presentations and MongoDB Docs, but it's even better when you're guided through the concepts in the shell.

the structure is very similar to udacity's online courses http://www.udacity.com/


Sounds great


Yeah, I was surprised at the length of time they recommend -- 10 hours/week for 7 weeks (for the developer course). 70 hours? I would think you could get productive in this in much less time.


These look like excellent courses. Particularly the M102 course for DBAs. Thanks.




Consider applying for YC's Spring batch! Applications are open till Feb 11.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: