Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wanjia
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
kino
wanjia
Commits
651c9f26
Commit
651c9f26
authored
Nov 06, 2020
by
kinomin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
初始化项目
parent
1cae46b3
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
18 deletions
+32
-18
Sources.py
spark/sources/Sources.py
+19
-8
unzip.py
spark/unzip.py
+10
-9
unzip.sh
spark/unzip.sh
+3
-1
No files found.
spark/sources/Sources.py
View file @
651c9f26
import
pymysql
import
pymysql
import
exception.MyErrorException
as
ex
import
exception.MyErrorException
as
ex
from
pyspark
import
SparkContext
from
pyspark
import
SparkContext
from
sources
import
Sinks
def
getMySqlConnect
():
def
getMySqlConnect
():
try
:
try
:
...
@@ -15,6 +17,7 @@ def getMySqlConnect():
...
@@ -15,6 +17,7 @@ def getMySqlConnect():
)
)
except
ex
.
MyError
as
e
:
except
ex
.
MyError
as
e
:
print
(
"connection error"
,
e
.
errorinfo
)
print
(
"connection error"
,
e
.
errorinfo
)
Sinks
.
updateMysqlStatus
(
i_status
=
1
,
i_readcount
=
0
,
i_sinkcount
=
0
,
i_id
=
1
)
return
conn
return
conn
...
@@ -28,6 +31,7 @@ def getRecordByIdResultT1(id):
...
@@ -28,6 +31,7 @@ def getRecordByIdResultT1(id):
# 获取下一个查询结果集
# 获取下一个查询结果集
record
=
cur
.
fetchone
()
record
=
cur
.
fetchone
()
except
ex
.
MyError
as
e
:
except
ex
.
MyError
as
e
:
Sinks
.
updateMysqlStatus
(
i_status
=
1
,
i_readcount
=
0
,
i_sinkcount
=
0
,
i_id
=
1
)
print
(
"executor failed"
,
e
.
errorinfo
)
print
(
"executor failed"
,
e
.
errorinfo
)
conn
.
rollback
()
conn
.
rollback
()
finally
:
finally
:
...
@@ -37,13 +41,20 @@ def getRecordByIdResultT1(id):
...
@@ -37,13 +41,20 @@ def getRecordByIdResultT1(id):
def
readCsv
(
spark
,
path
,
col
):
def
readCsv
(
spark
,
path
,
col
):
try
:
df
=
spark
.
read
.
format
(
'csv'
)
.
option
(
'inferSchema'
,
'true'
)
.
load
(
path
)
.
toDF
(
*
col
)
df
=
spark
.
read
.
format
(
'csv'
)
.
option
(
'inferSchema'
,
'true'
)
.
load
(
path
)
.
toDF
(
*
col
)
except
ex
.
MyError
as
e
:
Sinks
.
updateMysqlStatus
(
i_status
=
1
,
i_readcount
=
0
,
i_sinkcount
=
0
,
i_id
=
1
)
print
(
"executor failed"
,
e
.
errorinfo
)
return
df
return
df
def
readTxt
(
spark
,
path
,
col
,
delimiter
):
def
readTxt
(
spark
,
path
,
delimiter
,
*
col
):
rddFile
=
SparkContext
.
textFile
(
"1.txt"
)
try
:
rddFile
=
SparkContext
.
textFile
(
path
)
rddMap
=
rddFile
.
map
(
lambda
x
:
x
.
split
(
delimiter
))
rddMap
=
rddFile
.
map
(
lambda
x
:
x
.
split
(
delimiter
))
df
=
spark
.
createDataFrame
(
rddMap
,
col
)
df
=
spark
.
createDataFrame
(
rddMap
,
*
col
)
except
ex
.
MyError
as
e
:
Sinks
.
updateMysqlStatus
(
i_status
=
1
,
i_readcount
=
0
,
i_sinkcount
=
0
,
i_id
=
1
)
print
(
"executor failed"
,
e
.
errorinfo
)
return
df
return
df
\ No newline at end of file
spark/unzip.py
View file @
651c9f26
...
@@ -2,13 +2,14 @@
...
@@ -2,13 +2,14 @@
import
sys
import
sys
import
os
import
os
import
shutil
import
shutil
import
exception.MyErrorException
as
ex
import
zipfile
import
zipfile
#
pyName = sys.argv[0] # sys.argv[0] 类似于shell中的$0, 但不是脚本名称,而是脚本的路径
pyName
=
sys
.
argv
[
0
]
# sys.argv[0] 类似于shell中的$0, 但不是脚本名称,而是脚本的路径
#
zipPath = sys.argv[1] # sys.argv[1] 表示传入的第一个参数
zipPath
=
sys
.
argv
[
1
]
# sys.argv[1] 表示传入的第一个参数
#
inputPath = sys.argv[2] # sys.argv[2] 表示传入的第二个参数
inputPath
=
sys
.
argv
[
2
]
# sys.argv[2] 表示传入的第二个参数
#
outputPath = sys.argv[3]
outputPath
=
sys
.
argv
[
3
]
#问题:解压的时候要考虑密码吗???
#问题:解压的时候要考虑密码吗???
# os.system("hdfs dfs -put /srcPath /dstPath")
# os.system("hdfs dfs -put /srcPath /dstPath")
...
@@ -36,7 +37,7 @@ def unzip_single(srcPath, dstPath):
...
@@ -36,7 +37,7 @@ def unzip_single(srcPath, dstPath):
zf
=
zipfile
.
ZipFile
(
srcPath
)
zf
=
zipfile
.
ZipFile
(
srcPath
)
try
:
try
:
zf
.
extractall
(
path
=
dstPath
)
zf
.
extractall
(
path
=
dstPath
)
except
Runtime
Error
as
e
:
except
ex
.
My
Error
as
e
:
print
(
e
)
print
(
e
)
zf
.
close
()
zf
.
close
()
...
@@ -65,7 +66,7 @@ if __name__ == '__main__':
...
@@ -65,7 +66,7 @@ if __name__ == '__main__':
# if len(sys.argv) == 3:
# if len(sys.argv) == 3:
# source_dir, dest_dir = os.path.abspath(sys.argv[0].strip('"')), sys.argv[1]
# source_dir, dest_dir = os.path.abspath(sys.argv[0].strip('"')), sys.argv[1]
print
(
'解压、复制中...'
)
print
(
'解压、复制中...'
)
# unzip_file
(zipPath, inputPath)
unzip_all
(
zipPath
,
inputPath
)
#
get_file(inputPath, outputPath)
get_file
(
inputPath
,
outputPath
)
unzip_all
(
"D:
\\
src"
,
"D:
\\
dst"
)
#
unzip_all("D:\\src", "D:\\dst")
get_file
(
"D:
\\
src"
,
"D:
\\
dst"
)
#
get_file("D:\\src", "D:\\dst")
spark/unzip.sh
View file @
651c9f26
#! /bin/bash
#! /bin/bash
set
-e
echo
-e
"
\0
33[34m==========文件解压、复制开始
\0
33[0m=========="
echo
-e
"
\0
33[34m==========文件解压、复制开始
\0
33[0m=========="
python3 unzip.py /root/wanjia/files/zip_file/20201102/20201102.zip /root/wanjia/files/input_file/20201102 /root/wanjia/files/output_file/20201102
python3 unzip.py /root/wanjia/files/zip_file/20201102/20201102
1111
.zip /root/wanjia/files/input_file/20201102 /root/wanjia/files/output_file/20201102
echo
-e
"
\0
33[34m==========文件解压、复制结束
\0
33[0m=========="
echo
-e
"
\0
33[34m==========文件解压、复制结束
\0
33[0m=========="
echo
""
echo
""
echo
-e
"
\0
33[34m==========将id写入环境变量
\0
33[0m============"
echo
-e
"
\0
33[34m==========将id写入环境变量
\0
33[0m============"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment