Lets try again,
How do I create an in memory collection of iterable avro specific types? I
can't seem to figure out how to create a PType for the iterable type.
Here's what I'm trying:
ArrayList<BowtieMapping> mappings = new ArrayList<BowtieMapping>();
PCollection<Iterable<BowtieMapping>> example4 =
MemPipeline.typedCollectionOf(
Avros.collections(mappings.getClass()),
mappings);
In this case BowtieMapping is the class for my avro specific type.
I'm trying to write a unit test for a DoFn.
Thanks
J
On Sat, Jan 11, 2014 at 6:16 PM, Jeremy Lewi <[email protected]> wrote:
> Hi Crunch Users,
>
> Ho
>