parquet_flask/aws/aws_ddb.py (4 lines): - line 121: # TODO should check if exception is this one "ResourceNotFoundException". if not, throw the error - line 166: 'BillingMode': 'PAY_PER_REQUEST', # TODO setting it to on-demand. might need to re-visit later - line 167: 'SSESpecification': {'Enabled': False} # TODO had to disable it since it does not support 'AES256' yet. - line 263: # TODO check result parquet_flask/io_logic/parquet_query_condition_management_v3.py (3 lines): - line 176: # TODO add year and month to the conditions, but not sure it will have any effect - line 180: # TODO add year and month to the query conditions. But not sure it will have any effect - line 183: # TODO should we throw an error here? parquet_flask/v1/ingest_aws_json.py (1 line): - line 210: # TODO make it background process? parquet_flask/v1/query_data.py (1 line): - line 46: self.__saved_dir = '/tmp' # TODO update this parquet_flask/authenticator/authenticator_aws_secret_manager.py (1 line): - line 37: secret_json = json.loads(token_str)[self.__auth_cred_key] # TODO check this parquet_flask/v1/query_data_doms_custom_pagination.py (1 line): - line 95: TODO: transform the results to: parquet_flask/cdms_lambda_func/ingest_s3_to_cdms/ingest_s3_to_cdms.py (1 line): - line 64: 'Authorization': base64.standard_b64encode(os.environ.get(LambdaFuncEnv.CDMS_BEARER_TOKEN).encode()).decode(), # TODO this comes from Secret manager. not directly from env variable parquet_flask/v1/query_data_doms.py (1 line): - line 79: TODO: transform the results to: parquet_flask/io_logic/raw_query.py (1 line): - line 106: # total_result = 1000 # faking this for now. TODO revert it.