Hi
I have aroung 180 databases in the couchdb , each of about 3Gb . I am using
the permanent views to run some queries in all the databases one by one .
Also i am using python-couchdb to access couchdb using python . I get the
following error after going through few databases :
db = server[dbname]
File
"/usr/local/lib/python2.7/dist-packages/CouchDB-0.8-py2.7.egg/couchdb/client.py",
line 137, in __getitem__
db.resource.head() # actually make a request to the database
File
"/usr/local/lib/python2.7/dist-packages/CouchDB-0.8-py2.7.egg/couchdb/http.py",
line 377, in head
return self._request('HEAD', path, headers=headers, **params)
File
"/usr/local/lib/python2.7/dist-packages/CouchDB-0.8-py2.7.egg/couchdb/http.py",
line 419, in _request
credentials=self.credentials)
File
"/usr/local/lib/python2.7/dist-packages/CouchDB-0.8-py2.7.egg/couchdb/http.py",
line 310, in request
raise ServerError((status, error))
couchdb.http.ServerError: (500, '')
I googled it and found it to be some couchdb issue . Can someone please
tell me if there is any workaround to solve this error . Any advice would
be appreciated.