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
A node need to be able to set an extended set of flags for itself that should be available on chain (public)
Suggestion
Instead of modifying the node object itself (that require expensive migration) we can have a dynamic set of feature flags separate from the node itself.
The feature flags should be a dynamic type a list of tuples (key, value) means that a node can have a set of features that can be extended when needed without any required migration. I prefer to have a list of tuples over a map so we can have the same key multiple times (say if we have 2 different GPUs attached to a node)
A node need to be able to set an extended set of flags for itself that should be available on chain (public)
Suggestion
Instead of modifying the node object itself (that require expensive migration) we can have a dynamic set of
feature flags
separate from the node itself.The feature flags should be a dynamic type
a list of tuples (key, value)
means that a node can have a set of features that can be extended when needed without any required migration. I prefer to have alist
oftuples
over a map so we can have the same key multiple times (say if we have 2 different GPUs attached to a node)For example:
A node features can look like
The text was updated successfully, but these errors were encountered: