-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
tuningConfig.jobProperties not passed to hadoop #5135
Comments
I can also see that this line is present in |
commented in #2223 (review) thanks for identifying the root cause. |
@himanshug I fixed this issue here for |
@gvsmirnov In Druid code dev workflow, bugs are always fixed in master and then backported into specific release branch if necessary. we wouldn't be able to do a new druid release of 0.10.1 even if we merged it in 0.10.1 and it would be weird for a bug to be fixed in an older unreleased branch but not in master and upcoming releases. |
@himanshug I see. This is reasonable, I agree. It will likely take some time before I can verify the fix in a version built from |
We are having the same issue with the properties not being passed to hadoop. Is there any other way to set them? |
While upgrading from
0.9.1
to0.10.1
, we noticed that the segment reindexing tasks are failing with the following exception:However, some lines above in the logs, the values are visible, set as per the documentation (and in a way that worked fine pre-upgrade):
After some investigation, I found out that the real config is ignored, and what hadoop gets instead is this:
In the PR that it was introduced in, the only discussion of this line is that
dummyConf
should be a local variable instead of a field: #2223 (comment)I am currently looking for a workaround, but this should be fixed for good. However, l cannot understand how the
dummyConf
was supposed to ever work. Maybe @navis can help explain?The text was updated successfully, but these errors were encountered: