-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathhd.hdfs.in.fs.py
executable file
·63 lines (52 loc) · 1.5 KB
/
hd.hdfs.in.fs.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
#!/usr/bin/env python3
############################################################################
#
# MODULE: hd.hdfs.in.fs
# AUTHOR(S): Matej Krejci ([email protected]
#
# COPYRIGHT: (C) 2016 by the GRASS Development Team
#
# This program is free software under the GNU General
# Public License (>=v2). Read the file COPYING that
# comes with GRASS for details.
#
#############################################################################
# %module
# % description: Module for transfer file to HDFS
# % keyword: database
# % keyword: hdfs
# % keyword: hive
# %end
# %option
# % key: hdfs
# % type: string
# % answer: @grass_data_hdfs
# % required: yes
# % description: HDFS path or default grass dataset
# %end
# %option
# % key: driver
# % type: string
# % required: yes
# % options: hdfs,webhdfs
# % description: HDFS driver
# %end
# %option G_OPT_F_INPUT
# % key: local
# % guisection: file input
# %end
import os
import grass.script as gs
from hdfsgrass.hdfs_grass_lib import GrassHdfs
def main():
if options["hdfs"] == "@grass_data_hdfs":
LOCATION_NAME = gs.gisenv()["LOCATION_NAME"]
MAPSET = gs.gisenv()["MAPSET"]
MAPSET_PATH = os.path.join("grass_data_hdfs", LOCATION_NAME, MAPSET, "external")
options["hdfs"] = MAPSET_PATH
if options["local"]:
transf = GrassHdfs(options["driver"])
transf.upload(options["local"], options["hdfs"])
if __name__ == "__main__":
options, flags = gs.parser()
main()