mralfredgui
06/14/2023, 5:51 PMAleksandr Pilipenko
06/14/2023, 6:08 PMlogger. You should be able to see messages with traceback there.
PythonDriver surfaces all python output to INFO logs, so be sure to check if you are filtering by messageType.mralfredgui
06/14/2023, 6:59 PM"AttributeError: type object 'EnvironmentSettings' has no attribute 'in_streaming_mode'"
It is probably due to the code:
env_settings = EnvironmentSettings.in_streaming_mode()
table_env = TableEnvironment.create(env_settings)
Although I don’t know why this is wrong.Aleksandr Pilipenko
06/14/2023, 7:43 PMEnvironmentSettings.new_instance().in_streaming_mode().use_blink_planner().build()mralfredgui
06/14/2023, 7:49 PM