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
d458f5e8
Commit
d458f5e8
authored
May 05, 2019
by
张彦钊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改测试文件
parent
021b2dbc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
multi.py
tensnsorflow/multi.py
+3
-2
No files found.
tensnsorflow/multi.py
View file @
d458f5e8
...
@@ -199,12 +199,13 @@ def con_sql(db,sql):
...
@@ -199,12 +199,13 @@ def con_sql(db,sql):
def
test
():
def
test
():
sql
=
"select stat_date,cid_id,y,ccity_name from esmm_train_data limit 60"
sql
=
"select stat_date,cid_id,y,ccity_name from esmm_train_data limit 60"
rdd
=
spark
.
sql
(
sql
)
.
select
(
"stat_date"
,
"cid_id"
,
"y"
,
"ccity_name"
)
.
rdd
rdd
=
spark
.
sql
(
sql
)
.
select
(
"stat_date"
,
"cid_id"
,
"y"
,
"ccity_name"
)
.
rdd
spark
.
createDataFrame
(
rdd
)
.
show
(
6
)
df
=
spark
.
createDataFrame
(
rdd
)
.
map
(
lambda
x
:(
x
[
0
],
x
[
1
],
x
[
2
],
x
[
3
]))
df
.
show
(
6
)
from
hdfs
import
InsecureClient
from
hdfs
import
InsecureClient
from
hdfs.ext.dataframe
import
read_dataframe
from
hdfs.ext.dataframe
import
read_dataframe
client
=
InsecureClient
(
'http://nvwa01:50070'
)
client
=
InsecureClient
(
'http://nvwa01:50070'
)
df
=
read_dataframe
(
client
,
"/recommend/native/part-0019
9
-f83757ab-9f64-4a2c-9f27-0b76df51c1c4-c000.avro"
)
df
=
read_dataframe
(
client
,
"/recommend/native/part-0019
6
-f83757ab-9f64-4a2c-9f27-0b76df51c1c4-c000.avro"
)
print
(
df
.
head
())
print
(
df
.
head
())
# print(df.count())
# print(df.count())
...
...
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