From 375b8551f71d3f2f2b424000f4804ea5ab900aed Mon Sep 17 00:00:00 2001 From: Jan Tattermusch Date: Mon, 13 Jul 2020 15:04:53 +0200 Subject: [PATCH] update bigquery partition expiration --- tools/run_tests/python_utils/upload_rbe_results.py | 4 ++-- tools/run_tests/python_utils/upload_test_results.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/run_tests/python_utils/upload_rbe_results.py b/tools/run_tests/python_utils/upload_rbe_results.py index 8aedd72afbf..62f57ddc946 100755 --- a/tools/run_tests/python_utils/upload_rbe_results.py +++ b/tools/run_tests/python_utils/upload_rbe_results.py @@ -28,8 +28,8 @@ import big_query_utils _DATASET_ID = 'jenkins_test_results' _DESCRIPTION = 'Test results from master RBE builds on Kokoro' -# 90 days in milliseconds -_EXPIRATION_MS = 90 * 24 * 60 * 60 * 1000 +# 365 days in milliseconds +_EXPIRATION_MS = 365 * 24 * 60 * 60 * 1000 _PARTITION_TYPE = 'DAY' _PROJECT_ID = 'grpc-testing' _RESULTS_SCHEMA = [ diff --git a/tools/run_tests/python_utils/upload_test_results.py b/tools/run_tests/python_utils/upload_test_results.py index c000d8e7d82..0e4a26ddec3 100644 --- a/tools/run_tests/python_utils/upload_test_results.py +++ b/tools/run_tests/python_utils/upload_test_results.py @@ -29,8 +29,8 @@ import big_query_utils _DATASET_ID = 'jenkins_test_results' _DESCRIPTION = 'Test results from master job run on Jenkins' -# 90 days in milliseconds -_EXPIRATION_MS = 90 * 24 * 60 * 60 * 1000 +# 365 days in milliseconds +_EXPIRATION_MS = 365 * 24 * 60 * 60 * 1000 _PARTITION_TYPE = 'DAY' _PROJECT_ID = 'grpc-testing' _RESULTS_SCHEMA = [