Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
F
ffm-baseline
Project
Project
Details
Activity
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ML
ffm-baseline
Commits
bd03655b
Commit
bd03655b
authored
Nov 26, 2018
by
张彦钊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add crv feature file
parent
37c7f1e8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
+32
-0
crv_feature.py
tensnsorflow/crv_feature.py
+32
-0
No files found.
tensnsorflow/crv_feature.py
0 → 100644
View file @
bd03655b
from
pyspark.sql
import
SQLContext
from
pyspark.context
import
SparkContext
from
pyspark.conf
import
SparkConf
import
datetime
from
pyspark.sql
import
HiveContext
def
get_data
():
sc
=
SparkContext
(
conf
=
SparkConf
()
.
setAppName
(
"esmm"
))
.
getOrCreate
()
sc
.
setLogLevel
(
"WARN"
)
ctx
=
SQLContext
(
sc
)
# end_date = (datetime.date.today() - datetime.timedelta(days=1)).strftime("%Y-%m-%d")
# start_date = (datetime.date.today() - datetime.timedelta(days=day)).strftime("%Y-%m-%d")
dbtable
=
"select device_id,stat_date,ucity_id,cid_id,diary_service_id,y,z,clevel1_id,"
\
"slevel1_id,ccity_name,scity_id from jerry_prod.esmm_data jd "
\
"inner join eagle.home_tab_click on jd.device_id"
click
=
ctx
.
read
.
format
(
"jdbc"
)
.
options
(
url
=
"jdbc:mysql://10.66.157.22:4000"
,
driver
=
"com.mysql.jdbc.Driver"
,
dbtable
=
dbtable
,
user
=
"root"
,
password
=
"3SYz54LS9#^9sBvC"
)
.
load
()
click
.
show
(
6
)
if
__name__
==
'__main__'
:
get_data
()
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