Frederic Branczyk
Frederic Branczyk
Agreed! A slight extension in the permissions part (could definitely be done as a follow up to this), I always imagined, that locutus would be able to generate the RBAC...
I think that makes sense! A use case we've also thought about is contiguous (and non-contiguous) subsets. For example in stacktraces where we have a stacktrace `[A, B, C]`, so...
I would say to replace our implementation entirely with the one from `objstore`. If you want to pick this up do chat with @asubiotto as he was thinking of tackling...
Nice! We should also be able to re-use writers and use a `sync.Pool` on a per schema basis for those as well. I think that will optimize away another fair...
Precompiling the filter sounds good to me. I don’t feel strongly about having an interface as at least so far it is only used internally in the table constructs, so...
For completeness sake (since the `main` link above is outdated), these are the lines that were originally linked to: https://github.com/polarsignals/frostdb/blob/bde4295ee60a6f3e1202c287716c752a5ba18295/table.go#L1267-L1271
We need to have them sorted so that when we merge two row groups with different dynamic columns we can perform a [k-way merge](https://en.m.wikipedia.org/wiki/K-way_merge_algorithm). We’ve been thinking about [improving the...
There are some query benchmarks in the parca project, those are what I’ve been using for query benchmarking.