Giter Club home page Giter Club logo

Comments (4)

ccovey avatar ccovey commented on June 16, 2024

I was seeing this last night also but after var_dumping around I was eventually no longer able to reproduce. I chalked it up to an environment issue but maybe that wasn't the case.

Here is a screenshot that shows the filter, update and exception message http://d.pr/i/1ebti. Again I can no longer recreate so not positive that it is in fact the same but interesting that you are getting basically the same error.

EDIT: Also this is using Doctrine ORM and the MongoId is generated with new MongoId($doctrineObject->getId()); Not sure that matters, just more info.

from mongo-php-adapter.

alcaeus avatar alcaeus commented on June 16, 2024

I've taken a look at what you provided and could not find anything that causes this. I've tried using the arguments from the exception message in a test and it doesn't fail:

    $update = ['$set' => ['creatorHostname' => 'prod.cloud.net', 'handledAt' => new \MongoDate()]];
    $this->getCollection()->update(['_id' => 'something'], $update, ['upsert' => true]);
    $this->assertSame(1, $this->getCollection()->count());

I also tried updating a document that already exists, with the same result: works as expected. From what I can see, MongoDB ODM passes an update array that contains changes in the $set operator, so I think we can exclude that as an error source. Type conversion in mongo-php-adapter converts the $set item to a BSONDocument instance (which hopefully shouldn't be a problem) and passes it on to mongo-php-library.

Does the error still come up, and if so, is there anything special about the cases where it comes up? (e.g. always on upsert, only when using BSON types, only when doing multi-updates, and so on).

from mongo-php-adapter.

Shaked avatar Shaked commented on June 16, 2024

Hey @alcaeus thanks for the reply. I will investigate more but at the moment I can definitely say that it happens on upsert=true and only when $set is included. I hope I will have more information to share.

Update:

I have also encountered the same problem with $push and $pullAll

from mongo-php-adapter.

alcaeus avatar alcaeus commented on June 16, 2024

Closing this as it seems this was due to a bug in APCu - and also to consolidate discussion into the driver issue.

from mongo-php-adapter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.