You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by di...@apache.org on 2022/03/17 12:59:19 UTC

[flink] branch release-1.13 updated: [hotfix][python][docs] Improve the documentation about how to specify jar files on Windows

This is an automated email from the ASF dual-hosted git repository.

dianfu pushed a commit to branch release-1.13
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.13 by this push:
     new c87417e  [hotfix][python][docs] Improve the documentation about how to specify jar files on Windows
c87417e is described below

commit c87417ef13456d71aaf954bec611e9f33e2d6b59
Author: Dian Fu <di...@apache.org>
AuthorDate: Thu Mar 17 20:54:23 2022 +0800

    [hotfix][python][docs] Improve the documentation about how to specify jar files on Windows
---
 docs/content.zh/docs/dev/python/dependency_management.md | 6 ++++++
 docs/content/docs/dev/python/dependency_management.md    | 6 ++++++
 2 files changed, 12 insertions(+)

diff --git a/docs/content.zh/docs/dev/python/dependency_management.md b/docs/content.zh/docs/dev/python/dependency_management.md
index c277ad0..ce054d1 100644
--- a/docs/content.zh/docs/dev/python/dependency_management.md
+++ b/docs/content.zh/docs/dev/python/dependency_management.md
@@ -53,6 +53,9 @@ If third-party JARs are used, you can specify the JARs in the Python Table API a
 # NOTE: Only local file URLs (start with "file://") are supported.
 table_env.get_config().get_configuration().set_string("pipeline.jars", "file:///my/jar/path/connector.jar;file:///my/jar/path/udf.jar")
 
+# It looks like the following on Windows:
+table_env.get_config().get_configuration().set_string("pipeline.jars", "file:///E:/my/jar/path/connector.jar;file:///E:/my/jar/path/udf.jar")
+
 # Specify a list of URLs via "pipeline.classpaths". The URLs are separated by ";" 
 # and will be added to the classpath during job execution.
 # NOTE: The paths must specify a protocol (e.g. file://) and users should ensure that the URLs are accessible on both the client and the cluster.
@@ -66,6 +69,9 @@ or in the Python DataStream API as following:
 # NOTE: Only local file URLs (start with "file://") are supported.
 stream_execution_environment.add_jars("file:///my/jar/path/connector1.jar", "file:///my/jar/path/connector2.jar")
 
+# It looks like the following on Windows:
+stream_execution_environment.add_jars("file:///E:/my/jar/path/connector1.jar", "file:///E:/my/jar/path/connector2.jar")
+
 # Use the add_classpaths() to add the dependent jars URLs into the classpath.
 # The URLs will also be added to the classpath of both the client and the cluster.
 # NOTE: The paths must specify a protocol (e.g. file://) and users should ensure that the 
diff --git a/docs/content/docs/dev/python/dependency_management.md b/docs/content/docs/dev/python/dependency_management.md
index f20061d4..4528fe5 100644
--- a/docs/content/docs/dev/python/dependency_management.md
+++ b/docs/content/docs/dev/python/dependency_management.md
@@ -53,6 +53,9 @@ If third-party JARs are used, you can specify the JARs in the Python Table API a
 # NOTE: Only local file URLs (start with "file://") are supported.
 table_env.get_config().get_configuration().set_string("pipeline.jars", "file:///my/jar/path/connector.jar;file:///my/jar/path/udf.jar")
 
+# It looks like the following on Windows:
+table_env.get_config().get_configuration().set_string("pipeline.jars", "file:///E:/my/jar/path/connector.jar;file:///E:/my/jar/path/udf.jar")
+
 # Specify a list of URLs via "pipeline.classpaths". The URLs are separated by ";" 
 # and will be added to the classpath during job execution.
 # NOTE: The paths must specify a protocol (e.g. file://) and users should ensure that the URLs are accessible on both the client and the cluster.
@@ -66,6 +69,9 @@ or in the Python DataStream API as following:
 # NOTE: Only local file URLs (start with "file://") are supported.
 stream_execution_environment.add_jars("file:///my/jar/path/connector1.jar", "file:///my/jar/path/connector2.jar")
 
+# It looks like the following on Windows:
+stream_execution_environment.add_jars("file:///E:/my/jar/path/connector1.jar", "file:///E:/my/jar/path/connector2.jar")
+
 # Use the add_classpaths() to add the dependent jars URLs into the classpath.
 # The URLs will also be added to the classpath of both the client and the cluster.
 # NOTE: The paths must specify a protocol (e.g. file://) and users should ensure that the