Hi,
I'm curious about the order in which resources are allocated.Are they allocated sequentially or randomly?
For example, if resources are created as shown below, is "1" always the highest priority among 1~4?
resource name : TEST
Node Selection :
(
node.getHostName().startsWith("1")
|| node.getHostName().startsWith("2")
|| node.getHostName().startsWith("3")
|| node.getHostName().startsWith("4")
)