Louis-Etienne

Results 11 comments of Louis-Etienne

You might be facing the `Maximum Size of HTTP Request Payloads` limit in AWS ESS ([documented here]( https://docs.aws.amazon.com/elasticsearch-service/latest/developerguide/aes-limits.html#network-limits)) As for why a container restart is needed, I would think it's...

I'm not entirely sure, but `ES_BULK_SIZE` which translate to `BulkSize` in the [elastic client](https://github.com/olivere/elastic/wiki/BulkProcessor#thresholds) used in Jaeger seems to control the **minimum** payload: >Now, when does bulk processor send these...

This issue is still valid and yes setting `opentracing.spring.cloud.async.enabled` to false keeps a non-Async application that way.

Another reason to provide this ability is that sometimes AWS returns this error: ``` error: Plan apply failed: error creating EKS Cluster (my-cluster-eksCluster-4e64260): UnsupportedAvailabilityZoneException: Cannot create cluster 'my-cluster-eksCluster-4e64260' because us-east-1e,...

The main difference from a user standpoint would be that a `values.yaml` is provided instead of a full helm chart. As for versioning, either we create a `draft.yaml` that tells...

Publishing draftd chart might not be ideal. What I meant is that we could publish the charts that are currently part of the packs: https://github.com/Azure/draft/tree/master/packs So instead of packaging them...

I was tempted to send a PR about that, but the thing that made me doubt was mainly the `@Target` on the class: ``` @Target({ ElementType.METHOD, ElementType.ANNOTATION_TYPE }) ``` Different...

So here's the context and from where that idea came: When I was looking at instrumenting code via an agent I found this: https://github.com/DataDog/dd-trace-java/blob/master/dd-trace-api/src/main/java/datadog/trace/api/Trace.java DD provides a small (no dependency)...

👍 on **not** using the C wrapper. We used it in a project internally and had a hard time making it work on older kernel (especially having a statically-linked binary)

We are not using Cassandra for Jaeger anymore, it's hard for me to provide any additional context.