if i want to upload file to hdfs with dynamic directory with format yyyy/MM/dd/HH , how can i achieve that ?
@JsonCreator
public DynamicRemotePrefixFormatter(@JsonProperty("format") String formatString) {
String[] formatList = formatString.split("/");
for (String format : formatList) {
formatterList.add(createFormatter(format));
}
}
|
String[] formatList = formatString.split("/"); |