-
Notifications
You must be signed in to change notification settings - Fork 13.5k
/
Copy pathfind_flink_home.py
88 lines (77 loc) · 3.19 KB
/
find_flink_home.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env python
#################################################################################
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
################################################################################
import glob
import logging
import os
import sys
def _is_flink_home(path):
flink_script_file = path + "/bin/flink"
if len(glob.glob(flink_script_file)) > 0:
return True
else:
return False
def _is_apache_flink_libraries_home(path):
flink_dist_jar_file = path + "/lib/flink-dist*.jar"
if len(glob.glob(flink_dist_jar_file)) > 0:
return True
else:
return False
def _find_flink_home():
"""
Find the FLINK_HOME.
"""
# If the environment has set FLINK_HOME, trust it.
if 'FLINK_HOME' in os.environ:
return os.environ['FLINK_HOME']
else:
try:
current_dir = os.path.abspath(os.path.dirname(os.path.abspath(__file__)))
flink_root_dir = os.path.abspath(current_dir + "/../../")
build_target = glob.glob(flink_root_dir + "/flink-dist/target/flink-*-bin/flink-*")
if len(build_target) > 0 and _is_flink_home(build_target[0]):
os.environ['FLINK_HOME'] = build_target[0]
return build_target[0]
FLINK_HOME = None
for module_home in __import__('pyflink').__path__:
if _is_apache_flink_libraries_home(module_home):
os.environ['FLINK_LIB_DIR'] = os.path.join(module_home, 'lib')
os.environ['FLINK_PLUGINS_DIR'] = os.path.join(module_home, 'plugins')
os.environ['FLINK_OPT_DIR'] = os.path.join(module_home, 'opt')
if _is_flink_home(module_home):
FLINK_HOME = module_home
if FLINK_HOME is not None:
os.environ['FLINK_HOME'] = FLINK_HOME
return FLINK_HOME
except Exception:
pass
logging.error("Could not find valid FLINK_HOME(Flink distribution directory) "
"in current environment.")
sys.exit(-1)
def _find_flink_source_root():
"""
Find the flink source root directory.
"""
try:
return os.path.abspath(os.path.dirname(os.path.abspath(__file__)) + "/../../")
except Exception:
pass
logging.error("Could not find valid flink source root directory in current environment.")
sys.exit(-1)
if __name__ == "__main__":
print(_find_flink_home())