I am keeping these settings for reference purposes and use these settings for quick check. Mapred-site.xml name value description mapred.system.dir /mapred/system No description mapred.job.tracker jobtrackerhost:9010 No description mapred.jobtracker.taskScheduler org.apache.hadoop.mapred. CapacityTaskScheduler mapred.job.tracker.http.address jobtrackerhost:50030 No description mapred.local.dir c:\hdfs\mapred\local No description mapred.job.tracker.history.completed.location No description mapreduce.history.server.embedded true Should job history server be embedded within Job tracker…
HDInsight (Hadoop on Azure) Demo: Submit MapReduce job, process result from Pig and filter final results in Hive
In this demo we will submit a WordCount map reduce job to HDInsight cluster and process the results in Pig and then filter the results in Hive by storing structured results into a table. Step 1: Submitting WordCount MapReduce Job to 4 node HDInsight cluster: c:\apps\dist\hadoop-1.1.0-SNAPSHOT\bin\hadoop.cmd jar c:\apps\Jobs\templates\635000448534317551.hadoop-examples.jar wordcount /user/admin/DaVinci.txt /user/admin/outcount The results are stored @ /user/admin/outcount…
Windows Azure Powershell 0.6.10 is out and check out $DebugPreference feature to get Request and Response on PS console
Windows Azure Powershell 0.6.10 is out.Check out and you can get 0.6.10 installer from the direct link here. There are several new features are added to this release but the best I like is to setup debugging mode to see request and response data on console. A list of changes you can see here. To…
Windows Azure Powershell 0.6.10 is out and check out $DebugPreference feature to get Request and Response on PS console
Windows Azure Powershell 0.6.10 is out.Check out and you can get 0.6.10 installer from the direct link here. There are several new features are added to this release but the best I like is to setup debugging mode to see request and response data on console. A list of changes you can see here. To…
Powershell script to detect the Windows Azure SDK in Azure Cloud Service VM and fix the Powershell execution issue
When you try to run Powershell commands on Windows Azure Cloud Service (PaaS) VM you may have seen exception as below: PS D:\Users\avkash> Add-PSSnapin Microsoft.WindowsAzure.ServiceRuntime Add-PSSnapin : Cannot add Windows PowerShell snap-in Microsoft.WindowsAzure.ServiceRuntime because it is already added. Verify the name of the snap-in and try again. At line:1 char:13 + Add-PSSnapin <<<< Microsoft.WindowsAzure.ServiceRuntime +…
Using Fiddler to decipher Windows Azure PowerShell or REST API HTTPS traffic
If you are using publishsettings with Powershell, you may not be able to decrypt HTTPS traffic. Not sure what the problem is with publishsettings based certificates however I decided to create my own certificate using MAKECERT, and use it with Powershell to get HTTPS decryption working in Fiddler. The following steps are described based on…
Executing Powershell commands in Windows Azure Web or Worker Role VM Instance return exception
When trying to run Windows Azure Powershell commands in Windows Azure VM (Web Role or Worker Role) instance you will hit the following exception: PS D:\Users\avkash> Add-PSSnapin Microsoft.WindowsAzure.ServiceRuntime Add-PSSnapin : Cannot add Windows PowerShell snap-in Microsoft.WindowsAzure.ServiceRuntime because it is already added. Verify the name of the snap-in and try again. At line:1 char:13 + Add-PSSnapin…
Using OS disk VHD to create a new Virtual Machine if OS VHD is still on lease in Windows Azure Virtual Machines
There is a situation Windows Azure Virtual machines where either you have deleted the Virtual Machines for any reason or Virtual Machine is deleted due some other reason. You may have already know that the OS disk vhd is still saved in your Azure Storage because when virtual machine is deleted the OS disk and…
Microsoft Server Products and Microsoft License Mobility for Cloud environment
License Mobility Through Software Assurance: With License Mobility through Software Assurance, you can deploy certain server application licenses purchased under your Volume Licensing agreement in an Authorized Mobility Partner’s datacenter. Extend the value of your server application license by deploying them on-premises or in the cloud. Take advantage of the lowest cost computing infrastructure for…
How does Windows Azure PowerShell import publishsettings using Import-AzurePublishSettingsFile command?
As you already know you can use Windows Azure Powershell to manage your Windows Azure Service. To get it started, you need to setup your development machine to be ready to use Windows Azure PowerShell commands and this is done by downloading the publishsetting file from Windows Azure Management Portal about your account first. …