You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of using JSON lines you can also import a single JSON object into the database. This will load the JSON document into memory first.
I'm unsure of what this means, I've executed the command with no errors, but where in memory is my uploaded(?) JSON object?
Thanks in advance.
The text was updated successfully, but these errors were encountered:
XYTYX
changed the title
Where
Where does the single JSON object get stored in memory?
May 25, 2016
This will load the JSON document into memory first.
What I meant by this is that if you have a very large JSON object (2GB) this will also require 2GB memory to load the object into the buffer. But this has nothing to do with the database.
I recommend to use json lines importing a single JSON object was a use case in this issue #9
But if you use the normal json lines an have n records you don't need O(n) space as each record is loaded into memory and decoded as you go.
Hi Lukas,
According to your docs...
Thanks in advance.
The text was updated successfully, but these errors were encountered: