-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract shared Elasticsearch cluster connection utilities
- Loading branch information
1 parent
8a939a4
commit def36a7
Showing
4 changed files
with
16 additions
and
8 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
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
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
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,11 @@ | ||
from airflow.decorators import task | ||
from airflow.models.connection import Connection | ||
from airflow.models.xcom_arg import XComArg | ||
|
||
from common.constants import Environment | ||
|
||
|
||
@task | ||
def get_es_host(environment: Environment) -> XComArg: | ||
conn = Connection.get_connection_from_secrets(f"elasticsearch_http_{environment}") | ||
return conn.host |