Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7529769
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T04:44:22+00:00 2026-05-30T04:44:22+00:00

I am currently trying to do a simple mapreduce over some documents stored in

  • 0

I am currently trying to do a simple mapreduce over some documents stored in MongoDB. I use

map = BSON::Code.new "function() { emit(this.userid, 1); }"

for the mapping and

reduce = BSON::Code.new "function(key, values) {
   var sum = 0;
   values.forEach(function(value) {
    sum += value;
   });
   return sum;
}"

for the reduction. This works fine when I call map_reduce the following way:

output = col.map_reduce(map, reduce, # col is the collection in mongodb, e.g. db.users
            {
                :out => {:inline => true},
                :raw => true
            }
          )

Now to the real question: How can I use the upper call to map_reduce to enable sorting? The manual says, that I must use sort and an array of [key, direction] pairs. I guessed the following should work, but it doesn’t:

output = col.map_reduce(map, reduce,
            {
                :sort => [["value", Mongo::ASCENDING]],
                :out => {:inline => true},
                :raw => true
            }
          )

Do I have to choose another datatype? The option also doesn’t work (same error), when using an empty [], although the manual says that is the default for the option. Unfortunately the error message from MongoDB doesn’t help too much:

/usr/lib/ruby/gems/1.9.1/gems/mongo-1.3.1/lib/mongo/db.rb:506:in `command': Database command 'mapreduce' failed: {"assertion"=>"sort has to be blank or an Object", "assertionCode"=>13609, "errmsg"=>"db assertion failure", "ok"=>0.0} (Mongo::OperationFailure)
    from /usr/lib/ruby/gems/1.9.1/gems/mongo-1.3.1/lib/mongo/collection.rb:576:in `map_reduce'
    from ./mapreduce.rb:26:in `<main>'

If you need the full runnable code, please say so in the comments. I exclude it for now as it only contains the initialization of a connection to mongodb and initialization of the collection col by querying a database.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T04:44:23+00:00Added an answer on May 30, 2026 at 4:44 am

    Use a BSON::OrderedHash and it will work.

    output = col.map_reduce(map, reduce,
        {
             :sort => BSON::OrderedHash.new[{"value", Mongo::ASCENDING}],
             :out => {:inline => true},
             :raw => true
        }
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to use Simple Savant within my application, to use SimpleDB I currently
I'm currently trying to learn regular expressions with some simple "real world" examples. Take
I'm currently trying to use write a simple C# wrapper class for all the
I'm currently trying to understand some assembler code well enough to reconstruct the C
I'm currently trying to debug a piece of simple code and wish to see
I am currently trying to insert some simple true/false radio buttons in Rails 3,
I am currently trying to build some test code that uses Google C++ Test
I'm currently trying to build a simple component which should monitor, if the user
I have been trying to get more in to TDD. Currently keeping it simple
I'm currently trying to read in an XML file, make some minor changes (alter

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.