public interface Partitioner extends Serializable
Modifier and Type | Method and Description |
---|---|
String |
getPartitionPath(Tuple tuple)
Return a relative path that the tuple should be written to.
|
String getPartitionPath(Tuple tuple)
Return a relative path that the tuple should be written to. For example, if an HdfsBolt were configured to write to /common/output and a partitioner returned “/foo” then the bolt should open a file in “/common/output/foo”
A best practice is to use Path.SEPARATOR instead of a literal “/”
tuple
- The tuple for which the relative path is being calculated.Copyright © 2022 The Apache Software Foundation. All rights reserved.