How to handle long ints in json while inserting into Mongo?OverflowError: MongoDB can only handle up to 8-byte ints?Writing big unsigned int64 to mongoDB with pymognoHow do I format a Microsoft JSON date?How can I pretty-print JSON in a shell script?How do I parse a string to a float or int in Python?How to insert an item into an array at a specific index (JavaScript)?Why does Google prepend while(1); to their JSON responses?How can I pretty-print JSON using JavaScript?How do I convert a String to an int in Java?How to POST JSON data with Curl from Terminal/Commandline to Test Spring REST?How do I write JSON data to a file?How to prettyprint a JSON file?
Why is the Sun approximated as a black body at ~ 5800 K?
Make a Bowl of Alphabet Soup
Do we have to expect a queue for the shuttle from Watford Junction to Harry Potter Studio?
Which was the first story featuring espers?
Is a Java collection guaranteed to be in a valid, usable state after a ConcurrentModificationException?
Doesn't the system of the Supreme Court oppose justice?
awk assign to multiple variables at once
Circuit Analysis: Obtaining Close Loop OP - AMP Transfer function
Is there a nicer/politer/more positive alternative for "negates"?
Creating two special characters
What features enable the Su-25 Frogfoot to operate with such a wide variety of fuels?
Why does Carol not get rid of the Kree symbol on her suit when she changes its colours?
Pre-mixing cryogenic fuels and using only one fuel tank
How to get directions in deep space?
Non-trope happy ending?
How do I fix the group tension caused by my character stealing and possibly killing without provocation?
C++ copy constructor called at return
What is the difference between lands and mana?
What is going on with gets(stdin) on the site coderbyte?
How much of a Devil Fruit must be consumed to gain the power?
Microchip documentation does not label CAN buss pins on micro controller pinout diagram
Can I say "fingers" when referring to toes?
US tourist/student visa
How much theory knowledge is actually used while playing?
How to handle long ints in json while inserting into Mongo?
OverflowError: MongoDB can only handle up to 8-byte ints?Writing big unsigned int64 to mongoDB with pymognoHow do I format a Microsoft JSON date?How can I pretty-print JSON in a shell script?How do I parse a string to a float or int in Python?How to insert an item into an array at a specific index (JavaScript)?Why does Google prepend while(1); to their JSON responses?How can I pretty-print JSON using JavaScript?How do I convert a String to an int in Java?How to POST JSON data with Curl from Terminal/Commandline to Test Spring REST?How do I write JSON data to a file?How to prettyprint a JSON file?
Problem :
I have a very complex json which have several integer values which are beyond 8 Bytes (c_time, p_time) and some which are smaller(id from the below example)
Example structure:
"c_time": 18446744062065078000,
"p_time": 18446744062065078000,
"id" : 122,
"name" : "example",
... : ...
simple json structure
When i want to insert this json into Mongo, iam facing the following error.
Exception MongoDB can only handle up to 8-byte ints
What I Tried:
To rectify this i have 2 options, one way is to parse through the json and remove all such large ints using del c_time. But this obviously has problem which is iam losing valuable info.
Secondly i want to convert these large ints to stings.I parse through the json and tried converting them to strings, but due to complex structure and depth of json its difficult to convert all of them to string.
Is there any simple and effective way to convert all the long ints inside the given json into stings without major penalty of system.
python arrays json mongodb int
add a comment |
Problem :
I have a very complex json which have several integer values which are beyond 8 Bytes (c_time, p_time) and some which are smaller(id from the below example)
Example structure:
"c_time": 18446744062065078000,
"p_time": 18446744062065078000,
"id" : 122,
"name" : "example",
... : ...
simple json structure
When i want to insert this json into Mongo, iam facing the following error.
Exception MongoDB can only handle up to 8-byte ints
What I Tried:
To rectify this i have 2 options, one way is to parse through the json and remove all such large ints using del c_time. But this obviously has problem which is iam losing valuable info.
Secondly i want to convert these large ints to stings.I parse through the json and tried converting them to strings, but due to complex structure and depth of json its difficult to convert all of them to string.
Is there any simple and effective way to convert all the long ints inside the given json into stings without major penalty of system.
python arrays json mongodb int
Possible duplicate of Writing big unsigned int64 to mongoDB with pymogno
– Alex Blex
10 hours ago
See also stackoverflow.com/questions/52544527/…
– luca.vercelli
10 hours ago
add a comment |
Problem :
I have a very complex json which have several integer values which are beyond 8 Bytes (c_time, p_time) and some which are smaller(id from the below example)
Example structure:
"c_time": 18446744062065078000,
"p_time": 18446744062065078000,
"id" : 122,
"name" : "example",
... : ...
simple json structure
When i want to insert this json into Mongo, iam facing the following error.
Exception MongoDB can only handle up to 8-byte ints
What I Tried:
To rectify this i have 2 options, one way is to parse through the json and remove all such large ints using del c_time. But this obviously has problem which is iam losing valuable info.
Secondly i want to convert these large ints to stings.I parse through the json and tried converting them to strings, but due to complex structure and depth of json its difficult to convert all of them to string.
Is there any simple and effective way to convert all the long ints inside the given json into stings without major penalty of system.
python arrays json mongodb int
Problem :
I have a very complex json which have several integer values which are beyond 8 Bytes (c_time, p_time) and some which are smaller(id from the below example)
Example structure:
"c_time": 18446744062065078000,
"p_time": 18446744062065078000,
"id" : 122,
"name" : "example",
... : ...
simple json structure
When i want to insert this json into Mongo, iam facing the following error.
Exception MongoDB can only handle up to 8-byte ints
What I Tried:
To rectify this i have 2 options, one way is to parse through the json and remove all such large ints using del c_time. But this obviously has problem which is iam losing valuable info.
Secondly i want to convert these large ints to stings.I parse through the json and tried converting them to strings, but due to complex structure and depth of json its difficult to convert all of them to string.
Is there any simple and effective way to convert all the long ints inside the given json into stings without major penalty of system.
python arrays json mongodb int
python arrays json mongodb int
asked 11 hours ago
SaiKiranSaiKiran
2,14142651
2,14142651
Possible duplicate of Writing big unsigned int64 to mongoDB with pymogno
– Alex Blex
10 hours ago
See also stackoverflow.com/questions/52544527/…
– luca.vercelli
10 hours ago
add a comment |
Possible duplicate of Writing big unsigned int64 to mongoDB with pymogno
– Alex Blex
10 hours ago
See also stackoverflow.com/questions/52544527/…
– luca.vercelli
10 hours ago
Possible duplicate of Writing big unsigned int64 to mongoDB with pymogno
– Alex Blex
10 hours ago
Possible duplicate of Writing big unsigned int64 to mongoDB with pymogno
– Alex Blex
10 hours ago
See also stackoverflow.com/questions/52544527/…
– luca.vercelli
10 hours ago
See also stackoverflow.com/questions/52544527/…
– luca.vercelli
10 hours ago
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55280033%2fhow-to-handle-long-ints-in-json-while-inserting-into-mongo%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55280033%2fhow-to-handle-long-ints-in-json-while-inserting-into-mongo%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Possible duplicate of Writing big unsigned int64 to mongoDB with pymogno
– Alex Blex
10 hours ago
See also stackoverflow.com/questions/52544527/…
– luca.vercelli
10 hours ago