-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[fix](kerberos) Back to use principal and keytab to login kerberos instead of using kerberos ticket cache. #48655
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
Conversation
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
|
run buildall |
TPC-H: Total hot run time: 31731 ms |
TPC-DS: Total hot run time: 191814 ms |
ClickBench: Total hot run time: 30.33 s |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
|
run complier |
|
run compile |
4287456 to
a487274
Compare
|
run buildall |
TPC-H: Total hot run time: 32409 ms |
TPC-DS: Total hot run time: 185142 ms |
ClickBench: Total hot run time: 31.26 s |
|
PR approved by at least one committer and no changes requested. |
|
PR approved by anyone and no changes requested. |
8bda1ed to
f6fc49a
Compare
|
run buildall |
|
run buildall |
TPC-H: Total hot run time: 32493 ms |
TPC-DS: Total hot run time: 192026 ms |
ClickBench: Total hot run time: 31.52 s |
BE UT Coverage ReportIncrement line coverage Increment coverage report
|
|
PR approved by at least one committer and no changes requested. |
dataroaring
left a comment
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.
LGTM
…stead of using kerberos ticket cache. (apache#48655) ### What problem does this PR solve? Related PR: apache#47299, apache#49181 This PR mainly changes: 1. Back to use principal and keytab to login kerberos instead of using kerberos ticket cache. Discard what I did in apache#47299. It looks like there are a lot of issue when using ticket cache in multi-kerberos env. So I abandoned that logic. 2. Config's default value Change the default value of related to hdfs file handle cache 1. `max_hdfs_file_handle_cache_num`: from 1000 to 20000 2. `max_hdfs_file_handle_cache_time_sec`: from 3600 to 28800 3. Fix a bug the cleanup thread of `FileHandleCache` is not working
…stead of using kerberos ticket cache. (apache#48655) Related PR: apache#47299, apache#49181 This PR mainly changes: 1. Back to use principal and keytab to login kerberos instead of using kerberos ticket cache. Discard what I did in apache#47299. It looks like there are a lot of issue when using ticket cache in multi-kerberos env. So I abandoned that logic. 2. Config's default value Change the default value of related to hdfs file handle cache 1. `max_hdfs_file_handle_cache_num`: from 1000 to 20000 2. `max_hdfs_file_handle_cache_time_sec`: from 3600 to 28800 3. Fix a bug the cleanup thread of `FileHandleCache` is not working
What problem does this PR solve?
Related PR: #47299, #49181
This PR mainly changes:
Back to use principal and keytab to login kerberos instead of using kerberos ticket cache.
Discard what I did in [opt](kerberos) use ticket cache instead of principal+keytab on BE side #47299. It looks like there are a lot of issue when using ticket cache in multi-kerberos env.
So I abandoned that logic.
Config's default value
Change the default value of related to hdfs file handle cache
max_hdfs_file_handle_cache_num: from 1000 to 20000max_hdfs_file_handle_cache_time_sec: from 3600 to 28800Fix a bug the cleanup thread of
FileHandleCacheis not workingRelease note
None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)