We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Related issue: #4592 revealed that there was not enough celery-worker RAM for memory-intensive loading/refresh.
That MUR is now loaded https://dev.fec.gov/data/legal/matter-under-review/7594/ by upping the memory to 4G.
The intensive query was:
SELECT doc.document_id, mur.case_no, mur.case_type, doc.filename, doc.category, doc.description, doc.ocrtext, doc.fileimage, length(fileimage) as length, doc.doc_order_id, doc.document_date FROM fecmur.document doc INNER JOIN fecmur.cases_with_parsed_case_serial_numbers_vw mur ON mur.case_id = doc.case_id WHERE doc.case_id = '60000002999600'
The original successful manual uploads of the missing MUR to PROD and DEV used 4G:
PROD
DEV
cf run-task api "python manage.py load_current_murs -s 7594" -m 4G --name load-MUR-7594
WorkerLostError
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
Related issue: #4592 revealed that there was not enough celery-worker RAM for memory-intensive loading/refresh.
That MUR is now loaded https://dev.fec.gov/data/legal/matter-under-review/7594/ by upping the memory to 4G.
The intensive query was:
The original successful manual uploads of the missing MUR to
PROD
andDEV
used 4G:Technical considerations:
WorkerLostError
?The text was updated successfully, but these errors were encountered: