Sharding is a technique of partitioning database tables by row ("horizontally"); typically this technique requires a key to be selected that determines how the rows are to be partitioned.
0
votes
1answer
14 views
sharding between different solr server having different schema
I have two different solr servers.
Both server has different schema.
Is it possible to shard these two solr server?
Or is there any other way to combine/merge results of two different solr servers?
...
0
votes
0answers
27 views
MongoDB sharding concept
I'm trying to figure out the mechanism of MongoDB's sharding.
Can someone tell me if I got this thing right ?
Here is shards example of what I figured out:
Sharded Cluster 1 :
Shard1 - contains ...
0
votes
0answers
41 views
MongoDB Sharding slows down queries by 40-120%!
I'm in the middle of testing sharding on MongoDB as my subset of a collections is growing rapidly and looking for a way to speed up the queries. Like the idea of sharding to be able to use multiple ...
1
vote
0answers
32 views
mongos slow after shardcollection added
So we have a big collection with about a 100 million records. We need to shard and I'm doing some testing. I found out that performance decreased when running a query on a collection that is sharded, ...
2
votes
2answers
89 views
Does Cassandra support sharding?
Does Apache Cassandra support sharding?
Apologize that this question must seem trivial, but I cannot seem to find the answer. I have read that Cassandra was partially modeled after GAE's Big Table ...
2
votes
0answers
42 views
Horizontally scale an object (row, document) comprised entirely of lists
Have some data that looks like this:
widget:
{
categories: ['hair', 'nails', 'dress']
colors: ['red', 'white']
}
The data needs to be queried like this:
SELECT * FROM widget_table ...
1
vote
1answer
17 views
MongoDB Sharding, config servers count
How many config server do I need to run mongodb shard environment with 4 replicasets of 3 nodes in each?
What is the formula between shard config servers, shards and nodes?
1
vote
0answers
37 views
MongoDB addshard: failed to add 2nd shard
There are 6 directories, each contains about 1 TB data, they all belong to a database "test"
now, and I want group them in a cluster. I have built the Shardserver and Configserver, but encounter a ...
1
vote
2answers
83 views
Can a list field be a shard key in MongoDB?
Have some data that looks like this:
widget:
{
categories: ['hair', 'nails', 'dress']
colors: ['red', 'white']
}
The data needs to be queried like this:
SELECT * FROM widget_table ...
0
votes
2answers
34 views
Relation between shard keys and chunks in MongoDB sharded cluster?
I can't really understand the shard key concept in a MongoDB sharded cluster, as I've just started learning MongoDB.
Citing the MongoDB documentation:
A chunk is a contiguous range of shard key ...
0
votes
1answer
36 views
Location Coordinates as a Shard key in MongoDB
Is it possible to have the lat and long coordinates as a shard key in a collection with a geo-spatial index in mongoDB? If not, can you suggest any efficient way to calculate a shard key on the ...
0
votes
0answers
111 views
Mongodb sharding performance issue
Test :
- insert 200 images (300-800Ko/img) using directly a replica set
- insert 200 images (300-800ko/img) using the same replica set as shard.
I realize that these operations have a really ...
0
votes
0answers
26 views
About the Mongodb sharding?
I have a collection, like is:
{ name:aaa,
nick:bbbb,
item:[{item_id:123456,price:13.00},
{item_id:833457,price:12.00},
.....
}]
}
I had set the collection to ...
1
vote
1answer
68 views
Why mongodb config servers must be one or three only?
after reading the official doc of the MongoDB sharding internal behaviour and I have not found out why you have to have one or three server configuration, and not another number .
In the ...
0
votes
0answers
67 views
Designing a MongoDB use case, would you prefer collections over big documents?
Structure:
Main
Collection: Users
Collection: Document List with Metadata
UsersData
Collections(UsersID)
DocumentsData
Collections(DocumentID)
This is my structure for my use case of ...
0
votes
0answers
34 views
how can one configure MongoDB replication set in PHP through sharding architecture?
I have to develop a php web interface to manage a MongoDB cluster.
This cluster is currently composed by 1 mongos, 1 config, 1 RS (Resplication Set with 5 mongod).
I want to know if it's possible to ...
2
votes
2answers
70 views
120 mongodb collections vs single collection - which one is more efficient?
I'm new to mongodb and I'm facing a dilemma regarding my DB Schema design:
Should I create one single collection or put my data into several collections (we could call these categories I suppose).
...
0
votes
0answers
40 views
Error throwing when trying to use new data base - wrong type for field (0) 1 != 2
I am getting the below error while trying to run show collections, dropDatabase(), repairDatabase() commands etc. Below myDb is a new Database.
mongos> use myDb
switched to db myDb
mongos> show ...
1
vote
1answer
95 views
Mongo shard collection not distributed if shard key is a small int
We did mock test on the sharded mongo environment, but if the shard key value is small int, the collection didn't distribute, but if the shard key is big int, its working fine. Please read on...
...
0
votes
2answers
30 views
What is the performance of a query that doesn't contains the shard key in a sharded MongoDB environment?
The title is saying everything. Assume that you have a sharded MongoDB environment and the user provide a query, which doesn't contain the shard key. What is the actual performance of the query? What ...
0
votes
0answers
42 views
Need mongoid queries to grab aggregated data from logs collection
I have a mongodb collection used for storing log files with the following schema...
{
_id: ObjectId('4f442120eb03305789000000'),
remote_addr: "127.0.0.1",
account_id: 123,
user: 'frank',
...
1
vote
1answer
84 views
Sharding in MongoDB
I try to test sharding in MongoDB. For example, I use host1.com and host2.com instead real server names.
So I created config server at host1.com:
mongod --dbpath /path/to/configdb/ --configsvr
...
1
vote
0answers
51 views
Solr-Zookeeper increment the number of shards without setting max number of shards
I have a problem in creating shards with zoo keeper.
When I create a collection and the shards for the corresponding collection ,I have to specify max number of shards the collection going to have.If ...
2
votes
1answer
111 views
Mongodb Sharding and Indexing
I have been struggling to deploy a large database.
I have deployed 3 shard clusters and started indexing my data.
However it's been 16 days and I'm only half way through.
Question is, should I import ...
1
vote
1answer
57 views
How to add shards dynamically to collection in solr?
Using the following query when I create the collection I set two shards for the collection10.
/solr/admin/collections?action=CREATE&name=collection10&numShards=2&replicationFactor=2
But ...
0
votes
0answers
61 views
Sequential Id in Azure SQL Federation
I use Azure SQL federation to store users. As I read in this article, the best way to generate distributed federation key is to use GUID. I think show GUIDs to user isn’t human friendly, so I would ...
0
votes
1answer
30 views
Sharding schemes
I am looking for some sharding schemes, and I also need some literature on that. So far the ones I have found:
- Key based partitioning
- Vertical partitioning
- Directory based partitioning
Any ...
0
votes
1answer
92 views
library for sharding mysql in Java
Sooner, we are going to shard our mysql database to achieve horizontal scaling. Our technology stack is based on spring, hibernate.
However, I haven't been able to find any alternate to hibernate ...
0
votes
1answer
44 views
Replica set sharding. Can second data centre do failover?
We have 3 shards, replicated over 3 boxes each (9 boxes in total). 2 replicas are at our main hosting provider (site A) and we have a third replica (set to secondary only) on another hosting provider ...
0
votes
1answer
66 views
How to remove chunks from mongodb shard
I have a collection where the sharding key is UUID (hexidecimal string). The collection is huge: 812 millions of documents, about 9600 chunks on 2 shards. For some reason I initially stored documents ...
0
votes
1answer
36 views
MongoDB and dynamic shard keys
I have been thinking about sharding with MongoDB and came across a use case which I haven't been able to figure out ... so here it is:
If I have documents that look like this one...
_id [Integer]
...
0
votes
1answer
33 views
good mongodb shard key for “domain” document
I want to find a proper shard key for a document like this:
{
"_id": "yahoo.com",
"c": {
"en": {
"bdy": ",
"cats": [],
"mDesc": "",
"mHEq": {},
"mKeyw": [],
...
1
vote
0answers
47 views
mongodb shard key hash algorithm
I'm unable to find documentation about the algorithm that mongodb is using for collection or shard keys.
Can anyone help with this or post a reference?
6
votes
1answer
152 views
Horizontally scaling out or sharding Python-RQ or Redis with Python
Trying to horizontally scale out the Redis instance working as the task server for Python-RQ.
As far as I know, the best way to do this would be to add sharding logic (most likely using Consistent ...
1
vote
3answers
77 views
Azure Database Design, partition out data tables vs federations?
I am looking at the viability of moving our .NET web application to Azure. The multi-role setup to handle the web server aspect seems more than capable.
I have reservations with regards to the Azure ...
0
votes
0answers
30 views
Tag aware sharding range using specific values
I know that I can use a tag range like so: sh.addTagRange("db.collection", {key:minimumValue}, {key:maximumValue}, "tagName")
What I want to know is if I can use a tag range with specific values as ...
1
vote
1answer
109 views
MySQL User Defined Values - EAV vs Sharding with Many tables
I am currently in development of a multi-tenant system that as core functionality of the system allows the user to define custom types. So for example, they would define an Event, Account, Order, ...
0
votes
0answers
38 views
is it feasible to use nhibernate sharding on geographically distant databases?
I need to store data in different geographically distant data bases due to regulatory requirements.
Using NHibernate Sharding looks like a solution that can do the job for me. How ever i am concerned ...
1
vote
0answers
84 views
mongo shard config server high CPU
We are running a sharded mongodb (v2.2) cluster with four replset shards and three shard config servers, all set up in accordance with 10gen's documentation.
We run this cluster on AWS EC2, with the ...
0
votes
0answers
93 views
Solr 3.6 Distribution dynamically adding shards
I am looking at using distribution and sharding with Solr 3.6 vs Solr 4+ (SolrCloud)
I can see that 3.6 can have multiple shards set up, ideally each shard would rest on a different box. On a large ...
0
votes
1answer
75 views
MongoDB demonstrate sharding
This is not a technical question, although I need help. For a school project, I set up a mongodb sharded cluster. Now I have to do a video that demonstrates sharding. I could run a program that fills ...
0
votes
1answer
51 views
MongoDB. Keep information about sharded collections when restoring
I am using mongodump and mongorestore in a replicated shard cluster in MongoDB 2.2. to get a backup and restore it.
First, I use mongodump for creating the dump of all the system, then I drop a ...
0
votes
0answers
214 views
Solr 4.1 Solr Cloud Shard Structure
If I plan on holding 7TB of data in a Solr Cloud, is it bad practice to begin with 1 server holding 100 shards and then begin populating the collection where once the size grew, each shard ultimately ...
0
votes
1answer
35 views
Will MongoDB clean memory mapped files immediately after data resouce is moved to new shards?
I am a newman for MongoDB and have a question about sharding.
I've got to known that when a new shard is added into cluster. Balancer will move part of chunks from existing shards into the new one.
...
3
votes
1answer
365 views
Database sharding on Heroku
At some point in the next few months our app will be at the size where we need to shard our DB. We are using Heroku for hosting, Node.js/PostgreSQL stack.
Conceptually, it makes sense for our app to ...
0
votes
1answer
33 views
MySQL partitioning by customer
We have a product that uses diferent MySQL shemas for diferent customers, and a single Java application that uses diferent persistence units for one for every customer. This makes it dificult to add a ...
0
votes
2answers
117 views
mysql sharding case study link or paper
I have been going through the book "High performance mysql", its really a nice book. But the only concern for myself is the MySQL sharding part. Even though there are a lot of theories but the ...
1
vote
0answers
69 views
Finding a good index AND shard key in MongoDB?
Goal
I'm working on a MongoDB collection that saves comments of a project event (e.g. milestone reached). It's likely to grow quite big, so I want to make it ready for sharding from day 1.
...
1
vote
3answers
160 views
How does MongoDB do both sharding and replication at the same time?
For scaling/failover mongodb uses a “replica set” where there is a primary and one or more secondary servers. Primary is used for writes. Secondaries are used for reads. This is pretty much master ...
1
vote
0answers
90 views
HDFS partition data
I have huge data (TBs) of DNS logs in text files where each record is of the form
timestamp | resolvername | domainlookedfor | dns_answer
where,
timestamp - time at which the record was ...



