[
https://issues.apache.org/jira/browse/FLINK-21065?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Flink Jira Bot updated FLINK-21065:
-----------------------------------
Labels: auto-deprioritized-critical auto-deprioritized-major stale-minor
(was: auto-deprioritized-critical auto-deprioritized-major)
I am the [Flink Jira Bot|https://github.com/apache/flink-jira-bot/] and I help
the community manage its development. I see this issues has been marked as
Minor but is unassigned and neither itself nor its Sub-Tasks have been updated
for 180 days. I have gone ahead and marked it "stale-minor". If this ticket is
still Minor, please either assign yourself or give an update. Afterwards,
please remove the label or in 7 days the issue will be deprioritized.
> Passing configuration from TableEnvironmentImpl to MiniCluster is not
> supported
> -------------------------------------------------------------------------------
>
> Key: FLINK-21065
> URL: https://issues.apache.org/jira/browse/FLINK-21065
> Project: Flink
> Issue Type: Bug
> Components: API / DataStream, Table SQL / API
> Affects Versions: 1.13.0
> Reporter: Robert Metzger
> Priority: Minor
> Labels: auto-deprioritized-critical, auto-deprioritized-major,
> stale-minor
> Attachments: Screenshot 2021-01-21 at 11.31.21.png
>
>
> While trying to fix a bug in Flink's scheduler, I needed to pass a
> configuration parameter from the TableEnvironmentITCase (blink planner) to
> the TaskManager.
> Changing this from:
> {code}
> case "TableEnvironment" =>
> tEnv = TableEnvironmentImpl.create(settings)
> {code}
> to
> {code}
> case "TableEnvironment" =>
> tEnv = TableEnvironmentImpl.create(settings)
> val conf = new Configuration();
> conf.setInteger("taskmanager.numberOfTaskSlots", 1)
> tEnv.getConfig.addConfiguration(conf)
> {code}
> Did not cause any effect on the launched TaskManager.
> It seems that configuration is not properly forwarded through all
> abstractions.
--
This message was sent by Atlassian Jira
(v8.20.1#820001)