422 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
43
views
SpringBoot rest service not accepting desired load
My spring boot application is not accepting desired load. In order to isolate problem I created a very simple service that just sleeps for 500ms and returns success response back.
Following is my ...
1
vote
0
answers
156
views
How to increase the generation throughput of Qwen-0.5B of vllm
I am currently utilizing vLLM serve to deploy the Qwen-0.5B model on an Nvidia H20 GPU. During this process, I've observed that the GPU utilization as reported by nvidia-smi remains at approximately ...
0
votes
1
answer
63
views
Load Test Scenario Design for JMeter
I have a test plan created which contains a Single Thread Group, Approx 10 Transactions. Each transaction has a varying number of samplers. Example
TXN1: 2
TXN2: 7
TXN3: 17
Etc
Expected Application ...
1
vote
0
answers
85
views
Problem with using speedtest-go using adb
I'm working on a project (I'm begginer) where I need to run the speedtest-go command on my Android device via Termux and then download the result to my PC using PowerShell and ADB. Here’s what I’m ...
0
votes
1
answer
353
views
Why is my performance so low with Aeron, 90th percentile less than 5ms throughput is only 2k
I wrote a simple test for Aeron
one client, one server, the client sends data to the server, then the server sends it back and counts the elapsed time.
The final result is much lower than I expected, ...
0
votes
0
answers
76
views
Questions about ParallelGC and Full GC behavior in long-running systems
I have a few concerns about ParallelGC and its behavior in long-running systems:
It seems that only Full GC can reclaim the old generation, implying that the old generation can only grow until a Full ...
0
votes
1
answer
35
views
Low throughput received when i run my test via jenkins
There is a jenkins job that runs my jmeter script on a machine to fetch the throughput. When i run the test via jenkins pipeline, i see that the test outputs very less throughput.Whereas if i run ...
0
votes
2
answers
190
views
GridGain Throughput bottleneck using key value API
I am using GridGain Ignite as an in-memory database to serve data, data is stored as <Integer, String> key-value format, and each request contains a list of keys, I use
cache.getAll(keys).values(...
0
votes
1
answer
56
views
Difference between Summary Report Bytes/sec and Bytes Throughput Over Time plugin JMeter
I was trying to analyze the throughput - basically the amount of bytes sent and received by JMeter during the load test but i notice the summary report and the plugin give two different values and i ...
1
vote
0
answers
70
views
Influential linux settings on socket behaviour and performance
I'am looking forward to improve my application speed/throughput, sending packets from a UDP socket in C.
I want to tune the performance of my system in order get some extra Mb/s.
I have already looked ...
-2
votes
2
answers
530
views
How to calculate the throughput of an endpoint in Spring Boot?
I'm trying to calculate throughput of http endpoint. Firstly, we need the number of http requests count for an endpoint. Do I need to store the calculated count when the server gets restarted as well?
...
0
votes
0
answers
382
views
Throughput for GATT read, write, and notify
All BLE devices use GATT
in which device #1 basically reads and writes device #2's "characteristics".
Additionally, #2 can notify #1 regarding a characteristic change.
On this GATT stack, I ...
1
vote
0
answers
110
views
Improving throughput of Kafka consumer pull when using multiple consumers
I am running 3 red panda's brokers with replication on 3 k8s nodes, this works perfectly fine. now I am connecting with java client and try to compare performance to learn more about configuration. ...
1
vote
1
answer
51
views
Does the cost of writing N records into a DynamoDB table is the same, irrespective of the write duration?
This question considers a provisioned capacity with autoscaling. This is a very basic question to better understand WCU/RCU pricing.
I'm not quite sure of the answer because it appears that ...
2
votes
2
answers
1k
views
Can I calculate throughput via google benchmark library in C++
I want to measure how many times C++ function will be executed per N seconds, is there a way to do that via google benchmark? Maybe using some lambda for ComputeStatistics function?
If there is no way ...