GitHub user pdu-mn1 opened a pull request: https://github.com/apache/samza/pull/465
sql: initial insert support for table destination Table is another main type of IO abstraction in Samza which supports both read and write (optional). For the tables that do support writes, we should be able to allow Samza SQL users to write a query to do that. One example is to insert into a database. The current code only supports inserting into a stream. This change adds the initial support for table insert operation. You can merge this pull request into a Git repository by running: $ git pull https://github.com/pdu-mn1/samza sql-insert-table Alternatively you can review and apply these changes as the patch at: https://github.com/apache/samza/pull/465.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 #465 ---- commit 3ea7f4f9e04c0c489c2e19dc8058c8a679b3518b Author: Peng Du <pdu@...> Date: 2018-03-07T17:03:02Z sql: initial insert support for table destination Table is another main type of IO abstraction in Samza which supports both read and write (optional). For the tables that do support writes, we should be able to allow Samza SQL users to write a query to do that. One example is to insert into a database. The current code only supports inserting into a stream. This change adds the initial support for table insert operation. ---- ---