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

ci(java): build JNI release package #2516

Merged
merged 36 commits into from
Jul 13, 2024
Merged

ci(java): build JNI release package #2516

merged 36 commits into from
Jul 13, 2024

Commits on Jun 24, 2024

  1. build

    eddyxu committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    f011a96 View commit details
    Browse the repository at this point in the history
  2. use ubuntu 22.04

    eddyxu committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    12303fd View commit details
    Browse the repository at this point in the history
  3. show pwd

    eddyxu committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    36181b0 View commit details
    Browse the repository at this point in the history
  4. copy lib

    eddyxu committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    69b7655 View commit details
    Browse the repository at this point in the history
  5. related path

    eddyxu committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    32b6f29 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5001ff9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6a6c0ff View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2024

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

Commits on Jul 10, 2024

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

Commits on Jul 11, 2024

  1. Configuration menu
    Copy the full SHA
    cf6b2d4 View commit details
    Browse the repository at this point in the history
  2. fix: be compatible with v1 index format (#2582)

    Signed-off-by: BubbleCal <bubble-cal@outlook.com>
    BubbleCal authored and eddyxu committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    85bab4d View commit details
    Browse the repository at this point in the history
  3. feat: do flat search if too many rows are filtered out (#2583)

    - replace RoaringBitmap with BitVec
    - use pool to avoid allocating bitset for each query with prefilter
    - fall back to flat search if too many rows filtered out
    - prefetch with flat search
    
    ---------
    
    Signed-off-by: BubbleCal <bubble-cal@outlook.com>
    BubbleCal authored and eddyxu committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    a8603a1 View commit details
    Browse the repository at this point in the history
  4. feat: add label list index (#2581)

    This PR adds a new kind of scalar index, the LABEL_LIST scalar index. A
    label list index can only be created on list columns (the item data type
    has to be one of the data types that can be used for btree/bitmap
    indices). The label list index can speed up array_has_any and
    array_has_all queries.
    
    This is useful for tag-like columns where each row has some number of
    labels and the overall cardinality of the labels is relatively low (the
    index in-memory size will depend on the cardinality of the labels).
    
    This PR also introduces the idea that different scalar indices may
    support different types of queries. There is now `SargableQuery` (what
    is used by btree and bitmap) and `LabelListQuery` (used by the new label
    list index). Going forward we should probably break the FullTextQuery
    out of `SargableQuery` and into its own query type.
    westonpace authored and eddyxu committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    7a841dc View commit details
    Browse the repository at this point in the history
  5. fix pom

    eddyxu committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    0e65568 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2399d43 View commit details
    Browse the repository at this point in the history
  7. two dry runs

    eddyxu committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    b611b53 View commit details
    Browse the repository at this point in the history
  8. use token

    eddyxu committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    2a388c8 View commit details
    Browse the repository at this point in the history
  9. setup pgp

    eddyxu committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    e7dda34 View commit details
    Browse the repository at this point in the history
  10. release 0.0.4 for now

    eddyxu committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    7fc46bc View commit details
    Browse the repository at this point in the history
  11. not dry run

    eddyxu committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    0cffc78 View commit details
    Browse the repository at this point in the history
  12. rm snapshot

    eddyxu committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    6df0979 View commit details
    Browse the repository at this point in the history
  13. use snapshot

    eddyxu committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    cf941a5 View commit details
    Browse the repository at this point in the history
  14. release in batch mode

    eddyxu committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    2345a1f View commit details
    Browse the repository at this point in the history
  15. do not push change for now

    eddyxu committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    3cef449 View commit details
    Browse the repository at this point in the history
  16. skip

    eddyxu committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    bbadc42 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2024

  1. set github config

    eddyxu committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    4f0f2a9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    699b2d7 View commit details
    Browse the repository at this point in the history
  3. pass

    eddyxu committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    5eb1771 View commit details
    Browse the repository at this point in the history
  4. setup gdp tty

    eddyxu committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    2416983 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2e95685 View commit details
    Browse the repository at this point in the history
  6. expose tty

    eddyxu committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    718df33 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5df953b View commit details
    Browse the repository at this point in the history
  8. export

    eddyxu committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    41cda57 View commit details
    Browse the repository at this point in the history
  9. setup java env

    eddyxu committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    36ca1a3 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    41e07c3 View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2024

  1. dont run prepare

    eddyxu committed Jul 13, 2024
    Configuration menu
    Copy the full SHA
    8357129 View commit details
    Browse the repository at this point in the history