最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Azure Function CosmosDB sqlQuery - Stack Overflow

programmeradmin2浏览0评论

currently I try to create an Azure Functions with CosmosDB reading the updateScheduledAt with a ServiceBus Trigger using Queue Message reading the updateScheduledAt.

const productMasterDatabaseInput = input.cosmosDB({
    databaseName:  cosmosProductMasterDatabaseName,
    containerName: cosmosProductMasterContainerName,
    partitionKey: cosmosProductMasterPartitionKey,
    connection: 'AZ_COSMOS_CONNECTION_STRING',
    sqlQuery: 'SELECT * FROM c WHERE c._ts >= {updateScheduledAt}'
});

The queue Message looks like this:

{
  "updateScheduledAt": 1743433800
}

Also when Updates are coming in, the sqlQuery response zero results.

async function processExportJob(message: ExportJobMessage, context: InvocationContext) {
    const connector = new Connector(context);

    const start = new Date();

    const changes = [
        ...connector.prepareProductChanges(
                <Product[]>context.extraInputs.get(productMasterDatabaseInput))
    ];

    context.log(`Processing ${changes.length} changes in ${new Date().getTime() - start.getTime()} ms`);
发布评论

评论列表(0)

  1. 暂无评论