Hello all,Using rhino.etl to handle a migration from sql server into mongodb. I have a fairly complicated document that i am trying to pull out of several tables in sql and put into mongo. I am getting hung up on the individual processing of the items in the pipelines.the structure looks similar to thisFrame has collection of Stacksa Stack has a collection of Tasksa Task has a collection of Answers.The whole Frame document will be inserted into mongo with the sub collections.Do I need to create an abstract operation to fetch data and just yield the entire collection? Do I use a Join operation? How about a Nested Loops Join ( I am not really 100% sure what this is used for)?
the insertion into mongo actually is fairly seemless for most of the standard pieces but I am struggling a bit here.Any help would be greatly appreciated.Thanks--
You received this message because you are subscribed to the Google Groups "Rhino Tools Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rhino-tools-d...@googlegroups.com.
To post to this group, send email to rhino-t...@googlegroups.com.
Visit this group at http://groups.google.com/group/rhino-tools-dev?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
I think the solution is going to be to create a "FunnelingOperation" (opposite of a branching operation), and start at the furthest leaf of the collection tree and fill up from the bottom. I have to finish writing it and testing it but once I am happy with it I will post the code.