You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Launchers - Kubernetes - Support a temporary way to implicitly pass multi-node information to the component code
When multi-node is activated, the component code will have access to the following environment variables:
* `_TANGLE_MULTI_NODE_NUMBER_OF_NODES`
* `_TANGLE_MULTI_NODE_NODE_INDEX`
After testing, this implementation will be replaced by more explicit way to consume multi-node information (dynamicData arguments passed to component inputs).
f"Invalid number of nodes for multi-node execution. Number of nodes must be between 1 and 16, but got {num_nodes}."
926
927
)
927
928
929
+
ifenable_multi_node:
930
+
# Temporary implementation of implicitly passing multi-node information to the component code.
931
+
# After testing, this implementation will be replaced by more explicit way to consume multi-node information (dynamicData arguments passed to component inputs).
0 commit comments