-
Notifications
You must be signed in to change notification settings - Fork 5.5k
feat: Add TW feature flag for Report Builder Remote UDF #26472
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: master
Are you sure you want to change the base?
Conversation
Summary: Add TW flag to enable native report builder function Differential Revision: D85263402
Reviewer's guide (collapsed on small PRs)Reviewer's GuideAdd a new boolean system configuration flag to enable the Facebook Report Builder Remote UDF, including its key definition, default value, and accessor method. Class diagram for updated SystemConfig with new feature flagclassDiagram
class SystemConfig {
+enableVeloxExprSetLogging() bool
+enableFbRemoteReportBuilderFunction() bool
+useMmapAllocator() bool
<<static>> kEnableVeloxTaskLogging : string_view
<<static>> kEnableVeloxExprSetLogging : string_view
<<static>> kEnableFbRemoteReportBuilderFunction : string_view
<<static>> kLocalShuffleMaxPartitionBytes : string_view
<<static>> kShuffleName : string_view
}
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
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.
@natashasehgal : This flag is for a very specific Meta feature.
It would be great if you'll have a separate Meta internal Config for these and not add to the general Prestissimo SystemConfig.
@amitkdutta : wdyt ? Any chance these config can be kept Meta internal ?
|
@natashasehgal Lets add this config internally as the config is not used in oss |
Summary: Add TW feature flag for Facebook internal function - FB Report Builder Remote Function
Differential Revision: D85263402