korlov42 commented on code in PR #5256:
URL: https://github.com/apache/ignite-3/pull/5256#discussion_r1969896741


##########
modules/runner/src/integrationTest/java/org/apache/ignite/internal/benchmark/LargeBinaryBenchmark.java:
##########
@@ -0,0 +1,208 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.ignite.internal.benchmark;
+
+import static org.apache.ignite.internal.lang.IgniteStringFormatter.format;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+import java.util.concurrent.ThreadLocalRandom;
+import java.util.concurrent.TimeUnit;
+import java.util.concurrent.atomic.AtomicInteger;
+import org.apache.ignite.internal.util.Constants;
+import org.apache.ignite.sql.IgniteSql;
+import org.apache.ignite.sql.ResultSet;
+import org.apache.ignite.sql.SqlRow;
+import org.apache.ignite.table.IgniteTables;
+import org.apache.ignite.table.KeyValueView;
+import org.openjdk.jmh.annotations.Benchmark;
+import org.openjdk.jmh.annotations.BenchmarkMode;
+import org.openjdk.jmh.annotations.Fork;
+import org.openjdk.jmh.annotations.Group;
+import org.openjdk.jmh.annotations.Measurement;
+import org.openjdk.jmh.annotations.Mode;
+import org.openjdk.jmh.annotations.OutputTimeUnit;
+import org.openjdk.jmh.annotations.Param;
+import org.openjdk.jmh.annotations.Scope;
+import org.openjdk.jmh.annotations.Setup;
+import org.openjdk.jmh.annotations.State;
+import org.openjdk.jmh.annotations.Threads;
+import org.openjdk.jmh.annotations.Warmup;
+import org.openjdk.jmh.infra.Blackhole;
+import org.openjdk.jmh.runner.Runner;
+import org.openjdk.jmh.runner.RunnerException;
+import org.openjdk.jmh.runner.options.Options;
+import org.openjdk.jmh.runner.options.OptionsBuilder;
+
+/**
+ * Benchmarks for operations with large binary fields.
+ */
+@State(Scope.Benchmark)
+@Fork(1)
+@Threads(1)
+@Warmup(iterations = 5, time = 2)
+@Measurement(iterations = 20, time = 2)
+@BenchmarkMode(Mode.AverageTime)
+@OutputTimeUnit(TimeUnit.MILLISECONDS)
+public class LargeBinaryBenchmark extends AbstractMultiNodeBenchmark {
+
+    private KeyValueView<Integer, byte[]> keyValueView;
+
+    private IgniteSql sql;
+
+    private byte[] localBytes;
+
+    @Param({"1", "2", "4", "5", "10", "15"})
+    private int valueSizeMb;
+
+    @Param({"1", "3"})
+    private int clusterSize;
+
+    /**
+     * Setup.
+     */
+    @Setup
+    public void setUp() {
+        sql = publicIgnite.sql();
+
+        String stmt = format("CREATE TABLE t (id INT PRIMARY KEY, val 
VARBINARY({}))", Integer.MAX_VALUE);
+        try (ResultSet<SqlRow> rs = sql.execute(null, stmt)) {
+            assertTrue(rs.wasApplied());
+        }
+
+        int sizeInBytes = Constants.MiB * valueSizeMb;
+        localBytes = new byte[sizeInBytes];
+        ThreadLocalRandom.current().nextBytes(localBytes);
+
+        IgniteTables tables = publicIgnite.tables();
+        keyValueView = tables.table("public.t").keyValueView(Integer.class, 
byte[].class);
+    }
+
+    // KV
+
+    /**
+     * Benchmark for read/writer KV workload. Writer threads.
+     */
+    @Group("kv_rw_ro")
+    @Benchmark
+    public void kvRwRoWriter(SharedState sharedState) throws 
InterruptedException {
+        int id = sharedState.id.incrementAndGet();
+
+        keyValueView.put(null, id, localBytes);
+
+        randomDelay();

Review Comment:
   is this some sort of debugging thing?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to