本文简要介绍 python 语言中pyflink.datastream.StreamExecutionEnvironment.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 >>> stream_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- 包含安装包的本地目录的路径。
相关用法
- Python pyflink StreamExecutionEnvironment.set_python_executable用法及代码示例
- Python pyflink StreamExecutionEnvironment.set_restart_strategy用法及代码示例
- Python pyflink StreamExecutionEnvironment.set_state_backend用法及代码示例
- Python pyflink StreamExecutionEnvironment.set_stream_time_characteristic用法及代码示例
- Python pyflink StreamExecutionEnvironment.set_default_savepoint_directory用法及代码示例
- Python pyflink StreamExecutionEnvironment.enable_checkpointing用法及代码示例
- Python pyflink StreamExecutionEnvironment.add_python_archive用法及代码示例
- Python pyflink StreamExecutionEnvironment.register_type用法及代码示例
- Python pyflink StreamExecutionEnvironment.add_default_kryo_serializer用法及代码示例
- Python pyflink StreamExecutionEnvironment.register_type_with_kryo_serializer用法及代码示例
- Python pyflink StreamTableEnvironment.from_data_stream用法及代码示例
- Python pyflink StreamTableEnvironment.create用法及代码示例
- Python pyflink StreamTableEnvironment.to_changelog_stream用法及代码示例
- Python pyflink StatementSet.add_insert用法及代码示例
- Python pyflink Session用法及代码示例
- Python pyflink Slide用法及代码示例
- Python pyflink Schema.Builder.watermark用法及代码示例
- Python pyflink Schema.Builder.column_by_expression用法及代码示例
- Python pyflink SlidingProcessingTimeWindows用法及代码示例
- Python pyflink SlidingEventTimeWindows用法及代码示例
- Python pyflink Table.intersect_all用法及代码示例
- Python pyflink GroupedTable.select用法及代码示例
- Python pyflink Expression.to_date用法及代码示例
- Python pyflink Table.fetch用法及代码示例
- Python pyflink PulsarSourceBuilder用法及代码示例
注:本文由纯净天空筛选整理自apache.org大神的英文原创作品 pyflink.datastream.StreamExecutionEnvironment.set_python_requirements。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。