Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Finding max value in multidimensional in mongodb

if I have this collection

{ "humidity" : 96.5812, "temperature" : 10.5006 }
{ "humidity" : 97.1184, "temperature" : 10.2808 }
{ "humidity" : 96.2882, "temperature" : 8.4493 }
{ "humidity" : 97.8266, "temperature" : 7.4481 }
{ "humidity" : 98.9255, "temperature" : 7.2772 }
{ "humidity" : 99.4628, "temperature" : 7.3993 }
{ "humidity" : 99.4383, "temperature" : 7.4237 }
{ "humidity" : 99.6825, "temperature" : 7.1307 }
{ "humidity" : 99.5116, "temperature" : 6.1539 }
{ "humidity" : 99.8779, "temperature" : 5.4701 }

how I can get the max and min value of temperature with mapreduce?

like image 798
JuanPablo Avatar asked Apr 11 '26 12:04

JuanPablo


1 Answers

// Simple map function - just returns the temperature value
// for the record
var map = function() {
    emit('temperature', this.temperature);
};

// A reduce function to find the minimum value in the reduced set
var reduce_min = function(key, values) {
    var min = values[0];
    values.forEach(function(val) {
        if (val < min) min = val;
    })
    return min;
};

// A reduce function to find the maximum value in the reduced set
var reduce_max = function(key, values) {
    var max = values[0];
    values.forEach(function(val){
        if (val > max) max = val;
    })
    return max;
}

// Use the mapReduce function to get the min and max
var min = db.temp.mapReduce(map, reduce_min, {out:{inline:1}}).results[0].value;
var max = db.temp.mapReduce(map, reduce_max, {out:{inline:1}}).results[0].value;
print("Min: " + min + ", max: " + max);
like image 131
Simon Whitaker Avatar answered Apr 13 '26 22:04

Simon Whitaker



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!