blob: fb45104b6f5957c540881ccbe993790e9ca432fc [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import CommonJobProperties as commonJobProperties
import LoadTestsBuilder as loadTestsBuilder
import PhraseTriggeringPostCommitBuilder
def now = new Date().format("MMddHHmmss", TimeZone.getTimeZone('UTC'))
def smokeTestConfigurations = [
[
title : 'GroupByKey Python load test Direct',
itClass : 'apache_beam.testing.load_tests.group_by_key_test:GroupByKeyTest.testGroupByKey',
runner : CommonTestProperties.Runner.DIRECT,
sdk : CommonTestProperties.SDK.PYTHON,
jobProperties: [
publish_to_big_query: true,
project : 'apache-beam-testing',
metrics_dataset : 'load_test_SMOKE',
metrics_table : 'python_direct_gbk',
input_options : '\'{"num_records": 100000,' +
'"key_size": 1,' +
'"value_size":1,' +
'"bundle_size_distribution_type": "const",' +
'"bundle_size_distribution_param": 1,' +
'"force_initial_num_bundles": 10}\'',
]
],
[
title : 'GroupByKey Python load test Dataflow',
itClass : 'apache_beam.testing.load_tests.group_by_key_test:GroupByKeyTest.testGroupByKey',
runner : CommonTestProperties.Runner.DATAFLOW,
sdk : CommonTestProperties.SDK.PYTHON,
jobProperties: [
job_name : 'load-tests-python-dataflow-batch-gbk-smoke-' + now,
project : 'apache-beam-testing',
temp_location : 'gs://temp-storage-for-perf-tests/smoketests',
publish_to_big_query: true,
metrics_dataset : 'load_test_SMOKE',
metrics_table : 'python_dataflow_gbk',
input_options : '\'{"num_records": 100000,' +
'"key_size": 1,' +
'"value_size":1,' +
'"bundle_size_distribution_type": "const",' +
'"bundle_size_distribution_param": 1,' +
'"force_initial_num_bundles": 10}\'',
maxNumWorkers : 10,
]
],
]
PhraseTriggeringPostCommitBuilder.postCommitJob(
'beam_Python_LoadTests_Smoke',
'Run Python Load Tests Smoke',
'Python Load Tests Smoke',
this
) {
description("Runs Python load tests in \"smoke\" mode to check if everything works well")
commonJobProperties.setTopLevelMainJobProperties(delegate, 'master', 120)
for (testConfiguration in smokeTestConfigurations) {
loadTestsBuilder.loadTest(delegate, testConfiguration.title, testConfiguration.runner,testConfiguration.sdk, testConfiguration.jobProperties, testConfiguration.itClass, CommonTestProperties.TriggeringContext.PR)
}
}