[GitHub] carbondata pull request #1891: [CARBONDATA-2104] ADD test for concurrent exe...

classic Classic list List threaded Threaded
31 messages Options
12
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata pull request #1891: [CARBONDATA-2104] ADD test for concurrent exe...

qiuchenjian-2
GitHub user jackylk opened a pull request:

    https://github.com/apache/carbondata/pull/1891

    [CARBONDATA-2104] ADD test for concurrent execution of insert overwrite and other command

    1. More testcases are added for concurrent execution of insert overwrite and other commands.
    2. Fix bug of delete segment, clean file when insert overwrite in progress
    3. Change in all command processMetadata to throw ProcessMetadataException instead of `sys.error`
   
     - [ ] Any interfaces changed?
     
     - [ ] Any backward compatibility impacted?
     
     - [ ] Document update required?
   
     - [ ] Testing done
            Please provide details on
            - Whether new unit test cases have been added or why no new tests are required?
            - How it is tested? Please attach test report.
            - Is it a performance related change? Please attach the performance test report.
            - Any additional information to help reviewers in testing this change.
           
     - [ ] For large changes, please consider breaking it into sub-tasks under an umbrella JIRA.
   


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/jackylk/incubator-carbondata add_concurrent_test

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/carbondata/pull/1891.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 #1891
   
----
commit 2eb19b9dfa337e1b3101752a72e49113686781b1
Author: Jacky Li <jacky.likun@...>
Date:   2018-01-31T05:10:11Z

    add test for concurrent

----


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata pull request #1891: [CARBONDATA-2104] ADD test for concurrent exe...

qiuchenjian-2
Github user jackylk commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/1891#discussion_r164954583
 
    --- Diff: integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/concurrent/TestLoadTableConcurrentScenario.scala ---
    @@ -1,78 +0,0 @@
    -/*
    - * Licensed to the Apache Software Foundation (ASF) under one or more
    - * contributor license agreements.  See the NOTICE file distributed with
    - * this work for additional information regarding copyright ownership.
    - * The ASF licenses this file to You under the Apache License, Version 2.0
    - * (the "License"); you may not use this file except in compliance with
    - * the License.  You may obtain a copy of the License at
    - *
    - *    http://www.apache.org/licenses/LICENSE-2.0
    - *
    - * Unless required by applicable law or agreed to in writing, software
    - * distributed under the License is distributed on an "AS IS" BASIS,
    - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    - * See the License for the specific language governing permissions and
    - * limitations under the License.
    - */
    -
    -package org.apache.carbondata.spark.testsuite.concurrent
    -
    -import org.apache.carbondata.core.metadata.schema.table.CarbonTable
    -import org.apache.carbondata.core.statusmanager.{SegmentStatus, SegmentStatusManager}
    -import org.apache.spark.sql.CarbonEnv
    -import org.apache.spark.sql.test.util.QueryTest
    -import org.scalatest.BeforeAndAfterAll
    -
    -class TestLoadTableConcurrentScenario extends QueryTest with BeforeAndAfterAll {
    --- End diff --
   
    This suite moved to TestInsertAndOtherCommandConcurrent.scala


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata pull request #1891: [CARBONDATA-2104] ADD test for concurrent exe...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user jackylk commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/1891#discussion_r164954677
 
    --- Diff: integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonDeleteLoadByIdCommand.scala ---
    @@ -32,8 +34,13 @@ case class CarbonDeleteLoadByIdCommand(
       override def processData(sparkSession: SparkSession): Seq[Row] = {
         Checker.validateTableExists(databaseNameOp, tableName, sparkSession)
         val carbonTable = CarbonEnv.getCarbonTable(databaseNameOp, tableName)(sparkSession)
    -    val operationContext = new OperationContext
     
    +    // if insert overwrite in progress, do not allow delete segment
    +    if (SegmentStatusManager.overwriteInProgressForTable(carbonTable)) {
    --- End diff --
   
    This is the bug


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata pull request #1891: [CARBONDATA-2104] ADD test for concurrent exe...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user jackylk commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/1891#discussion_r164954705
 
    --- Diff: integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/management/CarbonDeleteLoadByLoadDateCommand.scala ---
    @@ -33,6 +35,12 @@ case class CarbonDeleteLoadByLoadDateCommand(
       override def processData(sparkSession: SparkSession): Seq[Row] = {
         Checker.validateTableExists(databaseNameOp, tableName, sparkSession)
         val carbonTable = CarbonEnv.getCarbonTable(databaseNameOp, tableName)(sparkSession)
    +
    +    // if insert overwrite in progress, do not allow delete segment
    +    if (SegmentStatusManager.overwriteInProgressForTable(carbonTable)) {
    --- End diff --
   
    This is the bug


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1891: [CARBONDATA-2104] ADD test for concurrent execution ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1891
 
    Build Failed  with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder1/3309/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1891: [CARBONDATA-2104] ADD test for concurrent execution ...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1891
 
    Build Failed with Spark 2.2.1, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/2072/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1891: [CARBONDATA-2104] Add testcase for concurrent execut...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1891
 
    Build Failed  with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder1/3320/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1891: [CARBONDATA-2104] Add testcase for concurrent execut...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1891
 
    Build Failed with Spark 2.2.1, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/2084/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1891: [CARBONDATA-2104] Add testcase for concurrent execut...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user jackylk commented on the issue:

    https://github.com/apache/carbondata/pull/1891
 
    retest this please


---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1891: [CARBONDATA-2104] Add testcase for concurrent execut...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1891
 
    Build Failed  with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder1/3330/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1891: [CARBONDATA-2104] Add testcase for concurrent execut...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1891
 
    Build Failed with Spark 2.2.1, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/2094/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1891: [CARBONDATA-2104] Add testcase for concurrent execut...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1891
 
    Build Failed with Spark 2.2.1, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/2104/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1891: [CARBONDATA-2104] Add testcase for concurrent execut...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1891
 
    Build Failed  with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder1/3340/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1891: [CARBONDATA-2104] Add testcase for concurrent execut...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user ravipesala commented on the issue:

    https://github.com/apache/carbondata/pull/1891
 
    SDV Build Fail , Please check CI http://144.76.159.231:8080/job/ApacheSDVTests/3256/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1891: [CARBONDATA-2104] Add testcase for concurrent execut...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1891
 
    Build Failed  with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder1/3362/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1891: [CARBONDATA-2104] Add testcase for concurrent execut...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1891
 
    Build Failed with Spark 2.2.1, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/2126/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1891: [CARBONDATA-2104] Add testcase for concurrent execut...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user ravipesala commented on the issue:

    https://github.com/apache/carbondata/pull/1891
 
    SDV Build Success , Please check CI http://144.76.159.231:8080/job/ApacheSDVTests/3265/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1891: [CARBONDATA-2104] Add testcase for concurrent execut...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1891
 
    Build Failed  with Spark 2.1.0, Please check CI http://136.243.101.176:8080/job/ApacheCarbonPRBuilder1/3375/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1891: [CARBONDATA-2104] Add testcase for concurrent execut...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1891
 
    Build Failed with Spark 2.2.1, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/2138/



---
Reply | Threaded
Open this post in threaded view
|

[GitHub] carbondata issue #1891: [CARBONDATA-2104] Add testcase for concurrent execut...

qiuchenjian-2
In reply to this post by qiuchenjian-2
Github user CarbonDataQA commented on the issue:

    https://github.com/apache/carbondata/pull/1891
 
    Build Failed with Spark 2.2.1, Please check CI http://88.99.58.216:8080/job/ApacheCarbonPRBuilder/2139/



---
12