Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How make a dynamic JSON for mongoDB ?

Hello,

 

I would like to insert data into a NoSQL DataBase (MongoDB).

 

The problem is I the format of my Json will change very often, example:

 

{

name: "okoo",

quality: "good"

}

OR

{

designation: "comportement",

type: "forge"

}

 

I can't know what will it be in my JSON.

 

So my question is how can I send a JSON to the component tMongoDBOutput, because I have the impression it needs a shema! 

Labels (2)
6 Replies
Anonymous
Not applicable
Author

Hello,

Feature of dynamic schema is not supported for MongoDB components as of now.

A new feature jira issue has been submitted to address it in future release.https://jira.talendforge.org/browse/TBD-3134

Could you try to make use of tExtractJson components and meet the requirement?

Best regards

Sabrina

 

Anonymous
Not applicable
Author

This new feature was created on February 2016, do you know if they are progressing? 

 

I'm trying to make a dynamic json with tJavaRow and send it to tMongoDbOutput, but it's not working. Do you have any other ideas?

Anonymous
Not applicable
Author

Hello,

Feel free to vote for this new feature jira issue.

Depending up on your usecase, are you able to make use of tExtractJson components and meet the requirement else one can restrict to use set schema option?

Best regards

Sabrina

 

 

Anonymous
Not applicable
Author

I'll explain you my use case, maybe you'll have an idea I didn't think. 

0683p000009LyV2.png

I'm listing a SQL Server Database, and when there is an insert or update in this Database, I get the new Data. 

The row that will be returned to me may be different depending on the table that has just been modified (So I need a dynamic schema).

When I have this new data, I want to insert it in MongoDB. The problem is, my schema is dynamic and I can't push this dynamic schema to MongoDB.

 

What do you think? 

Anonymous
Not applicable
Author

Hello,

 

Here's my approach for this problem.

You route your SQL input to a tWriteJSONField that generates the JSON, and then you send it to a tMongoDBRow using a function or a command.

Here's an example, using a tFixedFlowInput to generate some rows, just replace it with your Db row input.

0683p000009M2l7.pngInput0683p000009M2lC.pngJSON schema0683p000009M13K.pngJSON tree

("Remove root node" is important !)

0683p000009M2lH.pngOutput command

 

Hope this will help.

 

Regards,

 

--
Pierre Réveillon

kanuparthy
Contributor
Contributor

Can you provide me a sample like above to do insert on update on json object