Skip to content

Commit

Permalink
V0.11.19 (#86)
Browse files Browse the repository at this point in the history
* Prepare next release

* Zenodo doi to latest version

* Docs: Adding more DBMS connection informations

* Docs: JOSS intro

* Dashboard: New version of dash

* Docs: Vertica connection info

* Docs: Reference with doi
  • Loading branch information
perdelt committed Mar 27, 2022
1 parent 0ec81de commit e039df4
Show file tree
Hide file tree
Showing 11 changed files with 312 additions and 43 deletions.
5 changes: 4 additions & 1 deletion README.md
@@ -1,6 +1,9 @@
[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/Beuth-Erdelt/DBMS-Benchmarker/graphs/commit-activity)
[![GitHub release](https://img.shields.io/github/release/Beuth-Erdelt/DBMS-Benchmarker.svg)](https://GitHub.com/Beuth-Erdelt/DBMS-Benchmarker/releases/)
[![PyPI version](https://badge.fury.io/py/dbmsbenchmarker.svg)](https://badge.fury.io/py/dbmsbenchmarker)
[![.github/workflows/draft-pdf.yml](https://github.com/Beuth-Erdelt/DBMS-Benchmarker/actions/workflows/draft-pdf.yml/badge.svg)](https://github.com/Beuth-Erdelt/DBMS-Benchmarker/actions/workflows/draft-pdf.yml)
[![DOI](https://zenodo.org/badge/213186578.svg)](https://zenodo.org/badge/latestdoi/213186578)


# DBMS-Benchmarker

Expand Down Expand Up @@ -38,7 +41,7 @@ DBMS-Benchmarker
For more informations, see a [basic example](#basic-usage) or take a look in the [documentation](https://dbmsbenchmarker.readthedocs.io/en/latest/Docs.html) for a full list of options.

The code uses several Python modules, in particular <a href="https://github.com/baztian/jaydebeapi" target="_blank">jaydebeapi</a> for handling DBMS.
This module has been tested with Brytlyt, Citus, Clickhouse, DB2, Exasol, Kinetica, MariaDB, MariaDB Columnstore, MemSQL, Mariadb, MonetDB, MySQL, OmniSci, Oracle DB, PostgreSQL, SingleStore, SQL Server and SAP HANA.
This module has been tested with Clickhouse, DB2, Exasol, Hyperscale (Citus), Kinetica, MariaDB, MariaDB Columnstore, MemSQL, Mariadb, MonetDB, MySQL, OmniSci, Oracle DB, PostgreSQL, SingleStore, SQL Server and SAP HANA.

## Installation

Expand Down
9 changes: 6 additions & 3 deletions dashboard.py
Expand Up @@ -16,9 +16,12 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
import dash
import dash_core_components as dcc
import dash_html_components as html
import dash_table
#import dash_core_components as dcc
from dash import dcc
#import dash_html_components as html
from dash import html
#import dash_table
from dash import dash_table
from dash.dependencies import Input, Output, State, MATCH, ALL
from dash.exceptions import PreventUpdate
from dash import no_update
Expand Down
10 changes: 7 additions & 3 deletions dbmsbenchmarker/layout.py
Expand Up @@ -15,9 +15,13 @@
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
import dash_core_components as dcc
import dash_html_components as html
import dash_table
import dash
#import dash_core_components as dcc
from dash import dcc
#import dash_html_components as html
from dash import html
#import dash_table
from dash import dash_table
import dash_daq as daq
import uuid

Expand Down
9 changes: 6 additions & 3 deletions dbmsbenchmarker/scripts/dashboardcli.py
Expand Up @@ -16,9 +16,12 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
import dash
import dash_core_components as dcc
import dash_html_components as html
import dash_table
#import dash_core_components as dcc
from dash import dcc
#import dash_html_components as html
from dash import html
#import dash_table
from dash import dash_table
from dash.dependencies import Input, Output, State, MATCH, ALL
from dash.exceptions import PreventUpdate
from dash import no_update
Expand Down

0 comments on commit e039df4

Please sign in to comment.