-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
app.storageBlob extraOutput w/ queue binding not working #179
Comments
Hi @LuwkasLima thanks for the detailed report including code! I tried it out and I think your problem is a mispelling 😅 Check "extraOuptuts" in "blobToQueue.js" |
Hi @ejizba, thanks for looking at the issue, I appreciate your time. I would have mixed feelings if that was the solution (such a simple one!), but unfortunately it was just a typo introduced when reporting the issue. Here more details of a second test I performed: (working function) blobToQueue.js: const { app } = require("@azure/functions")
const {queueOutput} = require("../bindings/queueBinding")
app.storageBlob("blobToQueue", {
path: "blob/{name}", // This is the path to the blob that will trigger the function
connection: "AzureWebJobsStorage", // This is the connection string to the blob storage
return: queueOutput, // This is the binding that will be used to write to the message queue storage
handler: async function (blob, context) {
const data = [
"Message 1",
"Message 2"
]
return data;
}
}) (do not work) blobToQueueExtra.js: const { app } = require("@azure/functions");
const { queueOutput } = require("../bindings/queueBinding");
app.storageBlob("blobToQueueExtra", {
path: "blob/{name}", // This is the path to the blob that will trigger the function
connection: "AzureWebJobsStorage", // This is the connection string to the blob storage
extraOutputs: [queueOutput], // Defines the extra outputs that will be written to the message queue storage - currently not working (issue: https://github.com/Azure/azure-functions-nodejs-library/issues/179)
handler: async function (blob, context) {
const data = [
"Message 1",
"Message 2"
]
return context.extraOutputs.set(queueOutput, data);
},
}); Note: I thought perhaps that extraOutputs wasn't handling arrays, so I changed queueBinding.js - working for another http trigger function: const { output } = require('@azure/functions');
const queueOutput = output.storageQueue({
// Connections String to the storage account
connection: 'AzureWebJobsStorage',
// Name of the queue storage
queueName: '%input_queue_name%' // NOTE: Define queueName on Application Settings in Azure Functions. If messaging queue does not exist, it will be created.
});
module.exports = { queueOutput }; |
@LuwkasLima thanks for the detailed info. I think I've found the bug on our side. It only happens if you share an output object between two functions that differ on using
|
@ejizba I'll respectfully challenge that assumption, due to the fact that I have tested only one function at a time (no sharing of output objects). I've also observed the same issue happening for a Message Queue triggered function writing an output to a Table storage. When using the extraOutput, the output isn't written to the Table entity (I can share details of that scenario in another issue if you would like) Once more, thanks for looking at that. |
Well "blobToQueueExtra.js" works perfectly fine for me by itself, but I can reproduce the problem if I also have "blobToQueue.js" in my app. I know what the problem is in this case and I already have a fix, so we found a bug regardless of if it was your bug. You're welcome to wait and see if my fix helps you (maybe I just didn't explain it correctly) or give more details on your scenario |
Got it. You have graciously shut down my arguments. =) In fact, I do have both in my code. I was just running them, which I thought was in "isolation", locally using the parameters at local.settings.json. Thx again for looking at it and for the proposed workaround. I hope this serves as a source for others to quickly get things done. |
I'm working on a simple blob trigger azure function that writes a message to a queue (output) once a blob is placed in a specified path. When I use the extraOutput with a queue binding, the message isn't recorded.
Investigative information
Note: the queue binding is working as I have another function in the same project that writes to a queue from a http request trigger.
Note 2: [do not know if related] Comparing both functions, if the queue doesn't exist (the name specified for the queue does not matches an existing queue in Azure), the http triggered function will successfully create a queue and record the message, however the blob triggered one will create a queue with a "weird" name and do not record the message.
Explanation for the image:
Repro steps
queueBinding.js:
blobToQueue.js:
httpToQueue.js:
queue.js:
The text was updated successfully, but these errors were encountered: