Definition of Virtual Machine

A conventional computer has a single OS image. This offers a rigid architecture that tightly couples application software to a specific hardware platform. Some software running well on one machine may not be executable on another platform with a different instruction set under a fixed OS. A Virtual machine (VM) offer novel solutions to underutilized resources, application inflexibility, software manageability, […]

Software engineering Ethics Issues of Professional Responsibility

Like other engineering disciplines, software engineering is carried out within a social and legal framework that limits the freedom of people working in that area. As a software engineer, you must accept that your job involves wider responsibilities than simply the application of technical skills. You must also behave in an ethical and morally responsible way if you are to […]

What is MapReduce used for

Now a days MapReduce use mani tech joint company for their data processing. such as: At Google Index construction for Google Search Article clustering for Google News Statistical machine translation wordcount, adwords and pagerank At Yahoo “Web map” powering Yahoo! Search Spam detection for Yahoo! Mail At Facebook Data mining Ad optimization Spam detection At research Astronomical image analysis (Washington) […]

MapReduce Operation step by step | with example

—MapReduce is a programming model Google has used successfully is processing its “big-data” sets (~ 20 petabytes per day). MapReduce requires a distributed file system and an engine that can distribute, coordinate, monitor and gather the results. Hadoop provides that engine through (the file system we discussed earlier) and the JobTracker + TaskTracker system. JobTracker is simply a scheduler. TaskTracker […]

detail of XEN architecture

Xen architecture is an open source hypervisor program developed by Cambridge University. Xen is a microkernel hypervisor, which separates the policy from the mechanism. The Xen hypervisor implements all the mechanisms. leaving the policy to be handled by Domain 0, as shown in figure does not include any device drivers natively.It just provides a mechanism by which a guest OScan […]

What is Hadoop?

Hadoop is a free, open-source software framework for distributed storage and processing of large datasets on clusters of commodity hardware. It was developed by the Apache Software Foundation and is based on the Google File System (GFS) and MapReduce. Hadoop is designed to handle big data, which refers to extremely large datasets that cannot be processed by traditional data processing […]

Server rack setup for Hadoop cluster

This rack setup is idel for Hadoop cluster setup, by which cluser become more fault tolerant. The highest layer of Hadoop is the MapReduce engine that deals with the information stream and control stream of MapReduce occupations over conveyed processing frameworks. Figure shows the MapReduce engine architecture helping out HDFS. Like HDFS, the MapReduce engine also has a master/slave architecture […]

How to retrieve latitude and longitude of a draggable pin via Google Maps API

Latitude and longitude are spherical coordinates used to locate a point on the earth. Many maps do not need to take the curvature of the earth into account. Latitude: Latitude is the Y coordinate and characterizes north-south worldwide position estimated from the equator. Lines of steady latitude are called matches since they characterize a progression of rings corresponding to the […]

how to convert number to text currency in C#

Somnetimes we will get a requirement like converting a number into words. such as: 568.25 = Five Hundred Sixty Eight and Paisa Twenty Five Only. Create a converter class with that code: Example:568.25 = Five Hundred Sixty Eight Only.568.25 = Five Hundred Sixty Eight and Paisa Twenty Five Only. [code lang=”js”]public class converter{static Tuple<int, string>[] powers ={new Tuple<int, string>(0, “”),new Tuple<int, string>(3, […]