Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on October 23, 2017 7:45PM
Likes: 0
Replies: 4
Hi,
A recipe will read from the input (upstream) dataset and write into its output dataset every time you run it, including if you run several recipes to build a final dataset. Some recipes can be executed directly in the SQL database for instance, depending on where your data is and the Engine you set for that recipe, see Execution Engines. Depending on the engine and recipe, the data may be streamed (and not need a lot of memory), or loaded fully into memory. DSS will try to advise by default-selecting the best available engine for your recipes.
Under certain conditions, you can skip the writing of intermediate datasets you don't need using Spark pipelines.
Like to know how DSS loads data into SQL tables.
For example,
we have 10K records in the source when the flow is executed it will load after processing each record in batches (say after load after 1K records ) or it will start loading after all the records are processed (after 10K records )?