-
Notifications
You must be signed in to change notification settings - Fork 56
Users/nmalkapuram/postresqlhammerdbsupporton arm #560
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
base: main
Are you sure you want to change the base?
Conversation
…on x64 as hammerdb doesn't itself support arm
bool isX64 = this.CpuArchitecture == System.Runtime.InteropServices.Architecture.X64; | ||
bool isArm64 = this.CpuArchitecture == System.Runtime.InteropServices.Architecture.Arm64; | ||
|
||
bool isArchitectureSupported = isX64 || (isServerExecutorInServerRole && isArm64); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please document which distro is supported on which arch in the document.
"MinimumExecutionInterval": "00:01:00", | ||
"Metadata": { | ||
"RecommendedMinimumExecutionTime": "04:00:00", | ||
"SupportedPlatforms": "linux-x64", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Profile says ARM64 but here it says linux-x64, first, is it possible that we run on both x64 and arm64. Second could we merge the profile?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was redundant profile, I have added the working profile to blob storage. That works for asymmetric client server architecture. (arm46 server and x64 client). Let me know if I need to add this here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For discoverability please add here and use arch agnostic profile if available.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please update documents and verify the supported distro and architecture
No description provided.