Meteor-Community-Packages / meteor-collection-hooks

Meteor Collection Hooks
https://atmospherejs.com/matb33/collection-hooks
MIT License
657 stars 92 forks source link

When the selector is not an id (= server side), does the after.update hook work? #38

Closed darkship closed 10 years ago

darkship commented 10 years ago

Did someone try it ? Or is it a case where the hooks isn't supposed to work?

When my selector wasn't an Id, my data was updated but my after.update hook wasn't called, so I updated one document after an other to trigger the hook.

Note : before.update is Ok

mizzao commented 10 years ago

Are you saying before.update runs for all the documents but after.update does not?

darkship commented 10 years ago

Exactly.

Collection.update({foo:"xyz"},{$set:{foo:"abc"}},{multi:true}) does the update and triggers before.update but not after.update

That's why I did:

Collection.find({foo:"xyz"}).forEach(function(col){
      Collecion.update(col._id,{$set:{foo:"abc"}})
})

so that both, before and after, are triggered

gabrielhpugliese commented 10 years ago

Same issue here. What I'm doing is this:

test.after.update(function (userId, doc) {
    var x = 1;
    test.update({ _id: doc._id }, { $set: { x: x } });
});
mizzao commented 10 years ago

@gabrielhpugliese if after.update was working as advertised, your code would result in an infinite loop.

gabrielhpugliese commented 10 years ago

Lol yeah, true story. I think the buffer just exploded. Anyway, how can we handle the issue now? I really need the after.update

node: ../src/node_object_wrap.h:60: static T* node::ObjectWrap::Unwrap(v8::Handlev8::Object) [with T = node::Buffer]: Assertion `!handle.IsEmpty()' failed

Gabriel Pugliese CodersTV.com @coderstv

On Wed, May 7, 2014 at 9:32 PM, Andrew Mao notifications@github.com wrote:

@gabrielhpugliese https://github.com/gabrielhpugliese if after.updatewas working as advertised, your code would result in an infinite loop.

— Reply to this email directly or view it on GitHubhttps://github.com/matb33/meteor-collection-hooks/issues/38#issuecomment-42501125 .

gabrielhpugliese commented 10 years ago

I think I need a rest :(

mizzao commented 10 years ago

I am extremely confused by your penultimate post.

gabrielhpugliese commented 10 years ago

After you saying about the loop, I've checked my Meteor console and it was raising this error (probably because of the loop): node: ../src/node_object_wrap.h:60: static T* node::ObjectWrap::Unwrap(v8::Handle<v8::Object>) [with T = node::Buffer]: Assertion!handle.IsEmpty()' failed`

But, disconsider that, please. Sorry for that. I'm just facing the same problem as @darkship - after.update is not working as I expected. I'm trying to update doc.x = x; and it's not saving to db.

matb33 commented 10 years ago

I'm unable to reproduce this. I even added multi: true and still no luck reproducing -- test passes. Perhaps you can modify the test until it fails? It's in the master branch:

https://github.com/matb33/meteor-collection-hooks/blob/master/tests/update_without_id.js

matb33 commented 10 years ago

Can you show us more of your code? I suspect you are trying to modify the doc in the after update by either setting a property on doc (which won't work) or running an update again (which may go into an infinite loop without the right guards in place)

darkship commented 10 years ago

I tried out and reproduced it. https://github.com/darkship/collection_hooks_bug_after_update.

I noticed that it didn't happened in every case. coll.update({random:i},{$inc:{random:1}},{multi:true}) -> fails to trigger after.update coll.update({random:{$gt:i}},{$inc:{random:1}},{multi:true}) --> triggers after.update

matb33 commented 10 years ago

@darkship I cloned your repo and got the example running. I am able to click on the +1 button of any and they increment accordingly, eventually all falling into step and incrementing together. Looks like it's working perfectly.

I noticed some remnants of Collection2 in there. Do you have it enabled when it fails for you?

darkship commented 10 years ago

I tried with both, it had the same effect.

When you say it's working, did you see any logs? When you click on "+1" the update is done but I never see the "after" in the server console, only the before.

coll.before.update(function(userId, doc, fieldNames, modifier, options){
    console.log("before",doc.count)
})
coll.after.update(function(userId, doc, fieldNames, modifier, options){
    console.log("after",doc.count)
})
matb33 commented 10 years ago

OK I understand what's going on. The problem is that the after hook has no idea which documents you're referring to anymore because your original selector no longer matches any documents after the update occurred.

For example, let's say your selector used to determine which docs to update is {random: 76}. Let's say that matches 50 documents, and proceeds to run your update that increments the value of random by 1. Now all those 50 documents have the value of 77 for the field random. After the update has finished, meteor gives me back the number of affected documents (50), nothing else -- no ids. The "after" code tries to find these documents and call the after hook for each of them. It tries to use the original selector {random: 76} but of course this won't match anything -- all the values for random are now 77.

I'm not sure how to proceed. Any ideas?

mizzao commented 10 years ago

Don't we have the _ids from the find operation that was run?

matb33 commented 10 years ago

I think we do! Good call, gonna try

mizzao commented 10 years ago

While you're thinking about that, do you think it would be possible to short circuit the per-document update/remove if no hooks are installed for a collection? It just seems awfully inefficient to use the find and per _id update if it doesn't need to be done.

One can also use the direct operations if they realize this, of course.

matb33 commented 10 years ago

@mizzao sure thing. I'm assuming I did what you meant: https://github.com/matb33/meteor-collection-hooks/commit/f1d2ac629864edda09df6c955fa5ff3df26f739c

mizzao commented 10 years ago

That looks right as long as it works :)

darkship commented 10 years ago

thanks!

gabrielhpugliese commented 10 years ago

Can you please (please!) can take a quick look on my reproduction? You can clone and just mrt then click on button to create/update the only one doc. https://github.com/gabrielhpugliese/after-hook-test/blob/master/after-hook-test.js

If I change the after to before it works ok.

matb33 commented 10 years ago

@gabrielhpugliese you can't modify the document after the update has already occurred. You'll need to do that in a before hook. If you really want to run an update after an update, you could use the new collection.direct.update

gabrielhpugliese commented 10 years ago

Hmmmm, I see. Gonna do that on before hook, then. Many thanks.