Georg Traar

Results 120 comments of Georg Traar

relates to https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-settings-limit.html

> How often does this pop up as a problem? Hard to enumerate, as it mostly appears when the number of shards for **all** partitions/tables isn't a perfect multiple of...

1. **User config overrides global config** – I think this is the preferred and least invasive solution. If a user has a custom JWT setup (e.g., `CREATE USER john WITH...

> Splitting on OR and pushing down one side won't work. The given example would exclude cases where c1 = 'Hello' is false but c1 LIKE 'Test%' is true. Makes...

What is interesting - at some point the insert pauses for a longer time - all of a sudden there is a spike in sequence numbers ``` Starting continuous updates......

```node async function insertRandomData(data) { try { const query = ` INSERT INTO random_data (id, value) VALUES (?, ?) ON CONFLICT (id) DO UPDATE SET value = EXCLUDED.value `; const...

> There's one more scenario where I think it can lead to a drift, but that wasn't re-producable with this script. If I recall correctly, we had cases where we...

> In terms of rollups here Timescale has the nicest implementation because it's a materialized view and it self-updates periodically with aggregates of the newer data, and also always factors...

> To follow up from my previous comment, it appears that docs on how to enable ECS output (aka layout) are here: https://www.elastic.co/guide/en/ecs-logging/java/current/setup.html Please reread the original issue. This cannot...

Both for **file**, as well as for **s3** we overwrite existing files. i.e. I would go with option **2**. If we want to add the option to change this behaviour...