[
https://issues.apache.org/jira/browse/BEAM-5782?focusedWorklogId=155566&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-155566
]
ASF GitHub Bot logged work on BEAM-5782:
----------------------------------------
Author: ASF GitHub Bot
Created on: 17/Oct/18 18:53
Start Date: 17/Oct/18 18:53
Worklog Time Spent: 10m
Work Description: lukecwik opened a new pull request #6729: [BEAM-5782]
Make TableRows cloneable when read from Avro files.
URL: https://github.com/apache/beam/pull/6729
This allows for TableRows to be 'cloned' which is expected by users to be
supported based upon the TableRow javadoc.
------------------------
Follow this checklist to help us incorporate your contribution quickly and
easily:
- [ ] Format the pull request title like `[BEAM-XXX] Fixes bug in
ApproximateQuantiles`, where you replace `BEAM-XXX` with the appropriate JIRA
issue, if applicable. This will automatically link the pull request to the
issue.
- [ ] If this contribution is large, please file an Apache [Individual
Contributor License Agreement](https://www.apache.org/licenses/icla.pdf).
It will help us expedite review of your Pull Request if you tag someone
(e.g. `@username`) to look at it.
Post-Commit Tests Status (on master branch)
------------------------------------------------------------------------------------------------
Lang | SDK | Apex | Dataflow | Flink | Gearpump | Samza | Spark
--- | --- | --- | --- | --- | --- | --- | ---
Go | [](https://builds.apache.org/job/beam_PostCommit_Go_GradleBuild/lastCompletedBuild/)
| --- | --- | --- | --- | --- | ---
Java | [](https://builds.apache.org/job/beam_PostCommit_Java_GradleBuild/lastCompletedBuild/)
| [](https://builds.apache.org/job/beam_PostCommit_Java_ValidatesRunner_Apex_Gradle/lastCompletedBuild/)
| [](https://builds.apache.org/job/beam_PostCommit_Java_ValidatesRunner_Dataflow_Gradle/lastCompletedBuild/)
| [](https://builds.apache.org/job/beam_PostCommit_Java_ValidatesRunner_Flink_Gradle/lastCompletedBuild/)
| [](https://builds.apache.org/job/beam_PostCommit_Java_ValidatesRunner_Gearpump_Gradle/lastCompletedBuild/)
| [](https://builds.apache.org/job/beam_PostCommit_Java_ValidatesRunner_Samza_Gradle/lastCompletedBuild/)
| [](https://builds.apache.org/job/beam_PostCommit_Java_ValidatesRunner_Spark_Gradle/lastCompletedBuild/)
Python | [](https://builds.apache.org/job/beam_PostCommit_Python_Verify/lastCompletedBuild/)
| --- | [](https://builds.apache.org/job/beam_PostCommit_Py_VR_Dataflow/lastCompletedBuild/)
</br> [](https://builds.apache.org/job/beam_PostCommit_Py_ValCont/lastCompletedBuild/)
| [](https://builds.apache.org/job/beam_PostCommit_Python_VR_Flink/lastCompletedBuild/)
| --- | --- | ---
----------------------------------------------------------------
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: 155566)
Time Spent: 10m
Remaining Estimate: 0h
> BigQuery TableRows not cloneable when using Dataflow
> ----------------------------------------------------
>
> Key: BEAM-5782
> URL: https://issues.apache.org/jira/browse/BEAM-5782
> Project: Beam
> Issue Type: Bug
> Components: io-java-gcp
> Reporter: Luke Cwik
> Assignee: Luke Cwik
> Priority: Minor
> Time Spent: 10m
> Remaining Estimate: 0h
>
> TableRows are expected to be cloneable.
> BigQueryAvroUtils converts repeated records using an ImmutableList which is
> not cloneable.
>
> Reproduction steps:
> 1. Clone the code
> [https://github.com/nahuellofeudo/row-clone-poc.git|https://www.google.com/url?q=https://github.com/nahuellofeudo/row-clone-poc.git&sa=D&usg=AFQjCNGkT0bYzhAoozGTQ4vsizxtphxj-g]
> 2. Run on Dataflow:
> mvn clean compile exec:java
> -Dexec.mainClass=org.apache.beam.examples.RowClonePoc \
> -Dexec.args="--runner=DataflowRunner
> --gcpTempLocation=gs://<GCS_TEMP_FOLDER> \
> --tempLocation=gs://<GCS_TEMP_FOLDER> --project=<PROJECT_ID>"
> -Pdataflow-runner
> 3. Run locally:
> mvn clean compile exec:java
> -Dexec.mainClass=org.apache.beam.examples.RowClonePoc \
> -Dexec.args="--tempLocation=gs://<GCS_TEMP_FOLDER>
> --project=<PROJECT_ID>"
> 4. Job execution on step 2 will fail [1].
> 5. Job execution on step 3 will success [2].
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)