Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support vectorized schema scanner #1

Open
wants to merge 63 commits into
base: main
Choose a base branch
from

Commits on Sep 9, 2021

  1. Bugfix: After copying the data from src to dst, the null flag should …

    …be set to false. (StarRocks#113)
    
    There is no corresponding setting for AggregateFuncTraits of VARCHAR type.
    
    fixs StarRocks#123
    lokax authored Sep 9, 2021
    Configuration menu
    Copy the full SHA
    97daf1d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e87eabb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5a8ce3c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    92de223 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2021

  1. Configuration menu
    Copy the full SHA
    f700624 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    078a2fb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0593c40 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7b78f97 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ceff937 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c9f1cb0 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    403854e View commit details
    Browse the repository at this point in the history
  8. [SR-3676] Export supports specified columns (StarRocks#118)

    * [SR-3676] Export supports specified columns
    
    * Support different column order
    wyb authored Sep 10, 2021
    Configuration menu
    Copy the full SHA
    c6dc140 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2021

  1. Configuration menu
    Copy the full SHA
    ee08fe4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c504ad4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    62ab162 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4142f9d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1f36b46 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a3e50c5 View commit details
    Browse the repository at this point in the history
  7. Update issue templates (StarRocks#150)

    * Update issue template
    sduzh authored Sep 11, 2021
    Configuration menu
    Copy the full SHA
    b573b34 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    b0cb803 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    7ed9b01 View commit details
    Browse the repository at this point in the history
  10. compatible with bitmap/hll/percentile append_value_multiple_times usa…

    …ge by using append_strings instead in default value column iterator. (StarRocks#93)
    Linkerist authored Sep 11, 2021
    Configuration menu
    Copy the full SHA
    70edab8 View commit details
    Browse the repository at this point in the history
  11. [SR-3794] Olap external table support (StarRocks#66)

    Now you can create a olap external table whose data will be stored in
    another StarRocks cluster. When you insert values into such table,
    data are written to remote table actually.
    wuleistarrocks authored Sep 11, 2021
    Configuration menu
    Copy the full SHA
    ef45f29 View commit details
    Browse the repository at this point in the history
  12. Fix show tablet failed when drop be (StarRocks#163)

    gengjun-git authored Sep 11, 2021
    Configuration menu
    Copy the full SHA
    d00dea4 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    11eefaf View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    85281c9 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    c76fa6a View commit details
    Browse the repository at this point in the history
  16. [SR-4370] Support use Min/Max column statistics to estimate && Calcul…

    …ate predicate statistics for cross join (StarRocks#107)
    Youngwb authored Sep 11, 2021
    Configuration menu
    Copy the full SHA
    a143396 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    383f64b View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    935b8d2 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    f231877 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    e7c06f3 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    368fb14 View commit details
    Browse the repository at this point in the history
  22. Fix build starrocks_be faild (StarRocks#176)

    I have cloned the project and try to build it with running build.sh in the root, but got below error.This pr solve the build error.
    mchades authored Sep 11, 2021
    Configuration menu
    Copy the full SHA
    7068a63 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2021

  1. Configuration menu
    Copy the full SHA
    68becaa View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2021

  1. Configuration menu
    Copy the full SHA
    0456034 View commit details
    Browse the repository at this point in the history
  2. Add enhancement/general-question issue template, and adjust descripti…

    …on in feature-request/bug-report. (StarRocks#188)
    Linkerist authored Sep 13, 2021
    Configuration menu
    Copy the full SHA
    9c9e0cf View commit details
    Browse the repository at this point in the history
  3. Fix FE ut does not work after upgrade jprotobuf (StarRocks#190)

    this because new version jprotobuf use async.
    it is not in jprotobuf-rpc-common 1.8.
    Astralidea authored Sep 13, 2021
    Configuration menu
    Copy the full SHA
    302c6ec View commit details
    Browse the repository at this point in the history
  4. Reduce the number of disk accesses while parsing segment footer (Star…

    …Rocks#175)
    
    * Enhancement: Reduce disk accesses when parsing segment footer
    
    Issue Number StarRocks#129
    
    Reduce the number of disk accesses by passing a hint value of the
    segment footer length, when parsing the segment footer. The hint
    value is based on the previous segment footer length of the same
    rowset.
    sduzh authored Sep 13, 2021
    Configuration menu
    Copy the full SHA
    8eae136 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    aaa53b0 View commit details
    Browse the repository at this point in the history
  6. Open Rowset when it is committed (StarRocks#191)

    * Open Rowset when it is committed
    
    * clear segments in do_load
    decster authored Sep 13, 2021
    Configuration menu
    Copy the full SHA
    d39b5e6 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2f48056 View commit details
    Browse the repository at this point in the history
  8. [SR-4416] remove mysql-connector-java (StarRocks#201)

    this dependency is not use
    Astralidea authored Sep 13, 2021
    Configuration menu
    Copy the full SHA
    d3f47c3 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    959e440 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    f52ddac View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    6687271 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2021

  1. [SR-3289] FE schedule algorithm for backend disk balance (StarRocks#119)

    1. On the basis of the original cluster tablet balance, add backend disk balance schedule algorithm.
    2. Implement backend local migration schedule process.
    3. Improve the storage medium migration process.
    4. Add storage medium, tablet num in BackendProcNode.
    wyb authored Sep 14, 2021
    Configuration menu
    Copy the full SHA
    cef91e8 View commit details
    Browse the repository at this point in the history
  2. [SR-3289] BE migration for backend disk balance (StarRocks#120)

    1. Support tablet local migration for backend disk balance.
    2. Improve backend tablet migration process.
    3. Improve migration lock, and migration will not cause write fail.
    4. Change path_hash type to int64, which is consistent with thrift api and fe.
    wyb authored Sep 14, 2021
    Configuration menu
    Copy the full SHA
    7383dd7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b7cb8ae View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d5250c7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    92d8297 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    29d8610 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7360603 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    6cfb84c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    608fe5e View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2021

  1. Configuration menu
    Copy the full SHA
    94d47b3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    131febf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2c0baa1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5c43663 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8c9638b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f3b6b43 View commit details
    Browse the repository at this point in the history
  7. [SR-4450] support vectorized schema scanner

    starrocks-xueli committed Sep 15, 2021
    Configuration menu
    Copy the full SHA
    f0eb713 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2021

  1. fix bug

    starrocks-xueli committed Sep 16, 2021
    Configuration menu
    Copy the full SHA
    115c50e View commit details
    Browse the repository at this point in the history