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


Metabase

9 Topics 121 Posts
  • Metabase - Package Updates

    Pinned
    1 Votes
    92 Posts
    2k Views

    [1.18.2]

    Update Metabase to 0.47.2 Full changelog Clear cache when performing version upgrades (#33457) Performance improvement in notebook editor (#33676) (#12378) Metabase will not let you update the cert if it was rotated (#33452) Some table columns are unable to be rendered (#33279) Download results (.csv, .json, .xlsx) request does not include subpath when deploying on subpath (#33244)
  • 1 Votes
    4 Posts
    92 Views

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

  • This topic is deleted!

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

    2 Votes
    5 Posts
    414 Views

    @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
    157 Views

    @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
    581 Views

    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

    3 Votes
    2 Posts
    190 Views

    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

    0 Votes
    5 Posts
    202 Views

    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
    0 Votes
    2 Posts
    112 Views

    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.