New to azure here. I just finished spinning up a new HDInsight instance with a new storage instance on a regular storage account. I'm wondering what my webHDFS url is/where I can retrieve it and how I can access it.
I am not using Azure Data Lake storage. (nearly every link I've found azure related leads to some data lake link)
my hdfs-site.xml:
<property>
<name>dfs.webhdfs.enabled</name>
<value>true</value>
</property>
core-site.xml:
<property>
<name>fs.defaultFS</name>
<value>wasb://<my hdinsight storage name>@<my hdinsight name>.blob.core.windows.net</value>
<final>true</final>
</property>