Skip to main content

All Questions

Tagged with
0 votes
0 answers
38 views

Scala project: sbt compile generates empty fs2-grpcs folder, missing proto-generated classes

I'm working on a Scala project that currently implements a simple REST API. I'm trying to add a new gRPC service to this project. However, I'm encountering an issue during compilation. Issue: When I ...
Ayadi Tahar's user avatar
1 vote
0 answers
48 views

Akka to Pekko Migration and Grpc

Heeey all, I'm doing a Akka to Pekko migration of a pet project (I'm learning scala atm). So far everything went smooth but there is one thing that I can't get fixed and the grpc plugin. In my build....
Leon Weemen's user avatar
0 votes
0 answers
37 views

Issue with proto object defining isEmpty

we've got this protobuffer object definition (and we cannot modify it) ... message Condition { oneof condition_one_of { FieldCondition field = 1; IsEmptyCondition is_empty = 2; ...
mfirry's user avatar
  • 3,664
0 votes
0 answers
72 views

RST_STREAM closed stream unexpectedly in Gatling-grpc

Note: using this Gatling community plugin for gRPC, not the official one. I have a sample code to setup a single UNARY grpc call in Gatling as below: class grpcDemo extends Simulation { val ...
tester11203's user avatar
0 votes
1 answer
92 views

Health Check gRPC failed to implement

i'm looking at gatling-grpc, running phiSgr's example on my local machine will be fine without any issue, but when i run GrpcExample on GitLab, with local server provided in the example, i encounter ...
tester11203's user avatar
1 vote
2 answers
157 views

Invalid package name error when compiling generated zio-grpc classes on Scala 2.13.12

I'm creating ZIO gRPC client service on scala 2.13.12. I generated classes from .proto's and trying to compile my project and getting this error: [error] C:\Users\arsen\IdeaProjects\voicekit-grpc\...
senyanyash's user avatar
0 votes
1 answer
105 views

shareChannel effect on Gatling gRPC

I have a scenario to run 5000 bidiStream gRPC Users ramping up 2 Users / sec, this is my current settings val grpcConf = grpc(managedChannelBuilder(s"${url}").usePlaintext()) ...
TriNguyen's user avatar
0 votes
1 answer
87 views

Adding an exit on gRPC request in Gatling

I have a bidiStream configured as below .exec( bidiStream_conf .start("#{payload}") .header(metadataObject.Authorization)(s"Bearer ${Key}") .extract(_.pk.some)...
TriNguyen's user avatar
0 votes
0 answers
51 views

How to properly close a gRPC stream in a loop for Gatling

I am handling a throttle with 1 QPS in Gatling for 1 minute run set up as this pseudo code: Scenario_set_up inject (1 user) for (1 minute) throttle (reach 1 rps in 1 second) holdFor (1 minutes) ...
TriNguyen's user avatar
0 votes
1 answer
84 views

How to trigger bidiStream gRPC API to send Message again during a REST API running

hope you are doing well, I have a little question that is hanging me here. I have an interaction between a REST and a gRPC (bidiStream type) as this: gRPC will call up to initiate a session, then I ...
TriNguyen's user avatar
0 votes
1 answer
136 views

See the full body response from BidiStream Gatling

Hope you are doing well, For now I'm looking at bidiStream, now that I want to see response of the bidiStream, but it doesn't return me anything which I am not sure if the stream is running or not, as ...
TriNguyen's user avatar
0 votes
1 answer
195 views

Passing a response value from GRPC response to a REST API in Scala Gatling

hope you are doing good today Cut to the chase that I keep on asking fun-to-dumb questions, this time before I raise something, I look into it very closely before ask to avoid tiredness. Ngl this is a ...
TriNguyen's user avatar
0 votes
1 answer
117 views

Gatling reports cannot be generated with GRPC plugin

Hope you doing good today, I have completed to define a stream for Gatling, which is as below: val grpcConf = grpc(managedChannelBuilder("url:80").usePlaintext()) val Authorization: ...
TriNguyen's user avatar
-1 votes
1 answer
118 views

Type "clientStream" not found in gatling grpc

I have continued to investigate on this gatling/grpc, I have put my code together as the below, code definition is from here class BasicSimu extends Simulation { val TokenKey : String = "token-...
TriNguyen's user avatar
1 vote
1 answer
94 views

Translating a message to a payload in Scala / Grpc

After days of trying and failed, finally I have succeed in implementing both Grpc and Gatling plugins into one project (embarrassingly long time), now I am looking into phiSgr example (again, sorry ...
TriNguyen's user avatar

15 30 50 per page