If a JSON document contains strings that can't fit in a single chunk, use the naive Blob chunker instead of the smart JSON chunker. #2498
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Benchmark Runner Utility Works | |
on: | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'go/**' | |
- 'integration-tests/**' | |
concurrency: | |
group: ci-benchmark-runner-tests-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
benchmark_runner: | |
runs-on: ubuntu-22.04 | |
name: Test Benchmark Runner | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Copy Dockerfile | |
run: cp -r ./go/performance/continuous_integration/. . | |
- name: Test runner | |
uses: ./.github/actions/benchmark-runner-tests |