Intermittent IndexError with MySQL and Django running on Ubuntu












0















Here is what I'm getting:



Traceback (most recent call last):

File "/.../.env/lib/python3.6/site-packages/django/core/handlers/exception.py", line 34, in inner
response = get_response(request)

File "/.../.env/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response
response = self.process_exception_by_middleware(e, request)

File "/.../.env/lib/python3.6/site-packages/django/core/handlers/base.py", line 124, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/decorators.py", line 20, in _wrapped_view
if test_func(request.user):

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/decorators.py", line 44, in <lambda>
lambda u: u.is_authenticated,

File "/.../.env/lib/python3.6/site-packages/django/utils/functional.py", line 213, in inner
self._setup()

File "/.../.env/lib/python3.6/site-packages/django/utils/functional.py", line 347, in _setup
self._wrapped = self._setupfunc()

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/middleware.py", line 24, in <lambda>
request.user = SimpleLazyObject(lambda: get_user(request))

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/middleware.py", line 12, in get_user
request._cached_user = auth.get_user(request)

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/__init__.py", line 189, in get_user
user = backend.get_user(user_id)

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/backends.py", line 98, in get_user
user = UserModel._default_manager.get(pk=user_id)

File "/.../.env/lib/python3.6/site-packages/django/db/models/manager.py", line 82, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)

File "/.../.env/lib/python3.6/site-packages/django/db/models/query.py", line 393, in get
num = len(clone)

File "/.../.env/lib/python3.6/site-packages/django/db/models/query.py", line 250, in __len__
self._fetch_all()

File "/.../.env/lib/python3.6/site-packages/django/db/models/query.py", line 1186, in _fetch_all
self._result_cache = list(self._iterable_class(self))

File "/.../.env/lib/python3.6/site-packages/django/db/models/query.py", line 63, in __iter__
for row in compiler.results_iter(results):

File "/.../.env/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1007, in apply_converters
value = row[pos]

IndexError: list index out of range


As you can see, there is none of my code in the stacktrace, all I know is that this code is happening somewhere in a very simple view that gets a queryset and renders it to JSON.



Most of the times it works, sometimes this traceback is thrown and the page 500s.



What the hell is going on?



Sometimes I get other weird errors:



unsupported operand type(s) for +=: 'int' and 'str'


triggered by



count += Model.objects.filter(...).count()


I've tried to replicate from a shell, but that's not working.










share|improve this question

























  • You're sure there isn't more to the traceback (like "while handling this exception another exception occurred")?

    – dirkgroten
    Nov 20 '18 at 17:24











  • Please show us the view where you think the error is happening.

    – dirkgroten
    Nov 20 '18 at 17:24











  • @dirkgroten That's all I'm getting from @receiver(got_request_exception)

    – user31415629
    Nov 20 '18 at 17:35











  • @dirkgroten It happens in all sorts of places, completely randomly, for example when calling Object.objects.filter(foo=bar). It seems to be random across all such requests, for no particular objects.

    – user31415629
    Nov 20 '18 at 17:36
















0















Here is what I'm getting:



Traceback (most recent call last):

File "/.../.env/lib/python3.6/site-packages/django/core/handlers/exception.py", line 34, in inner
response = get_response(request)

File "/.../.env/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response
response = self.process_exception_by_middleware(e, request)

File "/.../.env/lib/python3.6/site-packages/django/core/handlers/base.py", line 124, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/decorators.py", line 20, in _wrapped_view
if test_func(request.user):

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/decorators.py", line 44, in <lambda>
lambda u: u.is_authenticated,

File "/.../.env/lib/python3.6/site-packages/django/utils/functional.py", line 213, in inner
self._setup()

File "/.../.env/lib/python3.6/site-packages/django/utils/functional.py", line 347, in _setup
self._wrapped = self._setupfunc()

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/middleware.py", line 24, in <lambda>
request.user = SimpleLazyObject(lambda: get_user(request))

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/middleware.py", line 12, in get_user
request._cached_user = auth.get_user(request)

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/__init__.py", line 189, in get_user
user = backend.get_user(user_id)

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/backends.py", line 98, in get_user
user = UserModel._default_manager.get(pk=user_id)

File "/.../.env/lib/python3.6/site-packages/django/db/models/manager.py", line 82, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)

File "/.../.env/lib/python3.6/site-packages/django/db/models/query.py", line 393, in get
num = len(clone)

File "/.../.env/lib/python3.6/site-packages/django/db/models/query.py", line 250, in __len__
self._fetch_all()

File "/.../.env/lib/python3.6/site-packages/django/db/models/query.py", line 1186, in _fetch_all
self._result_cache = list(self._iterable_class(self))

File "/.../.env/lib/python3.6/site-packages/django/db/models/query.py", line 63, in __iter__
for row in compiler.results_iter(results):

File "/.../.env/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1007, in apply_converters
value = row[pos]

IndexError: list index out of range


As you can see, there is none of my code in the stacktrace, all I know is that this code is happening somewhere in a very simple view that gets a queryset and renders it to JSON.



Most of the times it works, sometimes this traceback is thrown and the page 500s.



What the hell is going on?



Sometimes I get other weird errors:



unsupported operand type(s) for +=: 'int' and 'str'


triggered by



count += Model.objects.filter(...).count()


I've tried to replicate from a shell, but that's not working.










share|improve this question

























  • You're sure there isn't more to the traceback (like "while handling this exception another exception occurred")?

    – dirkgroten
    Nov 20 '18 at 17:24











  • Please show us the view where you think the error is happening.

    – dirkgroten
    Nov 20 '18 at 17:24











  • @dirkgroten That's all I'm getting from @receiver(got_request_exception)

    – user31415629
    Nov 20 '18 at 17:35











  • @dirkgroten It happens in all sorts of places, completely randomly, for example when calling Object.objects.filter(foo=bar). It seems to be random across all such requests, for no particular objects.

    – user31415629
    Nov 20 '18 at 17:36














0












0








0


1






Here is what I'm getting:



Traceback (most recent call last):

File "/.../.env/lib/python3.6/site-packages/django/core/handlers/exception.py", line 34, in inner
response = get_response(request)

File "/.../.env/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response
response = self.process_exception_by_middleware(e, request)

File "/.../.env/lib/python3.6/site-packages/django/core/handlers/base.py", line 124, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/decorators.py", line 20, in _wrapped_view
if test_func(request.user):

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/decorators.py", line 44, in <lambda>
lambda u: u.is_authenticated,

File "/.../.env/lib/python3.6/site-packages/django/utils/functional.py", line 213, in inner
self._setup()

File "/.../.env/lib/python3.6/site-packages/django/utils/functional.py", line 347, in _setup
self._wrapped = self._setupfunc()

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/middleware.py", line 24, in <lambda>
request.user = SimpleLazyObject(lambda: get_user(request))

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/middleware.py", line 12, in get_user
request._cached_user = auth.get_user(request)

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/__init__.py", line 189, in get_user
user = backend.get_user(user_id)

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/backends.py", line 98, in get_user
user = UserModel._default_manager.get(pk=user_id)

File "/.../.env/lib/python3.6/site-packages/django/db/models/manager.py", line 82, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)

File "/.../.env/lib/python3.6/site-packages/django/db/models/query.py", line 393, in get
num = len(clone)

File "/.../.env/lib/python3.6/site-packages/django/db/models/query.py", line 250, in __len__
self._fetch_all()

File "/.../.env/lib/python3.6/site-packages/django/db/models/query.py", line 1186, in _fetch_all
self._result_cache = list(self._iterable_class(self))

File "/.../.env/lib/python3.6/site-packages/django/db/models/query.py", line 63, in __iter__
for row in compiler.results_iter(results):

File "/.../.env/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1007, in apply_converters
value = row[pos]

IndexError: list index out of range


As you can see, there is none of my code in the stacktrace, all I know is that this code is happening somewhere in a very simple view that gets a queryset and renders it to JSON.



Most of the times it works, sometimes this traceback is thrown and the page 500s.



What the hell is going on?



Sometimes I get other weird errors:



unsupported operand type(s) for +=: 'int' and 'str'


triggered by



count += Model.objects.filter(...).count()


I've tried to replicate from a shell, but that's not working.










share|improve this question
















Here is what I'm getting:



Traceback (most recent call last):

File "/.../.env/lib/python3.6/site-packages/django/core/handlers/exception.py", line 34, in inner
response = get_response(request)

File "/.../.env/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response
response = self.process_exception_by_middleware(e, request)

File "/.../.env/lib/python3.6/site-packages/django/core/handlers/base.py", line 124, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/decorators.py", line 20, in _wrapped_view
if test_func(request.user):

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/decorators.py", line 44, in <lambda>
lambda u: u.is_authenticated,

File "/.../.env/lib/python3.6/site-packages/django/utils/functional.py", line 213, in inner
self._setup()

File "/.../.env/lib/python3.6/site-packages/django/utils/functional.py", line 347, in _setup
self._wrapped = self._setupfunc()

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/middleware.py", line 24, in <lambda>
request.user = SimpleLazyObject(lambda: get_user(request))

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/middleware.py", line 12, in get_user
request._cached_user = auth.get_user(request)

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/__init__.py", line 189, in get_user
user = backend.get_user(user_id)

File "/.../.env/lib/python3.6/site-packages/django/contrib/auth/backends.py", line 98, in get_user
user = UserModel._default_manager.get(pk=user_id)

File "/.../.env/lib/python3.6/site-packages/django/db/models/manager.py", line 82, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)

File "/.../.env/lib/python3.6/site-packages/django/db/models/query.py", line 393, in get
num = len(clone)

File "/.../.env/lib/python3.6/site-packages/django/db/models/query.py", line 250, in __len__
self._fetch_all()

File "/.../.env/lib/python3.6/site-packages/django/db/models/query.py", line 1186, in _fetch_all
self._result_cache = list(self._iterable_class(self))

File "/.../.env/lib/python3.6/site-packages/django/db/models/query.py", line 63, in __iter__
for row in compiler.results_iter(results):

File "/.../.env/lib/python3.6/site-packages/django/db/models/sql/compiler.py", line 1007, in apply_converters
value = row[pos]

IndexError: list index out of range


As you can see, there is none of my code in the stacktrace, all I know is that this code is happening somewhere in a very simple view that gets a queryset and renders it to JSON.



Most of the times it works, sometimes this traceback is thrown and the page 500s.



What the hell is going on?



Sometimes I get other weird errors:



unsupported operand type(s) for +=: 'int' and 'str'


triggered by



count += Model.objects.filter(...).count()


I've tried to replicate from a shell, but that's not working.







mysql django






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 20 '18 at 17:44







user31415629

















asked Nov 20 '18 at 17:11









user31415629user31415629

449214




449214













  • You're sure there isn't more to the traceback (like "while handling this exception another exception occurred")?

    – dirkgroten
    Nov 20 '18 at 17:24











  • Please show us the view where you think the error is happening.

    – dirkgroten
    Nov 20 '18 at 17:24











  • @dirkgroten That's all I'm getting from @receiver(got_request_exception)

    – user31415629
    Nov 20 '18 at 17:35











  • @dirkgroten It happens in all sorts of places, completely randomly, for example when calling Object.objects.filter(foo=bar). It seems to be random across all such requests, for no particular objects.

    – user31415629
    Nov 20 '18 at 17:36



















  • You're sure there isn't more to the traceback (like "while handling this exception another exception occurred")?

    – dirkgroten
    Nov 20 '18 at 17:24











  • Please show us the view where you think the error is happening.

    – dirkgroten
    Nov 20 '18 at 17:24











  • @dirkgroten That's all I'm getting from @receiver(got_request_exception)

    – user31415629
    Nov 20 '18 at 17:35











  • @dirkgroten It happens in all sorts of places, completely randomly, for example when calling Object.objects.filter(foo=bar). It seems to be random across all such requests, for no particular objects.

    – user31415629
    Nov 20 '18 at 17:36

















You're sure there isn't more to the traceback (like "while handling this exception another exception occurred")?

– dirkgroten
Nov 20 '18 at 17:24





You're sure there isn't more to the traceback (like "while handling this exception another exception occurred")?

– dirkgroten
Nov 20 '18 at 17:24













Please show us the view where you think the error is happening.

– dirkgroten
Nov 20 '18 at 17:24





Please show us the view where you think the error is happening.

– dirkgroten
Nov 20 '18 at 17:24













@dirkgroten That's all I'm getting from @receiver(got_request_exception)

– user31415629
Nov 20 '18 at 17:35





@dirkgroten That's all I'm getting from @receiver(got_request_exception)

– user31415629
Nov 20 '18 at 17:35













@dirkgroten It happens in all sorts of places, completely randomly, for example when calling Object.objects.filter(foo=bar). It seems to be random across all such requests, for no particular objects.

– user31415629
Nov 20 '18 at 17:36





@dirkgroten It happens in all sorts of places, completely randomly, for example when calling Object.objects.filter(foo=bar). It seems to be random across all such requests, for no particular objects.

– user31415629
Nov 20 '18 at 17:36












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53398122%2fintermittent-indexerror-with-mysql-and-django-running-on-ubuntu%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53398122%2fintermittent-indexerror-with-mysql-and-django-running-on-ubuntu%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

How to fix TextFormField cause rebuild widget in Flutter

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith