Getting Started Using HBase in Microsoft Azure HDInsight

Size: px
Start display at page:

Download "Getting Started Using HBase in Microsoft Azure HDInsight"

Transcription

1 Getting Started Using HBase in Microsoft Azure HDInsight

2 Contents Overview and Azure account requrements... 3 Create an HDInsight cluster for HBase... 5 Create a Twitter application ID... 9 Configure and run a Twitter streaming service Explore the simple streaming application Explore the web application Conclusion Roll back Azure changes Terms of use Getting Started Using HBase in Microsoft Azure HDInsight

3 Overview and Azure account requrements Estimated time to complete lab is minutes. Overview Social web sites are one of the major driving forces for Big Data adoption. Public APIs provided by sites like Twitter are a useful source of data for analyzing and understanding popular trends. In this tutorial, you will develop a console streaming service application and an ASP.NET Web application to perform the following: Get geo-tagged Tweets in real-time using the Twitter streaming API. Evaluate the sentiment of these Tweets. Store the sentiment information in HBase using the Microsoft HBase SDK. Plot the real-time statistical results on Bing maps using an ASP.NET Web application. A visualization of the tweets will look something like this: DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 3

4 You will be able to query tweets with certain keywords to get a sense of the expressed opinion in tweets is positive, negative, or neutral. In this lab, you will do the following: 1. Create an HDInsight cluster with HBase. 2. Create a Twitter application ID for your Twitter account. 3. Run a simple Twitter streaming service console application to create an HBase table and add Twitter data with the location information. 4. Review the simple Twitter streaming service to see how it works. 5. Review the web application that displays the location tagged tweets for a search term to see how it works. 6. Run the web application locally. 7. Clean up your Azure environment. Azure account requirements While carrying all of the exercises within this hands on lab you will either be making use of the the Azure Management portal at To perform this lab, you will require a Microsoft Azure account. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 4

5 If you do not have an Azure account, you can request a free trial version by going to Within the one-month trial version, you can perform other SQL Server 2014 hands on labs along with other tutorials available on Azure. Note, to sign up for a free trial, you will need a mobile device that can receive text messages and a valid credit card. Be sure to follow the Roll back Azure changes section at the end of this exercise after creating the Azure database so that you can make the most use of your $200 free Azure credit. Create an HDInsight cluster for HBase In this section, you will create an HDInsight cluster with HBase enabled for storing the Twitter data. Connect to SQLONE computer 1. Click on SQL2014DEMO-SQLO button on right side of the screen to connect to the SQLONE computer. Note, if you have a monitor that supports a larger screen resolution than 1024 x 768, you can change the screen resolution for the lab to go as high as 1920 x By going to a higher screen resolution, it will be easier to use SQL Server Management Studio. 2. Right click on the desktop and click on Screen resolution. 3. Select 1366 x 786 (a good minimum screen size for using SSMS) and click OK. 4. Click Keep Changes. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 5

6 5. Resize the client hollaunchpad Online window for the lab to fit your screen resolution. 6. During the setup you will need to record credentials and server locations. Open notepad.exe to keep track of information Create an Azure Storage Account If you already have a storage account setup, you can use it for your HDInsight cluster. Otherwise, you can use the instructions in the following section to create a storage account. 1. Go to your Azure Management Portal. 2. Click on the Storage icon on the left navigation bar. 3. Click + NEW 4. Click QUICK CREATE 5. For URL, use the first 7 characters of your Microsoft ID used for accessing the Azure account followed by hbase. For example, hdidemohbase The storage account name must be unique within Azure, so you need a way to make a meaningful unique name. 6. Select West US for the LOCATION/AFFINITY GROUP. You must use the same location that you used for creating the Azure SQL Database server for the Export feature to work. 7. Select Locally Redundant for the REPLICATION. Azure supports Geo-Redundant for high availability, but you don t need this for the demo. 8. Click the CREATE STORAGE ACCOUNT check mark to create the account. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 6

7 Once the storage account is created, proceed to the next step. Create an HDInsight Cluster 1. Click on HDINSIGHT in the navigation pane on the left. 2. In the grey options pane at the bottom, click on +NEW then HBASE DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 7

8 3. Enter in the following information for the cluster: CLUSTER NAME: <use your storage account> ex. hdidemohbase CLUSTER SIZE: 1 data node, this is to save Azure cost for lab SUBSCRIPTION: <use default> CONFIRM PASSWORD: Pass@word12 STORAGE ACCOUNT: <use your storage account> ex. hdidemohbase DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 8

9 4. Click the check in the lower right corner to continue. It will take approximately 10 minutes to create the cluster, so now would be a good time to create your Twitter application. Create a Twitter application ID Create a Twitter application ID and secrets In this section, you will create an application ID and API secrets that will be used in the streaming application. If you do not have a Twitter account, you will need to create one at This lab assumes you already have a Twitter account. The Twitter Streaming APIs use OAuth to authorize requests. The first step to use OAuth is to create a new application on the Twitter Developer site. 1. Sign in to 2. Click the Sign up now link if you don't have a Twitter account. 3. Click Create New App. 4. Enter Name, Description, Website. The Website field is not really used. It doesn't have to be a valid URL. For example: Name: MyHBaseAPP note: the name must be unique Description: <Put in any value> Website: DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 9

10 5. Check Yes, I agree, and then click Create your Twitter application. 6. Click the Permissions tab. The default permission is Read only. This is sufficient for this tutorial. 7. Click the API Keys tab. 8. Click Create my access token. 9. Click Test OAuth in the upper right corner of the page. 10. Write down Consumer key, Consumer secret, Access token, and Access token secret. You will need the values later in the tutorial. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 10

11 Configure and run a Twitter streaming service Configure the simple Twitter streaming service application In this section you will open the Twitter streaming service Visual Studio 2013 solution and configure the passwords and keys used to connect to the HDInsight cluster you created along with the Twitter credentials. 1. Open Visual Studio 2013 by clicking on the Visual Studio icon on the toolbar. 2. On the Start Page, click on tweet-sentiment under Recent projects. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 11

12 3. You should see the App.config file opened up in the editor. If the App.config file is not open, click on the Solution Explorer and under the SimpleStreamingService project, double-click App.config to open it up. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 12

13 4. Within the <appsetting> section of the code, replace the values with your Twitter API keys and secrets. 5. Using the example below, the settings should be similar to the image below. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 13

14 Configure the HDInsight HBase information 1. Right click on the Notepad icon on the taskbar and click credentials.txt. 2. This file C:\SQLPROGRAMS\E4\GitRemote\tweetsentiment\tweet-sentiment\SimpleStreamingService directory and contains three lines that represents the credentials needed to connect to your HDInsight HBase cluster. Replace the selected cluster name with the name of the cluster you created. For example: hdidemohbase 3. Close the file and save your changes. Build the SimpleStreamingService project 1. Right click on the SimpleStreamingService project in the Solution Explorer and click Build. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 14

15 2. In the Output window, select the text C:\SQLPROGRAMS\E4\GitRemote\tweet-sentiment\tweetsentiment\SimpleStreamingService\bin\Release\Simpl estreamingservice.exe and copy it to the clipboard. Make sure your HDInsight cluster is running 1. Go to Internet Explorer and click on HDINSIGHT on the left navigation pane within the Azure portal. Locate your server and verify that the STATUS is shown as Running. If the cluster is not running, please wait for it to complete before proceeding. Feel free to read ahead to see what s coming up. Run the SimpleStreamingSerivce console application DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 15

16 1. Press the Windows key + R to open the Run window and paste in the program name you just copied. 2. Click OK to run the application. After approximately 30 seconds, you should see the text Table "tweets_by_words" created. Then, about 15 seconds later, you should see tweet information scrolling in the console window. Keep the console window open thru the duration of the lab so that it can populate the HBase Let s now explore the SimpleStreamingService application that is described in the Azure tutorial at DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 16

17 Explore the simple streaming application SDK Refrences 1. The file that defines the Tweeter streaming service class is HBaseWriter.cs and should already be open in the project. If it is not, double click on the file in the Solution Explorer to open it up. 2. The highlighted assembly references support the HBase and Twitter APIs. In order to add these to a new project, you need to install two packages: TweetinivAPI and protobuf-net. For a new project, you would need to perform the following steps you don t need to do steps 3 through 11 for this lab. 3. From the Tools menu, click Nuget Package Manager, and then click Package Manager Console. The console panel will open at the bottom of the page. 4. Use the following commands to install the Tweetinvi package, which is used to access the Twitter API, and the Protobuf-net package, which is used to serialize and deserialize objects. Install-Package TweetinviAPI Install-Package protobuf-net NOTE: The Microsoft HBase SDK Nuget package is not available as of October 15th, The Github repo is Until the SDK is available, you must build the dll yourself. For instructions, see Get started using HBase with Hadoop in HDInsight. 9. From Solution Explorer, right-click References, and then click Add Reference. 10. In the left pane, expand Assemblies, and then click Framework. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 17

18 11. In the right pane, select the checkbox in front of System.Configuration, and then click OK. DictionaryItem class The dictionary class is used to parse the supplied Twitter dictionary sentiment file with terms that will be used to compare against incoming tweets. 1. To view the class definition, click on the Class dropdown and select SimpleStreamingService.DictionaryItem. 2. This class structure is used to parse the sentiment dictionary file. The data is used to calculate sentiment score for each Tweet. 3. To preview the dictionary file, right click on the Notepad toolbar button and click dictionary.tsv. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 18

19 4. The dictionary.tsv file contains the words used for the comparison as shown below. You can close the file once you have completed previewing the contents. 5. Switch back to Visual Studio and then search for private void LoadDictionary(). This method reads the text and loads them into a Dictionary object used for comparing the tweets. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 19

20 6. Search for the private int CalcSentimentScore method. This method performs the dictionary lookup to compute the sentiment score. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 20

21 Understanding the HBaseWriter class The role of the HBaseWriter class is to read in the HDInsight credentials, create the HBase table, load the dictionary and start processing the tweets. 1. Scroll up to the top of the HBaseWriter file to review the HBaseWriter() method. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 21

22 2. The private void CreateTweetByWordsCells method takes the incoming tweet, parses the words using the _punctiationchars and then creates HBase cell values for the row representing the tweet. See the code below. The highlighted d: items below represent the HBase columns within the d ColumnSchema shown above. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 22

23 1])); private void CreateTweetByWordsCells(CellSet set, ITweet tweet) { var words = tweet.text.tolower().split(_punctuationchars); int sentimentscore = CalcSentimentScore(words); var word_pairs = words.take(words.length - 1).Select((word, idx) => string.format("{0} {1}", word, words[idx + var all_words = words.concat(word_pairs).tolist(); foreach (var word in all_words) { var time_index = (ulong.maxvalue - (ulong)tweet.createdat.tobinary()).tostring().padleft(20) + tweet.idstr; var key = word + "_" + time_index; var row = new CellSet.Row { key = Encoding.UTF8.GetBytes(key) }; var value = new Cell { column = Encoding.UTF8.GetBytes("d:id_str"), data = Encoding.UTF8.GetBytes(tweet.IdStr) }; row.values.add(value); value = new Cell { column = Encoding.UTF8.GetBytes("d:lang"), data = Encoding.UTF8.GetBytes(tweet.Language.ToString()) }; row.values.add(value); if (tweet.coordinates!= null) { var str = tweet.coordinates.longitude.tostring() + "," + tweet.coordinates.latitude.tostring(); value = new Cell { column = Encoding.UTF8.GetBytes("d:coor"), data = Encoding.UTF8.GetBytes(str) }; row.values.add(value); } value = new Cell { column = Encoding.UTF8.GetBytes("d:sentiment"), data = Encoding.UTF8.GetBytes(sentimentScore.ToString()) }; row.values.add(value); } } set.rows.add(row); 7. You can review the rest of the file. Exploring program.cs 1. Program.cs is the console application that starts the streaming process using the following assembly references. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 23

24 2. The Main method reads in the Twitter API settings from App.config and then runs the Stream_FIlteredStreamExample() method. 3. The Stream_FilteredStreamExample() method shown below sets up a tweeter feed with any tweets that have location data using the Geo.GenerateLocation() method highlighted below. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 24

25 private static void Stream_FilteredStreamExample() { for (; ; ) { try { var hbase = new HBaseWriter(); var stream = Stream.CreateFilteredStream(); var location = Geo.GenerateLocation(-180, -90, 180, 90); stream.addlocation(location); var tweetcount = 0; var timer = Stopwatch.StartNew(); stream.matchingtweetreceived += (sender, args) => { tweetcount++; var tweet = args.tweet; hbase.writetweet(tweet); if (timer.elapsedmilliseconds > 1000) { if (tweet.coordinates!= null) { Console.WriteLine("{0}: {1} {2}", tweet.id, tweet.language.tostring(), tweet.text); Console.WriteLine("\tLocation: {0}, {1}", tweet.coordinates.longitude, tweet.coordinates.latitude); } } timer.restart(); Console.WriteLine("===== Tweets/sec: {0} =====", tweetcount); tweetcount = 0; /*IEnumerable<ILocation> matchinglocations = args.tweet.; foreach (var matchinglocation in matchinglocations) { Console.Write("({0}, {1}) ;", matchinglocation.coordinate1.latitude, matchinglocation.coordinate1.longitude); Console.WriteLine("({0}, {1})", matchinglocation.coordinate2.latitude, matchinglocation.coordinate2.longitude); }*/ }; stream.startstreammatchingallconditions(); } catch (Exception ex) { Console.WriteLine("Exception: {0}", ex.message); } DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 25

26 } } 4. The stream.matchingtweetreceived line reads the tweet, performs the sentiment lookup and then returns the HBase columns as args. The hbase.writetweet command then writes the tweet to the HBase table. This process continues until you close the console window. Explore the web application Setting up credentials to run the web application The web application needs the credentials to the HDInsight cluster so it can access the data in the HBase table. 1. Click on the Web.config tab in the Visual Studio editor. If it is not already open, you can double click on the Web.config file under the WebApp project. 2. Change the Cluster and Pwd keys under the appsettings to specify your HDInsight cluster as shown below. Leave the User key as admin. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 26

27 Debug the web application Let s test run the web application so that you can see it in action and then walk through the key elements of the program. 1. You should have enough data from Twitter loading into your HBase table. Go ahead and close the console window. 2. Go back to Visual Studio, right click on the WebApp project in the Solution Explorer and click Debug > Start new instance. 3. You should see Internet Explorer open against your localhost with a Bing map in the client region. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 27

28 4. Change the search term to love and click Go. Then, click on the Positive, Neutral and Negative buttons to see the total number of tweets along with the Positive/Negative Ratio. 5. After trying a few other terms, you can close the browser window to exit the debug process. About the WebApp ASP.NET MVC Web application The WebApp was created using an ASP.NET MVC Web application to read the real-time sentiment data from HBase and plot the data on Bing maps. If you wanted to create a new application from scratch, you would perform the following steps to get started. You do not need to perform these steps for the lab. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 28

29 1. Open Visual Studio. 2. Click File, click New, and then click Project. 3. Type or enter the following: o o o o Template category: Visual C#/Web Template: ASP.NET Web Application Name: TweetSentimentWeb Location: C:\Tutorials 4. Click OK. 5. In Select a template, click MVC. 6. In Windows Azure, click Manage Subscriptions. 7. From Manage Windows Azure Subscriptions, click Sign in. 8. Enter your Azure credential. Your Azure subscription information will be shown on the Accounts tab. 9. Click Close to close the Manage Windows Azure Subscriptions window. 10. From New ASP.NET Project - TweetSentimentWeb, Click OK. 11. From Configure Windows Azure Site Settings, select the Region that is closer to you. You don't need to specify a database server. 12. Click OK. 13. From the Tools menu, click Nuget Package Manager, and then click Package Manager Console. The console panel is opened at the bottom of the page. 14. Use the following command to install the Protobuf-net package, which is used to serialize and deserialize objects. Install-Package protobuf-net Programs, classes and methods of interest 1. Under the WebApp, expand the Models folder and click on HbaseReader.cs to open it. This program sets up the connection to the HDInsight HBase table and then searches by DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 29

30 the keyword to return the d:coor and d:sentiment values for displaying on the Bing map. public async Task<IEnumerable<Tweet>> QueryTweetsByKeywordAsync(string keyword) { var list = new List<Tweet>(); var time_index = (ulong.maxvalue - (ulong)datetime.utcnow.subtract(new TimeSpan(6, 0, 0)).ToBinary()).ToString().PadLeft(20); var startrow = keyword + "_" + time_index; var endrow = keyword + " "; var scansettings = new Scanner { batch = , startrow = Encoding.UTF8.GetBytes(startRow), endrow = Encoding.UTF8.GetBytes(endRow) }; ScannerInformation scannerinfo = await client.createscannerasync(tablebywordsname, scansettings); CellSet next; while ((next = await client.scannergetnextasync(scannerinfo))!= null) { foreach (CellSet.Row row in next.rows) { var coordinates = row.values.find(c => Encoding.UTF8.GetString(c.column) == "d:coor"); if (coordinates!= null) { var lonlat = Encoding.UTF8.GetString(coordinates.data).Split(','); var sentimentfield = row.values.find(c => Encoding.UTF8.GetString(c.column) == "d:sentiment"); var sentiment = 0; if (sentimentfield!= null) { sentiment = Convert.ToInt32(Encoding.UTF8.GetString(sentimentField.data)); } } list.add(new Tweet { Longtitude = Convert.ToDouble(lonlat[0]), Latitude = Convert.ToDouble(lonlat[1]), Sentiment = sentiment }); } } if (coordinates!= null) { var lonlat = Encoding.UTF8.GetString(coordinates.data).Split(','); } DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 30

31 } return list; 2. Under the WebApp project, expand the Controllers folder and click on TweetsController.cs file to view it. This is the main program that will sets up the HBase reader and performs the query. 3. Expand the Scripts folder and click on the headmap.js file. The code was written by Alastair Aitchison to display heat map information using Bing. For more information, see heatmap-library/. 4. Under the Scripts folder, click on the twitterstream.js file. This script initializes the Bing map and plots the tweets from HBase as a heat map. 5. Expand the Views and Shared folders and click on the _Layout.cshtml file. This file sets up the navigation bar for the web site. 6. Expand the Views and Home folder and click on the Index.cshtml file. This sets up the title for the page that is displayed in the IE tab. 7. Expand the Content folder and click on the Site.css file. This sets up the page to display the Bing map within the sized browser window. 8. Under the WebApp folder, click on the Global.aspx file. This is the main application file which registers the API routes to make Web API controller work inside of the MVC application. Conclusion In this lab, you learned how to: Create an Azure storage account and HDInsight HBase cluster to store Twitter search results. Create an application to read in the streaming tweets, score the sentiment of the tweet based on a dictionary lookup of the words in the tweet, and write the results to an HBase table. Create an ASP.NET MVC Web application to read the real-time sentiment data from HBase and plot the data on Bing maps. Optionally, you can deploy the application to an Azure Web site. For instructions, see Get started with Azure Web Sites and ASP.NET. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 31

32 To learn more about HBase on Azure, see Get started using HBase with Hadoop in HDInsight tutorial. Roll back Azure changes Let s clean up the assets we have used during this hands on lab. Here are the items which should be deleted from your subscription: Delete the HDInsight cluster 1. Go to the Azure Portal 2. Click on the HDINSIGHT tab on the left hand side 3. Click on the cluster name you used for this lab to display the cluster getting started page. 4. Click on the DELETE command and then click YES to confirm. Delete the storage account This is the storage account created for the HDInsight cluster. For example: hdidemohbase. Delete it following these steps. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 32

33 1. Select the Storage tab on the left hand side 2. Click anywhere in the row of the storage, except within the name cell as this will navigate into the account 3. Click Delete 4. Confirm the storage account match the one created within this hands on lab by clicking Yes Terms of use 2014 Microsoft Corporation. All rights reserved. By using this Hands-on Lab, you agree to the following terms: The technology/functionality described in this Hands-on Lab is provided by Microsoft Corporation in a sandbox testing environment for purposes of obtaining your feedback and to provide you with a learning experience. You may only use the Hands-on Lab to evaluate such technology features and functionality and provide feedback to Microsoft. You may not use it for any other purpose. You may not modify, copy, distribute, transmit, display, perform, reproduce, publish, license, create derivative works from, transfer, or sell this Hands-on Lab or any portion thereof. COPYING OR REPRODUCTION OF THE HANDS-ON LAB (OR ANY PORTION OF IT) TO ANY OTHER SERVER OR LOCATION FOR FURTHER REPRODUCTION OR REDISTRIBUTION IS EXPRESSLY PROHIBITED. THIS HANDS-ONLAB PROVIDES CERTAIN SOFTWARE TECHNOLOGY/PRODUCT FEATURES AND FUNCTIONALITY, INCLUDING POTENTIAL NEW FEATURES AND CONCEPTS, IN A SIMULATED ENVIRONMENT WITHOUT COMPLEX SET-UP OR INSTALLATION FOR THE PURPOSE DESCRIBED ABOVE. THE TECHNOLOGY/CONCEPTS REPRESENTED IN THIS HANDS-ON LAB MAY NOT REPRESENT FULL FEATURE FUNCTIONALITY AND MAY NOT DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 33

34 WORK THE WAY A FINAL VERSION MAY WORK. WE ALSO MAY NOT RELEASE A FINAL VERSION OF SUCH FEATURES OR CONCEPTS. YOUR EXPERIENCE WITH USING SUCH FEATURES AND FUNCITONALITY IN A PHYSICAL ENVIRONMENT MAY ALSO BE DIFFERENT. FEEDBACK. If you give feedback about the technology features, functionality and/or concepts described in this Hands-on Lab to Microsoft, you give to Microsoft, without charge, the right to use, share and commercialize your feedback in any way and for any purpose. You also give to third parties, without charge, any patent rights needed for their products, technologies and services to use or interface with any specific parts of a Microsoft software or service that includes the feedback. You will not give feedback that is subject to a license that requires Microsoft to license its software or documentation to third parties because we include your feedback in them. These rights survive this agreement. MICROSOFT CORPORATION HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS WITH REGARD TO THE HANDS-ON LAB, INCLUDING ALL WARRANTIES AND CONDITIONS OF MERCHANTABILITY, WHETHER EXPRESS, IMPLIED OR STATUTORY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON- INFRINGEMENT. MICROSOFT DOES NOT MAKE ANY ASSURANCES OR REPRESENTATIONS WITH REGARD TO THE ACCURACY OF THE RESULTS, OUTPUT THAT DERIVES FROM USE OF THE VIRTUAL LAB, OR SUITABILITY OF THE INFORMATION CONTAINED IN THE VIRTUAL LAB FOR ANY PURPOSE. DISCLAIMER This lab contains only a portion of new features and enhancements in Microsoft SQL Server Some of the features might change in future releases of the product. In this lab, you will learn about some, but not all, new features. DBI-IL202 Getting Started Using HBase in Microsoft Azure HDInsight 34

Exploring Online Database Operations

Exploring Online Database Operations Exploring Online Database Operations Contents Managed lock priorities for partition switch... 3 Managed lock priorities index rebuild... 13 Terms of use... 21 Exploring Online Database Operations Managed

More information

Advanced Analytics Lab: Prerequisite activity

Advanced Analytics Lab: Prerequisite activity ` Advanced Analytics Lab: Prerequisite activity Contents Overview... 3 Create the VM... 4 Create an Azure ML Workspace... 13 Terms of Use... 15 Overview Summary In the coming weeks you will be taking part

More information

Introduction to Azure Machine Learning

Introduction to Azure Machine Learning Introduction to Azure Machine Learning Contents Overview... 3 Create a Workspace and Experiment... 5 Explore and Visualize Data... 10 Create a Simple Predictive Model... 14 Exercises... 25 Terms of Use...

More information

Lab 01. Creating and Exploring a Microsoft Power BI Dashboard

Lab 01. Creating and Exploring a Microsoft Power BI Dashboard Lab 01 Creating and Exploring a Microsoft Power BI Dashboard Overview The estimated time to complete lab is 30 minutes In this lab, you will create a Microsoft Power BI dashboard to report on the US sales

More information

Dashboard in an Hour. by Power BI Team, Microsoft. Version: Copyright 2015 Microsoft 1 P a g e

Dashboard in an Hour. by Power BI Team, Microsoft. Version: Copyright 2015 Microsoft 1 P a g e Dashboard in an Hour by Power BI Team, Microsoft Version: 07.15.2017 Copyright 2015 Microsoft 1 P a g e Contents Problem Statement... 3 Document Structure... 3 Prerequisites... 4 Power BI Desktop - Get

More information

Processing Big Data with Hadoop in Azure HDInsight

Processing Big Data with Hadoop in Azure HDInsight Processing Big Data with Hadoop in Azure HDInsight Lab 4C Using the.net Framework Overview In this lab, you will use the Microsoft.NET Framework to serialize and upload data to Azure storage, and to initiate

More information

6/29/ :38 AM 1

6/29/ :38 AM 1 6/29/2017 11:38 AM 1 Creating an Event Hub In this lab, you will create an Event Hub. What you need for this lab An Azure Subscription Create an event hub Take the following steps to create an event hub

More information

This walkthrough assumes you have completed the Getting Started walkthrough and the first lift and shift walkthrough.

This walkthrough assumes you have completed the Getting Started walkthrough and the first lift and shift walkthrough. Azure Developer Immersion In this walkthrough, you are going to put the web API presented by the rgroup app into an Azure API App. Doing this will enable the use of an authentication model which can support

More information

Developing Intelligent Apps

Developing Intelligent Apps Developing Intelligent Apps Lab 1 Creating a Simple Client Application By Gerry O'Brien Overview In this lab you will construct a simple client application that will call an Azure ML web service that you

More information

Provisioning Databases

Provisioning Databases DAT219x Provisioning Databases Lab 00 Getting Started Estimated time to complete this lab is 60 minutes Overview In this lab, you will provision a Microsoft Azure Virtual Machine (VM) that will be used

More information

Processing Big Data with Hadoop in Azure HDInsight

Processing Big Data with Hadoop in Azure HDInsight Processing Big Data with Hadoop in Azure HDInsight Lab 4A Using Sqoop Overview In this lab, you will use Sqoop to transfer the results of data processing in HDInsight to Azure SQL Database. HDInsight provides

More information

Integrate Microsoft Office 365. EventTracker v8.x and above

Integrate Microsoft Office 365. EventTracker v8.x and above EventTracker v8.x and above Publication Date: March 5, 2017 Abstract This guide provides instructions to configure Office 365 to generate logs for critical events. Once EventTracker is configured to collect

More information

Processing Big Data with Hadoop in Azure HDInsight

Processing Big Data with Hadoop in Azure HDInsight Processing Big Data with Hadoop in Azure HDInsight Lab 3A Using Pig Overview In this lab, you will use Pig to process data. You will run Pig Latin statements and create Pig Latin scripts that cleanse,

More information

CAD PPE Hands-on Lab Day 1. Modern App

CAD PPE Hands-on Lab Day 1. Modern App CAD PPE Hands-on Lab Day 1 Modern App October 2016 2016 Microsoft Corporation. All rights reserved. This document is confidential and proprietary to Microsoft. Internal use only. This document is for informational

More information

Azure Developer Immersions Application Insights

Azure Developer Immersions Application Insights Azure Developer Immersions Application Insights Application Insights provides live monitoring of your applications. You can detect and diagnose faults and performance issues, as well as discover how users

More information

ReportPlus Embedded Web SDK Guide

ReportPlus Embedded Web SDK Guide ReportPlus Embedded Web SDK Guide ReportPlus Web Embedding Guide 1.4 Disclaimer THE INFORMATION CONTAINED IN THIS DOCUMENT IS PROVIDED AS IS WITHOUT ANY EXPRESS REPRESENTATIONS OF WARRANTIES. IN ADDITION,

More information

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Ed-Fi ODS and Ed-Fi ODS API Version 2.0 - Technical Preview January 2015 2014-2015 Ed-Fi Alliance, LLC. All rights reserved. Ed-Fi is a registered trademark

More information

Databases in Azure Practical Exercises

Databases in Azure Practical Exercises Databases in Azure Practical Exercises Overview This course includes optional exercises where you can try out the techniques demonstrated in the course for yourself. This guide lists the steps for the

More information

Applied Machine Learning

Applied Machine Learning Applied Machine Learning Lab 3 Working with Text Data Overview In this lab, you will use R or Python to work with text data. Specifically, you will use code to clean text, remove stop words, and apply

More information

Azure 209x Practical Exercises Overview

Azure 209x Practical Exercises Overview Azure 209x Practical Exercises Overview This course includes optional exercises where you can try out the techniques demonstrated in the course for yourself. This guide lists the steps for the individual

More information

Partner Integration Portal (PIP) Installation Guide

Partner Integration Portal (PIP) Installation Guide Partner Integration Portal (PIP) Installation Guide Last Update: 12/3/13 Digital Gateway, Inc. All rights reserved Page 1 TABLE OF CONTENTS INSTALLING PARTNER INTEGRATION PORTAL (PIP)... 3 DOWNLOADING

More information

SelectSurvey.NET Developers Manual

SelectSurvey.NET Developers Manual Developers Manual (Last updated: 5/6/2016) SelectSurvey.NET Developers Manual Table of Contents: SelectSurvey.NET Developers Manual... 1 Overview... 2 Before Starting - Is your software up to date?...

More information

<Partner Name> RSA ARCHER GRC Platform Implementation Guide. RiskLens <Partner Product>

<Partner Name> RSA ARCHER GRC Platform Implementation Guide. RiskLens <Partner Product> RSA ARCHER GRC Platform Implementation Guide 2.4.1 Wesley Loeffler, RSA Engineering Last Modified: April 25 th, 2018 2.4 Solution Summary The & Archer integration connects

More information

HOW TO BUILD YOUR FIRST ROBOT

HOW TO BUILD YOUR FIRST ROBOT Kofax Kapow TM HOW TO BUILD YOUR FIRST ROBOT INSTRUCTION GUIDE Table of Contents How to Make the Most of This Tutorial Series... 1 Part 1: Installing and Licensing Kofax Kapow... 2 Install the Software...

More information

Azure Application Deployment and Management: Service Fabric Create and Manage a Local and Azure hosted Service Fabric Cluster and Application

Azure Application Deployment and Management: Service Fabric Create and Manage a Local and Azure hosted Service Fabric Cluster and Application Azure Application Deployment and Management: Service Fabric Create and Manage a Local and Azure hosted Service Fabric Cluster and Application Overview This course includes optional practical exercises

More information

Processing Big Data with Hadoop in Azure HDInsight

Processing Big Data with Hadoop in Azure HDInsight Processing Big Data with Hadoop in Azure HDInsight Lab 3B Using Python Overview In this lab, you will use Python to create custom user-defined functions (UDFs), and call them from Hive and Pig. Hive provides

More information

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ]

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] Version 5.3 [ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] https://help.pentaho.com/draft_content/version_5.3 1/30 Copyright Page This document supports Pentaho Business Analytics

More information

Participant Handbook

Participant Handbook Participant Handbook Table of Contents 1. Create a Mobile application using the Azure App Services (Mobile App). a. Introduction to Mobile App, documentation and learning materials. b. Steps for creating

More information

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Lecture 12 Tutorial 3 Part 1 Twitter API In this tutorial, we will learn

More information

Bringing Together One ASP.NET

Bringing Together One ASP.NET Bringing Together One ASP.NET Overview ASP.NET is a framework for building Web sites, apps and services using specialized technologies such as MVC, Web API and others. With the expansion ASP.NET has seen

More information

USER GUIDE Azure Factory

USER GUIDE Azure Factory 2011 USER GUIDE Azure Factory Contents Setting up a Windows Azure Account... 2 Setting up your Server... 3 Creating a Database... 4 Manage the Database... 6 Generating the Azure Factory Project... 9 Publishing

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

October J. Polycom Cloud Services Portal

October J. Polycom Cloud Services Portal October 2018 3725-42461-001J Polycom Cloud Services Portal Copyright 2018, Polycom, Inc. All rights reserved. No part of this document may be reproduced, translated into another language or format, or

More information

Course CLD221x: Enabling Office 365 Clients

Course CLD221x: Enabling Office 365 Clients Course CLD221x: Enabling Office 365 Clients Student Lab Manual Lab Design There are five exercises in this lab, each of which contains one or more tasks. For a successful outcome to the lab, the exercises

More information

Create Your First Print-Quality Reports

Create Your First Print-Quality Reports Create Your First Print-Quality Reports This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision August 28, 2013, copyright 2013 Pentaho

More information

How to use IBM/Softlayer Object Storage for Offsite Backup

How to use IBM/Softlayer Object Storage for Offsite Backup IBM/Softlayer Object Storage for Offsite Backup How to use IBM/Softlayer Object Storage for Offsite Backup How to use IBM/Softlayer Object Storage for Offsite Backup IBM/Softlayer Object Storage is a redundant

More information

Hands-On Lab. Launching Contextual Conversations from the Lync Controls. Lab version: 1.0 Last updated: 12/17/2010

Hands-On Lab. Launching Contextual Conversations from the Lync Controls. Lab version: 1.0 Last updated: 12/17/2010 Hands-On Lab Launching Contextual Conversations from the Lync Controls Lab version: 1.0 Last updated: 12/17/2010 CONTENTS OVERVIEW... 3 System Requirements 3 EXERCISE 1: INTEGRATE LAUNCH LINK AND DATA

More information

Lab - Share Resources in Windows

Lab - Share Resources in Windows Introduction In this lab, you will create and share a folder, set permissions for the shares, create a Homegroup and a Workgroup to share resources, and map a network drive. Due to Windows Vista lack of

More information

Microsoft Cloud Workshop

Microsoft Cloud Workshop Microsoft Cloud Workshop Hands-on lab step-by-step January 2018 Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless otherwise

More information

Azure for On-Premises Administrators Practice Exercises

Azure for On-Premises Administrators Practice Exercises Azure for On-Premises Administrators Practice Exercises Overview This course includes optional practical exercises where you can try out the techniques demonstrated in the course for yourself. This guide

More information

BlueMix Hands-On Workshop

BlueMix Hands-On Workshop BlueMix Hands-On Workshop Lab E - Using the Blu Big SQL application uemix MapReduce Service to build an IBM Version : 3.00 Last modification date : 05/ /11/2014 Owner : IBM Ecosystem Development Table

More information

Azure Archival Installation Guide

Azure Archival Installation Guide Azure Archival Installation Guide Page 1 of 23 Table of Contents 1. Add Dynamics CRM Active Directory into Azure... 3 2. Add Application in Azure Directory... 5 2.1 Create application for application user...

More information

Cloud Enabling.NET Client Applications ---

Cloud Enabling.NET Client Applications --- Cloud Enabling.NET Client Applications --- Overview Modern.NET client applications have much to gain from Windows Azure. In addition to the increased scalability and reliability the cloud has to offer,

More information

Before you start proceeding with this tutorial, we are assuming that you are already aware about the basics of Web development.

Before you start proceeding with this tutorial, we are assuming that you are already aware about the basics of Web development. About the Tutorial This tutorial will give you an idea of how to get started with SharePoint development. Microsoft SharePoint is a browser-based collaboration, document management platform and content

More information

Office 365. Exporting and Importing Safe and Blocked Senders List

Office 365. Exporting and Importing Safe and Blocked Senders List Office 365 Exporting and Importing Safe and Blocked Senders List Table of Contents Exporting Safe and Blocked Senders List... 3 Exporting Safe Senders List... 3 Exporting Blocked Senders List... 8 Importing

More information

SQream Dashboard Version SQream Technologies

SQream Dashboard Version SQream Technologies SQream Dashboard Version 1.1.0 SQream Technologies 2018-11-06 Table of Contents Overview................................................................................... 1 1. The SQream Dashboard...................................................................

More information

Integrate Microsoft ATP. EventTracker v8.x and above

Integrate Microsoft ATP. EventTracker v8.x and above EventTracker v8.x and above Publication Date: August 20, 2018 Abstract This guide provides instructions to configure a Microsoft ATP to send its syslog to EventTracker Enterprise. Scope The configurations

More information

Hands-On Lab. Windows Azure Virtual Machine Roles. Lab version: Last updated: 12/14/2010. Page 1

Hands-On Lab. Windows Azure Virtual Machine Roles. Lab version: Last updated: 12/14/2010. Page 1 Hands-On Lab Windows Azure Virtual Machine Roles Lab version: 2.0.0 Last updated: 12/14/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING AND DEPLOYING A VIRTUAL MACHINE ROLE IN WINDOWS AZURE...

More information

USER GUIDE Deployment

USER GUIDE Deployment 2011 USER GUIDE Deployment This article will provide instructions on how to deploy your Code On Time application to a server. Our examples use the Northwind sample database and a Windows Virtual Private

More information

Developing Microsoft Azure Solutions (70-532) Syllabus

Developing Microsoft Azure Solutions (70-532) Syllabus Developing Microsoft Azure Solutions (70-532) Syllabus Cloud Computing Introduction What is Cloud Computing Cloud Characteristics Cloud Computing Service Models Deployment Models in Cloud Computing Advantages

More information

Microsoft Cloud Workshop. Intelligent Analytics Hackathon Learner Guide

Microsoft Cloud Workshop. Intelligent Analytics Hackathon Learner Guide Microsoft Cloud Workshop Intelligent Analytics Hackathon Learner Guide August 2017 2017 Microsoft Corporation. All rights reserved. This document is confidential and proprietary to Microsoft. Internal

More information

Table of Contents HOL-1757-MBL-5

Table of Contents HOL-1757-MBL-5 Table of Contents Lab Overview - - VMware AirWatch: Mobile App Management and App Development... 2 Lab Guidance... 3 Module 1 - Introduction to AppConfig (30 minutes)... 8 Login to the AirWatch Console...

More information

Step 1: Syncing Your Library. After installing One Drive for Business, you will be prompted to Sync a library. NEXT: Select the Library URL

Step 1: Syncing Your Library. After installing One Drive for Business, you will be prompted to Sync a library. NEXT: Select the Library URL Step 1: Syncing Your Library After installing One Drive for Business, you will be prompted to Sync a library. NEXT: Select the Library URL For this, we want to choose the URL that connects to your Office

More information

Student Lab Manual MS100.1x: Office 365 Management

Student Lab Manual MS100.1x: Office 365 Management Student Lab Manual MS100.1x: Office 365 Management Lab Scenario You are the system administrator for Adatum Corporation, and you have Office 365 deployed in a virtualized lab environment. In this lab,

More information

StorageCraft Cloud Backup

StorageCraft Cloud Backup User Guide v1.3 (June 2017) StorageCraft Copyright Declaration StorageCraft ImageManager, StorageCraft ShadowProtect, StorageCraft Cloud, and StorageCraft Cloud Services, together with any associated logos,

More information

Developing Microsoft Azure Solutions (70-532) Syllabus

Developing Microsoft Azure Solutions (70-532) Syllabus Developing Microsoft Azure Solutions (70-532) Syllabus Cloud Computing Introduction What is Cloud Computing Cloud Characteristics Cloud Computing Service Models Deployment Models in Cloud Computing Advantages

More information

Microsoft Cloud Workshop

Microsoft Cloud Workshop Microsoft Cloud Workshop Instance Hands-on lab step-by-step January 2018 Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless

More information

AvePoint Online Services for Partners 2

AvePoint Online Services for Partners 2 AvePoint Online Services for Partners 2 User Guide Service Pack 1 Issued June 2017 Table of Contents What s New in this Guide...4 About...5 Submitting Documentation Feedback to AvePoint...6 Browser Support

More information

Data Science and Machine Learning Essentials

Data Science and Machine Learning Essentials Data Science and Machine Learning Essentials Lab 5B Publishing Models in Azure ML By Stephen Elston and Graeme Malcolm Overview In this lab you will publish one of the models you created in a previous

More information

VMware AirWatch: Directory and Certificate Authority

VMware AirWatch: Directory and Certificate Authority Table of Contents Lab Overview - HOL-1857-06-UEM - VMware AirWatch: Directory and Certificate Authority Integration... 2 Lab Guidance... 3 Module 1 - Advanced AirWatch Configuration, AD Integration/Certificates

More information

Learning Portal AE: Customization and Configuration in Microsoft Dynamics CRM 2016 Hands-On-Lab

Learning Portal AE: Customization and Configuration in Microsoft Dynamics CRM 2016 Hands-On-Lab 2 Learning Portal 80729AE: Customization and Configuration in Microsoft Dynamics Hands-On-Lab 80729AE: Customization and Configuration in Microsoft Dynamics Table of Contents 80729AE: Customization and

More information

The following instructions cover how to edit an existing report in IBM Cognos Analytics.

The following instructions cover how to edit an existing report in IBM Cognos Analytics. IBM Cognos Analytics Edit a Report The following instructions cover how to edit an existing report in IBM Cognos Analytics. Navigate to Cognos Cognos Analytics supports all browsers with the exception

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365. Installation and User Guide Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES... 3 SYSTEM REQUIREMENTS... 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365...3 LICENSE ACTIVATION...4

More information

SQL Server 2005: Reporting Services

SQL Server 2005: Reporting Services SQL Server 2005: Reporting Services Table of Contents SQL Server 2005: Reporting Services...3 Lab Setup...4 Exercise 1 Creating a Report Using the Wizard...5 Exercise 2 Creating a List Report...7 Exercise

More information

Real-Time SignalR. Overview

Real-Time SignalR. Overview Real-Time SignalR Overview Real-time Web applications feature the ability to push server-side content to the connected clients as it happens, in real-time. For ASP.NET developers, ASP.NET SignalR is a

More information

ACTIVE Net Insights user guide. (v5.4)

ACTIVE Net Insights user guide. (v5.4) ACTIVE Net Insights user guide (v5.4) Version Date 5.4 January 23, 2018 5.3 November 28, 2017 5.2 October 24, 2017 5.1 September 26, 2017 ACTIVE Network, LLC 2017 Active Network, LLC, and/or its affiliates

More information

Microsoft Cloud Workshop

Microsoft Cloud Workshop Microsoft Cloud Workshop Hands-on lab step-by-step January 2018 Information in this document, including URL and other Internet Website references, is subject to change without notice. Unless otherwise

More information

271 Waverley Oaks Rd. Telephone: Suite 206 Waltham, MA USA

271 Waverley Oaks Rd. Telephone: Suite 206 Waltham, MA USA Contacting Leostream Leostream Corporation http://www.leostream.com 271 Waverley Oaks Rd. Telephone: +1 781 890 2019 Suite 206 Waltham, MA 02452 USA To submit an enhancement request, email features@leostream.com.

More information

Microsoft Cloud Workshops. Modern Cloud Apps Learner Hackathon Guide

Microsoft Cloud Workshops. Modern Cloud Apps Learner Hackathon Guide Microsoft Cloud Workshops Modern Cloud Apps Learner Hackathon Guide September 2017 2017 Microsoft Corporation. All rights reserved. This document is confidential and proprietary to Microsoft. Internal

More information

One Identity Active Roles 7.2. Azure AD and Office 365 Management Administrator Guide

One Identity Active Roles 7.2. Azure AD and Office 365 Management Administrator Guide One Identity Active Roles 7.2 Azure AD and Office 365 Management Administrator Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright.

More information

Hands-On Lab New Collaboration Experiences for Development Teams using Team Foundation Server 2013 Lab version: Last updated: 11/25/2013

Hands-On Lab New Collaboration Experiences for Development Teams using Team Foundation Server 2013 Lab version: Last updated: 11/25/2013 Hands-On Lab New Collaboration Experiences for Development Teams using Team Foundation Server 2013 Lab version: 12.0.21005.1 Last updated: 11/25/2013 CONTENTS OVERVIEW... 3 EXERCISE 1: TEAM ROOM COLLABORATION...

More information

PDSA.NET Productivity Framework Deployment Manual

PDSA.NET Productivity Framework Deployment Manual PDSA.NET Productivity Framework Deployment Manual By: PDSA, Inc. August 2016 Published By: PDSA, Inc. Copyright 2002-2016, PDSA, Inc. All Rights Reserved Worldwide Introduction Written By: Technical Editors:

More information

Azure Developer Immersion Getting Started

Azure Developer Immersion Getting Started Azure Developer Immersion Getting Started In this walkthrough, you will get connected to Microsoft Azure and Visual Studio Team Services. You will also get the code and supporting files you need onto your

More information

EMC ApplicationXtender Web Access.NET eroom Integration 6.0

EMC ApplicationXtender Web Access.NET eroom Integration 6.0 EMC ApplicationXtender Web Access.NET eroom Integration 6.0 Administrator s Guide 300-008-282 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright

More information

Newforma Contact Directory Quick Reference Guide

Newforma Contact Directory Quick Reference Guide Newforma Contact Directory Quick Reference Guide This topic provides a reference for the Newforma Contact Directory. Purpose The Newforma Contact Directory gives users access to the central list of companies

More information

VMware Notification Service v2.0 Installation and Configuration Guide Configure ENS2 for cloud and on-premises deployments

VMware  Notification Service v2.0 Installation and Configuration Guide Configure ENS2 for cloud and on-premises deployments VMware Email Notification Service v2.0 Installation and Configuration Guide Configure ENS2 for cloud and on-premises deployments Workspace ONE UEM v9.5 Have documentation feedback? Submit a Documentation

More information

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3 Enterprise Vault.cloud CloudLink Google Account Synchronization Guide CloudLink 4.0.1 to 4.0.3 Enterprise Vault.cloud: CloudLink Google Account Synchronization Guide Last updated: 2018-06-08. Legal Notice

More information

G-Lock EasyMail7. Startup Guide. Client-Server Marketing Solution for Windows. To learn more about G-Lock EasyMail7, visit

G-Lock EasyMail7. Startup Guide. Client-Server  Marketing Solution for Windows. To learn more about G-Lock EasyMail7, visit G-Lock EasyMail7 Client-Server Email Marketing Solution for Windows Startup Guide 1 Table of Contents This document is your startup guide for G-Lock EasyMail7 product. It is designed to provide you with

More information

Learning vrealize Orchestrator in action V M U G L A B

Learning vrealize Orchestrator in action V M U G L A B Learning vrealize Orchestrator in action V M U G L A B Lab Learning vrealize Orchestrator in action Code examples If you don t feel like typing the code you can download it from the webserver running on

More information

MANAGING ANDROID DEVICES: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE

MANAGING ANDROID DEVICES: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE GUIDE APRIL 2019 PRINTED 17 APRIL 2019 MANAGING ANDROID DEVICES: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE Table of Contents Overview Introduction Audience Getting Started with Android

More information

October 14, Business Intelligence Connector Guide

October 14, Business Intelligence Connector Guide October 14, 2017 Copyright 2013, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

RED IM Integration with Bomgar Privileged Access

RED IM Integration with Bomgar Privileged Access RED IM Integration with Bomgar Privileged Access 2018 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the

More information

Index. Chaminda Chandrasekara 2017 C. Chandrasekara, Beginning Build and Release Management with TFS 2017 and VSTS, DOI /

Index. Chaminda Chandrasekara 2017 C. Chandrasekara, Beginning Build and Release Management with TFS 2017 and VSTS, DOI / Index A Agent platforms, 10 system and user capabilities, 10 Agent pool add user, 12 assign permissions, 55 56 default pool, 8 hosted Linux pool, 8 hosted pool, 7 set up assign administrator role, 45 auto-provision

More information

Microsoft Cloud Workshops. Microservices and Serverless Architecture - Developer Edition Leader Hackathon guide

Microsoft Cloud Workshops. Microservices and Serverless Architecture - Developer Edition Leader Hackathon guide Microsoft Cloud Workshops Microservices and Serverless Architecture - Developer Edition Leader Hackathon guide September 2017 2017 Microsoft Corporation. All rights reserved. This document is confidential

More information

We start by providing you with an overview of the key feature of the IBM BPM Process Portal.

We start by providing you with an overview of the key feature of the IBM BPM Process Portal. Lab 1 Process Portal 1.1 Overview This lab exercise will make you familiar with the key capabilities of the ready-to-use Process Portal included with IBM Business Process Manager (BPM). You will experience

More information

Running the ESPM Twitter Integration sample app on SAP Cloud Platform

Running the ESPM Twitter Integration sample app on SAP Cloud Platform Running the ESPM Twitter Integration sample app on SAP Cloud Platform By Daniel Gomes da Silva Learn how to download, build, deploy, configure and run the ESPM Twitter Integration JAVA sample app on SAP

More information

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide Adobe Document Cloud esign Services for Salesforce Version 17 Installation and Customization Guide 2015 Adobe Systems Incorporated. All rights reserved. Last Updated: August 28, 2015 Table of Contents

More information

DevTest Solutions Getting Started

DevTest Solutions Getting Started DevTest Solutions - 9.1 Getting Started Date: 29-Jun-2016 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

FastStats Integration

FastStats Integration Guide Improving results together 1 Contents Introduction... 2 How a campaign is conducted... 3-5 Configuring the integration with PureResponse... 4-17 Using Cascade with the PureResponse platform... 17-10

More information

Introduction to Cognos Participants Guide. Table of Contents: Guided Instruction Overview of Welcome Screen 2

Introduction to Cognos Participants Guide. Table of Contents: Guided Instruction Overview of Welcome Screen 2 IBM Cognos Analytics Welcome to Introduction to Cognos! Today s objectives include: Gain a Basic Understanding of Cognos View a Report Modify a Report View a Dashboard Request Access to Cognos Table of

More information

Red Hat JBoss Fuse 7.0-TP

Red Hat JBoss Fuse 7.0-TP Red Hat JBoss Fuse 7.0-TP Ignite Sample Integration Tutorials Instructions for Creating Sample Integrations Last Updated: 2018-04-03 Red Hat JBoss Fuse 7.0-TP Ignite Sample Integration Tutorials Instructions

More information

DocuSign Quick Start Guide. Sending a Document with DocuSign. Overview. Table of Contents

DocuSign Quick Start Guide. Sending a Document with DocuSign. Overview. Table of Contents DocuSign Quick Start Guide Sending a Document with DocuSign Overview A key feature of DocuSign is the ability to quickly create and send documents for signing. This guide provides an overview of how to

More information

Swift Web Applications on the AWS Cloud

Swift Web Applications on the AWS Cloud Swift Web Applications on the AWS Cloud Quick Start Reference Deployment November 2016 Asif Khan, Tom Horton, and Tony Vattathil Solutions Architects, Amazon Web Services Contents Overview... 2 Architecture...

More information

MobileFast SyncStudio. A Complete Mobile Database Synchronization Solution. Quick-Start Manual. Release 1.61, May 2014

MobileFast SyncStudio. A Complete Mobile Database Synchronization Solution. Quick-Start Manual. Release 1.61, May 2014 MobileFast SyncStudio A Complete Mobile Database Synchronization Solution Quick-Start Manual Release 1.61, May 2014 Copyright 2014 by MobileFast Corporation All rights reserved Page 1 of 25 Edition Notes

More information

CloudHealth. AWS and Azure On-Boarding

CloudHealth. AWS and Azure On-Boarding CloudHealth AWS and Azure On-Boarding Contents 1. Enabling AWS Accounts... 3 1.1 Setup Usage & Billing Reports... 3 1.2 Setting Up a Read-Only IAM Role... 3 1.3 CloudTrail Setup... 5 1.4 Cost and Usage

More information

Querying with Transact-SQL

Querying with Transact-SQL Querying with Transact-SQL Getting Started with Azure SQL Database / SQL Server Overview Transact-SQL is an essential skill for database professionals, developers, and data analysts working with Microsoft

More information

VMware AirWatch - Workspace ONE, Single Sign-on and VMware Identity Manager

VMware AirWatch - Workspace ONE, Single Sign-on and VMware Identity Manager VMware AirWatch - Workspace ONE, Single Sign-on and VMware Identity Table of Contents Lab Overview - HOL-1857-03-UEM - Workspace ONE UEM with App & Access Management... 2 Lab Guidance... 3 Module 1 - Workspace

More information

Hands-On Lab. Getting Started with Git using Team Foundation Server Lab version: Last updated: 12/30/2013

Hands-On Lab. Getting Started with Git using Team Foundation Server Lab version: Last updated: 12/30/2013 Hands-On Lab Getting Started with Git using Team Foundation Server 2013 Lab version: 12.0.21005.1 Last updated: 12/30/2013 CONTENTS OVERVIEW... 3 EXERCISE 1: GETTING STARTED WITH GIT... 3 EXERCISE 2: GIT

More information

BLACKBERRY SPARK COMMUNICATIONS PLATFORM. Getting Started Workbook

BLACKBERRY SPARK COMMUNICATIONS PLATFORM. Getting Started Workbook 1 BLACKBERRY SPARK COMMUNICATIONS PLATFORM Getting Started Workbook 2 2018 BlackBerry. All rights reserved. BlackBerry and related trademarks, names and logos are the property of BlackBerry

More information

Quick Start Guide. Microinvest Barcode Printer Pro

Quick Start Guide. Microinvest Barcode Printer Pro Quick Start Guide Microinvest Barcode Printer Pro 2016 Microinvest Barcode Printer Pro provides barcode printing functionality specifically designed to account for new orders and existing entries in the

More information