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
The current data model supports that each record has a "status", thus allowing the user to understand the current progress on its uploads.
The application supports it but there is currently an error when accessing the database inside a celery task:
File "/Users/alejandromumo/.virtualenvs/lycophron/lib/python3.9/site-packages/sqlalchemy/engine/base.py", line 1964, in _exec_single_context self.dialect.do_execute( File "/Users/alejandromumo/.virtualenvs/lycophron/lib/python3.9/site-packages/sqlalchemy/engine/default.py", line 747, in do_execute cursor.execute(statement, parameters) MemoryError [2023-03-27 15:36:41,853: ERROR/MainProcess] Pool callback raised exception: MemoryError('Process got: ') Traceback (most recent call last): File "/Users/alejandromumo/.virtualenvs/lycophron/lib/python3.9/site-packages/billiard/pool.py", line 1796, in safe_apply_callback fun(*args, **kwargs) File "/Users/alejandromumo/.virtualenvs/lycophron/lib/python3.9/site-packages/celery/worker/request.py", line 730, in on_success return self.on_failure(retval, return_ok=True) File "/Users/alejandromumo/.virtualenvs/lycophron/lib/python3.9/site-packages/celery/worker/request.py", line 545, in on_failure raise MemoryError(f'Process got: {exc}') MemoryError: Process got:
it seems that the engine (sqlite) is executing the cursor to fetch the data and somehow fails. The, celery returns a MemoryError.
MemoryError
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The current data model supports that each record has a "status", thus allowing the user to understand the current progress on its uploads.
The application supports it but there is currently an error when accessing the database inside a celery task:
it seems that the engine (sqlite) is executing the cursor to fetch the data and somehow fails. The, celery returns a
MemoryError
.The text was updated successfully, but these errors were encountered: