Featured Post

SQL Interview Success: Unlocking the Top 5 Frequently Asked Queries

Image
 Here are the five top commonly asked SQL queries in the interviews. These you can expect in Data Analyst, or, Data Engineer interviews. Top SQL Queries for Interviews 01. Joins The commonly asked question pertains to providing two tables, determining the number of rows that will return on various join types, and the resultant. Table1 -------- id ---- 1 1 2 3 Table2 -------- id ---- 1 3 1 NULL Output ------- Inner join --------------- 5 rows will return The result will be: =============== 1  1 1   1 1   1 1    1 3    3 02. Substring and Concat Here, we need to write an SQL query to make the upper case of the first letter and the small case of the remaining letter. Table1 ------ ename ===== raJu venKat kRIshna Solution: ========== SELECT CONCAT(UPPER(SUBSTRING(name, 1, 1)), LOWER(SUBSTRING(name, 2))) AS capitalized_name FROM Table1; 03. Case statement SQL Query ========= SELECT Code1, Code2,      CASE         WHEN Code1 = 'A' AND Code2 = 'AA' THEN "A" | "A

15 Awesome Features Should Present in Big Data System

Really good post. I have given useful points on the features of big data system. If there are no right features, you will miss the benefits that you get from big data.

What does traditional BI tools....

Read next step...

Traditional tools quickly can become overwhelmed by the large volume of big data. Latency—the time it takes to access the data—is as an important a consideration as volume.

A little difference is there...

Suppose you might need to run an ad hoc query against the large data set or a predefined report.

A large data storage system is not a data warehouse, however, and it may not respond to queries in a few seconds. It is, rather, the organization-wide repository that stores all of its data and is the system that feeds into the data warehouses for management reporting.
Big data top components
Image courtesy|Stockphotos.io
Big data needs to be considered in terms of how the data will be manipulated. The size of the data set will impact data capture, movement, storage, processing, presentation, analytics, reporting, and latency.

Key features of Big data system
  1. A method of collecting and categorizing data
  2. A method of moving data into the system safely and without data loss
  3. A storage system that is distributed across many servers
  4. Is scalable to thousands of servers
  5. Will offer data redundancy and backup
  6. Will offer redundancy in case of hardware failure
  7. Will be cost-effective
  8. A rich tool set and community support
  9. A method of distributed system configuration
  10. Parallel data processing
  11. System-monitoring tools
  12. Reporting tools: ETL-like tools (preferably with a graphic interface) that can be used to build tasks that process the data and monitor their progress
  13. Scheduling tools to determine when tasks will run and show task status
  14. The ability to monitor data trends in real time
  15. Local processing where the data is stored to reduce network bandwidth usage 
Related Content: 13 Must Read Blogs in Data and Analytics

Comments

Popular posts from this blog

How to Fix datetime Import Error in Python Quickly

Explained Ideal Structure of Python Class

How to Check Kafka Available Brokers