Questions tagged [dump]

Storing the data stored in memory following a system crash, application failure, or at the request of an operator, by creating a core dump for future troubleshooting purposes. Additionally, copying a file or storage medium as a precautionary backup measure.

Guide on Importing mongodb dump files(bson+json) in a Windows system

I recently exported MongoDB dump files from my CentOS7 server in both .bson and .json formats. Now, I am trying to import them into my MongoDB on Windows 10. Despite setting an environment variable with the name "mongorestore" and value ".../mongorestore ...

Python OSError: [Errno 9] Issue with file descriptor encountered upon attempting to open large JSON file

Recently, I attempted to process a large json file (the Wikipedia json dump) in Python by reading it line by line. However, I encountered the following Error: Traceback (most recent call last): File "C:/.../test_json_wiki_file.py", line 19, in ...