Open rhh777 opened 1 year ago
https://github.com/Alluxio/alluxio/blob/master/core/common/src/main/java/alluxio/wire/TieredIdentity.java#L45 when i Change the mTiers of the TieredIdentity object to another List, eg: ArrayList, it's ok.
public TieredIdentity(@JsonProperty("tiers") List<LocalityTier> tiers) {
//mTiers = ImmutableList.copyOf(Preconditions.checkNotNull(tiers, "tiers"));
mTiers = new ArrayList<>();
mTiers.addAll(tiers);
}
Thank you @rhh777 for reporting this issue and also a fix to this issue. We will have Alluxio engineers to verify this bug and the patch.
@jiacheliu3 Can you please take a look at this issue?
Hi there, I got the same issue. Could you let me know the date to clear this issue?
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in two weeks if no further activity occurs. Thank you for your contributions.
Alluxio Version: 2.9.0-1
Describe the bug
hudi data location is alluxio . when use sparksql query hudi table and enabled kryo , I received an exception: KryoException: java.lang.UnsupportedOperationException
To Reproduce
Expected behavior no exception.
Urgency hudi is unavailable on alluxio 2.9.0-1.
Are you planning to fix it Change the mTiers of the
TieredIdentity
object to another List.Additional context Before using alluxio2.9.0-1, I used 2.7.3.1 as normal.