NoSQL

We're running Mongo and PHP on the same server. Everytime a request is done and it's a pretty heavy one (lots of queries and a few heavy ones) I can clearly see that on the machine httpd (PHP) and mongod together take up 100% ...
We're running Mongo and PHP on the same server. Everytime a request is done and it's a pretty heavy one (lots of queries and a few heavy ones) I can clearly see that on the machine httpd (PHP) and mongod together take up 100% CPU (lets say, httpd takes 60% and mongo takes 40%). We run on 8 cores, but for some reason it's not using different cores. I would expect
about 1 hour ago
2013/05/22 -- Igor
2013/05/22 -- Igor
about 1 hour ago
2013/05/22 -- Christopher Wirt
2013/05/22 -- Christopher Wirt
about 2 hours ago
2013/05/22 -- Alain RODRIGUEZ
2013/05/22 -- Alain RODRIGUEZ
about 2 hours ago
Hi! Until recently we used a single replicaset (two mongodbs and one arbiter, each on a different server). As the data volume grew we ran into performance problems (mainly io related) so we decided to switch to a sharded setup. We ha...
Hi! Until recently we used a single replicaset (two mongodbs and one arbiter, each on a different server). As the data volume grew we ran into performance problems (mainly io related) so we decided to switch to a sharded setup. We have now four dedicated servers with the following setup:
about 2 hours ago
I want to expire data from sharded cluster by setting TTL. However , I set expireAfterSeconds is 1000,but the data is expired less than one minute(60 seconds)? I start one cluster like this: start config server : ./mongod --configsvr...
I want to expire data from sharded cluster by setting TTL. However , I set expireAfterSeconds is 1000,but the data is expired less than one minute(60 seconds)? I start one cluster like this: start config server : ./mongod --configsvr --port 10000 --dbpath ../data/config (ip is 192.168.111.211)
about 2 hours ago
Hello, I have a cluster in sharding with 6 servers, one mongos, one mongosvr and 4 shards. I want to convert each shard to replicat shard... I stopped mongos I stopped for each shard the mongod and I start it. After I started the mo...
Hello, I have a cluster in sharding with 6 servers, one mongos, one mongosvr and 4 shards. I want to convert each shard to replicat shard... I stopped mongos I stopped for each shard the mongod and I start it. After I started the mongos... I did this following command : db.getSiblingDB("config").shar ds.save({_id:"", host:"/member1,member2 ,..."})
about 2 hours ago
Hello, I have a cluster in sharding with 6 servers, one mongos, one mongosvr and 4 shards. I want to convert each shard to replicat shard... I stopped mongos I stopped for each shard the mongod and I start it. After I started the mo...
Hello, I have a cluster in sharding with 6 servers, one mongos, one mongosvr and 4 shards. I want to convert each shard to replicat shard... I stopped mongos I stopped for each shard the mongod and I start it. After I started the mongos... I did this following command : db.getSiblingDB("config").shar ds.save({_id:"", host:"/member1,member2 ,..."})
about 2 hours ago
Hello, i'm building a chat server application using node.js and now i need to save chat transcripts on mongodb. If i was in classic relational databases, i would append every new message to a messages table but is there a "better...
Hello, i'm building a chat server application using node.js and now i need to save chat transcripts on mongodb. If i was in classic relational databases, i would append every new message to a messages table but is there a "better" way to do it in nosql database? Maybe it would be better to have a single json structure that is updated
about 3 hours ago
2013/05/22 -- Brian Tarbox
2013/05/22 -- Brian Tarbox
about 3 hours ago