I would download file on local the create a stream then send to an API.
In localhost files get created via blobClient.downloadToFile(defaultFile);
But When I deploy function it can not find file to stream, so I think that the download does not happen or in bad location.
I get this error
JavaScript
x
2
1
[Error: ENOENT: no such file or directory, open 'D:homesitewwwrootimportPbixexampleName.pbix'
2
Here’s my code
JavaScript
1
51
51
1
const blobServiceClient = BlobServiceClient.fromConnectionString(
2
process.env.CONNEXION_STRING
3
);
4
const containerClient = blobServiceClient.getContainerClient(
5
params.containerName
6
);
7
const blobClient = containerClient.getBlobClient(process.env.FILE_LOCATION); // get file from storage
8
let blobData;
9
var defaultFile = path.join(params.baseDir, `${params.reportName}.pbix`); // use path module
10
let stream;
11
12
try {
13
blobData = await blobClient.downloadToFile(defaultFile);
14
console.log(blobData);
15
stream = fs.createReadStream(defaultFile);
16
} catch (error) {
17
params.context.log(error);
18
console.log(error);
19
}
20
var options = {
21
method: "POST",
22
url: `https://api.powerbi.com/v1.0/myorg/groups/${params.groupId}/imports?datasetDisplayName=${params.reportName}`,
23
headers: {
24
"Content-Type": "multipart/form-data",
25
Authorization: `Bearer ${params.accessToken} `,
26
},
27
formData: {
28
"": {
29
value: stream,
30
options: {
31
filename: `${params.reportName}.pbix`,
32
contentType: null,
33
},
34
},
35
},
36
};
37
//check if file keep in mem
38
return new Promise(function (resolve, reject) {
39
request(options, function (error, response) {
40
if (error) {
41
params.context.log(error);
42
43
reject(error);
44
} else {
45
params.context.log(response);
46
resolve(response.body);
47
}
48
fs.unlinkSync(defaultFile);
49
});
50
});
51
I found this post having same issue , that’s why I user path
module and passed __dirname to function params.baseDir
.
Advertisement
Answer
If you want to download a file from Azure blob and read it as a stream, just try the code below, in this demo, I try to download a .txt file to a temp folder(you should create it first on Azure function)and print its content from the stream for a quick test:
JavaScript
1
40
40
1
module.exports = async function (context, req) {
2
3
const { BlockBlobClient } = require("@azure/storage-blob")
4
const fs = require('fs')
5
6
7
const connStr = '<connection string>'
8
const container = 'files'
9
const blobName = 'test.txt'
10
const tempPath = 'd:/home/temp/'
11
const tempFilePath = tempPath + blobName
12
13
const blobClient = new BlockBlobClient(connStr,container,blobName);
14
15
await blobClient.downloadToFile(tempFilePath).then(async function(){
16
context.log("download successfully")
17
18
let stream = fs.createReadStream(tempFilePath)
19
//Print text content,just check if stream has been readed successfully
20
context.log("text file content:")
21
context.log(await streamToString(stream))
22
23
//You can call your API here...
24
})
25
26
function streamToString (stream) {
27
const chunks = [];
28
return new Promise((resolve, reject) => {
29
stream.on('data', (chunk) => chunks.push(Buffer.from(chunk)));
30
stream.on('error', (err) => reject(err));
31
stream.on('end', () => resolve(Buffer.concat(chunks).toString('utf8')));
32
})
33
}
34
35
context.res = {
36
body: 'done'
37
}
38
39
}
40
Result
File has been downloaded:
read as stream successfully: