Hi
Thank you for posting query in Microsoft Q&A Platform.
It sounds like you have defined custom entity types and assets in Apache Atlas, but you are unable to use the data filter in the left menu to filter by database, file, report, table, etc.
To enable filtering by these types, you need to ensure that your custom entity types inherit from the appropriate super types. For example, to enable filtering by database, you can define your custom entity type as follows:
EntityTypeDef Database superTypes=["DataSet"]
In this example, the Database
entity type inherits from the DataSet
super type, which enables it to be filtered by the "Table" filter in the left menu.
Similarly, to enable filtering by file, you can define your custom entity type as follows:
EntityTypeDef File superTypes=["DataSet"]
In this example, the File
entity type also inherits from the DataSet
super type, which enables it to be filtered by the "Table" filter in the left menu.
You can define your custom entity types in a similar way, ensuring that they inherit from the appropriate super types to enable filtering by the desired types.
I hope this helps! Let me know if you have any further questions.