Github user jinossy commented on the pull request:

    https://github.com/apache/tajo/pull/404#issuecomment-78846800
  
    I was ran simple benchmark
    
    * Cluster : 1Master + 4Worker
    * TPC-H 100GB part of Q16
    
    ```
    select 
      p_brand, p_type, p_size, ps_suppkey
    from 
      partsupp ps join part p 
      on 
        p.p_partkey = ps.ps_partkey and p.p_brand <> 'Brand#45' 
        and not p.p_type like 'MEDIUM POLISHED%'
      join supplier_tmp s 
      on 
        ps.ps_suppkey = s.s_suppkey;
        
    ```
    
    * This is only join benchmark (broadcast table is "supplier_tmp")
    
    Broadcast | execution time
    ------------ | -------------
    false | 45 sec
    true | 33 sec
    improved | 22 sec


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to