[ 
https://issues.apache.org/jira/browse/FLINK-10294?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Flink Jira Bot updated FLINK-10294:
-----------------------------------
    Labels: auto-deprioritized-major auto-unassigned stale-minor  (was: 
auto-deprioritized-major auto-unassigned)

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.


> Split MiniClusterResource to be usable in runtime/streaming-java/clients
> ------------------------------------------------------------------------
>
>                 Key: FLINK-10294
>                 URL: https://issues.apache.org/jira/browse/FLINK-10294
>             Project: Flink
>          Issue Type: Technical Debt
>          Components: API / DataStream, Tests
>    Affects Versions: 1.7.0
>            Reporter: Chesnay Schepler
>            Priority: Minor
>              Labels: auto-deprioritized-major, auto-unassigned, stale-minor
>
> h5. Problem
> The {{MiniClusterResource}} is a utility class to create and manage flink 
> clusters for testing purposes. It is incredibly convenient, but unfortunately 
> resides in {{flink-test-utils}} which depends on flink-runtime, 
> flink-streaming-java and flink-clients, making the class not usable in these 
> modules.
> The current version does require these dependencies, but only for specific, 
> *optional*, parts. {{streaming-java}} is only required for accessing 
> {{TestStreamEnvironment}} and {{flink-clients}} only for tests that want to 
> work against a {{ClusterClient}}.
> h5. Proposal
> Split the {{MiniClusterResource}} as follows:
> h5. 1)
> Remove client/streaming-java dependent parts and move the class to 
> flink-runtime.
> h5. 2)
> Add a new class {{StreamingMiniClusterResourceExtension}} that accepts a  
> {{MiniClusterResource}} as an argument and contains the streaming parts.
> Usage would look like this:
> {code}
> private final MiniClusterResource cluster = ...
> private final StreamingMiniClusterResourceExtension ext = new 
> StreamingMiniClusterResourceExtension(cluster);
> @Rule
> public RuleChain chain= RuleChain
>       .outerRule(cluster) 
>       .around(ext),
> {code}
> h5. 3)
> Add a new class {{ClientMiniClusterResourceExtension}} that accepts a  
> {{MiniClusterResource}} as an argument and contains the client parts.
> Usage would look like this:
> {code}
> private final MiniClusterResource cluster = ...
> private final ClientMiniClusterResourceExtensionext = new 
> ClientMiniClusterResourceExtension(cluster);
> @Rule
> public RuleChain chain= RuleChain
>       .outerRule(cluster) 
>       .around(ext),
> {code}
> [~till.rohrmann] WDYT?



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

Reply via email to