AzureSMR icon indicating copy to clipboard operation
AzureSMR copied to clipboard

AzureSMR is no longer being actively developed. For ongoing support of Azure in R, see: https://github.com/Azure/AzureR

Results 29 AzureSMR issues
Sort by recently updated
recently updated
newest added

In [createAzureContext()](https://github.com/Microsoft/AzureSMR/blob/6e2d273b3f694ac2ea06fec1e10d621a4f1f9984/R/AzureContextObject.R#L14), `authType` is passed to [azureAuthenticate()](https://github.com/Microsoft/AzureSMR/blob/master/R/AzureAuthenticate.R#L14) as part of the `azureActiveContext` parameter. [azureAuthenticate()](https://github.com/Microsoft/AzureSMR/blob/master/R/AzureAuthenticate.R#L14) also has an `authType` parameter that defaults to "ClientCredential", which is passed to [azureAuthenticateOnAuthType()](https://github.com/Microsoft/AzureSMR/blob/master/R/AzureAuthenticate.R#L33). [azureAuthenticateOnAuthType()](https://github.com/Microsoft/AzureSMR/blob/master/R/AzureAuthenticate.R#L33) then...

Hi, I would like to download more than 5000 blobs with azureGetBlob() but the function requires a "blob". This can be done with azureListStorageBlobs() but that function has a limit...

Hi there, would it be possible to update the license file? Currently it has a copyright with no description of allowed usage. ~Thanks

Hi, I had some difficulty following the tutorial to authenticate ([here](http://htmlpreview.github.io/?https://github.com/Microsoft/AzureSMR/blob/master/inst/doc/Authentication.html)) It wasn't clear what the different ids should look like. In particular, the tenant ID wasn't obvious as on...

`AzureSMR::AzurePutBlob` defaults to calling the wrapped `AzureSMR:::callAzureStorageApi` with the argument `contenttype = "text/csv; charset=UTF-8"`. The user-facing function should also take `contenttype` as an argument.

I've read in a csv file (tmpFile), and now want to write that out to blob. Running this: `azurePutBlob(sc, blob = "tsv.txt", file = tmpFile)` Returns: [1] "blob: directory/tsv.txt Saved:...

enhancement

I installed the latest github version - SHA1 (81e64b49). There are no azureDataLake functions in the package. You can access the various actions via adls but it's lower level.

How do I write a dataframe to blob ? The tutorial example uses a raw string, but I would expect to be able to upload a dataframe to csv on...

I have dataframe which I converted to csv using write.csv. Here result is dataframe write.csv(result, textConnection("forecastedAlerts", "w")) azurePutBlob(sc, storageAccount = "", container = "", contents = forecastedAlerts, blob = "forecastedAlerts")...

There is a need to read .gz files from the data lake. Adding gunzip to the azureDataLakeRead function will not work because you can't unzip a response only a file.