Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error "QueryExceededMemoryLimitNoDiskUseAllowed" with V4.0 #241

Open
Bilonik opened this issue Aug 31, 2023 · 2 comments
Open

Error "QueryExceededMemoryLimitNoDiskUseAllowed" with V4.0 #241

Bilonik opened this issue Aug 31, 2023 · 2 comments

Comments

@Bilonik
Copy link

Bilonik commented Aug 31, 2023

No description provided.

@pozhega
Copy link

pozhega commented Nov 9, 2023

@Bilonik any updates on this? Have you managed to solve this issue?

@pozhega
Copy link

pozhega commented Nov 9, 2023

@Bilonik Apparently new sort field has been added to codebase and therefore:

db.agendaJobs.ensureIndex({
    "nextRunAt" : -1,
    "lastRunAt" : -1,
    "lastFinishedAt" : -1
}, "agendash")

index is not good anymore, you need to change i to:

db.agendaJobs.ensureIndex({
   "repeatInterval: -1",
    "nextRunAt" : -1,
    "lastRunAt" : -1,
    "lastFinishedAt" : -1
}, "agendash")

pozhega added a commit to pozhega/agendash that referenced this issue Nov 9, 2023
pozhega added a commit to pozhega/agendash that referenced this issue Nov 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants