forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add ascend engine spec (apache#14682)
- Loading branch information
1 parent
86c654c
commit f1df95a
Showing
4 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: Ascend.io | ||
menu: Connecting to Databases | ||
route: /docs/databases/ascend | ||
index: 7 | ||
version: 1 | ||
--- | ||
|
||
## Ascend.io | ||
|
||
The recommended connector library to Ascend.io is [impyla](https://github.com/cloudera/impyla). | ||
|
||
The expected connection string is formatted as follows: | ||
|
||
``` | ||
ascend://{username}:{password}@{hostname}:{port}/{database}?auth_mechanism=PLAIN;use_ssl=true | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ A list of some of the recommended packages. | |
|[Apache Pinot](/docs/databases/pinot)|```pip install pinotdb```|```pinot://BROKER:5436/query?server=http://CONTROLLER:5983/```| | ||
|[Apache Solr](/docs/databases/solr)|```pip install sqlalchemy-solr```|```solr://{username}:{password}@{hostname}:{port}/{server_path}/{collection}``` | ||
|[Apache Spark SQL](/docs/databases/spark-sql)|```pip install pyhive```|```hive://hive@{hostname}:{port}/{database}``` | ||
|[Ascend.io](/docs/databases/ascend)|```pip install impyla```|```ascend://{username}:{password}@{hostname}:{port}/{database}?auth_mechanism=PLAIN;use_ssl=true```| | ||
|[Azure MS SQL](/docs/databases/sql-server)|```pip install pymssql``` |```mssql+pymssql://UserName@presetSQL:[email protected]:1433/TestSchema``` | ||
|[Big Query](/docs/databases/bigquery)|```pip install pybigquery```|```bigquery://{project_id}```| | ||
|[ClickHouse](/docs/databases/clickhouse)|```pip install clickhouse-driver==0.2.0 && pip install clickhouse-sqlalchemy==0.1.6```|```clickhouse+native://{username}:{password}@{hostname}:{port}/{database}```| | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
from sqlalchemy.dialects import registry | ||
|
||
from superset.db_engine_specs.impala import ImpalaEngineSpec | ||
|
||
|
||
class AscendEngineSpec(ImpalaEngineSpec): | ||
"""Engine spec for Ascend.io (Hive2+TLS) using Cloudera's Impala""" | ||
|
||
engine = "ascend" | ||
registry.register("ascend", "impala.sqlalchemy", "ImpalaDialect") | ||
|
||
engine_name = "Ascend" | ||
|
||
_time_grain_expressions = { | ||
None: "{col}", | ||
"PT1S": "DATE_TRUNC('second', {col})", | ||
"PT1M": "DATE_TRUNC('minute', {col})", | ||
"PT1H": "DATE_TRUNC('hour', {col})", | ||
"P1D": "DATE_TRUNC('day', {col})", | ||
"P1W": "DATE_TRUNC('week', {col})", | ||
"P1M": "DATE_TRUNC('month', {col})", | ||
"P0.25Y": "DATE_TRUNC('quarter', {col})", | ||
"P1Y": "DATE_TRUNC('year', {col})", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
from superset.db_engine_specs.ascend import AscendEngineSpec | ||
from tests.db_engine_specs.base_tests import TestDbEngineSpec | ||
|
||
|
||
class TestAscendDbEngineSpec(TestDbEngineSpec): | ||
def test_convert_dttm(self): | ||
dttm = self.get_dttm() | ||
|
||
self.assertEqual( | ||
AscendEngineSpec.convert_dttm("DATE", dttm), "CAST('2019-01-02' AS DATE)" | ||
) | ||
|
||
self.assertEqual( | ||
AscendEngineSpec.convert_dttm("TIMESTAMP", dttm), | ||
"CAST('2019-01-02T03:04:05.678900' AS TIMESTAMP)", | ||
) |