Skip to content
#

grpc

Here are 270 public repositories matching this topic...

thingsboard
armeria
ikhoon
ikhoon commented Mar 19, 2020

In our codebase, we push RequestContext and immediately run some code with try-with-resources.
For example:

try (SafeCloseable ignored = ctx.push()) {
    logger.trace(decorate(msg));
}

If RequestContext provides run(Runnable) or call(Callable) we can reduce boilerplate code and simplify it.

ctx.run(() -> logger.trace(decorate(msg));

This is inspired by g

evk1986
evk1986 commented Feb 5, 2020

When trying to register grpc server in consul recently was found that LogNet had not properly configured healthcheck. As a result we have service in consul, which doesn't have proper metadata and tags, health check route and so on. We use LogNet in prod, and we strongly need this functionality.
From my point of view, the right way is to use https://www.consul.io/docs/agent/checks.html gr

npepinpe
npepinpe commented Mar 25, 2020

Description

We currently perform no checks when asked to commit a pending snapshot. It's then possible to commit snapshots older than the current one. While relatively safe right now (as we simply don't use them, and they eventually get removed on the next newer snapshot), it could eventually lead to issues as this is unexpected (and may lead to developers wasting time as they wouldn't expe

TarekMSayed
TarekMSayed commented Dec 1, 2019

I followed the steps:
$ kubectl apply -f kubernetes/client-side-lb-api/echo-server.yaml
$ kubectl apply -f kubernetes/client-side-lb-api/echo-client.yaml
$ kubectl get pods -l run=echo-client
with this step:
$ kubectl logs -f echo-client...
I found java error

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SL

Improve this page

Add a description, image, and links to the grpc topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the grpc topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.