Question from the Infrastructure Architecture test

Which of the following networks has the highest bandwidth? A, B, or C?

Hard

SAME SUBJECT FOR MULTIPLE QUESTIONS

You have a database in heavy documents (1 document/row contains 1MB of data). You notice that the bottleneck of your database is not the number of read/write requests but the amount of data passing through for each request (1MB).

Your database allows you to perform atomic operations on multiple tables/collections.

Writing documents/rows is done in 1 write. Reading, on the other hand, is partial (users only need subsets of the information in the documents/rows at the same time). You identify 3 subsets, of respective sizes 0.2MB 0.6MB 0.5MB. The read/write ratio being 5, you decide to differentiate the channels used for writing from those for reading to take advantage of the fact that reads pass less data.

Idea A is physical redundancy. You attach a slave database to your current database. The latter will receive the write operations, which will be replicated on the slave database. The read operations will be directed directly to the slave tables.

Idea B is to keep tables for each of the subsets (in addition to the main table). These tables are therefore persistent caches, in the database. 1 write operation therefore writes the main document/row + 1 small document/row ready to use for each of the read operations (3).

Idea C is to write custom SQL/mapReduce queries for each of the read operations in order to return only the necessary subsets for each of the reads. Your database is therefore not modified and you have three custom interfaces for each of the subsets.

IN TERMS OF THE AMOUNT OF DATA TRANSFERRED BETWEEN YOUR READING DATABASE AND YOUR SERVER (during a read request)

Author: Kevin LefevreStatus: PublishedQuestion passed 172 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!