[
https://issues.apache.org/jira/browse/BEAM-3060?focusedWorklogId=87005&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-87005
]
ASF GitHub Bot logged work on BEAM-3060:
----------------------------------------
Author: ASF GitHub Bot
Created on: 03/Apr/18 09:46
Start Date: 03/Apr/18 09:46
Worklog Time Spent: 10m
Work Description: szewi commented on a change in pull request #4861:
[BEAM-3060] Jenkins configuration allowing to run FilebasedIO tests on HDFS.
URL: https://github.com/apache/beam/pull/4861#discussion_r178768125
##########
File path:
.test-infra/jenkins/job_beam_PerformanceTests_FileBasedIO_IT_HDFS.groovy
##########
@@ -0,0 +1,151 @@
+/*
+ * 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 common_job_properties
+
+def testsConfigurations = [
+ [
+ jobName : 'beam_PerformanceTests_TextIOIT_HDFS',
+ jobDescription : 'Runs PerfKit tests for TextIOIT on HDFS',
+ itClass : 'org.apache.beam.sdk.io.text.TextIOIT',
+ bqTable :
'beam_performance.textioit_hdfs_pkb_results',
+ prCommitStatusName: 'Java TextIO Performance Test on HDFS',
+ prTriggerPhase : 'Run Java TextIO Performance Test HDFS',
+ extraPipelineArgs: [
+ numberOfRecords: '1000000'
+ ]
+
+ ],
+ [
+ jobName :
'beam_PerformanceTests_Compressed_TextIOIT_HDFS',
+ jobDescription : 'Runs PerfKit tests for TextIOIT with
GZIP compression on HDFS',
+ itClass : 'org.apache.beam.sdk.io.text.TextIOIT',
+ bqTable :
'beam_performance.compressed_textioit_hdfs_pkb_results',
+ prCommitStatusName : 'Java CompressedTextIO Performance Test
on HDFS',
+ prTriggerPhase : 'Run Java CompressedTextIO Performance
Test HDFS',
+ extraPipelineArgs: [
+ numberOfRecords: '1000000',
+ compressionType: 'GZIP'
+ ]
+ ],
+ [
+ jobName : 'beam_PerformanceTests_AvroIOIT_HDFS',
+ jobDescription : 'Runs PerfKit tests for AvroIOIT on HDFS',
+ itClass : 'org.apache.beam.sdk.io.avro.AvroIOIT',
+ bqTable :
'beam_performance.avroioit_hdfs_pkb_results',
+ prCommitStatusName: 'Java AvroIO Performance Test on HDFS',
+ prTriggerPhase : 'Run Java AvroIO Performance Test HDFS',
+ extraPipelineArgs: [
+ numberOfRecords: '1000000'
+ ]
+ ],
+// [
+// jobName :
'beam_PerformanceTests_TFRecordIOIT_HDFS',
+// jobDescription : 'Runs PerfKit tests for
beam_PerformanceTests_TFRecordIOIT on HDFS',
Review comment:
OK.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 87005)
Time Spent: 7.5h (was: 7h 20m)
> Add performance tests for commonly used file-based I/O PTransforms
> ------------------------------------------------------------------
>
> Key: BEAM-3060
> URL: https://issues.apache.org/jira/browse/BEAM-3060
> Project: Beam
> Issue Type: Test
> Components: sdk-java-core
> Reporter: Chamikara Jayalath
> Assignee: Szymon Nieradka
> Priority: Major
> Time Spent: 7.5h
> Remaining Estimate: 0h
>
> We recently added a performance testing framework [1] that can be used to do
> following.
> (1) Execute Beam tests using PerfkitBenchmarker
> (2) Manage Kubernetes-based deployments of data stores.
> (3) Easily publish benchmark results.
> I think it will be useful to add performance tests for commonly used
> file-based I/O PTransforms using this framework. I suggest looking into
> following formats initially.
> (1) AvroIO
> (2) TextIO
> (3) Compressed text using TextIO
> (4) TFRecordIO
> It should be possibly to run these tests for various Beam runners (Direct,
> Dataflow, Flink, Spark, etc.) and file-systems (GCS, local, HDFS, etc.)
> easily.
> In the initial version, tests can be made manually triggerable for PRs
> through Jenkins. Later, we could make some of these tests run periodically
> and publish benchmark results (to BigQuery) through PerfkitBenchmarker.
> [1] https://beam.apache.org/documentation/io/testing/
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)