Forum Discussion

bdpr_95's avatar
bdpr_95
Helper IV
1 year ago
Solved

Shared Semantic Models

Hi everyone, Has anyone ever experienced performance issues (in terms of interactivity between the report consumer and the report) when using a shared semantic model to build multiple reports? If y...
  • R1k91's avatar
    R1k91
    1 year ago

    the number of reports sharing the same model is not a problem per se.

    We have dozens of report sharing the same Model on multiple customers' scenarios.

     

    As GilbertQ said you must follow best practice when you design it:

    - star-schema

    - import mode preferred

    - import only needed data (3 milion rows is not a big deal, 56 columns... do you really need of all them?)

    - use correct data types

    - pay attention to DAX you write in measures

    - do not put too much visual in the same page because each of them will rise a query against the model (or use visuals that optimize this like multiple-row card instead of 50 cards for example)

    - etc...