Vanja Radovanović
Vanja Radovanović
Hi @stephaneerard! I haven't been into this plugin for quite some time now. The best I can tell is that the project is recognized to match the commit/payload (it shows...
Unfortunately it is not possible to move to `http_protobuf` at this time. What I did find out in the mean time is that another project had similar leak issue but...
Will do, stay tuned for results. The process will take at least a few days to determine if this helps.
Update: app version with grpcbox 0.16.0 and chatterbox 0.13.0 was in production for 5 days now, and I am still seeing the same pattern of binaries being held. I upgraded...
We are actually sending to Honeycomb, via Refinery as proxy. Related links: https://github.com/honeycombio/refinery/tree/v1.17.0 and https://docs.honeycomb.io/manage-data-volume/refinery/. And, I have started the switch to protobuf, but again it will take a bit...
Update: so changing the protocols solved the problem. Apologies for a bit late reply, but it took a bit of time to make sure we are in the clear. Not...
Yep, already done that. See https://github.com/open-telemetry/opentelemetry-erlang/issues/459. Likely it is entirely at telemetry side of things. Apologies for not adding a note sooner 😄
Update: this seems to be resolved by switching protocol to `:http_protobuf`. The `:grpc` flow still has issues, but at least there is a workaround. And, it definitely is related to...
Looking around the code, found that `type` is indeed something that can be defined on [HasOne relation definition](https://github.com/vt-elixir/ja_serializer/blob/master/lib/ja_serializer/relationship.ex#L82-L132). But, [find_type in ResourceIdentifier](https://github.com/vt-elixir/ja_serializer/blob/master/lib/ja_serializer/builder/resource_identifier.ex#L48-L69) ignores it. Thought of maybe changing the resource...
I have a couple solution that work: **Duplicate logic in another view** ```elixir defmodule AuthorView do has_many :articles, serializer: ArticleView, link: :articles_url has_one :pinned_article, serializer: PinnedArticleView, link: :pinned_article_url end defmodule...