Skip to content
This repository has been archived by the owner on Nov 30, 2022. It is now read-only.

No Data available in access frequencies and configurations #762

Open
Alexander-Dubrawski opened this issue Sep 16, 2020 · 0 comments
Open
Assignees
Labels
bug Something isn't working frontend

Comments

@Alexander-Dubrawski
Copy link
Collaborator

Alexander-Dubrawski commented Sep 16, 2020

Please describe the bug:
If we navigate to the access frequencies and configurations graph we are not able to see the data. Moreover after a reload and a switch between the comparison and overview page some tables can't be selected anymore.

Please describe steps to reproduce:

  1. Add a database
  2. Load a workload
  3. Click on comparison
  4. Scroll down to Segment Access Frequencies
  5. try to select a table
  6. See the message that no data is available

What is the expected behavior? Please describe:
We should be able to select the tables

Screenshot(s):
Screen Shot 2020-09-16 at 11 57 42

Possible source of error:
The list of available tables is used by the Access and Segmentation component from the meta/components.

import { useDataWithSelection, UseDataWithSelection } from "@/meta/components";

export function useDataWithSelection<T>(

There we are getting the information from the meta/database.

const { databases } = useUpdatingDatabases(props, context);

This module is getting its information from the database controller:

context.root.$databaseController.getDatabasesByIds(

The table information is returned in:

tables: storageInformation!.tables,

Maybe the problem has something to do with the reactiv method from the vue composition api.

import { ref, reactive, computed } from "@vue/composition-api";

or the controller is just not up to date.

Additional context:
The problem seems to be in the frontend if we manually reload the page we can select the tables.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working frontend
Projects
None yet
Development

No branches or pull requests

1 participant