shaofengshi commented on a change in pull request #327: KYLIN-3552 add doc and blog URL: https://github.com/apache/kylin/pull/327#discussion_r248230622
########## File path: website/_posts/blog/2018-10-30-introduce-data-source-sdk-v2.6.0.md ########## @@ -0,0 +1,37 @@ +--- +layout: post-blog +title: Introduce data source SDK +date: 2018-10-30 20:00:00 +author: Youcheng Zhang +categories: blog +--- + +## Data source SDK + +Apache Kylin has already supported several data sources like vertica, SQL Server through JDBC. But we found that it takes much efforts to develop an implementation to a new source engine, like supporting metadata sync, cube build and query pushdown. It’s mainly because the SQL dialects and jdbc implementations between source engines are quite different. + +So since 2.6.x, Kylin provides a new data source SDK, which provides APIs to help developers handle these dialect differences and easily implement a new data source through JDBC. + +With this SDK, users can achieve followings from a JDBC source: + +* synchronize metadata and data from JDBC source Review comment: The first character should be in upper case. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
