can you make a video of that?
@Luiggi here's the video!
@daveseddon you don't seem to have sent the video on the instance where you have the issue, am I correct?
G'day,
The video is from the Metabase once we reverted the version, but shows the feature that does not work on the new version. e.g. Video shows the feature that works in the old version. You can't do what's shown in the video on the new version.
BTW - I opened another discussion about Metabase being very slow. I'll be interested in your feedback.
Thanks,
Dave
there are several things I would never do here:
- gc logs make metabase to be EXTREMELY SLOW
- define a max of memory that is 80% the memory of the host, and a minimum that's 50% of the memory of the host
- leave the default garbage collector, parallelGC has more than 15 years and new GC's are way better
- compressedOOPs are on by default
- jdbc fetch size, maxidletime, jetty threads, thread pool size and app db conn pool size, leave all that by default. If you need more performance just scale horizontally
- use a reverse proxy and inject custom headers in the fonts, or make the proxy to cache them
I'll check the clickhouse issue
I hope you are doing well.
Did the video help identify the issue with filters and clickhouse in the new release please?
Can we provide any more details?
Thanks in advance
Dave
about the /properties endpoint, we're working to make it faster (it basically does 1 query for every property in a table). We identified that it can take 1 second on extreme scenarios
About clickhouse: the driver is not working well in the last few versions, so we're talking with their team to see what's going on and fix it ASAP (lots of our customers use clickhouse)
G'day @luiggi,
We are excited to report that v0.53.7 and 1.53.3 Clickhouse driver seems to have fixed the Clickhouse filter issue we encountered!
Woot woot! Thanks this is great!
We notice that you guys have been busy pushing out a lot of changes, which is awesome.
ARG METABASE_VERSION=v0.53.7
FROM metabase/metabase:${METABASE_VERSION}
ARG CLICKHOUSE_DRIVER_VERSION=1.53.3
ADD --chmod=744 https://github.com/ClickHouse/metabase-clickhouse-driver/releases/download/${CLICKHOUSE_DRIVER_VERSION}/clickhouse.metabase-driver.jar /plugins/clickhouse.metabase-driver.jar
This also means we're on the newer eclipse-temurin Java 21
https://hub.docker.com/_/eclipse-temurin/tags?name=21-jre-alpine
I'm not sure why not Java 23. It's been out since last year
https://hub.docker.com/_/eclipse-temurin/tags?name=23-jre-alpine
Thanks,
Dave
glad one of the problems are fixed. About Java version, it's simply because we will always use LTS versions of Java, we don't want to buy another problem
Cool! Thanks sense!!