-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Add HiveConnectorSplit Serde #11184
Add HiveConnectorSplit Serde #11184
Conversation
✅ Deploy Preview for meta-velox canceled.
|
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.
@duanmeng LGTM. Thanks!
} | ||
|
||
std::string HiveConnectorSplit::getFileName() const { | ||
auto i = filePath.rfind('/'); |
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.
const auto pos = ...
std::shared_ptr<std::string> extraFileInfo = | ||
std::make_shared<std::string>(obj["extraFileInfo"].asString()); | ||
std::unordered_map<std::string, std::string> serdeParameters; | ||
for (const auto& [key, value] : obj["serdeParameters"].items()) { |
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.
Do you need to sort based on key? Like #11194 thanks!
@xiaoxmeng has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@xiaoxmeng merged this pull request in 2a42006. |
Conbench analyzed the 1 benchmark run on commit There were no benchmark performance regressions. 🎉 The full Conbench report has more details. |
Add HiveConnectorSplit Serde, a prerequisite for supporting
TableScan
tracing.part of #9668