Actions
Issue #3133
closedCursorNotFound while queueing applicability tasks
Start date:
Due date:
Estimated time:
Severity:
2. Medium
Version:
Platform Release:
2.15.1
OS:
Triaged:
Yes
Groomed:
No
Sprint Candidate:
No
Tags:
Pulp 2
Sprint:
Sprint 30
Quarter:
Description
Presumably it happens when many consumer profiles are associated with the requested repos.
Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/django/core/handlers/base.py", line 112, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/usr/lib/python2.7/site-packages/django/views/generic/base.py", line 69, in view
return self.dispatch(request, *args, **kwargs)
File "/usr/lib/python2.7/site-packages/django/views/generic/base.py", line 87, in dispatch
return handler(request, *args, **kwargs)
File "/usr/lib/python2.7/site-packages/pulp/server/webservices/views/decorators.py", line 241, in _auth_decorator
return _verify_auth(self, operation, super_user_only, method, *args, **kwargs)
File "/usr/lib/python2.7/site-packages/pulp/server/webservices/views/decorators.py", line 195, in _verify_auth
value = method(self, *args, **kwargs)
File "/usr/lib/python2.7/site-packages/pulp/server/webservices/views/util.py", line 130, in wrapper
return func(*args, **kwargs)
File "/usr/lib/python2.7/site-packages/pulp/server/webservices/views/repositories.py", line 913, in post
queue_regenerate_applicability_for_repos(repo_criteria.as_dict())
File "/usr/lib/python2.7/site-packages/pulp/server/managers/consumer/applicability.py", line 167, in queue_regenerate_applicability_for_repos
for batch in paginate(profile_hashes, 10):
File "/usr/lib/python2.7/site-packages/pulp/plugins/util/misc.py", line 33, in paginate
page = tuple(itertools.islice(generator, 0, page_size))
File "/usr/lib/python2.7/site-packages/pulp/plugins/util/misc.py", line 31, in <genexpr>
File "/usr/lib64/python2.7/site-packages/pymongo/cursor.py", line 1097, in next
if len(self.__data) or self._refresh():
File "/usr/lib64/python2.7/site-packages/pymongo/cursor.py", line 1039, in _refresh
File "/usr/lib64/python2.7/site-packages/pymongo/cursor.py", line 903, in __send_message
codec_options=self.__codec_options)
File "/usr/lib64/python2.7/site-packages/pymongo/helpers.py", line 114, in _unpack_response
raise CursorNotFound(msg, 43, errobj)
CursorNotFound: Cursor not found, cursor id: 138030585475
Related issues
Updated by ttereshc almost 7 years ago
- Status changed from NEW to ASSIGNED
- Assignee set to ttereshc
Added by ttereshc almost 7 years ago
Updated by ttereshc almost 7 years ago
- Status changed from ASSIGNED to POST
Updated by ttereshc almost 7 years ago
- Status changed from POST to MODIFIED
Applied in changeset pulp|7810d6fe04b58f93ae96887116a2a1f9fa6b6239.
Added by ttereshc almost 7 years ago
Revision a2a00088 | View on GitHub
Add repo_id index to applicability collection
Search by repo_id is used to queue applicability tasks. If there are many consumer profiles in a collection, cursor may timeout.
closes #3133 https://pulp.plan.io/issues/3133
(cherry picked from commit 7810d6fe04b58f93ae96887116a2a1f9fa6b6239)
Updated by ttereshc almost 7 years ago
Applied in changeset pulp|a2a000881302f934e6711baa21c51129c9a1da11.
Updated by pcreech almost 7 years ago
- Status changed from 5 to CLOSED - CURRENTRELEASE
Updated by ttereshc over 6 years ago
- Copied to Issue #3886: CursorNotFound while queueing applicability tasks added
Actions
Add repo_id index to applicability collection
Search by repo_id is used to queue applicability tasks. If there are many consumer profiles in a collection, cursor may timeout.
closes #3133 https://pulp.plan.io/issues/3133