Wilson Júnior

Results 27 comments of Wilson Júnior

@freeseacher, I was thinking for support saturation SLOs, it means that we can define SLO for % of usage of storage, % of usage of memory, etc. For batch SLO,...

The related issue was closed, could you close this issue?

I liked a lot this PR +1 =)

@bdarnell Hi, I achieved use of httpclient using http2 with curl, libcurl >= 7.43.0 supports multiplexed requests well, just setting up the number of max_clients =)

Hi @cezarsa, I was reading a little bit about Network Policies (https://kubernetes.io/docs/concepts/services-networking/network-policies/), what do you think about implementing it using this concept?

Recently we added support to dedicated registry per tsuru cluster, I believe that it is interesting to be well documented. Adding `hacktobeerfest` label to encourage people to contribute with that.

This could be a flag of RunArgs: https://github.com/tsuru/tsuru/blob/main/provision/provision.go#L217, after that kubernetes provisioner takes care of change the stream of this command.

@rozza. I shall work on that feature in the next days. is a very important feature for various projects.

I am starting work in this branch: https://github.com/wpjunior/mongoengine/tree/serializers

a prototype: ``` python from mongoengine import * set_backend('async') class Animal(Document): nome = StringField() def query_animals(animals, err): print animals Animal.objects(nome__startswith="M", callback=query_animals, timeout=30) def new_macaco(macaco, err): print macaco Animal(nome="macaco").save(callback=new_macaco) def distincts(nomes,...