-
Notifications
You must be signed in to change notification settings - Fork 75
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: timeplus-io/proton
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.5.4
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: timeplus-io/proton
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.5.5
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 15 commits
- 176 files changed
- 6 contributors
Commits on Mar 25, 2024
-
porting more fixes and improvement for aggregation (#615)
* Merge pull request #37093 from Clickhouse Fix GROUP BY AggregateFunction * Merge pull request #34305 from amosbird/projection-fix27 Fix various issues when projection is enabled by default * Merge pull request #37469 from azat/projections-optimize_aggregation_in_order Implement in order aggregation (optimize_aggregation_in_order) for projections for tables with fully materialized projections * Merge pull request #37163 from ClickHouse/grouping-function Add GROUPING function * Merge pull request #39429 from Clickhouse Improve memory usage during memory efficient merging of aggregation results Merge pull request #39908 from Clickhouse Improve 02354_distributed_with_external_aggregation_memory_usage * Merge pull request #38295 from Clickhouse Quick fix for aggregation pipeline * Merge pull request #39138 from nickitat/control_block_size_in_aggregator Control block size in aggregator * Merge pull request #39304 from Clickhouse Prefetching in aggregation * Merge pull request #40762 from ClickHouse/grouping-comp Fix GROUPING function SQL compatibility * Merge pull request #45375 from ClibMouse/window_view_fix Window view functional test failed on platform s390x * Merge pull request #45772 from Clickhouse Optimize one nullable key aggregate performance * Merge pull request #49282 from loneylee/49280 Fix all key value is null and group use rollup return wrong answer * Merge pull request #50291 from kitaisreal/jit-aggregation-nullable-key-fix JIT aggregation nullable key fix * Merge pull request #52439 from Clickhouse Fix possible double-free in Aggregator * Merge pull request #50748 from Clickhouse Convert hashSets in parallel before merge * Merge pull request #51566 from Clickhouse Fix memory consumption when `max_block_size` is huge in Aggregator + more memory checks * Merge pull request #53589 from kitaisreal/aggregator-merge-states-in-batch Experiment Aggregator merge and destroy states in batch * Merge pull request #56120 from kitaisreal/window-functions-decrease-amount-of-virtual-function-calls WindowTransform decrease amount of virtual function calls * Merge pull request #57258 from Algunenano/cleanup_interval Remove addBatchSinglePlaceFromInterval * Merge pull request #58440 from ClickHouse/kitaisreal-enable-jit-for-aggregation-without-key Enable JIT compilation for aggregation without key * Merge pull request #43945 from Clickhouse Improve hash table preallocation optimisation * do not preallocate if max_size_to_preallocate_for_aggregation is too small * skip optimisation for aggr without key * increase default for max_size_to_preallocate_for_aggregation * Merge pull request #58745 from Algunenano/i58727 Fix double destroy call on exception throw in addBatchLookupTable8 * Merge pull request #59009 from nickitat/uniq_optimisation_for_distributed `uniqExact` state parallel merging for distributed queries * Merge pull request #58542 from ClickHouse/revert-58440-kitaisreal-enable-jit-for-aggregation-without-key Revert "Merging #53757" * fix build after merge * porting functional test and fix more
Configuration menu - View commit details
-
Copy full SHA for 4b004ac - Browse repository at this point
Copy the full SHA 4b004acView commit details
Commits on Mar 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e87fc44 - Browse repository at this point
Copy the full SHA e87fc44View commit details
Commits on Mar 27, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d559d28 - Browse repository at this point
Copy the full SHA d559d28View commit details -
Configuration menu - View commit details
-
Copy full SHA for e2d9f19 - Browse repository at this point
Copy the full SHA e2d9f19View commit details
Commits on Mar 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4c07a12 - Browse repository at this point
Copy the full SHA 4c07a12View commit details
Commits on Mar 31, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c19b770 - Browse repository at this point
Copy the full SHA c19b770View commit details
Commits on Apr 1, 2024
-
Use wait instead of sleep for materialized view recovery (#638)
* Use wait instead of sleep for materialized view recovery * fix flaky smoke test
Configuration menu - View commit details
-
Copy full SHA for aa9d940 - Browse repository at this point
Copy the full SHA aa9d940View commit details
Commits on Apr 5, 2024
-
feat: new SSL related kafka external stream settings (#635)
* feat: support top-level setting for skipping cert check for external stream * added setting ssl_ca_pem
Configuration menu - View commit details
-
Copy full SHA for b38f2ce - Browse repository at this point
Copy the full SHA b38f2ceView commit details
Commits on Apr 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3f14c1d - Browse repository at this point
Copy the full SHA 3f14c1dView commit details
Commits on Apr 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for fe2c55f - Browse repository at this point
Copy the full SHA fe2c55fView commit details
Commits on Apr 9, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 82ada8f - Browse repository at this point
Copy the full SHA 82ada8fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 996c5f3 - Browse repository at this point
Copy the full SHA 996c5f3View commit details
Commits on Apr 10, 2024
-
skip checkpointing if there is no new data processed (#649)
Co-authored-by: Ken Chen <zlchen.ken@gmail.com> Co-authored-by: yoko <haohang.shi@timeplus.io>
Configuration menu - View commit details
-
Copy full SHA for a5e87b4 - Browse repository at this point
Copy the full SHA a5e87b4View commit details -
sudo proton install
to install to /usr/local/bin on Mac instead of ……the locked /usr/bin (#651) * Update Install.cpp /usr/bin is locked on Mac. Change it to /usr/local/bin. This should also work on Linux * 2 more usr/bin to usr/local/bin * minor clean: 1. increase open files limit. ClickHouse/ClickHouse#41345 2. use stringview instead char* 3. maybe better for throw exception 4. try take a hardlink first before copy. ClickHouse/ClickHouse#48578 * conditional compile * fix the incorrect usage, the default is usr/bin otherwise only tag for macOS --------- Co-authored-by: yoko <haohang.shi@timeplus.io>
Configuration menu - View commit details
-
Copy full SHA for 9ef372c - Browse repository at this point
Copy the full SHA 9ef372cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 412bf88 - Browse repository at this point
Copy the full SHA 412bf88View commit details
There are no files selected for viewing