[10:35:44] <anoopcs> Cannot start mongod service on fedora 19?
[10:36:27] <anoopcs> This is the error "Starting mongod (via systemctl): Job for mongod.service failed. See 'systemctl status mongod.service' and 'journalctl -xn' for details."
[10:36:57] <anoopcs> Can anyone help me with a solution?
[10:37:32] <ranman> anoopcs how mongodb installed? from package manager?
[20:10:37] <jordz> I've got a test application running right now across 2 virtualised shards. I'm trying to work out how fast this should be.
[20:10:37] <jordz> I know it's an extremely tough question because there are many things to consider on the hardware side plus the indexing side.
[20:10:37] <jordz> Assume this, the queries I'm describing are constantly hitting the database over a period of an hour. There are no indexes and the hardware, 4GB ram, dual core.
[20:10:37] <jordz> 1 database, 1 collection. The collection right now contains 120,000 documents so far.
[20:10:39] <jordz> The test schema works as follows, it's based on weekly buckets of data which are split into days.
[20:10:41] <jordz> The days can range from having 100's of Stats per day, some have a few hundred some have a few:
[20:11:17] <jordz> We then have workers that kick in when the data comes in, right now I'm running 5 workers which take a chunk of data which contains 120 daily stats and inserts.
[20:11:22] <jordz> Check if the Week Bucket exists -> (if not created it) -> check if the day xists in the week bucket (create if not) -> push the stat into the document.
[20:11:25] <jordz> I'm seeing write locks of 7 seconds, 55 queries a second and 55 updates a second but the bottle neck is completely on the database side.
[20:11:28] <jordz> The sharding key is the Name so all sets of the same name exist on the same shard.
[20:11:32] <jordz> What should I be looking for in terms of stats?
[20:12:57] <jordz> Never really had to ask a question on IRC that was that big!
[21:16:58] <oskie> hello, is there a way to move a node that is PRIMARY single node in a cluster to another cluster, as secondary?
[21:17:08] <oskie> ...without destroying all data on disk...
[21:17:34] <oskie> or nevermind, i'll just remove all the data
[21:29:09] <brendan6> Hello, the documentation at http://docs.mongodb.org/manual/core/2d/ says to only use a 2d index if my database has legacy location data. Does that mean a standard index is suitable for indexing a field with GeoJSON data?
[22:14:00] <bla> Shame a bit; I wanted to create a private mongodb instance on a server and don't really want to play/trust mongodb authentication mechanisms when unix sockets are so simple.
[22:27:21] <bla> Ok. Another one - is it possible to connect with 'mongo' to unix socket?
[22:28:23] <bla> Ok. I guess there is really no real support for unix sockets. I need to abandon this idea...
[22:34:58] <cheeser> you can use unix sockets, i thought...