| Solomon Duskis | | Google Cloud clients | | sdu...@google.com | | 914-462-0531 |
--
You received this message because you are subscribed to the Google Groups "Google Cloud Bigtable Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-bigtabl...@googlegroups.com.
To post to this group, send email to google-cloud-b...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-bigtable-discuss/3267d624-05de-45df-b32f-ede6a6a1d62f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
public class SplitKeyList extends DoFn<String, Iterable<String>>{
private static final long serialVersionUID = -2014058754090539296L;
List<String> data = new ArrayList<String>();
@ProcessElement
public void processElement(ProcessContext context) {
String id = context.element();
data.add(id);
if(data.size()==100) {
context.output(data);
data = new ArrayList<>();
}
}
@FinishBundle
public void finishBundle(FinishBundleContext context) {
if(data.size()>0)
context.output(data, Instant.now(), new BoundedWindow() {
@Override
public Instant maxTimestamp() {
return null;
}
});
}
}
--
You received this message because you are subscribed to the Google Groups "Google Cloud Bigtable Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-bigtabl...@googlegroups.com.
To post to this group, send email to google-cloud-b...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-bigtable-discuss/c4691fa4-113b-4819-baca-bc43d316fadb%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-bigtable-discuss+unsub...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-bigtabl...@googlegroups.com.
To post to this group, send email to google-cloud-b...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-bigtable-discuss/c4691fa4-113b-4819-baca-bc43d316fadb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Google Cloud Bigtable Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-bigtabl...@googlegroups.com.
To post to this group, send email to google-cloud-b...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-bigtable-discuss/0e6d7d44-ba36-4a68-bbdb-088b134e79fb%40googlegroups.com.