Sha256: 64b36dd66a86b8797aea814077d5d00560b499984ddd32ae835874e220027820
Contents?: true
Size: 1.93 KB
Versions: 1
Compression:
Stored size: 1.93 KB
Contents
# Row filter plugin for Embulk A filter plugin for Embulk to filter out rows ## Configuration * **conditions**: select only rows which matches with conditions. (support only **AND** conditions) * **column**: column name (string, required) * **operator** operator (string, optional, default: ==) * boolean operator * == * != * numeric operator (long, double, Timestamp) * == * != * > * >= * <= * < * string operator * == * != * start_with (or startsWith) * end_with (or endsWith) * include (or contains) * unary operator * "IS NULL" * "IS NOT NULL" * **argument**: argument for the operation (string, required for non-unary operators) * **not**: not (boolean, optional, default: false) * **format**: special option for timestamp column, specify the format of timestamp argument (string, default is `%Y-%m-%d %H:%M:%S.%N %z`) * **timezone**: special option for timestamp column, specify the timezone of timestamp argument (string, default is `UTC`) NOTE: column type is automatically retrieved from input data (inputSchema) ## Example ```yaml filters: - type: row conditions: - {column: foo, operator: "IS NOT NULL"} - {column: id, operator: ">=", argument: 10} - {column: id, operator: "<", argument: 20} - {column: name, opeartor: "include", argument: foo, not: true} - {column: time, operator: "==", argument: "2015-07-13", format: "%Y-%m-%d"} ``` NOTE: column type is automatically retrieved from input data (inputSchema) ## ToDo * Support OR condition * It should be better to think using Query engine like [Apache Drill](https://drill.apache.org/) or [Presto](https://prestodb.io/) ## ChangeLog [CHANGELOG.md](./CHANGELOG.md) ## Development Run example: ``` $ ./gradlew classpath $ embulk run -I lib example.yml ``` Run test: ``` $ ./gradlew test ``` Release gem: ``` $ ./gradlew gemPush ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
embulk-filter-row-0.1.1 | README.md |