GitHub user srinipunuru opened a pull request: https://github.com/apache/samza/pull/295
Samza SQL implementation for basic projects, filtering and UDFs ## Samza SQL implementation for basic projects, filtering and ## Design document: https://docs.google.com/document/d/1bE-ZuPfTpntm1hT3GwQEShYDiTqU3IkxeP4-3ZcGHgU/edit?usp=sharing ## Modules **Samza-sql-api** : This just contains the interfaces for UDFs. This library is something that end user will depend on. **Samza-sql-lib**: This just contains interfaces and common datastructures that are needed for writing Samza sql plugins. One such plugin that comes out of the box is samza-sql-avro. This libarary will typically be used by developers who want to extend Samza sql to make it work with protobuf, thrift or other schema registeries etc. **Samza-sql**: This is the core of the Samza SQL application that takes in SQL and converts it into Samza streaming application **Samza-sql-avro** : This is samza sql plugin to make samza sql work with Avro data formats. This plugin will be used at LinkedIn. You can merge this pull request into a Git repository by running: $ git pull https://github.com/srinipunuru/samza samza-sql.1 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/samza/pull/295.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #295 ---- commit be405d220a6f70aeb421e8f7710a0d0f59617b10 Author: Srinivasulu Punuru <spun...@linkedin.com> Date: 2017-09-12T23:24:47Z Samza SQL implementation for basic projects, filtering and UDFs ---- ---