本文簡要介紹 python 語言中pyflink.table.TableEnvironment.set_python_requirements
的用法。
用法:
set_python_requirements(requirements_file_path: str, requirements_cache_dir: str = None)
指定定義第三方依賴項的requirements.txt 文件。這些依賴項將安裝到一個臨時目錄並添加到 python UDF worker 的 PYTHONPATH 中。
對於集群中無法訪問的依賴,可以使用參數“requirements_cached_dir”來指定包含這些依賴的安裝包的目錄。它將被上傳到集群以支持離線安裝。
例子:
# commands executed in shell $ echo numpy==1.16.5 > requirements.txt $ pip download -d cached_dir -r requirements.txt --no-binary :all: # python code >>> table_env.set_python_requirements("requirements.txt", "cached_dir")
注意:
請確保安裝包與集群平台和使用的python版本匹配。這些軟件包將使用 pip 安裝,因此還要確保 Pip 的版本(版本 >= 7.1.0)和 SetupTools 的版本(版本 >= 37.0.0)。
參數:
requirements_file_path- “requirements.txt” 文件的路徑。
requirements_cache_dir- 包含安裝包的本地目錄的路徑。
版本 1.10.0 中的新函數。
相關用法
- Python pyflink TableEnvironment.sql_query用法及代碼示例
- Python pyflink TableEnvironment.scan用法及代碼示例
- Python pyflink TableEnvironment.create_temporary_function用法及代碼示例
- Python pyflink TableEnvironment.register_table_source用法及代碼示例
- Python pyflink TableEnvironment.create_java_temporary_function用法及代碼示例
- Python pyflink TableEnvironment.use_catalog用法及代碼示例
- Python pyflink TableEnvironment.create_temporary_system_function用法及代碼示例
- Python pyflink TableEnvironment.create_temporary_table用法及代碼示例
- Python pyflink TableEnvironment.create_java_temporary_system_function用法及代碼示例
- Python pyflink TableEnvironment.register_table_sink用法及代碼示例
- Python pyflink TableEnvironment.register_table用法及代碼示例
- Python pyflink TableEnvironment.register_java_function用法及代碼示例
- Python pyflink TableEnvironment.from_path用法及代碼示例
- Python pyflink TableEnvironment.from_elements用法及代碼示例
- Python pyflink TableEnvironment.use_database用法及代碼示例
- Python pyflink TableEnvironment.create_table用法及代碼示例
- Python pyflink TableEnvironment.from_table_source用法及代碼示例
- Python pyflink TableEnvironment.add_python_archive用法及代碼示例
- Python pyflink TableEnvironment.register_function用法及代碼示例
- Python pyflink TableEnvironment.create_java_function用法及代碼示例
- Python pyflink TableEnvironment.from_pandas用法及代碼示例
- Python pyflink TableEnvironment.from_descriptor用法及代碼示例
- Python pyflink Table.intersect_all用法及代碼示例
- Python pyflink Table.fetch用法及代碼示例
- Python pyflink Table.right_outer_join用法及代碼示例
注:本文由純淨天空篩選整理自apache.org大神的英文原創作品 pyflink.table.TableEnvironment.set_python_requirements。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。