Question
ABC Corp is a famous telecom company. They have customers in all locations. Customers use ABC Corps network to make calls. Government has brought in
ABC Corp is a famous telecom company. They have customers in all locations. Customers use ABC Corp’s network to make calls. Government has brought in a regulation that all telecom companies should store call details of their customers. This is very important from a security point of view and all telecom companies have to retain this data for 15 years. ABC Corp already stores all customer details data, for their analytics team. But due to a surge in mobile users in recent years, their current database cannot handle huge amounts of data. Current database stores only six months of data. ABC Corp has discussed this problem with database experts and has set up MongoDB cluster. Now they are building a Java base interface which can help them store this data in MongoDB.
Data contains following columns
Source : Phone number of caller
Destination : Phone number of call receiver
Source_location : Caller’s city
Destination_location : Call receiver’s city
Call_duration : Phone call duration
Roaming : Flag to check if caller is in roaming
Call_charge : Money charged for call
Sample Data:
{
source: “+919612345670”,
destination: “+919612345671”,
source_location: “Delhi”,
destination_location: “Mumbai”,
call_duration: 2.03,
roaming: false,
call_charge: 2.03
}
You have been hired to build Java interface for MongoDB and perform the following tasks.
Interact with the sharded system using Java application.
Insert new documents from Java application for different sources in the database and see if data is distributed on different shards.
Find total call charges for all records and its query behavior.
Find number of calls made from each location and its query behavior.
Find revenue generated for each location and its query behavior.
Check total number of calls made from roaming (Roaming = true) and its query behavior.
Step by Step Solution
3.51 Rating (154 Votes )
There are 3 Steps involved in it
Step: 1
To build a Java interface for MongoDB to perform the mentioned tasks youll need the MongoDB Java driver usually provided by MongoDB as a dependency an...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started