In CY2016.
Q: Is Azure Data Lake (Store, Analytics, or HDInsight) going to offered as an "on-premises" product?
We currently have no plans to offer on-premises versions of these services.
Yes. Azure Data Lake Store & Analytics both use HTTPS with TLS (SSL) for all network communication.
Because both ADL Store and ADL Analytics use HTTPS for all communication. The only port they use is port 443.
- Only lowercase alphabetical and numbers are allowed
- Whitespace is not allowed
- Punctuation such as . , ; : are not allowed
- No special characters such as - + _
- Size: The names must be between 3 to 24 characters in length.
Q: I am an Owner/Contributor on an ADLS Account, Why don'I t have access to data in the ADLS Account.
This is by design Owner/Contributor is about managing the account not data access
Access to data is controlled solely through filesystem ACLs.
NOTE: For ADLS Public Preview, there is a single ACL on the root folder of an ADLS account.
For ADLS Public Preview, the only user who can change the ACL on the root folder is the Owner who created the ADLS account.
By ADLS General Availability, all the users listed as Owners for the ADLS account will be able to set the ACL on the root folder.
For ADLS Public Preview, there is a single ACL on the root folder of an ADLS account.
By ADLS General Availability , ACLs will be available on any folder and on any file.
No. Azure Data Lake Tools for Visual Studio works with Visual Studio Community Editions which are free.
Currently, no.
This is something we are working on for the future.
How can I use the PowerShell cmdlet Submit-AzureRmDataLakeAnalyticsJob to submit C# Code with my U-SQL Script?
Submit-AzureRmDataLakeAnalyticsJob can't simply submit a .cs (C# Source code file) along with a U-SQL script.
To achieve the same effect:
-
Compile the .cs file into a dll using Visual Studio or the C# compiler
-
Upload the dll file into a location of your choosing in the ADL Store account.
-
Submit a U-SQL script that contains this at the top
DROP ASSEMBLY IF EXISTS myassembly; CREATE ASSEMBLY myassembly FROM "/myfolder/code.dll"; REFERENCE myassembly;
(Link to the U-SQL FAQ)[https://github.com/MicrosoftBigData/usql/blob/master/FAQ.md]