Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GLUTEN-1367] Support running gluten on anolis #1368

Merged
merged 2 commits into from
Apr 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ class VeloxInitializerApi extends InitializerApi {
new VeloxSharedlibraryLoaderCentos7
} else if (system.contains("alinux") && system.contains("3")) {
new VeloxSharedlibraryLoaderCentos8
} else if (system.contains("Anolis") && system.contains("8")) {
new VeloxSharedlibraryLoaderCentos8
} else if (system.contains("Anolis") && system.contains("7")) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alinux3 is verified with Alibaba cloud EMR release version 5.11.1
I'm not sure Anolis7/8 is supported too.

How do you test it?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Yohahaha Thanks for your review, we use our own basic image with anolis 8 with spark and only modify the VeloxInitializerApi in gluten and do not modify centos set.up script.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for clarify, make sense for me.
cc @FelixYBW @zhejiangxiaomai

new VeloxSharedlibraryLoaderCentos7
}
loader.asInstanceOf[VeloxSharedlibraryLoader].loadLib(load)
}
Expand Down