有没有办法只将附加的 blob 内容传递给 blob 触发器 Azure 函数?

Is there a way to only pass the appended blob content to blob trigger Azure Function?

我正在尝试为日志文件制作一个 blob 触发器 azure 函数,但问题是当创建或更新任何 blob 时它会传递整个 blob 内容。

所以我想知道有没有办法只获取附加的 blob 内容?

module.exports = async function main(context, myBlob) {
 // I am using javascript, myblob contains the entire content of single blob.
 // For logs in append blob, it results in duplicated logs, which is not ideal.
};

So I am wondering is there a way to only get the appended blob content?

没有


除非你

  • 维护每个日志文件的 byte-index/position,您最后阅读的地方(例如使用 file/DB/any-persistant-storage)或 use Durable Function
  • 在更改通知中,您找到最后一个 byte-index/position 并使用适当的 SDK/API 从该位置开始阅读。 Here is the REST API (for ADLS Gen2, find the right one if you're using Gen1 or Blob) and some description on how to read a byte range 文件中的 blob。