Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/Main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,12 @@ jobs:
run: |
./build/release/test/unittest --test-config test/configs/block_size_16kB.json

- name: test/configs/adaptive_segment_allocation.json
if: success() || failure()
shell: bash
run: |
python3 scripts/ci/run_tests.py --test-config=test/configs/adaptive_segment_allocation.json ./build/release/test/unittest

- name: test/configs/latest_storage_block_size_16kB.json
if: (success() || failure()) && steps.build.conclusion == 'success'
shell: bash
Expand Down
14 changes: 14 additions & 0 deletions src/common/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
"set"
]
},
{
"name": "adaptive_segment_allocation",
"description": "When enabled, transient column segments start small and double in size with each overflow, up to the block size",
"type": "BOOLEAN",
"default_scope": "global",
"default_value": "false"
},
{
"name": "allocator_background_threads",
"description": "Whether to enable the allocator background thread.",
Expand Down Expand Up @@ -735,6 +742,13 @@
"set"
]
},
{
"name": "initial_segment_rows",
"description": "Number of rows allocated for the first transient column segment when adaptive_segment_allocation is enabled. Subsequent segments double this until reaching the block size.",
"type": "UBIGINT",
"default_scope": "global",
"default_value": "2048"
},
{
"name": "integer_division",
"description": "Whether or not the / operator defaults to integer division, or to floating point division",
Expand Down
Loading
Loading