commons
commons copied to clipboard
Twitter common libraries for python and the JVM (deprecated)
**Use case:** If all backends marked as dead throw `TResourceExhaustedException`, handle it in client code and use failover transport (JMS for example). **Possible solution:** Configure `MarkDeadStrategy` during instantiation with flag`reviveDeadBackend`s....
This link: http://twitter.github.io/commons/apidocs/index.html in http://twitter.github.io/commons is for the java API only. If there is documentation for the python APIs, it's not reachable from that page.
for example, in a BUILD file: ``` python python_library( name = 'foo', sources = ['foo.py'], dependencies = [ pants('i forgot to put a comma at the end, here ->') pants('i...
It'd be useful if PEX environments without a defined entry point supported -m (in the sense of PEP 338). I realize this can already be achieved with PEX_MODULE so it's...
My system has both /usr/bin/python2.6 and /usr/bin/python2.7. When there are two python versions in a system, pants seems to choose 2.6. Perhaps it should choose the highest supported version to...
I moved my monorepo to other directory e.g. ``` $ cd mycompany/repos $ mv monorepo1 .. $ rmdir repos ``` Then I started to see the nailgun error described here:...
When I build a repository recursively, it would be very useful if Pants prints when it visits a project. For example: ``` Building: finagle/finagle-thrift/BUILD:finagle-thrift (goal compile) ... Finished building: finagle/finagle-thrift/BUILD:finagle-thrift...
Sometimes, an artifact downloaded by Pants (via Ivy) is larger than 90 megabytes. On a fast quality network, it's not a problem. However, when I'm on VPN or 3G/4G network,...
Pants downloads Maven poms and artifacts sequentially. It is not a problem when my connection is fast, but it is otherwise. Especially, the amount of round-trips that takes while resolving...
It would be great if it is possible to override ivysettings.xml or prepend another repository to the chain. The reason I need it is because I run a Sonatype Nexus...