Skip to content

Commit

Permalink
feat: sort record batch of write request (apache#1585)
Browse files Browse the repository at this point in the history
## Rationale
Support sorted record batch of write request by primary key.

## Detailed Changes
- use datafusion to sort record batch

## Test Plan
- CI
- Unit tests
  • Loading branch information
baojinri authored Nov 4, 2024
1 parent 4cbe82c commit 115b002
Show file tree
Hide file tree
Showing 5 changed files with 408 additions and 617 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/metric-engine-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,30 @@ jobs:
working-directory: horaedb
run: |
git diff --exit-code
unit-test:
name: unit-test
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
with:
submodules: true
- run: |
rustup set auto-self-update disable
rustup toolchain install ${RUST_VERSION} --profile minimal
- name: Release Disk Quota
run: |
sudo make ensure-disk-quota
- name: Setup Build Environment
run: |
sudo apt update
sudo apt install --yes protobuf-compiler
- name: Run Unit Tests
working-directory: horaedb
run: |
make test
- name: Check lock
working-directory: horaedb
run: |
git diff --exit-code
Loading

0 comments on commit 115b002

Please sign in to comment.