-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compare temp branch with current (Do not merge) #187
base: main
Are you sure you want to change the base?
Changes from all commits
e28c91b
7219ee1
e5f4e44
fe2ee36
c40b1d0
27088ed
9c76af3
5947f2a
39162c0
9a45bea
d63caae
149d6fa
10209bc
4c0c02e
063a27b
e20f283
bb5093d
e00bff3
09233a5
25f21d1
9eecf86
4b63596
55cffaa
63fdfb0
1715daf
dec8e3d
6d3dbbe
48a520f
baece13
e54ee47
d51872a
b2f8968
80afdc2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from exasol_data_science_utils_python.schema.dbobject_name import DBObjectName | ||
from exasol_data_science_utils_python.schema.dbobject_name_impl import DBObjectNameImpl | ||
from typeguard import typechecked | ||
|
||
|
||
class ConnectionName(DBObjectName): | ||
"""A DBObjectName class which represents the name of a connection object""" | ||
|
||
@typechecked | ||
def __init__(self, connection_name: str): | ||
super().__init__(connection_name.upper()) | ||
|
||
|
||
class ConnectionNameImpl(DBObjectNameImpl, ConnectionName): | ||
|
||
@property | ||
def fully_qualified(self) -> str: | ||
return self.quoted_name | ||
|
||
@typechecked | ||
def __init__(self, connection_name: str): | ||
super().__init__(connection_name) |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. QueryHandler PR |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from exasol_advanced_analytics_framework.query_handler.context.connection_name import ConnectionName, ConnectionNameImpl | ||
from exasol_advanced_analytics_framework.query_handler.context.proxy.db_object_name_proxy import DBObjectNameProxy | ||
from exasol_advanced_analytics_framework.query_handler.query.drop_connection_query import DropConnectionQuery | ||
from exasol_advanced_analytics_framework.query_handler.query.query import Query | ||
|
||
|
||
class ConnectionNameProxy(DBObjectNameProxy[ConnectionName], ConnectionName): | ||
|
||
@property | ||
def fully_qualified(self) -> str: | ||
return self.quoted_name | ||
|
||
def get_cleanup_query(self) -> Query: | ||
return DropConnectionQuery(self._db_object_name) | ||
|
||
def __init__(self, connection_name: ConnectionName, global_counter_value: int): | ||
super().__init__(connection_name, global_counter_value) |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. QueryHandler PR |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from exasol_data_science_utils_python.schema.udf_name import UDFName | ||
|
||
from exasol_advanced_analytics_framework.query_handler.query.drop_query import DropQuery | ||
|
||
|
||
class DropUDFQuery(DropQuery): | ||
|
||
def __init__(self, udf_name: UDFName): | ||
self._udf_name = udf_name | ||
|
||
@property | ||
def query_string(self) -> str: | ||
return f"DROP SCRIPT IF EXISTS {self._udf_name.fully_qualified};" | ||
|
||
@property | ||
def table_name(self) -> UDFName: | ||
return self._udf_name |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. QueryHandler PR |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from exasol_data_science_utils_python.schema.udf_name import UDFName | ||
|
||
from exasol_advanced_analytics_framework.query_handler.context.proxy.db_object_name_with_schema_proxy import \ | ||
DBObjectNameWithSchemaProxy | ||
from exasol_advanced_analytics_framework.query_handler.context.proxy.drop_udf_query import DropUDFQuery | ||
from exasol_advanced_analytics_framework.query_handler.query.query import Query | ||
|
||
|
||
class UDFNameProxy(DBObjectNameWithSchemaProxy[UDFName], UDFName): | ||
|
||
def get_cleanup_query(self) -> Query: | ||
return DropUDFQuery(self._db_object_name) | ||
|
||
def __init__(self, script_name: UDFName, global_counter_value: int): | ||
super().__init__(script_name, global_counter_value) |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. QueryHandler PR |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. QueryHandler PR |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. QueryHandler PR |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from exasol_advanced_analytics_framework.query_handler.context.connection_name import ConnectionName | ||
from exasol_advanced_analytics_framework.query_handler.query.drop_query import DropQuery | ||
|
||
|
||
class DropConnectionQuery(DropQuery): | ||
|
||
def __init__(self, connection_name: ConnectionName): | ||
self._connection_name = connection_name | ||
|
||
@property | ||
def query_string(self) -> str: | ||
return f"DROP CONNECTION IF EXISTS {self._connection_name.fully_qualified};" | ||
|
||
@property | ||
def connection_name(self) -> ConnectionName: | ||
return self._connection_name |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. QueryHandler PR |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,7 @@ | |
|
||
class DropyQuery(Query): | ||
pass | ||
|
||
|
||
class DropQuery(Query): | ||
pass |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. QueryHandler PR |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. QueryHandler PR |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. QueryHandler PR |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
from typing import List, Optional | ||
|
||
from pydantic import BaseModel | ||
|
||
from exasol_advanced_analytics_framework.udf_communication.communicator_protocol import CommunicatorProtocol | ||
from exasol_advanced_analytics_framework.udf_communication.serialization import serialize_message, deserialize_message | ||
|
||
|
||
class AllGatherResult(BaseModel): | ||
gather_result: List[bytes] | ||
|
||
|
||
class AllGatherOperation: | ||
|
||
def __init__(self, communicator: CommunicatorProtocol, value: bytes): | ||
self._value = value | ||
self._communicator = communicator | ||
|
||
def __call__(self) -> List[bytes]: | ||
gather_result = self._communicator.gather(self._value) | ||
broadcast_value: Optional[bytes] = None | ||
if self._communicator.is_multi_node_leader(): | ||
all_gather_result = AllGatherResult(gather_result=gather_result) | ||
broadcast_value = serialize_message(all_gather_result) | ||
broadcast_result = self._communicator.broadcast(broadcast_value) | ||
all_gather_result = deserialize_message(broadcast_result, AllGatherResult) | ||
return all_gather_result.gather_result |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
QueryHandler PR