Skip to content

Instantly share code, notes, and snippets.

@phstudy
Last active April 5, 2017 08:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phstudy/2337c262633dc994347dfbb14503609a to your computer and use it in GitHub Desktop.
Save phstudy/2337c262633dc994347dfbb14503609a to your computer and use it in GitHub Desktop.
azure blob storage core-site.xml.template
<?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