Sunday, October 13, 2019

Differentiation between Operational vs. Analytical Systems


OperationalAnalytical
Latency1 ms to 100 ms1 min to 100 min
Concurrency1000 to100,0001 to 10
Access PatternWrites and ReadsReads
QueriesSelectiveUnselective
Data ScopeOperationalRetrospective
End UserCustomerData Scientist
TechnologyNoSQL DatabaseMapReduce, MPP Database

Traditional Enterprise Approach

This approach of enterprise will use a computer to store and process big data. For storage purpose is available of their choice of database vendors such as Oracle, IBM, etc. The user interacts with the application, which executes data storage and analysis.
Limitation
This approach are good for those applications which require low storage, processing and database capabilities, but when it comes to dealing with large  amounts of scalable data, it imposes a bottleneck.
Solution
Google solved this problem using an algorithm based on MapReduce. This algorithm divides the task into small parts or units and assigns them to multiple computers, and intermediate results together integrated results in the desired results. Intellipaat’s Big Data Hadoop training will really help you get a better understanding the concepts of Big Data Solutions in Open Data Platform!

No comments:

Post a Comment

How to register multiple implementations of the same interface in Asp.Net Core?

 Problem: I have services that are derived from the same interface. public interface IService { } public class ServiceA : IService { ...