Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
strategy_embedding
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rank
strategy_embedding
Commits
781e81ef
Commit
781e81ef
authored
Nov 16, 2020
by
赵威
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
try get data
parent
6412f7e3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
38 additions
and
3 deletions
+38
-3
get_tractate_data.py
dssm/get_tractate_data.py
+0
-0
get_data.py
personas_vector/get_data.py
+21
-3
files.py
utils/files.py
+17
-0
spark.py
utils/spark.py
+0
-0
No files found.
dssm/get_tractate_data.py
View file @
781e81ef
This diff is collapsed.
Click to expand it.
personas_vector/get_data.py
View file @
781e81ef
...
...
@@ -2,10 +2,28 @@ import os
import
sys
sys
.
path
.
append
(
os
.
path
.
realpath
(
"."
))
import
pandas
as
pd
from
utils.date
import
get_ndays_before
,
get_ndays_before_no_minus
from
utils.es
import
es_scan
from
utils.spark
import
get_spark
from
utils.files
import
save_df_to_csv
from
utils.spark
import
(
get_click_data
,
get_device_tags
,
get_exposure_data
,
get_spark
)
if
__name__
==
"__main__"
:
print
(
get_ndays_before
(
10
))
spark
=
get_spark
(
"personas_vector_data"
)
card_type
=
"user_post"
days
=
5
# TODO days 30
start
,
end
=
get_ndays_before_no_minus
(
days
),
get_ndays_before_no_minus
(
1
)
click_df
=
get_click_data
(
spark
,
card_type
,
start
,
end
)
# save_df_to_csv(click_df, "tractate_click.csv")
print
(
click_df
.
shape
)
exposure_df
=
get_exposure_data
(
spark
,
card_type
,
start
,
end
)
# save_df_to_csv(exposure_df, "tractate_exposure.csv")
print
(
exposure_df
.
shape
)
device_feature_df
=
get_device_tags
(
spark
)
# save_df_to_csv(device_feature_df, "device_feature.csv")
print
(
device_feature_df
.
shape
)
# spark-submit --master yarn --deploy-mode client --queue root.strategy --driver-memory 16g --executor-memory 1g --executor-cores 1 --num-executors 70 --conf spark.default.parallelism=100 --conf spark.storage.memoryFraction=0.5 --conf spark.shuffle.memoryFraction=0.3 --conf spark.locality.wait=0 --jars /srv/apps/tispark-core-2.1-SNAPSHOT-jar-with-dependencies.jar,/srv/apps/spark-connector_2.11-1.9.0-rc2.jar,/srv/apps/mysql-connector-java-5.1.38.jar /srv/apps/strategy_embedding/personas_vector/get_data.py
utils/files.py
0 → 100644
View file @
781e81ef
import
os
def
remove_file
(
path
):
try
:
os
.
remove
(
path
)
except
Exception
as
e
:
print
(
e
)
def
save_df_to_csv
(
df
,
file
):
print
(
df
.
head
(
3
))
base_dir
=
os
.
getcwd
()
data_dir
=
os
.
path
.
join
(
base_dir
,
"_data"
)
full_path
=
os
.
path
.
join
(
data_dir
,
file
)
remove_file
(
full_path
)
df
.
to_csv
(
full_path
,
sep
=
"|"
,
index
=
False
)
utils/spark.py
View file @
781e81ef
This diff is collapsed.
Click to expand it.
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