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 C43D7200BDC for ; Wed, 14 Dec 2016 08:31:18 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id C2C14160B19; Wed, 14 Dec 2016 07:31:18 +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 1811E160B13 for ; Wed, 14 Dec 2016 08:31:17 +0100 (CET) Received: (qmail 46290 invoked by uid 500); 14 Dec 2016 07:31:16 -0000 Mailing-List: contact dev-help@phoenix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@phoenix.apache.org Delivered-To: mailing list dev@phoenix.apache.org Received: (qmail 46279 invoked by uid 99); 14 Dec 2016 07:31:16 -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; Wed, 14 Dec 2016 07:31:16 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7C558E040F; Wed, 14 Dec 2016 07:31:16 +0000 (UTC) From: kalyanhadooptraining To: dev@phoenix.apache.org Reply-To: dev@phoenix.apache.org Message-ID: Subject: [GitHub] phoenix pull request #225: V4.7.0 h base 1.1 Content-Type: text/plain Date: Wed, 14 Dec 2016 07:31:16 +0000 (UTC) archived-at: Wed, 14 Dec 2016 07:31:18 -0000 GitHub user kalyanhadooptraining opened a pull request: https://github.com/apache/phoenix/pull/225 V4.7.0 h base 1.1 You can merge this pull request into a Git repository by running: $ git pull https://github.com/kalyanhadooptraining/phoenix v4.7.0-HBase-1.1 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/phoenix/pull/225.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 #225 ---- commit ee82ff1a7b98c018f85d709c71f4a864e7f0e80a Author: kalyan Date: 2016-08-01T13:37:03Z PHOENIX-2084 : Support loading json data using apache phoenix flume plugin Adding new feature to existing PhoenixSink. Convert Json Data to Phoenix Table Data It supports array data type also with proper `jsonpath` Note: // mandatory properties phoenix-agent.sinks.phoenixsink.serializer = json phoenix-agent.sinks.phoenixsink.serializer.columns=c1,c2,c3,c4 // optional properties with sample data phoenix-agent.sinks.phoenixsink.serializer.partialSchema = true // {"c1":"kalyan", "c2":1, "c3":2012, "c4":"phoenix"} phoenix-agent.sinks.phoenixsink.serializer.columnsMapping = {"c1":"c1", "c2":"c2", "c3":"c3", "c4":"c4"} // {"f1":"kalyan", "f2":1, "f3":2012, "f4":"phoenix"} phoenix-agent.sinks.phoenixsink.serializer.columnsMapping = {"c1":"f1", "c2":"f2", "c3":"f3", "c4":"f4"} // {"c1":"kalyan", "c2":1, "a": {"b":2012}, "x":{"y":"phoenix"}} phoenix-agent.sinks.phoenixsink.serializer.columnsMapping = {"c1":"c1", "c2":"c2", "c3":"a.b", "c4":"x.y"} // {"c1":"kalyan", "c2":1, "a": {"b":2012}, "x":{"y": [{"z" : "phoenix"}, {"z" : "flume"}] }} phoenix-agent.sinks.phoenixsink.serializer.columnsMapping = {"c1":"c1", "c2":"c2", "c3":"a.b", "c4":"x.y[*].z"} commit b596f6c824fa1ab1cd27c67c4dd079cb6b589feb Author: Kalyan Hadoop Date: 2016-12-14T07:29:50Z REGEX Support for Phoenix Mapreduce Util ---- --- 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. ---