SendRequest Async pass HS.SDA3.Container Object
I am trying to avoid parsing the SDA3 stream in each process. I am doing some section wise validation in different processes so i need to pass the SDA3 to each process.
When i pass that SDA3 stream that takes a lot of space in HD and takes a lot of time to parse the SDA3 object.
Is there any way that once i parse that SDA3 i can pass the same object to other processes, and i can save my storage and process that fast.
I cannot pass this by default to other process as non persistent object cannot be passed to another job(as per my finding).
Any leads will be great.
Comments
HS.SDA3.Container is a registered object and not a persistent one, so you can't pass it directly.
What you can do, however, is to pass existing stream id in your request, this way stream is not copied twice (you only pass an id) and receiver then can recreate the same HS.SDA3.Container from a stream.