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

15 Topics 181 Posts
  • Metabase - Package Updates

    Pinned
    117
    1 Votes
    117 Posts
    5k Views
    nebulonN

    [1.21.7]

    Update Metabase to 0.49.7 Full changelog Fix not sending necessary HTTP headers when downloading results (#41633) Fix invisible user items in search filters (#41604) docs - add redshift to list of dbs that support uploads (#41594) Fix Embedded dashboard parameters parse runtime error (#41545) Links to metabase URLs should open in the same window in link cards (#41508) Date format "January 31, 2018" missing day in csv download (#41639) Default (formatted) CSV Export Returns "Week #" instead of Date (#41492) Leading zero in filter value in embedded dashboard breaks it (#41483) Archived models continue to be cached (#41318) Migration doesn't like rows with null characters (#40835) Primary Key missing filter options (#40665) If a user is a member of multiple groups in the IdP, the user property is comma separated and we default to "all users" (#40517) Date Filtering Bug in v0.49.1 Docker Image with Japanese Locale Settings (#40493) Metabase renders the result but the query does not finish in the DB (#39018) Illegal hex characters in escape (%) pattern - error at index 0 in: R6 (#38966) Cannot connect to new MongoDB source or sync existing databases (#38013) Overall link situation (#30891)
  • 0 Votes
    4 Posts
    39 Views
    ChristopherMagC

    @nebulon Thank you so much, I have deleted /app/code/plugins/csv.metabase-driver.jar, restarted metabase, and it is working as expected.

    I did not correlate the migration failure with the csv driver being present as it didn't seem like the error came from that driver being initialized but instead came from liquidbase but removing it obviously worked, thank you!

  • Metabase CORS and CSP headers

    Solved
    20
    1 Votes
    20 Posts
    236 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
    71 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
    61 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
    85 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
    55 Views
    S

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

  • 1 Votes
    4 Posts
    186 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
    708 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
    276 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
    236 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
    278 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
    160 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.