# SPDX-License-Identifier: Apache-2.0 # # The OpenSearch Contributors require contributions made to # this file be licensed under the Apache-2.0 license or a # compatible open source license. # # Modifications Copyright OpenSearch Contributors. See # GitHub history for details. # # Licensed to Elasticsearch B.V. under one or more contributor # license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright # ownership. Elasticsearch B.V. 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. require_relative '../test_helper' class OpenSearch::Transport::ClientProfilingTest < OpenSearch::Test::ProfilingTest context "OpenSearch client benchmark" do setup do @port = (ENV['TEST_CLUSTER_PORT'] || 9250).to_i client = OpenSearch::Client.new host: "localhost:#{@port}", adapter: ::Faraday.default_adapter client.perform_request 'DELETE', 'ruby_test_benchmark' rescue nil client.perform_request 'PUT', 'ruby_test_benchmark', {}, {settings: {index: {number_of_shards: 1, number_of_replicas: 0}}} 100.times do client.perform_request 'POST', 'ruby_test_benchmark_search/test', {}, {foo: 'bar'}; end client.perform_request 'POST', 'ruby_test_benchmark_search/_refresh' end teardown do client = OpenSearch::Client.new host: "localhost:#{@port}" client.perform_request 'DELETE', 'ruby_test_benchmark' rescue nil client.perform_request 'DELETE', 'ruby_test_benchmark_search' rescue nil end context "with a single-node cluster and the default adapter" do setup do @client = OpenSearch::Client.new hosts: "localhost:#{@port}", adapter: ::Faraday.default_adapter end measure "get the cluster info", count: 1_000 do @client.perform_request 'GET', '' end measure "index a document" do @client.perform_request 'POST', 'ruby_test_benchmark/test', {}, {foo: 'bar'} end measure "search" do @client.perform_request 'GET', 'ruby_test_benchmark_search/test/_search', {}, {query: {match: {foo: 'bar'}}} end end context "with a two-node cluster and the default adapter" do setup do @client = OpenSearch::Client.new hosts: ["localhost:#{@port}", "localhost:#{@port+1}"], adapter: ::Faraday.default_adapter end measure "get the cluster info", count: 1_000 do @client.perform_request 'GET', '' end measure "index a document"do @client.perform_request 'POST', 'ruby_test_benchmark/test', {}, {foo: 'bar'} end measure "search" do @client.perform_request 'GET', 'ruby_test_benchmark_search/test/_search', {}, {query: {match: {foo: 'bar'}}} end end context "with a single-node cluster and the Curb client" do setup do require 'curb' require 'opensearch/transport/transport/http/curb' @client = OpenSearch::Client.new host: "localhost:#{@port}", transport_class: OpenSearch::Transport::Transport::HTTP::Curb end measure "get the cluster info", count: 1_000 do @client.perform_request 'GET', '' end measure "index a document" do @client.perform_request 'POST', 'ruby_test_benchmark/test', {}, {foo: 'bar'} end measure "search" do @client.perform_request 'GET', 'ruby_test_benchmark_search/test/_search', {}, {query: {match: {foo: 'bar'}}} end end context "with a single-node cluster and the Typhoeus client" do setup do require 'typhoeus' require 'typhoeus/adapters/faraday' @client = OpenSearch::Client.new host: "localhost:#{@port}", adapter: :typhoeus end measure "get the cluster info", count: 1_000 do @client.perform_request 'GET', '' end measure "index a document" do @client.perform_request 'POST', 'ruby_test_benchmark/test', {}, {foo: 'bar'} end measure "search" do @client.perform_request 'GET', 'ruby_test_benchmark_search/test/_search', {}, {query: {match: {foo: 'bar'}}} end end context "with a single-node cluster and the Patron adapter" do setup do require 'patron' @client = OpenSearch::Client.new host: "localhost:#{@port}", adapter: :patron end measure "get the cluster info", count: 1_000 do @client.perform_request 'GET', '' end measure "index a document" do @client.perform_request 'POST', 'ruby_test_benchmark/test', {}, {foo: 'bar'} end measure "search" do @client.perform_request 'GET', 'ruby_test_benchmark_search/test/_search', {}, {query: {match: {foo: 'bar'}}} end end end end