-
|
msg": "Cluster template import failed. Result message: Cannot deserialize instance of |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
Hi @ovolmar did you find a solution please? I am facing the same problem : |
Beta Was this translation helpful? Give feedback.
-
|
I had the same problem, the issue was in the I have used the comma separated paths in one line instead, it worked afterwards. The error mesage itself |
Beta Was this translation helpful? Give feedback.
-
|
@HirossxD thanks yes it is the solution I found too :) |
Beta Was this translation helpful? Give feedback.
I had the same problem, the issue was in the
definition.ymlwhen setting multiple disks in thedfs_data_dir_list.You cannot use the array/list format like:
I have used the comma separated paths in one line instead, it worked afterwards.
for example:
The error mesage itself
Cannot deserialize instance of java.lang.String out of START_ARRAYtells you that CM cannot read/parse the array of paths, it is all being imported in the first input field of dfs.data.data.dir config, which does not accept array.…