Featured Post

Python Regex: The 5 Exclusive Examples

Image
 Regular expressions (regex) are powerful tools for pattern matching and text manipulation in Python. Here are five Python regex examples with explanations: 01 Matching a Simple Pattern import re text = "Hello, World!" pattern = r"Hello" result = re.search(pattern, text) if result:     print("Pattern found:", result.group()) Output: Output: Pattern found: Hello This example searches for the pattern "Hello" in the text and prints it when found. 02 Matching Multiple Patterns import re text = "The quick brown fox jumps over the lazy dog." patterns = [r"fox", r"dog"] for pattern in patterns:     if re.search(pattern, text):         print(f"Pattern '{pattern}' found.") Output: Pattern 'fox' found. Pattern 'dog' found. It searches for both "fox" and "dog" patterns in the text and prints when they are found. 03 Matching Any Digit   import re text = "The price of the

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

Explained Ideal Structure of Python Class

6 Python file Methods Real Usage

How to Decode TLV Quickly