* The number of buckets into which data is to be partitioned.
* @return An instance of the builder for method chaining.
* @since 0.3.0
*/
public Builder hash(String sourceName, String name, int buckets) {
fieldPartitioners.add(new HashFieldPartitioner(sourceName, name, buckets));
return this;
}