Details
-
Sub-task
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.8.0
-
None
-
None
Description
Users only care about their own business logic, do not care about the different implementation of stream and batch TableEnvironment.
From:
ExecutionEnvironment env = ... BatchTableEnvironment tEnv = TableEnvironment.getTableEnvironment(env);
To:
ExecutionEnvironment env = … TableEnvironment tEnv = TableEnvironment.getTableEnvironment(env)
The google doc: https://docs.google.com/document/d/1t-AUGuaChADddyJi6e0WLsTDEnf9ZkupvvBiQ4yTTEI/edit#
The DISCUSS thread: http://apache-flink-mailing-list-archive.1008284.n3.nabble.com/DISCUSS-Enhance-convenience-of-TableEnvironment-in-TableAPI-SQL-td25825.html#a25839
Any feedback is welcome!