From dev-return-54403-archive-asf-public=cust-asf.ponee.io@phoenix.apache.org Sat Oct 27 02:24:04 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 62051180647 for ; Sat, 27 Oct 2018 02:24:04 +0200 (CEST) Received: (qmail 54754 invoked by uid 500); 27 Oct 2018 00:24:03 -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 54743 invoked by uid 99); 27 Oct 2018 00:24:03 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 27 Oct 2018 00:24:03 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id E13141A01FE for ; Sat, 27 Oct 2018 00:24:02 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -109.501 X-Spam-Level: X-Spam-Status: No, score=-109.501 tagged_above=-999 required=6.31 tests=[ENV_AND_HDR_SPF_MATCH=-0.5, KAM_ASCII_DIVIDERS=0.8, RCVD_IN_DNSWL_MED=-2.3, SPF_PASS=-0.001, USER_IN_DEF_SPF_WL=-7.5, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id 4FKAM3uQ_r3e for ; Sat, 27 Oct 2018 00:24:02 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id D72BB5F4A9 for ; Sat, 27 Oct 2018 00:24:01 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 133A3E25B0 for ; Sat, 27 Oct 2018 00:24:01 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 74BD52776B for ; Sat, 27 Oct 2018 00:24:00 +0000 (UTC) Date: Sat, 27 Oct 2018 00:24:00 +0000 (UTC) From: "Swaroopa Kadam (JIRA)" To: dev@phoenix.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (PHOENIX-4872) BulkLoad has bug when loading on single-cell-array-with-offsets table. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/PHOENIX-4872?page=3Dcom.atlass= ian.jira.plugin.system.issuetabpanels:all-tabpanel ] Swaroopa Kadam updated PHOENIX-4872: ------------------------------------ Attachment: PHOENIX-4872-master.patch > BulkLoad has bug when loading on single-cell-array-with-offsets table. > ---------------------------------------------------------------------- > > Key: PHOENIX-4872 > URL: https://issues.apache.org/jira/browse/PHOENIX-4872 > Project: Phoenix > Issue Type: Bug > Affects Versions: 4.11.0, 4.12.0, 4.13.0, 4.14.0 > Reporter: JeongMin Ju > Assignee: Swaroopa Kadam > Priority: Critical > Attachments: PHOENIX-4872-4.x-HBase-1.4.patch, PHOENIX-4872-maste= r.patch > > > CsvBulkLoadTool=C2=A0creates incorrect data=C2=A0for the SCAWO(SingleCell= ArrayWithOffsets) table. > Every phoenix table needs a marker (empty) column,=C2=A0but CsvBulkLoadTo= ol does not create that column for SCAWO tables. > If you check the data through HBase Shell, you can see that there is no c= orresponding column. > If created by Upsert Query, it is created normally. > {code:java} > column=3D0:\x00\x00\x00\x00, timestamp=3D1535420036372, value=3Dx > {code} > Since there is no upper column, the result of all Group By queries is zer= o. > This is because "families": > {"0": ["\\ x00 \\ x00 \\ x00 \\ x00"]} > is added to the column of the Scan object. > Because the CsvBulkLoadTool has not created the column, the result of the= scan is empty. > =C2=A0 > This problem applies only to tables with multiple column families. The si= ngle-column family table works luckily. > "Families": \{"0": ["ALL"]} is added to the column of the Scan object in = the single column family table.=C2=A0 > =C2=A0 -- This message was sent by Atlassian JIRA (v7.6.3#76005)