How I can pass value to spawn node?

Hello!

I have a set of numbers and I want to run a node for each of them?

Can implement it without manual loop? On other tab I can have the input array to be set as "Run one instance for each item" but can I get access to the value in each node?

  Discussion posts and replies are publicly visible

Parents
  • As Jose mentioned you are looking for MNI. In addition, there are restrictions with MNI and it can be very resource intensive and can cause performance and overhead issues, and you can only spawn 1000 instances at a time. As per best practice it is only recommended to use MNI after you have exhausted all other possibilities and MNI is the only solution for your use case. Please do keep this in mind.
Reply
  • As Jose mentioned you are looking for MNI. In addition, there are restrictions with MNI and it can be very resource intensive and can cause performance and overhead issues, and you can only spawn 1000 instances at a time. As per best practice it is only recommended to use MNI after you have exhausted all other possibilities and MNI is the only solution for your use case. Please do keep this in mind.
Children