Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content

Metabase

14 Topics 176 Posts
  • Metabase - Package Updates

    Pinned
    116
    1 Votes
    116 Posts
    5k Views
    nebulonN

    [1.21.6]

    Update Metabase to 0.49.6 Full changelog CSV upload support for Redshift (#36166) Add INFO log for each table being fingerprinted (#41365) Tab query param not applied in embed (#41440) Borders not respecting bordered=false parameter for static embedding (#41393) Progress visualizations don't show, except on dashboards (#41243) Wrong suggested join condition when joining 2 models (#41202) Advanced option to turn off syncing field values doesn't work (#40715) Progress visualisation not working, gives an error (#40658) Text filters shown as input box in embed instead as dropdown (#37914) SIGTERM during migration does not cleanly abort migration (#37866)
  • Metabase CORS and CSP headers

    Solved
    20
    1 Votes
    20 Posts
    177 Views
    S

    @girish Just closing out this discussion. For reference, here is when the change was introduced to Retool that caused the issue with loading the iframe:

    https://docs.retool.com/releases/legacy/3.22#:~:text=Disabled Storage and cookies

    Thanks again.

  • 1 Votes
    3 Posts
    58 Views
    J

    Thanks for looking into this. I've also logged in a bug with Metabase GitHub. I think the Metabase team is actively working on a resolution. Something did change after the upgrade from v0.48.3 that caused this issue with multiple customers using MySQL 8. Here is the link to the issue: https://github.com/metabase/metabase/issues/38499

  • How to connect to Google Sheets

    3
    0 Votes
    3 Posts
    45 Views
    O

    OK, thanks. That's a bit overkill for this project. I was hoping MetaBase would connect directly to Google Sheets, kind of like how n8n does.
    https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets/

  • No admin settings in MetaBase

    Moved Solved
    5
    1 Votes
    5 Posts
    66 Views
    nebulonN

    Solved by user. Answer forked into https://forum.cloudron.io/topic/10842/how-to-connect-to-google-sheets

  • Metabase Enterprise Edition

    2
    0 Votes
    2 Posts
    45 Views
    S

    If this belongs in a different category, let me know and I can repost elsewhere...

  • 1 Votes
    4 Posts
    172 Views
    girishG

    @staypath We don't use H2 on Cloudron, so there is nothing to mitigate.

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Metabase and Baserow

    5
    2 Votes
    5 Posts
    678 Views
    timconsidineT

    @alex-a-soto said in Metabase and Baserow:

    I'm interested in using Metabase and Baserow together.

    Just curious (aka learning) - is this more of a preference, or is there a specific advantage ?

  • 0 Votes
    4 Posts
    256 Views
    nebulonN

    @Jeyakumarrathnaselvi actually as I read this, this is about Directus having access to an LDAP server or active directory not the other way around.

  • 0 Votes
    6 Posts
    1k Views
    M

    Usually, this error is thrown when the Java Virtual Machine cannot allocate an object because it is out of memory, and no more memory could be made available by the garbage collector.

    Therefore you pretty much have two options:

    Increase the default memory your program is allowed to use using the -Xmx option (for instance for 1024 MB: -Xmx1024m)

    Modify your program so that it needs less memory, using less big data structures and getting rid of objects that are not any more used at some point in your program

    Increasing the heap sizeis a bad solution, 100% temporary. It will crash again in somewhere else. To avoid these issues, write high performance code:

    Use local variables wherever possible. Make sure you select the correct object (EX: Selection between String, StringBuffer and StringBuilder) Use a good code system for your program(EX: Using static variables VS non static variables) Other stuff which could work on your code. Try to move with Multy Threading
  • FYI: CSV as a data source

    2
    3 Votes
    2 Posts
    221 Views
    luckowL

    After playing around with csv & metabase for a few hours, I searched for a better solution, because of performance and some limitations (some date filters doesn't work with csv).

    This is a perfect little helper tool. https://github.com/rufuspollock/csv2sqlite

    csv2sqlite.py myCSV.csv mySQLITE.sqlite

    go to your metabase app mkdir /app/data/sqlite upload mySQLITE.sqlite to /app/data/sqlite/ go to admin -> add database choose sqlite as the driver choose /app/data/sqlite/mySQLITE.sqlite as filename

    New important step:

    go to admin/datamodel/data and choose your DB choose the right TYPE for your column

    Then the real magic happens 🙂

  • DB unconfigured

    5
    0 Votes
    5 Posts
    260 Views
    robiR

    This is Cloudron. Self hosting. Including databases.

    How do we make it easier to get data in, suck it into a database of choice and easily point Metabase and other tools at it?

    If we do this right, we come up with our own data handling stack like LAMP is for the web.

    Cloudron, RebaseData, Postgres, Metabase (CPRM)
    Linux, RebaseData, Mysql, Metabase (LRMM)
    etc.

  • Email unconfigured

    Solved
    2
    0 Votes
    2 Posts
    146 Views
    nebulonN

    It is already pre-configured using the env variables mentioned in the settings UI (MB_EMAIL_...)

    Similar with many other apps, ideally we could hide/change that UI part in the settings page to not be as confusing.