Merged in dev_umistry (pull request #23)

Dev umistry
This commit is contained in:
Umang Mistry
2024-03-08 23:45:52 +00:00
4 changed files with 31 additions and 7 deletions
+1 -1
View File
@@ -137,7 +137,7 @@ begin_job = EmptyOperator(task_id='Begin')
python_task = PythonOperator(task_id='get_info_using_python_op', # Task ID has to be unique only inside a dags
python_callable=python_op_eg,
dag=dag,
op_kwargs={'table_name':'DIM_AUDIT'} # Variables can be passed to the python function using op_kwargs
op_kwargs={'table_name':'DIM_AUDIT',} # Variables can be passed to the python function using op_kwargs
)
# Snowflake operator does not offer the option to display query results
+17 -6
View File
@@ -35,17 +35,27 @@ ALL_DONE = 'all_done'
ONE_SUCCESS = 'one_success'
ONE_FAILED = 'one_failed'
# Passing empty params for now, this will be overridden by the payload from the trigger
# These params can also be set from the Airflow UI while manually triggering the DAG
default_params = {"training_results_file_name": "", "attempt_logs_file_name":""}
# This will be replaced with the payload from the event after API connection is setup
training_results_file_name = "training_results_sample.csv"
attempt_logs_file_name = "attempt_logs_sample.csv"
# training_results_file_name = "training_results_sample.csv"
# attempt_logs_file_name = "attempt_logs_sample.csv"
def call_stored_proc(proc_name,file_name):
def call_stored_proc(proc_name,file_type, params):
dwh_hook = SnowflakeHook(snowflake_conn_id=SNOWFLAKE_CONN_ID)
with dwh_hook.get_conn() as conn:
# dwh_hook.set_autocommit(conn,autocommit=False)
cur = conn.cursor()
# Added new parameter file_type to determine the file name to be passed to the stored procedure
# The bucket name is set by default to "doczy-dev-infra-raw-data-ingestion" and the files should be ALWAYS save under training_interface/ path for now
if file_type == 'training_results':
file_name = params['training_results_file_name']
elif file_type == 'attempt_logs':
file_name = params['attempt_logs_file_name']
cur.execute(f"CALL {DATABASE}.STG.{proc_name}('{file_name}');")
result = cur.fetchone()
if result[0] == 'Setup, Load, and Audit Complete':
@@ -60,7 +70,8 @@ dag = DAG(
default_args={"snowflake_conn_id": SNOWFLAKE_CONN_ID, "retries":0},
tags=TAGS,
catchup=False,
schedule=None
schedule=None,
params = default_params
)
begin_job = EmptyOperator(task_id='Begin')
@@ -70,14 +81,14 @@ load_training_results = PythonOperator(
task_id="load_training_results",
python_callable=call_stored_proc,
dag=dag,
op_kwargs={'proc_name':'LOAD_TRAINING_RESULTS', 'file_name':training_results_file_name}
op_kwargs={'proc_name':'LOAD_TRAINING_RESULTS', 'file_type':'training_results'}
)
load_attempt_logs_sp = PythonOperator(
task_id="load_attempt_logs",
python_callable=call_stored_proc,
dag=dag,
op_kwargs={'proc_name':'LOAD_ATTEMPT_LOGS', 'file_name':attempt_logs_file_name}
op_kwargs={'proc_name':'LOAD_ATTEMPT_LOGS', 'file_type':'attempt_logs'}
)
@@ -0,0 +1,12 @@
CREATE TABLE STG.PROMPT_CONFIG (
FIELD_NAME VARCHAR,
FIELD_DESC VARCHAR,
IS_REQUIRED BOOLEAN,
FIELD_DATA_TYPE VARCHAR,
PROMPT VARCHAR,
FM_MODEL_ID VARCHAR,
GROUP_ID NUMERIC,
FIELD_MAX_LENGTH NUMBER,
SAMPLE_VALUE VARCHAR,
CONTRACT_SECTION VARCHAR
);
+1
View File
@@ -8,6 +8,7 @@ from langchain_community.document_loaders import CSVLoader, PDFMinerLoader, Text
from langchain_community.document_loaders import UnstructuredFileLoader, UnstructuredMarkdownLoader
# load_dotenv()
# ROOT_DIRECTORY = os.path.dirname(os.path.realpath(__file__))
ROOT_DIRECTORY = "\\\\amznfsxuofkyi1z.aarete.local\\SharedFiles\\AArete Client Work\\Modahealth\\Restricted\\Moda Growth\\Artificial Intelligence\\DEFAXXER_20231207"