Skip to content

Commit

Permalink
more git cleanup commits
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbaumohl committed Oct 10, 2024
1 parent 657a8af commit aa84b18
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions bin/dump_get_copy_info_for_narratives.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

python custom_scripts/get_copy_info_for_narratives.py
4 changes: 2 additions & 2 deletions source/daily_cron_jobs/upload_app_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
print("############################################")
print("App Stats Upload (UTC): " + str(datetime.datetime.utcnow()))
start_time = time.time()
#start_date = "2021-06-01"
#end_date = "2022-07-20"
#start_date = "2023-07-27"
#end_date = "2023-08-01"
#methods_upload_app_stats.upload_user_app_stats(start_date, end_date)
methods_upload_app_stats.upload_user_app_stats()
print("Uploading app stats took ", time.time() - start_time, " seconds to run")
10 changes: 5 additions & 5 deletions source/daily_cron_jobs/upload_blobstore_details.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@


start_time = time.time()
start_date = "2024-09-07"
end_date = "2024-09-28"
methods_upload_blobstore_details.process_blobstore_details_data(start_date,end_date)
#methods_upload_blobstore_details.process_blobstore_details_data()
#print("Uploading blobstore details took ", time.time() - start_time, " seconds to run")
#start_date = "2024-09-07"
#end_date = "2024-10-28"
#methods_upload_blobstore_details.process_blobstore_details_data(start_date,end_date)
methods_upload_blobstore_details.process_blobstore_details_data()
print("Uploading blobstore details took ", time.time() - start_time, " seconds to run")


start_date=datetime.datetime.combine(yesterday, datetime.datetime.min.time())
Expand Down
4 changes: 2 additions & 2 deletions source/daily_cron_jobs/upload_blobstore_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
print("############################################")
print("Blobstore Stats Upload (UTC): " + str(datetime.datetime.utcnow()))
start_time = time.time()
#start_date = "2021-09-10"
#end_date = "2021-10-31"
#start_date = "2023-07-27"
#end_date = "2023-08-01"
#methods_upload_blobstore_stats.process_blobstore_stats_data(start_date,end_date)
methods_upload_blobstore_stats.process_blobstore_stats_data()
print("Uploading blobstore stats took ", time.time() - start_time, " seconds to run")
4 changes: 2 additions & 2 deletions source/daily_cron_jobs/upload_elasticsearch_usersmry_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
start_time = time.time()
# start_date = "month-day-year"
# end_date = "month-day-year"
#start_date = "10-10-2021"
#end_date = "10-28-2021"
#start_date = "07-27-2023"
#end_date = "08-01-2021"
#return_capture = methods_upload_elasticsearch_sumrydicts.elastic_summary_dictionaries(
# start_date, end_date
#)
Expand Down

0 comments on commit aa84b18

Please sign in to comment.