[
https://issues.apache.org/jira/browse/BEAM-6480?focusedWorklogId=273925&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-273925
]
ASF GitHub Bot logged work on BEAM-6480:
----------------------------------------
Author: ASF GitHub Bot
Created on: 09/Jul/19 09:18
Start Date: 09/Jul/19 09:18
Worklog Time Spent: 10m
Work Description: aromanenko-dev commented on pull request #9005:
[BEAM-6480] Adds AvroIO sink for generic records.
URL: https://github.com/apache/beam/pull/9005#discussion_r301477183
##########
File path: sdks/java/core/src/test/java/org/apache/beam/sdk/io/AvroIOTest.java
##########
@@ -1230,21 +1349,43 @@ public void testDynamicDestinationsWithNumShards()
throws Exception {
@Category(NeedsRunner.class)
public void testDynamicDestinationsViaSinkRunnerDeterminedSharding()
throws Exception {
testDynamicDestinationsUnwindowedWithSharding(
- WriteMethod.AVROIO_SINK, Sharding.RUNNER_DETERMINED);
+ WriteMethod.AVROIO_SINK_WITH_SCHEMA, Sharding.RUNNER_DETERMINED);
}
@Test
@Category(NeedsRunner.class)
public void testDynamicDestinationsViaSinkWithoutSharding() throws
Exception {
testDynamicDestinationsUnwindowedWithSharding(
- WriteMethod.AVROIO_SINK, Sharding.WITHOUT_SHARDING);
+ WriteMethod.AVROIO_SINK_WITH_SCHEMA, Sharding.WITHOUT_SHARDING);
}
@Test
@Category(NeedsRunner.class)
public void testDynamicDestinationsViaSinkWithNumShards() throws Exception
{
testDynamicDestinationsUnwindowedWithSharding(
- WriteMethod.AVROIO_SINK, Sharding.FIXED_3_SHARDS);
+ WriteMethod.AVROIO_SINK_WITH_SCHEMA, Sharding.FIXED_3_SHARDS);
Review comment:
The same question as above.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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: 273925)
Time Spent: 2.5h (was: 2h 20m)
> Add AvroIO.sink for IndexedRecord (FileIO compatible)
> -----------------------------------------------------
>
> Key: BEAM-6480
> URL: https://issues.apache.org/jira/browse/BEAM-6480
> Project: Beam
> Issue Type: New Feature
> Components: io-java-avro
> Affects Versions: 2.9.0
> Reporter: Romain Manni-Bucau
> Assignee: Ryan Skraba
> Priority: Major
> Time Spent: 2.5h
> Remaining Estimate: 0h
>
> More generally for sink there is no need to create a mapper API since the
> previous PTransform can always map in a format the sink support so any sink
> can assume the format is right.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)