Alexander Shorin
Alexander Shorin
It would be nice to have [support rivers](http://www.elasticsearch.org/guide/en/elasticsearch/rivers/current/index.html) feature. As far as I see it currently missed.
We need document what we have here. Currently all we have is reference to source code. That's geeky, but not user friendly. Documentation should cover at least the following topics:...
Since we operate with plain data, we can easily detect duplicate tasks across multiple DAGs. For instance, several of our DAGs may have the same sensor which awaits the same...
Case: we have a scheduler service which runs under some specific Python version. Say 2.7. Now we need to run DAGs for Python 3.x projects. Since scheduler does class/callback import...
For now it's possible to specify function or callable-class as a callback. For some cases it's handly to set classmethod or staticmethod as a operator callback. It's actually more important...
Using web interface button "Add view" creates javascript map/reduce function even if couchapp was initialized for another language. I suppose that better to use same trick as Futon does (it...
This is meta issue to track the [PPSPP specification](http://tools.ietf.org/html/rfc7574) implementation. - [ ] [2. Overall Operation](http://tools.ietf.org/html/rfc7574#section-2) - [ ] [2.1. Example: Joining a Swarm](http://tools.ietf.org/html/rfc7574#section-2.1) - [ ] [2.2. Example: Exchanging...
COUCHDB-2961
COUCHDB-2353
There is an example at https://www.structlog.org/en/25.4.0/performance.html about how to use structlog with orjson: ``` import logging import orjson import structlog structlog.configure( cache_logger_on_first_use=True, wrapper_class=structlog.make_filtering_bound_logger(logging.INFO), processors=[ structlog.contextvars.merge_contextvars, structlog.processors.add_log_level, structlog.processors.format_exc_info, structlog.processors.TimeStamper(fmt="iso", utc=True), structlog.processors.JSONRenderer(serializer=orjson.dumps),...