Azure Cosomos DB存储过程响应大小太大

时间:2018-11-06 21:20:29

标签: javascript azure stored-procedures azure-cosmosdb azure-cosmosdb-sqlapi

我有传感器物联网数据,该数据已存储在cosmos DB中。我需要最近30天的分钟数据汇总才能显示在webapp中。因此,我编写了存储过程,以便对传感器数据进行分组和汇总。

出现以下错误

  

无法执行存储过程来收集newData:{“ code”:400,“ body”:“ {\” code \“:\” BadRequest \“,\” message \“:\”消息:{\ \“ Errors \\”:[\\“执行函数时遇到异常。Exception=错误:由于\\\” x-ms-documentdb-script-log-results \\\\“,结果消息将太大从脚本返回当前消息,并使用延续令牌再次调用该脚本或修改您的脚本。\\ r \\ n堆栈跟踪:错误:由于\\\“ x-ms-documentdb-,导致的消息太大script-log-results \\\\“。从脚本返回当前消息,并使用延续令牌再次调用该脚本或修改您的脚本。\\ n位于validateSize(sa \\”]} \ r \ nActivityId:46713736- fe18-4fd1-8df1-49fa615c7289,请求URI:/ apps / 35edbe01-33d4-4189-9959-240fe985a75e / services / f3955cd0-044e-4a48-ad24-ae51a24c13b8 / partitions / 784e5371-950b-476d-a765-52ddb784f8dd 131850819031922581p /,RequestStats:\ r \ nRequestStartTime:2018-11-06T21:08:06.7386246Z,Nu尝试的区域区域:1 \ r \ n,SDK:Microsoft.Azure.Documents.Common / 2.1.0.0 \“}”,“ activityId”:“ 46713736-fe18-4fd1-8df1-49fa615c7289”,“ substatus”:413 }

由于具有1秒级别数据的传感器需要我找到1分钟的汇总,因此我无法使用流Analytics Job作为转发,我不知道avg()中要保留什么传感器名称。

仅保留我的一个选项是运行存储过程并取回1分钟的汇总。

我已经将Javascript用于存储过程,在api调用中,我正在使用Java Spring Boot。 请给我任何建议,我如何才能超出Cosmos DB的这一限制,或者如何在Cosmos DB中存储1分钟的聚合,以便我可以检索这些记录。

以下是我的过程,我正在传递3个字符串参数,例如“ pressure,Temp,volume”“ 123444”“ 345552”

function something(variable1 , variable2 , variable3) {


var variables = variable1.split(",");
var parameters = variable1.split(",");
var variablestrings = '' , totals = {} ;
var keys = [] , values = [] , totals = [] ;
var dataPoints = {} , results = [], k , l  , p ,i;
var resultPoints = [],value;

var collection = getContext().getCollection();

for ( var i = 0 ; i < variables.length ; i = i +1 ) {
        results[i] = {};
        results[i].variableName = variables[i] ; 
        results[i].data = [];
        variables[i] = 'r.' + variables[i];
} 

variablestrings = variables.toString() + ' , r._ts ' ; 

var queryString = 'SELECT ' + variablestrings + 'FROM root r where r._ts between  ' +  variable2 + ' AND ' + variable3 ;   

// Query documents and take 1st item.
var isAccepted = collection.queryDocuments(
    collection.getSelfLink(),
    queryString,
function (err, feed, options) {
   // console.log(feed[0]._ts);
    if (err) throw err;

    // Check the feed and if empty, set the body to 'no docs found', 
    // else take 1st element from feed
    if (!feed || !feed.length) {
        var response = getContext().getResponse();
        response.setBody('no docs found');
    }
    else {
            //console.log(feed.length);
            feed.forEach( (item, index) => { 
            //var x = JSON.parse( item ) ; 
            var d1 = new Date( item._ts ) ; 
            item['timeInMinutes'] =  d1.getFullYear() + '-' + d1.getUTCMonth() + '-' + d1.getUTCDate() + ' ' + d1.getUTCHours() + ':' + d1.getUTCMinutes() + ':00' ;
            //delete item[_ts];
            //console.log(JSON.stringify(item));
            if( ! dataPoints[ item['timeInMinutes'] ] ) {
                 dataPoints[ item['timeInMinutes'] ] = [];
                dataPoints[ item['timeInMinutes'] ].push(item);
            }
            else{
                dataPoints[ item['timeInMinutes'] ].push(item);

            }
            //arrayObjects.push( item ) ;

            }  ); 

        values  = Object.values( dataPoints ) ;
            for ( k = 0 ; k < values.length ; k = k+1){
                value = values[k] ;

                for (  l = 0 ; l < parameters.length ; l = l +1){
                    totals[ parameters[l] ]= 0;
                }

                for (  p = 0 ; p < parameters.length ; p = p +1){

                    for (  i = 0 ; i < value.length ; i = i +1 ){
                        totals[ parameters[p]] = value[i][parameters[p]] + totals[parameters[p]] ; 
                    }

                    results[p].data.push({ 'x-axis' : value[0]['timeInMinutes'] , 'y-axis' : (totals[ parameters[p] ] / value.length ) });

                }
            }
            //console.log(results[0]);
            var response = getContext().getResponse();        
            response.setBody(results);


    }
});

if (!isAccepted) throw new Error('The query was not accepted by the server.');

}

1 个答案:

答案 0 :(得分:1)

基于@Chris Anderson-MSFT 在对 OP 问题的评论中的建议。


就我而言,我用 javascript 编写的存储过程几乎没有日志记录语句。只需删除 console.logs 对我有用。