Last active
April 5, 2017 08:11
-
-
Save phstudy/2337c262633dc994347dfbb14503609a to your computer and use it in GitHub Desktop.
azure blob storage core-site.xml.template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?> | |
<!-- Put site-specific property overrides in this file. --> | |
<configuration xmlns:xi="http://www.w3.org/2001/XInclude"> | |
<!-- | |
<property> | |
<name>fs.azure.account.key.{WASB_ACCOUNT_NAME}.blob.core.windows.net</name> | |
<value>{WASB_ACCOUNT_KEY}</value> | |
</property> | |
<property> | |
<name>fs.azure.sas.{WASB_CONTAINER.{WASB_ACCOUNT_NAME}.blob.core.windows.net</name> | |
<value>{SAS_TOKEN}</value> | |
</property> | |
<property> | |
<name>fs.defaultFS</name> | |
<value>wasb://{WASB_CONTAINER}@{WASB_ACCOUNT_NAME}.blob.core.windows.net</value> | |
</property> | |
--> | |
<property> | |
<name>fs.AbstractFileSystem.wasb.impl</name> | |
<value>org.apache.hadoop.fs.azure.Wasb</value> | |
</property> | |
<property> | |
<name>fs.wasb.impl</name> | |
<value>org.apache.hadoop.fs.azure.NativeAzureFileSystem</value> | |
</property> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment