Georg Traar
Georg Traar
> If the number of operations to replay is sufficiently large, then this 'always skip the file-based phase' logic may result in a worse performance; I think if the data...
> Is this supposed to function in this way? No, this seems to be a bug.
@MilosPaunovic I agree that creating and managing flows is the primary action in Kestra. That’s exactly why the UX should be consistent across all core entities, such as Flows, Dashboards,...
I think this is overall a similar case to adding indexed columns after initial table creation. The user needs to take care about implications on older data. ```sql CREATE TABLE...
superseded by https://github.com/kestra-io/kestra/issues/9798
In the Elasticsearch Python client, HTTP compression is controlled by a simple on/off switch: [Configuration Reference](https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/config.html#:~:text=HTTP%20compression&text=Compression%20of%20HTTP%20request%20and,By%20default%20compression%20is%20disabled.) [Implementation Details](https://github.com/elastic/elasticsearch-py/pull/704/files) However, it’s important to distinguish between the two aspects of compression support...
> With the PostgreSQL wire protocol, compression can be enabled, if your OpenSSL library supports zlib, by toggling the connection parameter sslcompression=1, which has been enabled by default starting with...
## OpenSearch Python Client The [OpenSearch Python Low-Level Client](https://opensearch.org/docs/latest/clients/python-low-level/#connecting-to-opensearch) supports HTTP compression for request bodies: ```python http_compress = True # Enables gzip compression for request bodies ``` Contrary to ES,...
Since these settings primarily deal with [content encoding](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Encoding), we might consider naming them accordingly and aligning with HTTP conventions, such as: - `encoding_request='gzip' | 'none' | ` - `encoding_response='none' |...
Then maybe: - `compress = 'request' | 'response' | 'both' / 'all' | 'none'` - or `compress = 'client' | 'server' | 'both' / 'all' | 'none'` which in the...