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?













1















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.










share|improve this question






















  • 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















1















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.










share|improve this question






















  • 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













1












1








1


1






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.










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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

















  • 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












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
);



);













draft saved

draft discarded


















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















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해