Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 1EF1B200B29 for ; Thu, 30 Jun 2016 12:46:17 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 1D7A8160A52; Thu, 30 Jun 2016 10:46:17 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 3E8E4160A51 for ; Thu, 30 Jun 2016 12:46:16 +0200 (CEST) Received: (qmail 98537 invoked by uid 500); 30 Jun 2016 10:46:15 -0000 Mailing-List: contact dev-help@apex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@apex.apache.org Delivered-To: mailing list dev@apex.apache.org Received: (qmail 98526 invoked by uid 99); 30 Jun 2016 10:46:15 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Jun 2016 10:46:15 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id C1310C02E9 for ; Thu, 30 Jun 2016 10:46:14 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -5.446 X-Spam-Level: X-Spam-Status: No, score=-5.446 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id YnjoZpZIRBoV for ; Thu, 30 Jun 2016 10:46:12 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id 8E4445F4EA for ; Thu, 30 Jun 2016 10:46:11 +0000 (UTC) Received: (qmail 98208 invoked by uid 99); 30 Jun 2016 10:46:10 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 30 Jun 2016 10:46:10 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id AE63CDFF03; Thu, 30 Jun 2016 10:46:10 +0000 (UTC) From: yogidevendra To: dev@apex.incubator.apache.org Reply-To: dev@apex.incubator.apache.org References: In-Reply-To: Subject: [GitHub] apex-malhar pull request #326: APEXMALHAR-2116 Added FS record reader operat... Content-Type: text/plain Message-Id: <20160630104610.AE63CDFF03@git1-us-west.apache.org> Date: Thu, 30 Jun 2016 10:46:10 +0000 (UTC) archived-at: Thu, 30 Jun 2016 10:46:17 -0000 Github user yogidevendra commented on a diff in the pull request: https://github.com/apache/apex-malhar/pull/326#discussion_r69111489 --- Diff: library/src/main/java/org/apache/apex/malhar/lib/fs/FSRecordReaderModule.java --- @@ -0,0 +1,332 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.apache.apex.malhar.lib.fs; + +import javax.validation.constraints.Min; + +import javax.validation.constraints.NotNull; +import javax.validation.constraints.Size; + +import org.apache.apex.malhar.lib.fs.FSRecordReader.RECORD_READER_MODE; +import org.apache.hadoop.conf.Configuration; + +import com.datatorrent.api.Context; +import com.datatorrent.api.DAG; +import com.datatorrent.api.Module; +import com.datatorrent.common.partitioner.StatelessPartitioner; +import com.datatorrent.lib.codec.KryoSerializableStreamCodec; +import com.datatorrent.lib.io.block.BlockMetadata; +import com.datatorrent.lib.io.block.FSSliceReader; +import com.datatorrent.lib.io.fs.FileSplitterInput; + +/** + * This module is used for reading records/tuples from FileSystem. Records can + * be read in parallel using multiple partitions of record reader operator. + * (Ordering is not guaranteed when records are read in parallel) + * + * Input directory is scanned at specified interval to poll for new data. + * + * The module reads data in parallel, following parameters can be configured + *
+ * 1. files: list of file(s)/directories to read
+ * 2. filePatternRegularExp: Files names matching given regex will be read
+ * 3. scanIntervalMillis: interval between two scans to discover new files in + * input directory
+ * 4. recursive: if scan recursively input directories
+ * 5. blockSize: block size used to read input blocks of file
+ * 6. readersCount: count of readers to read input file
+ * 7. sequentialFileRead: If emit file blocks in sequence?
+ * 8. blocksThreshold: number of blocks emitted per window + */ +@org.apache.hadoop.classification.InterfaceStability.Evolving +public class FSRecordReaderModule implements Module +{ + @NotNull + @Size(min = 1) + private String files; + private String filePatternRegularExp; + @Min(0) + private long scanIntervalMillis; + private boolean recursive = true; + private boolean sequentialFileRead = false; + private int readersCount; + @Min(1) + protected int blocksThreshold; + + public final transient ProxyOutputPort records = new ProxyOutputPort(); + + /** + * Criteria for record split + */ + private RECORD_READER_MODE mode; + + /** + * Length for fixed width record + */ + private int recordLength; + + public FileSplitterInput createFileSplitter() + { + return new FileSplitterInput(); + } + + public FSRecordReader createBlockReader() + { + FSRecordReader recordReader = new FSRecordReader(); + recordReader.setMode(mode); + recordReader.setRecordLength(recordLength); + + return recordReader; + } + + @Override + public void populateDAG(DAG dag, Configuration configuration) + { + FileSplitterInput fileSplitter = dag.addOperator("FileSplitter", createFileSplitter()); + FSRecordReader recordReader = dag.addOperator("BlockReader", createBlockReader()); + + dag.addStream("BlockMetadata", fileSplitter.blocksMetadataOutput, recordReader.blocksMetadataInput); + + if (sequentialFileRead) { + dag.setInputPortAttribute(recordReader.blocksMetadataInput, Context.PortContext.STREAM_CODEC, + new SequentialFileBlockMetadataCodec()); + } + + FileSplitterInput.TimeBasedDirectoryScanner fileScanner = fileSplitter.getScanner(); + fileScanner.setFiles(files); + if (scanIntervalMillis != 0) { + fileScanner.setScanIntervalMillis(scanIntervalMillis); + } + fileScanner.setRecursive(recursive); + if (filePatternRegularExp != null) { + fileSplitter.getScanner().setFilePatternRegularExp(filePatternRegularExp); + } + + recordReader.setBasePath(files); + if (readersCount != 0) { + dag.setAttribute(recordReader, Context.OperatorContext.PARTITIONER, + new StatelessPartitioner(readersCount)); + } + fileSplitter.setBlocksThreshold(blocksThreshold); + records.set(recordReader.records); + } + + /** + * A comma separated list of directories to scan. If the path is not fully + * qualified the default file system is used. A fully qualified path can be + * provided to scan directories in other filesystems. + * + * @param files + * files + */ + public void setFiles(String files) + { + this.files = files; --- End diff -- I tried to keep it consistent with FSInputModule.java. If you feel that readability/intuitive names are more important than having consistency across operators then I am fine with changing this field name. --- 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 infrastructure@apache.org or file a JIRA ticket with INFRA. ---