Github user amberarrow commented on a diff in the pull request: https://github.com/apache/incubator-apex-malhar/pull/273#discussion_r63193475 --- Diff: library/src/main/java/com/datatorrent/lib/io/fs/AbstractSingleFileOutputOperator.java --- @@ -62,4 +92,32 @@ public String getOutputFileName() { return outputFileName; } + + /** + * @return string format specifier for the partitioned file name + */ + public String getPartitionedFileNameformat() + { + return partitionedFileNameformat; + } + + /** + * @param partitionedFileNameformat + * string format specifier for the partitioned file name + */ + public void setPartitionedFileNameformat(String partitionedFileNameformat) + { + this.partitionedFileNameformat = partitionedFileNameformat; + partitionedFileName = String.format(partitionedFileNameformat, outputFileName, physicalPartitionId); --- End diff -- See note above.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---