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

Microsoft HDInsight for Hadoop Cluster

HDInsight is Microsoft's implementation of a Big Data solution with Apache Hadoop at its core. HDInsight is 100 percent compatible with Apache Hadoop and is built on open source components in conjunction with Hortonworks, a company focused toward getting Hadoop adopted on the Windows platform.

HDINSIGHT


HDInsight Microsoft


Initiate


Basically, Microsoft has taken the open source Hadoop project, added the functionalities needed to make it compatible with Windows (because Hadoop is based on Linux), and submitted the project back to the community. 


All of the components are retested in typical scenarios to ensure that they work together correctly and that there are no versioning or compatibility issues.


Features


Microsoft's Hadoop-based distribution brings the robustness, manageability, and simplicity of Windows to the Hadoop environment. 


The focus is on hardening security through integration with Active Directory, thus making it enterprise ready, simplifying manageability through integration with System Center 2012, and dramatically reducing the time required to set up and deploy via simplified packaging and configuration.


Security


These improvements will enable IT to apply consistent security policies across Hadoop clusters and manage them from a single pane of glass on System Center 2012. Further, Microsoft SQL Server and its powerful BI suite can be leveraged to apply analytics and generate interactive business intelligence reports, all under the same roof. 


Easy Deployment


For the Hadoop-based service on Windows Azure, Microsoft has further lowered the barrier to deployment by enabling the seamless setup and configuration of Hadoop clusters through an easy-to-use, web-based portal and offering Infrastructure as a Service (IaaS).


Microsoft is currently the only company offering scalable Big Data solutions in the cloud and for on-premises use. These solutions are all built on a common Microsoft Data Platform with familiar and powerful BI tools.


HDInsight is available in two flavors



1. Windows Azure HDInsight Service



This is a service available to Windows Azure subscribers that uses Windows Azure clusters and integrates with Windows Azure storage. 


An Open Database Connectivity (ODBC) driver is available to connect the output from HDInsight queries to data analysis tools.


2. Windows Azure HDInsight Emulator



This is a single-node, single-box product that you can install on Windows Server 2012, or in your Hyper-V virtual machines.

 
The purpose of the emulator is to provide a development environment for use in testing and evaluating your solution before deploying it to the cloud. 


You save money by not paying for Azure hosting until after your solution is developed and tested and ready to run. The emulator is available for free and will continue to be a single-node offering.

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