Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for multiBucket (0.16 seconds)

  1. benchmarks/src/main/java/org/elasticsearch/benchmark/search/aggregations/bucket/terms/LongKeyedBucketOrdsBenchmark.java

                multiBucket(bh, ords);
            }
        }
    
        /**
         * Emulates an aggregation that collects from many buckets.
         */
        @Benchmark
        public void multiBucketMany(Blackhole bh) {
            try (LongKeyedBucketOrds ords = LongKeyedBucketOrds.build(bigArrays, CardinalityUpperBound.MANY)) {
                multiBucket(bh, ords);
            }
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Feb 19 20:59:23 GMT 2021
    - 8.4K bytes
    - Click Count (0)
  2. benchmarks/README.md

    exit
    ```
    
    Grab the async profiler from https://github.com/jvm-profiling-tools/async-profiler
    and run `prof async` like so:
    ```
    gradlew -p benchmarks/ run --args 'LongKeyedBucketOrdsBenchmark.multiBucket -prof "async:libPath=/home/nik9000/Downloads/tmp/async-profiler-1.8.3-linux-x64/build/libasyncProfiler.so;dir=/tmp/prof;output=flamegraph"'
    ```
    
    If you are on mac this'll warn you that you downloaded the shared library from
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon May 03 15:30:50 GMT 2021
    - 5.9K bytes
    - Click Count (0)
Back to Top