Viewing profile — ehwizard
ehwizard
HN member- Joined
- Thu, Aug 27, 2009, 10:32 PM UTC
- HN karma
- 301
- Public activity
- 14 items
- HN profile
- View on Hacker News ↗
About ehwizard
http://www.eliothorowitz.com/
Recent public activity
-
comment
Comment #33179790
Internet access is optional, or can be intermittent. If you use the cloud service (consumption based & optional) then you'll need internet access for configuration, logging, etc...…
-
comment
Comment #12520323
Minor point, but MongoDB added document validation in 3.2 so you can add guarantees about what documents are being stored. https://docs.mongodb.com/manual/core/document-validation/…
-
comment
Comment #6802183
Have you tried turning on power of 2 allocation? In general, it makes compaction much less important. Though online compaction is definitely needed.
-
comment
Comment #3235506
Currently, there is a global read/write lock. MongoDB does extensive yielding and tracking of on vs. off disk to mitigate the effects of this. In subsequent versions (2.2) , we'll …
- story
-
comment
Comment #3204303
In addition to the documentation, videos from the conferences are a great place to start: http://www.10gen.com/presentations/mongoboston-2011/schema-d... http://www.10gen.com/prese…
-
comment
Comment #3202959
From CTO of 10gen First, I tried to find any client of ours with a track record like this and have been unsuccessful. I personally have looked at every single customer case that’s …
-
comment
Comment #2148422
Durability is a new feature, and should be treated as such. While it is currently not the default, that may change in a later release.
-
comment
Comment #1769820
Yes - something that keeps data organized my shard key is being planned.
-
comment
Comment #1769788
There are numerous indexes on the data - so actual data is about half of that.
- story
-
comment
Comment #1403186
They needed to be able to do some queries on various indexes, so key/value stores wouldn't work. Also MongoDB tends to be only 10% slower then memcache, so not sure why you think i…
-
comment
Comment #1339983
Some more info: - 25 x-large ec2 instances - each instance ran mongos, mongod and java loading program - system averaged 5M "ops" per second over many hours Average ops per server:…
-
comment
Comment #790490
Just some thoughts on your downs (i'm a dev, so opinionated in 1 direction :) ) * At least on my 64-bit linux box, mmap page size is 4k. So if you have to read 100 bytes vs 4k, in …