[Proposal] Beam Newsletter

2017-09-21 Thread Griselda Cuevas
Hi Beam Community, I have a proposal to start sending *monthly newsletters* to our dev and user mailing lists. The idea is to summarize what's happening in the project and keep everyone informed of what's happening, specially new members, people interested in specific initiatives/efforts and help

Re: Slack channel

2017-09-21 Thread Thomas Groh
Done. On Thu, Sep 21, 2017 at 1:33 PM, Max Barrios wrote: > Hello > > Can someone please add me to the Beam slack channel? > > Thanks, > > -Max >

Slack channel

2017-09-21 Thread Max Barrios
Hello Can someone please add me to the Beam slack channel? Thanks, -Max

Slack channel

2017-09-21 Thread Max Barrios
Hello Can someone please add me to the Beam slack channel? Thanks, -Max

Regarding Beam Slack Channel

2017-09-21 Thread Srinivas Reddy
Hello, Can someone please add me to the Beam slack channel? Thanks. -Srinivas -- Srinivas Mahendar Reddy +91-9177684321 <091776%2084321> mrsrinivas.com/so (Sent via gmail web)

Best way to read files with timestamps in names

2017-09-21 Thread Vilhelm von Ehrenheim
Hi! I have encountered this a few times but have only solved it using some ugly hack so far so I thought I'd ask this time. If I have a bunch of files with timestamps in their names but with no timestamps in the data, how should I best read them into a PCollection of timestamped values? The

Re: Testing transforms with generics using PAssert.containsAnyOrder

2017-09-21 Thread Vilhelm von Ehrenheim
Digging a bit more in this. I might have set the Coder in the wrong place before. Using setCoder directly after the parameterized transform, explicitly specifying the correct subclass (`AvroCoder.of(Person.class)` in this case) does give me a Person object in the next step as suggested. Thank