You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@carbondata.apache.org by "Chetan Bhat (JIRA)" <ji...@apache.org> on 2019/07/04 09:06:00 UTC

[jira] [Created] (CARBONDATA-3465) Job group id of select filter query not displayed in spark web UI for fallback scenario when index server start in progress

Chetan Bhat created CARBONDATA-3465:
---------------------------------------

             Summary: Job group id of select filter query not displayed in spark web UI for fallback scenario when index server start in progress
                 Key: CARBONDATA-3465
                 URL: https://issues.apache.org/jira/browse/CARBONDATA-3465
             Project: CarbonData
          Issue Type: Bug
          Components: other
    Affects Versions: 1.6.0
         Environment: Spark 2.1
            Reporter: Chetan Bhat


Steps :

From Spark beeline user creates table and loads data.

 CREATE TABLE uniqdata (CUST_ID int,CUST_NAME String,ACTIVE_EMUI_VERSION string, DOB timestamp, DOJ timestamp, BIGINT_COLUMN1 bigint,BIGINT_COLUMN2 bigint,DECIMAL_COLUMN1 decimal(30,10), DECIMAL_COLUMN2 decimal(36,36),Double_COLUMN1 double, Double_COLUMN2 double,INTEGER_COLUMN1 int) STORED BY 'org.apache.carbondata.format';
LOAD DATA INPATH 'hdfs://hacluster/chetan/2000_UniqData.csv' into table uniqdata OPTIONS('DELIMITER'=',' , 'QUOTECHAR'='"','BAD_RECORDS_ACTION'='FORCE','FILEHEADER'='CUST_ID,CUST_NAME,ACTIVE_EMUI_VERSION,DOB,DOJ,BIGINT_COLUMN1,BIGINT_COLUMN2,DECIMAL_COLUMN1,DECIMAL_COLUMN2,Double_COLUMN1,Double_COLUMN2,INTEGER_COLUMN1');

  User starts index server. Before the index server is started select query is executed from beeline

  select concat(CUST_ID),concat(CUST_NAME),concat(DOB),concat(BIGINT_COLUMN1),concat(DECIMAL_COLUMN1),concat(Double_COLUMN1) from uniqdata where CUST_ID IS NULL or DOB IS NOT NULL or BIGINT_COLUMN1 =1233720368578 or DECIMAL_COLUMN1 = 12345678901.1234000058 or Double_COLUMN1 = 1.12345674897976E10 or INTEGER_COLUMN1 IS NULL limit 10;

User checks the Spark Web UI for the query submitted to JDBC Server UI.

Issue : Job group id of select filter query not displayed in spark web UI for fallback scenario when index server start in progress.

Expected : Job group id of select filter query should be displayed in spark web UI for fallback scenario when index server start in progress.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)