df_totals_ext_cols.py 929 B

123456789101112131415161718192021
  1. # Copyright Materialize, Inc. and contributors. All rights reserved.
  2. #
  3. # Use of this software is governed by the Business Source License
  4. # included in the LICENSE file at the root of this repository.
  5. #
  6. # As of the Change Date specified in that file, in accordance with
  7. # the Business Source License, use of this software will be governed
  8. # by the Apache License, Version 2.0.
  9. from materialize.scalability.df import df_totals_cols
  10. CONCURRENCY = df_totals_cols.CONCURRENCY
  11. WORKLOAD = df_totals_cols.WORKLOAD
  12. COUNT = df_totals_cols.COUNT
  13. TPS_DIFF = "tps_diff"
  14. """'TPS_OTHER - TPS_BASELINE'. Positive value, if other endpoint has more TPS (= scales better) than baseline."""
  15. TPS_DIFF_PERC = "tps_diff_perc"
  16. """'TPS_DIFF / TPS_BASELINE'. Positive value, if other endpoint has more TPS (= scales better) than baseline."""
  17. TPS_BASELINE = "baseline_tps"
  18. TPS_OTHER = "other_tps"
  19. INFO_BASELINE = "baseline_info"
  20. INFO_OTHER = "other_info"