Now a days, there is only one buzz that goes on...Big Data..Curious to know what it is ..Though I have gleaned some information from Big Data but want to know more.
Thanks
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
The difference between a database for a coffee shop, and for facebook. It's easy to get something to work with 200 users. But when you have 200,000 users... that's a different story. Table scans become impossible. Indexes become very important. Single servers cannot handle all the load. Solutions such as clustering are employed to make it so more than one server can host an application. This makes it so you can keep adding more servers to the cluster each time the load gets too big and performance starts to die. You'll hear a lot about NoSQL databases too such as MongoDB. This is where the database just stores key/value documents. Such databases are more suited for massive scaling (by sharding) than are relational database systems. |
||||
|