You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tajo.apache.org by jihoonson <gi...@git.apache.org> on 2015/05/28 07:45:20 UTC

[GitHub] tajo pull request: TAJO-1130 Concurrent execution of independent e...

Github user jihoonson commented on the pull request:

    https://github.com/apache/tajo/pull/423#issuecomment-106184219
  
    +1. This patch looks good to me.
    I've simply evaluated performance gain with this patch as follows.
    
    ### Configurations and environment
    * Broadcast join is disabled.
    * The test is conducted on my desktop which equips 8 cores, 32 GB memory, and 2 HDDs.
    
    ### Data
    * Input: TPC-H scale factor of 1
    
    ### Query
    ```
    tpch> select sleep(1) from region, nation where n_regionkey = r_regionkey;
    ```
    
    ### Result
    * with QUERY_EXECUTE_PARALLEL 1: 30.399 sec
    * with QUERY_EXECUTE_PARALLEL 2: 25.571 sec
     * The performance is improved due to the two input relations are read concurrently.


---
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.
---