Skip to content

Commit

Permalink
Merge pull request #3129 from Ckarst/patch-31
Browse files Browse the repository at this point in the history
Update polybase-configuration.md
  • Loading branch information
PRMerger19 authored Sep 13, 2017
2 parents 3b21d62 + da03119 commit 0451309
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions docs/relational-databases/polybase/polybase-configuration.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "PolyBase configuration | Microsoft Docs"
ms.custom: ""
ms.date: "07/11/2017"
ms.date: "09/13/2017"
ms.prod: "sql-server-2016"
ms.reviewer: ""
ms.suite: ""
Expand All @@ -24,7 +24,7 @@ manager: "jhubbard"
You must ensure connectivity to the external data source from SQL Server. The type of connectivity strongly influences query performance. For example, a 10Gbit Ethernet link will result in a faster query response time for PolyBase queries than a 1Gbit Ethernet link.

You must configure SQL Server to connect to either your Hadoop version or Azure Blob storage using **sp_configure**. PolyBase supports two Hadoop distributions: Hortonworks Data Platform (HDP) and Cloudera Distributed Hadoop (CDH). For a complete list of supported external data sources, see [PolyBase Connectivity Configuration (Transact-SQL)](../../database-engine/configure-windows/polybase-connectivity-configuration-transact-sql.md).

1
Please note: PolyBase does not support Cloudera Encrypted Zones.

### Run sp_configure
Expand Down Expand Up @@ -62,6 +62,20 @@ manager: "jhubbard"
4. For all CDH 5.X versions, you will need to add the **mapreduce.application.classpath** configuration parameters either to the end of your **yarn.site.xml file** or into the **mapred-site.xml file**. HortonWorks includes these configurations within the **yarn.application.classpath** configurations.
## Connecting to Hadoop Cluster with Hadoop.RPC.Protection setting
A common way to secure communication in a hadoop cluster is by changing the hadoop.rpc.protection configuration to 'Privacy' or 'Integrity'. By Default, PolyBase assumes the configuration is set to 'Authenticate'. To override this default you need to add the following property to your core-site.xml file. Changing this configuration will enable secure data transfer among the hadoop nodes as well as SSL connection to SQL Server.
```
<!-- RPC Encryption information, PLEASE FILL THESE IN ACCORDING TO HADOOP CLUSTER CONFIG -->
<property>
<name>hadoop.rpc.protection</name>
<value></value>
</property>
```
## Example yarn-site.xml and mapred-site.xml files for CDH 5.X cluster.
Expand Down

0 comments on commit 0451309

Please sign in to comment.