I had created a Django view which is returning some data after reading from MySql DB.When i try and fetch around 6000 rows from the Database,everything works fine and the view returns HttpResponse as is expected.However as i try to fetch 7000+ rows i get the following error

(1, "Can't create/write to file '/home/nipun/mysql_temp/MYzplJok' (Errcode: 13)")


Earlier i thought that the error could be due to space getting exhausted for /temp,so i changed the tempdir setting in my.cnf
I also ensured that new tmpdir /home/nipun/mysql_temp and it's parent directories are writable by me by changing the ownership. Although this is not a Django problem,here is the view

def query_json(request):
    from django.utils import simplejson
    objects=Publisher.objects.filter(location='ROOM_01',sensor_name='CPU_TEMPERATURE').order_by('-id')[0:9000]

    json = simplejson.dumps( [{"reading": float(o.reading),
                           "timestamp": str(o.timestamp)
                       } for o in objects] )

    return HttpResponse(json,mimetype="application/json")


So in the filter changing 9000 to 6000 works fine.
Some more information about the error is provided in the Django stack trace

errorclass  
<class '_mysql_exceptions.InternalError'>
errorvalue  
InternalError(1, "Can't create/write to file '/home/nipun/mysql_temp/MYuotga9' (Errcode:     13)")
error   
(<class '_mysql_exceptions.InternalError'>,
InternalError(1, "Can't create/write to file '/home/nipun/mysql_temp/MYuotga9' (Errcode: 13)"))

EDIT
As per a comment, i tried this on my MySQL prompt

mysql> CREATE TEMPORARY TABLE t (i int);
ERROR 1005 (HY000): Can't create table 't' (errno: 13)

So it essentially is now an issue of how to allow MySQL to write to temporary directory

link|improve this question

errno 13 is EACCESS (permission denied) on my machine. Are you sure you have set the permissions so the user Django runs as can write the file, not just you? – Frédéric Hamidi Dec 26 '11 at 6:18
When i try and grab 6000 rows or less,it works.So i guess the permissions are fine – Nipun Batra Dec 26 '11 at 6:20
That might be because the MySQL client only has to create a temporary file when you're grabbing more than 6000 rows... – Frédéric Hamidi Dec 26 '11 at 6:23
So i also now did a chmod 777 on /home and it's subdirectories,also specifically on the tmpdir.Still get the same error – Nipun Batra Dec 26 '11 at 6:30
feedback

3 Answers

up vote 0 down vote accepted

You have configured mysql's tmpdir to point to a directory the server does not have permission to write to.

For small filesorts, MySQL uses an in-memory buffer, but for larger ones uses files on disc (in the tmpdir).

In any case, it is a sysadmin error (not a programming error) setting the MySQL tmpdir to point to a unwritable directory.

link|improve this answer
I even tried everythingmysql.ning.com/profiles/blogs/… still keep on getting the same error – Nipun Batra Dec 27 '11 at 2:53
It is nothing to do with the user which Django runs under. The MySQL server needs to be able to write to its temporary directory. You can test this easily from the mysql command line by creating a temporary table (e.g. CREATE TEMPORARY TABLE t (i int); ) – MarkR Dec 27 '11 at 8:07
I am not able to create temporary tables,tried this on MySQL prompt mysql> CREATE TEMPORARY TABLE t (i int); ERROR 1005 (HY000): Can't create table 't' (errno: 13) – Nipun Batra Dec 27 '11 at 11:52
feedback

Can you write a file from the command line to that directory using the same user that Django is running as? You can try a recursive chmod chmod -R 777 * from /home and see if that helps. It is almost certainly a disk space or UNIX permissions issue.

link|improve this answer
feedback

Change your query to:

q = Publisher.objects.filter(location='ROOM_01',sensor_name='CPU_TEMPERATURE')
objects = q.only('reading','timestamp').order_by('-id')[0:9000]

Split it up for readability, you can lump it in one line in your code

link|improve this answer
Ya,that can be done,but that won't solve my problem which is due to MySQL issues – Nipun Batra Dec 26 '11 at 10:46
One of the reasons this error comes up is when SELECT * is used. Since you have exhausted the other common causes, and this is only happens when you select a large number of rows - it is worth a try. – Burhan Khalid Dec 26 '11 at 11:09
Tried this also..Still keep on getting the same error – Nipun Batra Dec 26 '11 at 11:30
Is the directory writable by the mysql process? – Burhan Khalid Dec 26 '11 at 11:43
I even tried changing the owner of this directory to mysql,even that won't work.NB:This i tried after i had tried chmod 777 on /home – Nipun Batra Dec 26 '11 at 13:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.