The context on observers is null or void
Closed this issue · 7 comments
Overview
I have a project where I use mongodb, promises and generator functions (with Q.async). For some reason sometimes I are unable to get the context. Sometimes is null, sometimes is a new void context that doesn't have the data we saved on the context.
Tried:
- Patching Q library with cls-q
- Changing connector with both mongodb or memory connector, same results on both.
- Removing all promises and generator functions of observers, same results.
Sandbox repo
Here is a sandbox repo where you can see the issue.
Steps to reproduce the issue:
- Clone repo
- npm install
- npm start
- GET /api/Pokemons
Obtained Results
You will see something like this:
There are logs on some middlewares and observers. There is two labels:
- lc: Shows if loopback.getCurrentContext() returns not null.
- data: Shows if there is on the loopback context the data we previously (on the middleware) saved on the context. If lc=true, data=false I understand that there is a context but it isn't the same context where we saved the data.
Understanding Results
As you can see, all middlewares have no problem on obtain the context and works as expected. But the observers doesn't have context. And the ones that have context I think is because the first observer to use a promise is creating a new context and the next observers on run have a new context.
I have other parallel context problem that sometimes make some functions to not have context, or have context only when a "READ" operation is requested. But on "WRITE" operations we don't have any problems. I only showed the above example because when I created the sandbox and saw no context on the observers, and I need to understand why before make the big question. I saw that this issue showed on the sandbox is independent of the connector, but in our random context problem seems to be something with the connectors, as on memory works fine but on mongo isn't.
Thanks in advance.
PD: This is my first issue on github and english isn't my first language, so sorry in advance if something is wrong with anything.
There has been many issues with getCurrentContext and we have plans on deprecating it.
#1676
There is a workaround specified in that issue. See if that works for you.
Also, follow the discussion in strongloop/loopback-context#2 for an alternative workaround which is less "official" (in fact, it keeps using the deprecated API), and it's going to work only in a subset of the issues, but requires less refactoring, and opens the way to future reimplementations of getCurrentContext()
since it uses the native-ish (sort of) cls-hooked
module.
Hi!
@0candy I applied the workaround and works... works. But extremely slow. And this not solve my other issue (#2603) I have. I want to change the mongoDB collection dynamically. As you can see on the issue, my try was to override a function of the mongodb connector. On this function sometimes I have context, and sometimes nope. The proposed workaround is fine but is not applicable to my issue related with mongo. I need the actual loopback context to work.
@josieusa, thanks for your workaround. As you can see on #2603, my problem is not full-solved with the proposal #1676 (besides the slowdown of this workaround has made to our api), so I will check yours to see if we can solve our issue with it. We are working on solve this issue, as this blocks our company workflow, but feel free to read #2603 and check if you can help us 😓
@josieusa I tried to apply your workaround, but as is a PR for loopback-context I had difficulties to implement it. You can see my attempt on my loopback-sandbox (master/45c71...890f) repo.
I required the middleware and applied on initial:before. Isn't working, now I have no context, never XD
I tried too:
- Making an Object.assign(loopback, loopbackContext) where loopbackContext is the loopback-context repo on your PR. Same results.
Edit: I said 0candy but was trying to say josieusa.
@josieusa Wow! I tried to implement your PR another time and I have noticed that I had to use loopback-context to get current context. I was stubborn to extend loopback context methods. Now works nicely with memmory connector.
Sadly, with mongo...
I will try to make this work.
Finally I could solve my issue. I found two points where loopback-connector-mongodb was losing the context. I hardcoded a ns.bind on two functions and now I have context always.
I made a PR to loopback-connector-mongodb, it may help someone.
As I wrote in loopbackio/loopback-connector-mongodb#275 (comment), I think we should not be monkey-patching our code to support CLS. Instead, the fix should be implemented in the MongoDB client library we are using under the hood.
Let's keep all discussion related to loopback-context + MongoDB in the following issue please: strongloop/loopback-context#21