gpt4 book ai didi

mongodb - 如何从 Azure Function 连接到 Azure Cosmos DB for MongoDB

转载 作者:行者123 更新时间:2023-12-02 07:53:04 24 4
gpt4 key购买 nike

我从 Azure Function 和 Cosmo DB 开始。我在 Azure 门户中创建了一个函数应用程序,然后按照指南开始使用 VS Code:

npm install -g azure-functions-core-tools@4 --unsafe-perm true
Then New Project
Then New function, selected the HTTP trigger template

运行 F5 并部署时,它可以工作。

然后,我在门户中创建了一个“Azure Cosmos DB API for MongoDB”数据库。当我的方法被调用时,我按照这个发布了一个文档:

https://learn.microsoft.com/en-us/azure/azure-functions/functions-add-output-binding-cosmos-db-vs-code?tabs=in-process&pivots=programming-language-csharp

所以我目前的结果是:一个函数:

namespace TakeANumber
{
public static class TestFunc
{
[FunctionName("TestFunc")]
public static async Task<IActionResult> Run(
[HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req,
[CosmosDB(databaseName: "cosmodb-take-a-number", collectionName: "take-a-number", ConnectionStringSetting = "cosmoDbConnectionString")] IAsyncCollector<dynamic> documentsOut,
ILogger log)
{
log.LogInformation("C# HTTP trigger function processed a request.");

string name = req.Query["name"];

string requestBody = await new StreamReader(req.Body).ReadToEndAsync();
dynamic data = JsonConvert.DeserializeObject(requestBody);
name = name ?? data?.name;

string responseMessage = string.IsNullOrEmpty(name)
? "This HTTP triggered function executed successfully. Pass a name in the query string or in the request body for a personalized response."
: $"Hello, {name}. This HTTP triggered function executed successfully.";

if (!string.IsNullOrEmpty(name))
{
// Add a JSON document to the output container.
await documentsOut.AddAsync(new
{
// create a random ID
id = System.Guid.NewGuid().ToString(),
name = name
});
}
return new OkObjectResult(responseMessage);
}
}
}

具有 cosmoDbConnectionString 设置的 local.settings.json 文件,其中包含 mongo db 连接字符串。

当我运行该函数时,我得到:

[2022-04-21T17:40:34.078Z] Executed 'TestFunc' (Failed, Id=b69a625c-9055-48bd-a5fb-d3c3b3a6fb9b, Duration=4ms)
[2022-04-21T17:40:34.079Z] System.Private.CoreLib: Exception while executing function: TestFunc. Microsoft.Azure.WebJobs.Host: Exception binding parameter 'documentsOut'. Microsoft.Azure.DocumentDB.Core: Value cannot be null. (Parameter 'authKeyOrResourceToken | secureAuthKey').

我的猜测是它需要一个带有另一种访问 token 的 Core SQL 数据库。我的问题:是否可以从 Azure 函数连接到 Azure CosmoDB for MongoDB?

最佳答案

如果您使用的是开箱即​​用的绑定(bind),则只能使用 Cosmos DB 的 SQL API。

您完全可以使用 MongoDB API,但您必须安装 MongoDB 客户端 SDK 并以编程方式处理您的数据(就像使用任何其他面向代码的方法一样)。

由于您的示例代码正在接收数据并将其写入 Cosmos DB,因此您可以通过 MongoDB 的 node/c#/python/etc 驱动程序进行写入(我相信他们仍然称它们为驱动程序 ),这实际上为您提供了 db.collection.insert( {} ) 或更复杂的东西。

有关 Cosmos DB 绑定(bind)的更多信息 here .

关于mongodb - 如何从 Azure Function 连接到 Azure Cosmos DB for MongoDB,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71959016/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com