Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
issues #56, #52, #53
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcasters committed Feb 12, 2020
1 parent 94990f2 commit 2feb26a
Show file tree
Hide file tree
Showing 11 changed files with 947 additions and 186 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package org.kettle.beam.core.partition;

import org.apache.beam.sdk.transforms.Partition;
import org.kettle.beam.core.KettleRow;

public class SinglePartitionFn implements Partition.PartitionFn<KettleRow> {

private static final long serialVersionUID = 95100000000000001L;

@Override public int partitionFor( KettleRow elem, int numPartitions ) {
return 0;
}
}
Loading

0 comments on commit 2feb26a

Please sign in to comment.